Thread: SpeedHack

Results 1 to 2 of 2
  1. #1
    DaneCoder's Avatar
    Join Date
    May 2014
    Gender
    male
    Location
    parking lot
    Posts
    465
    Reputation
    10
    Thanks
    777
    My Mood
    Doubtful

    SpeedHack

    I coded my own speedhack but I'll do not give my addy to avoid copy paste and the problem is when I respawn when i press speed hack numpad like 2 or 3 to activated the hack and when I press "W' it walks backward when I press "S" it walks forward can someone help me?

    Code:
    void SpeedNormal()
    {
    if(GetAsyncKeyState(VK_NUMPAD0) &1<< 0xF)
    {
    DWORD dwPlayerPtr = *(DWORD*)ADR_PLAYERPOINTER;
    if(dwPlayerPtr != 0)
    {
    *(float*)(dwPlayerPtr+ADR_SPEED) = 100.0f; 
    }
    }
    }
    
    void SpeedX2()
    {
    if(GetAsyncKeyState(VK_NUMPAD1) &1<< 0xF)
    {
    DWORD dwPlayerPtr = *(DWORD*)ADR_PLAYERPOINTER;
    if(dwPlayerPtr != 0)
    {
    *(float*) (dwPlayerPtr+ADR_SPEED) = 200.0f;
    }
    }
    }
    
    void SpeedX3()
    {
    if(GetAsyncKeyState(VK_NUMPAD2) &1<< 0xF)
    {
    DWORD dwPlayerPtr = *(DWORD*)ADR_PLAYERPOINTER;
    if(dwPlayerPtr != 0)
    {
    *(float*)(dwPlayerPtr+ADR_SPEED) = 300.0f;
    }
    }
    }
    FUCK YOU

  2. The Following User Says Thank You to DaneCoder For This Useful Post:

    Science1sT (07-21-2014)

  3. #2
    TheG36's Avatar
    Join Date
    May 2014
    Gender
    male
    Location
    133.7.0.0
    Posts
    83
    Reputation
    10
    Thanks
    400
    My Mood
    Sleepy
    If you're using the offset addy just add "-" before the value ie: -300.00f

  4. The Following User Says Thank You to TheG36 For This Useful Post:

    DaneCoder (06-06-2014)

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