Advertisement
Guest User

Untitled

a guest
Aug 24th, 2019
186
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.37 KB | None | 0 0
  1. AoB = AOBScan("01 00 04 02 1F 23 7D")
  2. if (AoB) then
  3. print("GM LOOT 80% OK")
  4. for i=0,AoB.getCount()-1 do
  5. writeBytes(tonumber(AoB[i],16)+5, 0x11)
  6. end
  7. AoB.Destroy()
  8. AoB = nil
  9. else
  10. print("GM LOOT 80% FAILED")
  11. end
  12.  
  13. AoB = AOBScan("22 ?? ?? ?? ?? 5A 58 7D ?? ?? ?? ?? 02 7B ?? ?? ?? ?? 02 7B")
  14. if (AoB) then
  15. print("Infinite Energy OK")
  16. for x=0, AoB.getCount()-1 do
  17. writeBytes(tonumber(AoB[x],16)+3, 0x70, 0x41)
  18. end
  19. else
  20. print("Infinite Energy FAILED")
  21. end
  22.  
  23. AoB = AOBScan("72 69 67 68 74 20 61 74 74 61 63 6B")
  24. if (AoB) then
  25. print("Disable Zombie Attack 1 OK")
  26. for x=0, AoB.getCount()-1 do
  27. writeBytes(tonumber(AoB[x],16)+0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00)
  28. end
  29. else
  30. print("Disable Zombie Attack 1 FAILED")
  31. end
  32.  
  33. AoB = AOBScan("80 ?? ?? ?? ?? 02 1F ?? 7D ?? ?? ?? ?? 38 ?? ?? ?? ?? 02 7B ?? ?? ?? ?? 7B ?? ?? ?? ?? 17")
  34. if (AoB) then
  35. print("Instant Open Menu OK")
  36. for x=0, AoB.getCount()-1 do
  37. writeBytes(tonumber(AoB[x],16)+7, 0x00)
  38. end
  39. else
  40. print("Instant Open Menu FAILED")
  41. end
  42.  
  43. AoB = AOBScan("1F ?? ?? ?? 06 00 04 02 ?? ?? ?? ?? 04 7B")
  44. if (AoB) then
  45. print("Superboy OK")
  46. for x=0, AoB.getCount()-1 do
  47. writeBytes(tonumber(AoB[x],16)+1, 0x00)
  48. end
  49. else
  50. print("Superboy FAILED")
  51. end
  52.  
  53. AoB = AOBScan("64 6F 75 62 6C 65 20 61 74 74 61 63 6B")
  54. if (AoB) then
  55. print("Disable Zombie Attack 2 OK")
  56. for x=0, AoB.getCount()-1 do
  57. writeBytes(tonumber(AoB[x],16)+0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00)
  58. end
  59. else
  60. print("Disable Zombie Attack 2 FAILED")
  61. end
  62.  
  63. AoB = AOBScan("6C 65 66 74 20 61 74 74 61 63 6B")
  64. if (AoB) then
  65. print("Disable Zombie Attack 3 OK")
  66. for x=0, AoB.getCount()-1 do
  67. writeBytes(tonumber(AoB[x],16)+0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00)
  68. end
  69. else
  70. print("Disable Zombie Attack 3 FAILED")
  71. end
  72.  
  73. AoB = AOBScan("73 74 61 62 20 61 74 74 61 63 6B")
  74. if (AoB) then
  75. print("Disable Zombie Attack 4 OK")
  76. for x=0, AoB.getCount()-1 do
  77. writeBytes(tonumber(AoB[x],16)+0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00)
  78. end
  79. else
  80. print("Disable Zombie Attack 4 FAILED")
  81. end
  82.  
  83. AoB = AOBScan("89 87 CC 00 00 00 D9 05")
  84.  
  85. if (AoB and AoB.getCount()==2)
  86. then
  87.  
  88. print("Ghost Ammo 1 Ok")
  89.  
  90. writeBytes(tonumber(AoB[0],16)+2, 0x80)
  91.  
  92. writeBytes(tonumber(AoB[1],16)+2, 0x80)
  93.  
  94. else
  95.  
  96. Print("Ghost Ammo 1 OFF")
  97.  
  98. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement