Page 1 of 2 12 LastLast
Results 1 to 15 of 17
  1. #1
    mChaw243's Avatar
    Join Date
    Feb 2014
    Gender
    female
    Location
    wopsticks
    Posts
    246
    Reputation
    10
    Thanks
    1,982

    Norecoil/Nospread Source

    Norecoil/spread - a poor man version because you have to disable it every time you die and re-enable after spawn. I guess some bits get squished somewhere.

    I don't think that there is anything new here coding wise to learn for those who have contributed here with their remarkable reversing skills but this might come in handy to those who have no idea how to compile with notepad.exe.

    Heres The One For Norecoil/Nospread
    ==================================================
    Code:
     [ENABLE]
    //code from here to '[DISABLE]' will be used to enable the cheat
    alloc(newmem24,2048) //2kb should be enough
    label(returnhere24)
    label(originalcode24)
    label(exit24)
    
    newmem24: //this is allocated memory, you have read,write,execute access
    //place your code here
    
    originalcode24:
    jmp PlanetSide2.exe+BC7B82
    push esi
    mov esi,[ebx+04]
    
    exit24:
    jmp returnhere24
    
    "PlanetSide2.exe"+BC7B46:
    jmp newmem24
    nop
    returnhere24:
    
    alloc(newmem17,2048) //2kb should be enough
    label(returnhere17)
    label(originalcode17)
    label(exit17)
    
    newmem17: //this is allocated memory, you have read,write,execute access
    //place your code here
    
    originalcode17:
    mov [esi+000000D4],0
    
    exit17:
    jmp returnhere17
    
    "PlanetSide2.exe"+BC658A:
    jmp newmem17
    nop
    returnhere17:
    
    alloc(newmem11,2048) //2kb should be enough
    label(returnhere11)
    label(originalcode11)
    label(exit11)
    
    newmem11: //this is allocated memory, you have read,write,execute access
    //place your code here
    
    originalcode11:
    movss xmm3,[esi+000000D4]
    xorps xmm3, xmm3
    
    exit11:
    jmp returnhere11
    
    "PlanetSide2.exe"+BC6533:
    jmp newmem11
    nop
    nop
    nop
    returnhere11:
    
    alloc(newmem6,2048) //2kb should be enough
    label(returnhere6)
    label(originalcode6)
    label(exit6)
    
    newmem6: //this is allocated memory, you have read,write,execute access
    //place your code here
    xorps xmm0, xmm0
    
    originalcode6:
    movss [ecx+04],xmm0
    
    exit6:
    jmp returnhere6
    
    "PlanetSide2.exe"+16C7218:
    jmp newmem6
    returnhere6:
    
    alloc(newmem2,2048) //2kb should be enough
    label(returnhere2)
    label(originalcode2)
    label(exit2)
    
    newmem2: //this is allocated memory, you have read,write,execute access
    //place your code here
    xorps xmm1, xmm1
    
    originalcode2:
    ucomiss xmm1,[esi+54]
    lahf 
    
    exit2:
    jmp returnhere2
    
    "PlanetSide2.exe"+1679954:
    jmp newmem2
    returnhere2:
    
    alloc(newmem,2048) //2kb should be enough
    label(returnhere)
    label(originalcode)
    label(exit)
    
    newmem: //this is allocated memory, you have read,write,execute access
    //place your code here
    xorps xmm0, xmm0
    
    originalcode:
    ucomiss xmm0,[esi+08]
    lahf 
    
    exit:
    jmp returnhere
    
    "PlanetSide2.exe"+C71385:
    jmp newmem
    returnhere:
    Code:
     
    [DISABLE]
    //code from here till the end of the code will be used to disable the cheat
    dealloc(newmem24)
    "PlanetSide2.exe"+BC7B46:
    jle PlanetSide2.exe+BC7B82
    push esi
    mov esi,[ebx+04]
    //Alt: db 7E 3A 56 8B 73 04
    dealloc(newmem17)
    "PlanetSide2.exe"+BC658A:
    mov [esi+000000D4],edx
    //Alt: db 89 96 D4 00 00 00
    dealloc(newmem11)
    "PlanetSide2.exe"+BC6533:
    movss xmm3,[esi+000000D4]
    //Alt: db F3 0F 10 9E D4 00 00 00
    dealloc(newmem6)
    "PlanetSide2.exe"+16C7218:
    movss [ecx+04],xmm0
    //Alt: db F3 0F 11 41 04
    dealloc(newmem2)
    "PlanetSide2.exe"+1679954:
    ucomiss xmm1,[esi+54]
    lahf 
    //Alt: db 0F 2E 4E 54 9F
    dealloc(newmem)
    "PlanetSide2.exe"+C71385:
    ucomiss xmm0,[esi+08]
    lahf 
    //Alt: db 0F 2E 46 08 9F
    =========================================
    And the speedhack. Haven't tested it after spawning. Change the ESP to whatever floating point value (in hex) - currently its set to 15. If you set it too high the physics engine will go nuts and kill/crash you.

    Code:
     [ENABLE]
    //Speedhack
    //code from here to '[DISABLE]' will be used to enable the cheat
    alloc(newmem,2048) //2kb should be enough
    label(returnhere)
    label(originalcode)
    label(exit)
    
    newmem: //this is allocated memory, you have read,write,execute access
    //place your code here
    
    //Push xmm0
    sub     esp, 16
    movdqu  dqword [esp], xmm0
    
    mov [esp], 41200000
    
    //Pop xmm0
    movdqu  xmm0, dqword [esp]
    add     esp, 16
    
    originalcode:
    movss [esi+000000C8],xmm0
    
    exit:
    jmp returnhere
    
    "PlanetSide2.exe"+BC8D86:
    jmp newmem
    nop
    nop
    nop
    returnhere:

    Code:
    [DISABLE]
    //code from here till the end of the code will be used to disable the cheat
    dealloc(newmem)
    "PlanetSide2.exe"+BC8D86:
    movss [esi+000000C8],xmm0
    //Alt: db F3 0F 11 86 C8 00 00 00
    The base address for recoil/movement speed is at PlanetSide2.exe+2A661F0 and some other stuff (I think I saw coordinates but unsure and too stupid to reverse it all).

    Feel free to make a better sig. This one currently points to the instructions dealing with recoil from where you can obtain the base.

    Code:
    \x57\x51\xD9\x1C\x24\x8D\x45\xEC\xF3\x0F\x5C\xCA\x F3\x0F\x5C\xC3\x50\xF3\x0F\x11\x4D\xEC\xF3\x0F\x11 \x45\xF0\xE8\x00\x00\x00\x00\x8B\x4D\xF4\x8B\x55\x F8\x89\x8E\x00\x00\x00\x00\x89\x96\x00\x00\x00\x00
    Last edited by Lovroman; 07-05-2014 at 02:02 AM.
    honestly just forget it.

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

    MattiAceGaming (07-28-2014)

  3. #2
    Lovroman's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Posts
    9,417
    Reputation
    611
    Thanks
    11,990
    My Mood
    Cheerful
    Thanks for sharing! I added CODE tags because it's more readable when it's in CODE tags..

  4. #3
    c50wy's Avatar
    Join Date
    Jun 2014
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    I would like to know how to use.
    Cheat engine to use?
    I want to use it, please. Help me

  5. #4
    rawronu's Avatar
    Join Date
    Jul 2011
    Gender
    male
    Location
    The Bay.
    Posts
    296
    Reputation
    10
    Thanks
    1,205
    My Mood
    Bored
    You need to have a better knowledge of coding rather than Cheat Engine my friend .

  6. The Following User Says Thank You to rawronu For This Useful Post:

    stoneminer02 (07-31-2014)

  7. #5
    mChaw243's Avatar
    Join Date
    Feb 2014
    Gender
    female
    Location
    wopsticks
    Posts
    246
    Reputation
    10
    Thanks
    1,982
    xD i only made this because i noticed this part of the forum was dead needed some life so then after 2 hours i made this xD took me longer than my older private hacks
    honestly just forget it.

  8. #6
    unbeknownst2002's Avatar
    Join Date
    May 2013
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    0
    Has Sony really done that great of a job keeping people from hacking? I can't find any free or paid. I'm very interested in knowing some sources if someone would send me a message.

  9. #7
    rawronu's Avatar
    Join Date
    Jul 2011
    Gender
    male
    Location
    The Bay.
    Posts
    296
    Reputation
    10
    Thanks
    1,205
    My Mood
    Bored
    I'm stupid this is for cheat engine
    Last edited by rawronu; 07-05-2014 at 11:25 PM.

  10. #8
    darkcreature808's Avatar
    Join Date
    Mar 2012
    Gender
    male
    Posts
    11
    Reputation
    10
    Thanks
    111
    My Mood
    Sick
    Sorry but would anyone be willing to convert this into a simple .exe?

    I know these "pls help how 2 code" posts are really annoying but I think a lot of people here are REALLY desperate for ANY Planetside 2 hacks, myself included.

    Thanks/Sorry if this is annoying in advance.

  11. #9
    rawronu's Avatar
    Join Date
    Jul 2011
    Gender
    male
    Location
    The Bay.
    Posts
    296
    Reputation
    10
    Thanks
    1,205
    My Mood
    Bored
    The code is detected already, I think the op put the source so that coders can make it usable again.

  12. #10
    nara321's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    0
    video bro? or upload the ct

  13. #11
    Lovroman's Avatar
    Join Date
    Sep 2012
    Gender
    male
    Posts
    9,417
    Reputation
    611
    Thanks
    11,990
    My Mood
    Cheerful
    Quote Originally Posted by nara321 View Post
    video bro? or upload the ct
    Little how-to:
    Press CTRL + ALT + A in CE, paste one of the scripts and add it to your table(File->Assign to current cheat table)

  14. The Following User Says Thank You to Lovroman For This Useful Post:

    darkcreature808 (07-13-2014)

  15. #12
    shadowghost2's Avatar
    Join Date
    Apr 2014
    Gender
    male
    Posts
    34
    Reputation
    10
    Thanks
    4
    My Mood
    Cheerful
    Is this one of those hacks that you use, and it works, but you get banned after logging out or after a certain time period?

  16. #13
    darkcreature808's Avatar
    Join Date
    Mar 2012
    Gender
    male
    Posts
    11
    Reputation
    10
    Thanks
    111
    My Mood
    Sick
    When I do this I receive an error message: "Error in line 12 (jmp Planetside2.exe+BC7B82): This instruction can't be compiled"


    Any clue as to what I've done wrong? I did exactly as you said in your post :/

  17. #14
    EVD_Gaming's Avatar
    Join Date
    Jun 2014
    Gender
    male
    Posts
    9
    Reputation
    10
    Thanks
    0
    My Mood
    Mellow
    Quote Originally Posted by darkcreature808 View Post
    When I do this I receive an error message: "Error in line 12 (jmp Planetside2.exe+BC7B82): This instruction can't be compiled"


    Any clue as to what I've done wrong? I did exactly as you said in your post :/
    Same Thing Happening To Me

  18. #15
    EVD_Gaming's Avatar
    Join Date
    Jun 2014
    Gender
    male
    Posts
    9
    Reputation
    10
    Thanks
    0
    My Mood
    Mellow
    It shows an error

Page 1 of 2 12 LastLast

Similar Threads

  1. [Request] Norecoil/nospread
    By JoshJay in forum CounterStrike (CS) 1.6 Hacks / Counter Strike: Source (CSS) Hacks
    Replies: 5
    Last Post: 08-19-2012, 07:58 PM
  2. CA NA Weapon Spawner/Aimbot/NoRecoil/NoSpread/Glitcher/Anti-Kick
    By typhoonboi in forum Combat Arms Hack Requests
    Replies: 1
    Last Post: 07-23-2012, 11:36 PM
  3. [Request] Need PlayerPointer,ServerPointer,NoRecoil,NoSpread Addies and Offset
    By gbjhet23 in forum WarRock Philippines Hacks
    Replies: 3
    Last Post: 08-05-2011, 03:55 AM
  4. [Info] interesting for norecoil/nospread
    By DOOP in forum CrossFire Hack Coding / Programming / Source Code
    Replies: 5
    Last Post: 06-22-2011, 04:56 AM
  5. norecoil nospread?
    By falzarex in forum C++/C Programming
    Replies: 9
    Last Post: 01-07-2010, 06:56 PM