Thread: ROTMG Speedhack

Page 3 of 11 FirstFirst 12345 ... LastLast
Results 31 to 45 of 154
  1. #31
    Zenoxis's Avatar
    Join Date
    Jan 2015
    Gender
    male
    Posts
    63
    Reputation
    10
    Thanks
    3
    Thanks for that share !
    How could I edit the speed so that it goes a bit less faster?
    Thanks

    - - - Updated - - -

    Edit: I found out by myself. The code if someone needs help :

    <?xml version="1.0" encoding="utf-8"?>
    <CheatTable CheatEngineTableVersion="18">
    <CheatEntries/>
    <UserdefinedSymbols/>
    <LuaScript>lastSpeed=1;

    function checkKeys(timer)
    if (isKeyPressed(VK_E)) then if lastspeed ~= 5 then speedhack_setSpeed(5) lastSpeed=5 end
    else if lastspeed ~= 1 then speedhack_setSpeed(1) lastSpeed=1 end
    end

    end

    t=createTimer(nil)
    timer_setInterval(t, 100)
    timer_onTimer(t, checkKeys)
    timer_setEnabled(t, true)
    </LuaScript>
    </CheatTable>

    Optimal otherwise I lag out.

  2. #32
    OfficialSnowie's Avatar
    Join Date
    Mar 2015
    Gender
    male
    Location
    Australia, Melbourne
    Posts
    16
    Reputation
    10
    Thanks
    21
    I recommend just changing it right now to a different button. such as shift. A better option would be to give a tutorial on how to edit it yourself.

  3. #33
    w4tw4te5y5yhrjsrewye546#W%RW$5's Avatar
    Join Date
    Jul 2014
    Gender
    male
    Posts
    90
    Reputation
    10
    Thanks
    3
    My Mood
    Sad
    mac please if you can somehow

  4. #34
    kirbykilla992's Avatar
    Join Date
    Feb 2015
    Gender
    male
    Posts
    17
    Reputation
    10
    Thanks
    0
    wow... ty so much
    ^.^

  5. #35
    iamasmurf's Avatar
    Join Date
    Feb 2014
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    If you want to change the hotkey, just edit the file yourself.

    You just need something like notepad++, edit the file with that and change this line:
    if (isKeyPressed(VK_E)) then if lastspeed ~= 10 then speedhack_setSpeed(10) lastSpeed=10 end
    Change the E to whatever key you want to and you are good to go.

  6. #36
    Regioner's Avatar
    Join Date
    Dec 2014
    Gender
    female
    Posts
    57
    Reputation
    10
    Thanks
    1,402
    My Mood
    Bored
    Quote Originally Posted by iamasmurf View Post
    If you want to change the hotkey, just edit the file yourself.

    You just need something like notepad++, edit the file with that and change this line:
    if (isKeyPressed(VK_E)) then if lastspeed ~= 10 then speedhack_setSpeed(10) lastSpeed=10 end
    Change the E to whatever key you want to and you are good to go.
    They dont know how to change the lua code :3

  7. #37
    OfficialSnowie's Avatar
    Join Date
    Mar 2015
    Gender
    male
    Location
    Australia, Melbourne
    Posts
    16
    Reputation
    10
    Thanks
    21
    Ofc we (I) don't. I know next to nothing of code. One should never expext another to know of anything

  8. #38
    MeJustGaming's Avatar
    Join Date
    May 2015
    Gender
    male
    Posts
    7
    Reputation
    10
    Thanks
    0
    failure enabling speed hack ( Dll injection Failed )failed to excute the dll loader

  9. #39
    aymanx's Avatar
    Join Date
    Nov 2012
    Gender
    male
    Posts
    39
    Reputation
    10
    Thanks
    3
    My Mood
    Amazed

    need help

    so you can help me i need it with key : right click can you help pls
    Last edited by aymanx; 05-15-2015 at 02:04 PM.

  10. #40
    lucaspera1's Avatar
    Join Date
    Jul 2012
    Gender
    male
    Location
    Portugal :
    Posts
    43
    Reputation
    28
    Thanks
    0
    My Mood
    Angelic
    FOR THOSE crying that isn't easy to change.
    i just changed the speed and hotkey like in 15seconds.. just use notepad VK_Z for key (in my case)
    Where's 10 put the speed multiplier u want.

    Press save.

    You're welcome.
    it doesn't matter how long you try if the person doesnt like you u can try for your whole life and still get nothing back.

  11. #41
    Regioner's Avatar
    Join Date
    Dec 2014
    Gender
    female
    Posts
    57
    Reputation
    10
    Thanks
    1,402
    My Mood
    Bored
    Quote Originally Posted by lucaspera1 View Post
    FOR THOSE crying that isn't easy to change.
    i just changed the speed and hotkey like in 15seconds.. just use notepad VK_Z for key (in my case)
    Where's 10 put the speed multiplier u want.

    Press save.

    You're welcome.
    Again. They arent so intelligent -.-'

  12. #42
    lucaspera1's Avatar
    Join Date
    Jul 2012
    Gender
    male
    Location
    Portugal :
    Posts
    43
    Reputation
    28
    Thanks
    0
    My Mood
    Angelic
    neither am i.
    Just Left click..
    it doesn't matter how long you try if the person doesnt like you u can try for your whole life and still get nothing back.

  13. #43
    Aaronsux1's Avatar
    Join Date
    May 2015
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    ~facepalm~ successfully changed speed in 7 seconds hows that not easy O.o

  14. #44
    einaras's Avatar
    Join Date
    Apr 2013
    Gender
    male
    Posts
    642
    Reputation
    22
    Thanks
    1,387
    My Mood
    Fine
    Hello. I have modifyed the script so I have 2 buttons. One sets speed to 3, other to 10, so I can rush dungeons without getting kicked with rogue and rush realms with speed of 10 very fast. I hope this helps for someone

    Code:
    <?xml version="1.0" encoding="utf-8"?>
    <CheatTable CheatEngineTableVersion="18">
      <CheatEntries/>
      <UserdefinedSymbols/>
      <LuaScript>lastSpeed=1;
    
    function checkKeys(timer)
    if (isKeyPressed(VK_G)) then if lastspeed ~= 10 then speedhack_setSpeed(10) lastSpeed=10 end
    
    else if (isKeyPressed(VK_F)) then if lastspeed ~= 3 then speedhack_setSpeed(3) lastSpeed=3 end
    else if lastspeed ~= 1 then speedhack_setSpeed(1) lastSpeed=1 end
    end
    end
    end
    
    t=createTimer(nil)
    timer_setInterval(t, 100)
    timer_onTimer(t, checkKeys)
    timer_setEnabled(t, true)
    </LuaScript>
    </CheatTable>
    If you want other keys instead of F and G, then just change them to whatever you want (F is for 3, G is for 10)
    Last edited by einaras; 05-23-2015 at 03:08 AM.

  15. The Following User Says Thank You to einaras For This Useful Post:

    none123none (07-21-2015)

  16. #45
    jord3323's Avatar
    Join Date
    Feb 2015
    Gender
    male
    Location
    Murica
    Posts
    88
    Reputation
    10
    Thanks
    13
    My Mood
    Lurking
    Does cheat engine already have to be on the system or does this script come with it?

Page 3 of 11 FirstFirst 12345 ... LastLast

Similar Threads

  1. [RELEASE] Invisible With SpeedHack
    By quin123 in forum WarRock - International Hacks
    Replies: 26
    Last Post: 11-02-2006, 06:33 PM
  2. [RELEASE] Working Speedhack
    By quin123 in forum WarRock - International Hacks
    Replies: 18
    Last Post: 11-01-2006, 05:27 PM
  3. DAoC Portal SpeedHack
    By Fubu in forum Hack Requests
    Replies: 1
    Last Post: 08-08-2006, 01:58 PM
  4. Martial Heroes Speedhack
    By Cthulu in forum Hack Requests
    Replies: 2
    Last Post: 06-01-2006, 05:00 PM
  5. how to create speedhacks?
    By LiLLeO in forum General Game Hacking
    Replies: 5
    Last Post: 01-28-2006, 08:52 AM