LoathesMe

working CE for broken arrow

Nov 21st, 2024
271
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.70 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <CheatTable>
  3. <CheatEntries>
  4. <CheatEntry>
  5. <ID>2</ID>
  6. <Description>"Lock Points"</Description>
  7. <VariableType>Auto Assembler Script</VariableType>
  8. <AssemblerScript>[ENABLE]
  9. //code from here to '[DISABLE]' will be used to enable the cheat
  10. alloc(newmem,2048,"GameAssembly.dll"+CE5AB8)
  11. label(returnhere)
  12. label(originalcode)
  13. label(exit)
  14.  
  15. newmem: //this is allocated memory, you have read,write,execute access
  16. //place your code here
  17.  
  18. originalcode:
  19. //mov [rcx+r8+20],al
  20.  
  21. exit:
  22. jmp returnhere
  23.  
  24. "GameAssembly.dll"+CE5AB8:
  25. jmp newmem
  26. returnhere:
  27.  
  28.  
  29.  
  30.  
  31. [DISABLE]
  32. //code from here till the end of the code will be used to disable the cheat
  33. dealloc(newmem)
  34. "GameAssembly.dll"+CE5AB8:
  35. db 42 88 44 01 20
  36. //mov [rcx+r8+20],al
  37. </AssemblerScript>
  38. </CheatEntry>
  39. <CheatEntry>
  40. <ID>1</ID>
  41. <Description>"Umlimited Ammo"</Description>
  42. <VariableType>Auto Assembler Script</VariableType>
  43. <AssemblerScript>[ENABLE]
  44. //code from here to '[DISABLE]' will be used to enable the cheat
  45. alloc(newmem,2048,"GameAssembly.dll"+C60DF0)
  46. label(returnhere)
  47. label(originalcode)
  48. label(exit)
  49.  
  50. newmem: //this is allocated memory, you have read,write,execute access
  51. //place your code here
  52. mov edx, #0
  53.  
  54. originalcode:
  55. sub [rcx+1C],edx
  56. jns "GameAssembly.dll"+C60DFC
  57.  
  58. exit:
  59. jmp returnhere
  60.  
  61. "GameAssembly.dll"+C60DF0:
  62. jmp newmem
  63. returnhere:
  64.  
  65.  
  66.  
  67.  
  68. [DISABLE]
  69. //code from here till the end of the code will be used to disable the cheat
  70. dealloc(newmem)
  71. "GameAssembly.dll"+C60DF0:
  72. db 29 51 1C 79 07
  73. //sub [rcx+1C],edx
  74. //jns GameAssembly.dll+C621EC
  75. </AssemblerScript>
  76. </CheatEntry>
  77. </CheatEntries>
  78. </CheatTable>
  79.  
Advertisement
Add Comment
Please, Sign In to add comment