Well i made a basic waypoint for daily which i believe is the fastest and easiest.
Stats at npc - Jero Wespo
You need to do some basic quests before opening that daily.
Use mount before you start the script.
Jungle Of Hortek Daily
Forum rules
Only post additional bot resources here. Please do not ask unrelated questions.
Only post additional bot resources here. Please do not ask unrelated questions.
Jungle Of Hortek Daily
- Attachments
-
- lvl 87_1.xml
- A lady in Waiting. Daily quest
- (1.74 KiB) Downloaded 537 times
Satisfaction is the end of desire!!
Re: Jungle Of Hortek Daily
cool, if you wanted you could add
to the onload section and it will use mount if not already mounted =)
Code: Select all
player:mount()
Remember no matter you do in life to always have a little fun while you are at it
wiki here http://www.solarstrike.net/wiki/index.php?title=Manual
wiki here http://www.solarstrike.net/wiki/index.php?title=Manual
Re: Jungle Of Hortek Daily
Could also make it open a passageway portal and do it easily. Porting is almost instant once you have done it a few times.
Thank you!
Thank you!
Re: Jungle Of Hortek Daily
waypoints for daily crysalia circles? please =)
-
- Posts: 527
- Joined: Fri Aug 31, 2012 1:15 pm
Re: Jungle Of Hortek Daily
This is a function I use in a lot of my waypoints to use instead of just a normal player:mount():
This one will mount if you have a mount and if not, will check for a temporary horse ticket, use it, then mount. Then it will tilize the speed() hack to increase your riding speed. With this, I just use a doMount() anywhere I would want the character to make sure I'm mounted.
Code: Select all
function doMount()
if not player.Mounted then
if inventory:getMount() then
player:mount()
elseif inventory:itemTotalCount("Horse Rental Ticket") > 1 then
inventory:useItem("Horse Rental Ticket");
yrest(500)
player:mount()
end
yrest(1000)
end
speed()
end
Re: Jungle Of Hortek Daily
noobbotter wrote:This is a function I use in a lot of my waypoints to use instead of just a normal player:mount():
This one will mount if you have a mount and if not, will check for a temporary horse ticket, use it, then mount. Then it will tilize the speed() hack to increase your riding speed. With this, I just use a doMount() anywhere I would want the character to make sure I'm mounted.Code: Select all
function doMount() if not player.Mounted then if inventory:getMount() then player:mount() elseif inventory:itemTotalCount("Horse Rental Ticket") > 1 then inventory:useItem("Horse Rental Ticket"); yrest(500) player:mount() end yrest(1000) end speed() end
Could you give me an example of waypoint where you have used this function? I am still learning on how to add these things to the waypoints.
Satisfaction is the end of desire!!
Who is online
Users browsing this forum: No registered users and 2 guests