UpThroughRoof(44) -- Starts at 44 and drills up 12 steps to 56
UpThroughRoof(44,30) -- Starts at 44 and drills up 30 steps to 74
If you don't want to do that, you only want it to start at 44 and do 12 steps then do what I said at the beginning of my last post. Start it like this instead.
local function UpThroughRoof()
local startpos = 44
local steps = 12
player:update()
if player.Y > startpos + steps then -- already above roof.
return
end
for i = 0,steps,1 do teleport(nil,nil,startpos+i) player:turnDirection(1) yrest(50) end
yrest(1000)
teleport(nil,nil,120)
player:update()
end
In accordance to this thread but not the previous message :
Just a short guide/list for speed hack speeds.
This is to help you get the maximum speed you can get while under the effects of different items/potions without pullbacks or death.
-Normal- means the speed you normally run with the skill/buff.
-Maximum- means the highest speed a speedhack can get you up to, without dying or being pulled back.
(?) means awaiting confirmation.
(#) means it needs to be tested.
Running Normally: 50 --- Maximum: 59
Running with "Unbridled Enthusiasm": Normal: 58 --- Maximum:67
Running with "Escape Artist"/"What are you looking at? Never seen a bad guy before?" Title : Normal: 55 --- Maximum: 64
Running with "Escape Artist" Title or "What are you looking at? Never seen a bad guy before?" Title + "Nobodies' Rum" Potion : Normal: 65 --- Maximum: 74
Running with "Speed Potion": Normal: 65 --- Maximum: 74 (?)
Running with "Escape Artist"/"What are you looking at? Never seen a bad guy before?" Title + "Unbridled Enthusiasm" Potion: Normal: 63 ---Maximum: 75
Running with "Escape Artist"/"What are you looking at? Never seen a bad guy before?" Title + "Unbridled Enthusiasm" Potion + "Nobodies' Rum" Potion: Normal: (#) --- Maximum: 76
Running with "Rough Sprint" skill: Normal: 70 --- Maximum: 79 (?)
Running with "Escape Artist"/"What are you looking at? Never seen a bad guy before?" Title + Speed potion: Normal: 72 --- Maximum: 81 (?)
Running with "Escape Artist"/"What are you looking at?" Title + "Unbridled Enthusiasm" + "Speed Up" skill (for Warrior/Rogue) : Normal: 75--- Maximum: 84
Running with "Escape Artist"/"What are you looking at?" Title + "Rough Sprint" skill: Normal: 77 --- Maximum: 86 (?)
lisa wrote:nice info and all but since speedhack doesn't constantly keep reapplying itself the shorter buffs would need to be ignored.
You could however do a check for the long term buffs and adjust the speed accordingly, emphasis on the "you", I just don't have the spare time for it.
Oh, did you read that post as a request for something to be done? Because there was no question, I assumed that it was just some useful information he wanted to share. As it is, some people might find it useful in deciding what speed to use.
Please consider making a small donation to me to support my continued contributions to the bot and this forum. Thank you. Donate
I check all posts before reading PMs. So if you want a fast reply, don't PM me but post a topic instead. PM me for private or personal topics only.
It's just a note for those who want to adjust their userfunction_speehack.lua.
(cause this function is awesome but kill puppies... at least, players )
According to user's habits, it is possible to "fix" the value of speed "on".
And not beeing kill or teleported back.
btw, lisa, rock and those contribute to this project (solarstrike -> rom), thanks you for your work
rock5 wrote:Oh, did you read that post as a request for something to be done?
I did think it was useful info and I think making the userfunction to auto adjust the speed(on) according to buffs is a good idea, I just meant I don't have the time to do it myself.
It wouldn't take to much coding to achieve optimal speed that reflects your buffs, it would be a good project for someone who is starting to learn lua
Remember no matter you do in life to always have a little fun while you are at it
we knows teleport has limited distance.. it is posible that i make 2 waypoint then my char automaticaaly calculate and tele until reach waypoint #2??
from waypoint #1 then my char will tele every 110 range until reach waypoint #2??
'teleport' will automatically do multiple teleports if neccessary. So if the distance is 110 it will do 1 teleport. If the distance is 140 it will do 2 x 70 teleports. If the distance is 300 it will do 3 x 100 teleports.
That said, there is no gurantee that you wont get pulled back if you are going too far too fast. If you are getting pulled back a lot, try increasing the pause between teleports by using
The maximum distance, I've found, that the character can teleport in one go is 120, but this function will try to make shorter hops if the coordinates given are too far. The function uses a maximum step size of 115, to add a little bit of a buffer. Between multiple hops, it will pause for 500 milliseconds for the new location to register. Both these values can be changed by the user with the following functions.
The swim hack is currently not working properly. Not sure why no one else has commented on it. Instead of acting like it is swiming under water, it acts like it is swiming on top of the water. What this means is, it tends to always swim horizontally and then, at the last minute, angle up or down to get to the waypoint.
I'll be including a changed swim address in the next commit of the bot but it will require an updated swim userfunction. Seeing as the updated swim userfunction will work with the current bot as well, I've decided to upload it now already. It's version 2.1. If you update it now it will give you one less thing to worry about when I commit the changes to the bot because the old swim function wont work with 724 or above of the bot.
So when you update the swim userfunction it will behave exactly the same with the current version of the bot (723) tending to swim horizontally. But when I commit my changes it will swim like it used to in a straight line towards your waypoints.
I'll probably commit the next version of the bot in a day or 2, depending on how lazy I'm feeling. :s
Please consider making a small donation to me to support my continued contributions to the bot and this forum. Thank you. Donate
I check all posts before reading PMs. So if you want a fast reply, don't PM me but post a topic instead. PM me for private or personal topics only.