Page 11 of 11

Re: Swim, Speed and wall hacks

Posted: Fri Oct 04, 2013 3:35 pm
by rock5
I wouldn't change speed just to follow an npc, it would be too impractical. I would just do a loop doing repetitive player:moveTo's so the player would move forward, stop, move forward, stop until it reached the destination. The problem with setting it to, for example, -%20, if that is the correct speed, is that speed buffs would affect it so you would still go too fast.

I think I might have to allow it to still accept speed values to avoid all these incompatibility issues.

Re: Swim, Speed and wall hacks

Posted: Sat Oct 05, 2013 2:48 am
by Bill D Cat
Just did a bit of research and testing. I can live without a slow speed now that I know how to toggle the Run / Walk mode for my bot.

Code: Select all

local hotkey, modifier = getHotkeyByName("TOGGLERUN"); keyboardPress(hotkey)

Re: Swim, Speed and wall hacks

Posted: Sat Oct 05, 2013 2:57 am
by rock5
The problem is there may not be a key bound to that function, it isn't on my system for some reason. You can just run the function it runs instead.

Code: Select all

RoMScript("ToggleRun()")

Re: Swim, Speed and wall hacks

Posted: Mon Oct 21, 2013 2:16 am
by rock5
I'm going to release an updated version of the speed hack soon using the improvements mentioned a few post above. But I would like to know what the highest theoretical speed you can have using different stackable buffs. I need to know this to set a more reasonable allowable upper limit. Just using a 30% IS mount speed pot and galloping gale makes 60%, assuming they are stackable. If you have the fastest speed mount, a disk, which has a base speed of 87.5 that would mean a buffed speed of 140. If we add 19% with the speed hack we get 166.6. That should work but goes right past the current limits.

So could anyone, who has experience maxing out their speed using pots, please comment.

Re: Swim, Speed and wall hacks

Posted: Mon Oct 21, 2013 3:43 am
by runegod
Escape Artist title 10% speed

God Speed potion from maids 50%

Spellweaver potion 30%

Mad Rush 20%

everyone is able to reach these speeds stacking buffs,

during siege play though, herald also get passive buffs, and other class combo like rogues and warrior/rogues have their own unique speed buffs skills or passives,

also during siege each guild have stable buffs which depends on their level of stable that will give a passive buff stacking with the above speed buffs.


regular game play though, the above speed is the max possible for a few short moment, and what you stated for mounted speed is correct, plus you can probably go faster with the 10% lesser speed mount from item shop, or thee 30% mount pot, which is not too common now, and stable buffs for mount, again which it depends on your guilds level of the stable.

Re: Swim, Speed and wall hacks

Posted: Mon Oct 21, 2013 4:16 am
by rock5
Those initial 4 pots are all for unmounted speed right? Even all of them to gether only comes to 105. I think we just have to look at the maximum mounted speed.

So...
Galloping Gale 30%
30% IS pot 30%
10% IS pot 10% (can we use the 30% and 10% IS pots ate the same time?)
Level 10 Stable buff 20%

So a total of 90% on fastest mount = 166.25
Plus 19% speed hack = 197.8.

So I think I'll set the maximum allowable speed to 200. Although the updated function will warn of pullbacks if you set the speed to anything larger than base speed + 19%.

Re: Swim, Speed and wall hacks

Posted: Mon Oct 21, 2013 4:49 am
by runegod
the item shop mount buffs do not stack, can only have one on.

will be looking forward to your new code working, really hate the pull backs, especially when doing dailies where i want to mount up and unmount near water or collecting quest items / gathering resources.

and ya, the 4 potion/buffs i mentioned are unmounted buffs when running.

Re: Swim, Speed and wall hacks

Posted: Mon Oct 21, 2013 10:52 pm
by rock5
Updated speed hack to version 1.3. There are 2 main improvements.
  • 1. When you turn speed on without specifying a speed, it calculates the best safe speed taking into account any current speed buffs. And when you turn speed off it sets the speed to the correct speed taking into account any speed buffs.
    2. Now also works when mounted.

Re: Swim, Speed and wall hacks

Posted: Thu Nov 21, 2013 11:09 am
by rido_knight
Thanks master :)