Advertisement
Guest User

Untitled

a guest
Mar 20th, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. results=AOBScan("40 33 33 44 43 00 00 00 00 00 00 00 00 00 00 00 00 ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? 80 3F")
  2.  
  3. function useResultsOn()
  4. if (results~=nil) then
  5. count=stringlist_getCount(results)
  6. if (count) then
  7. for i = 0, count-1 do
  8.  
  9. writeBytes(results[i], 0x40, 0x00, 0x00, 0x00, 0x00)
  10. end
  11. end
  12. end
  13. end
  14.  
  15. function useResultsOff()
  16. if (results~=nil) then
  17. count=stringlist_getCount(results)
  18. if (count) then
  19. for i = 0, count-1 do
  20.  
  21. writeBytes(results[i], 0x40, 0x33, 0x33, 0x44, 0x43)
  22. end
  23. end
  24. end
  25. end
  26.  
  27. createHotkey(useResultsOff,0x39)
  28. createHotkey(useResultsOn,0x30)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement