Advertisement
aceticsoft

[Patch 1.7.1] Hotfix #4 Offsets - No Collision + more

Feb 19th, 2012
207
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.63 KB | None | 0 0
  1. //Offsets and Example Code provided by AceticSoft.com
  2. //Author: JayTheDev
  3. //Patch 1,7,1 Hotfix 4
  4. var NoCollision =  0x0F1C931;
  5. NoCollision = ((uint)_baseAddress(Rift) + NoCollision);//Add base address
  6.  
  7. If (Mem.Read2Bytes(NoCollision) == 20619)//If no coll is equal to 20619(normal) then nop it (0x90)
  8. {
  9.      Mem.Write2Bytes(NoCollision, 0x90);//Hack activated :P
  10. }
  11. else if (Mem.Read2Bytes(NoCollision) == 144)//If equal to 144(0x90) then put back to normal...
  12. {
  13.      Mem.Write2Bytes(NoCollision, 20619);//Hack deactivated
  14. }
  15. else
  16. {
  17.     MessageBox.Show("Error version out of date... please check AceticSoft.com for more info...");
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement