Skip to content
MPGHThe Dark Arts
/
RegisterLog in
Forum
Community
What's NewLatest posts across the boardTrendingHottest threads right nowSubscribedThreads you follow
Discussion
GeneralIntroductionsEntertainmentDebate FortFlaming & Rage
Board
News & AnnouncementsMPGH TimesSuggestions & HelpGiveaways
More Sections
Art & Graphic DesignProgrammingHackingCryptocurrency
Hacks & Cheats
Games
ValorantCS2 / CS:GOCall of Duty / WarzoneFortniteApex LegendsEscape From Tarkov
+14 moreLeague of LegendsGTA VMinecraftRustROTMGBattlefieldTroveBattleOnCombat ArmsCrossFireBlackshotRuneScapeDayZDead by Daylight
Resources
Game Hacking TutorialsReverse EngineeringGeneral Game HackingAnti-CheatConsole Game Hacking
Tools
Game Hacking ToolsTrainers & CheatsHack/Release NewsNew
Submit a release →Share your cheat, tool, or config with the community.
AINEW
AI Tools
General & DiscussionPrompt EngineeringLLM JailbreaksHotAI Agents & AutomationLocal / Open Models
AI × Gaming
AI Aimbots & VisionML Anti-CheatGame Bots & Automation
Create
AI Coding / Vibe CodingAI Art & MediaAI Voice & TTS
The AI frontier →Where game hacking meets modern machine learning. Jump in.
Marketplace
Buy & Sell
SellingBuyingTradingUser Services
Trust & Safety
Middleman LoungeMarketplace TalkVouch Copy Profiles
Money
Cryptocurrency TalkCurrency ExchangeWork & Job Offers
Start selling →List accounts, services, and goods. Use the middleman to trade safe.
MPGH The Dark Arts

A community for offensive security research, reverse engineering, and AI.

Community

ForumMarketplaceSearch

Account

RegisterLog in

Legal

Privacy PolicyForum RulesHelp & FAQ
© 2026 MPGH · All rights reserved.Built by the community, for the community. For educational purposes onlyContent is shared for security research and education — we don't condone illegal use. You're responsible for complying with applicable laws. Use at your own risk.
Home › Forum › MultiPlayer Game Hacks & Cheats › Other First Person Shooter Hacks › Planetside 2 Hacks & Cheats › Norecoil/Nospread Source

Norecoil/Nospread Source

Posts 1–15 of 17 · Page 1 of 2
mChaw243
mChaw243
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
#1 · edited 12y ago · 12y ago
LO
Lovroman
Thanks for sharing! I added CODE tags because it's more readable when it's in CODE tags..
#2 · 12y ago
C5
c50wy
I would like to know how to use.
Cheat engine to use?
I want to use it, please. Help me
#3 · 12y ago
rawronu
rawronu
You need to have a better knowledge of coding rather than Cheat Engine my friend .
#4 · 12y ago
mChaw243
mChaw243
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
#5 · 12y ago
UN
unbeknownst2002
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.
#6 · 12y ago
rawronu
rawronu
I'm stupid this is for cheat engine
#7 · edited 12y ago · 12y ago
DA
darkcreature808
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.
#8 · 12y ago
rawronu
rawronu
The code is detected already, I think the op put the source so that coders can make it usable again.
#9 · 12y ago
NA
nara321
video bro? or upload the ct
#10 · 12y ago
LO
Lovroman
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)
#11 · 12y ago
shadowghost2
shadowghost2
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?
#12 · 12y ago
DA
darkcreature808
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 :/
#13 · 12y ago
EV
EVD_Gaming
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
#14 · 12y ago
EV
EVD_Gaming
It shows an error
#15 · 12y ago
Posts 1–15 of 17 · Page 1 of 2

Post a Reply

Similar Threads

  • norecoil nospread?By falzarex in C++/C Programming
    9Last post 16y ago
  • interesting for norecoil/nospreadBy DOOP in CrossFire Hack Coding / Programming / Source Code
    5Last post 15y ago
  • CA NA Weapon Spawner/Aimbot/NoRecoil/NoSpread/Glitcher/Anti-KickBy typhoonboi in Combat Arms Hack Requests
    1Last post 14y ago
  • Norecoil/nospreadBy JoshJay in CounterStrike (CS) 1.6 Hacks / Counter Strike: Source (CSS) Hacks
    5Last post 14y ago
  • Need PlayerPointer,ServerPointer,NoRecoil,NoSpread Addies and OffsetBy gbjhet23 in WarRock Philippines Hacks
    3Last post 15y ago

Tags for this Thread

None