Advertisement
Death_Glow

fly

Apr 15th, 2017
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function useResultsOn()
  2. if (results~=nil) then
  3. count=stringlist_getCount(results)
  4. if (count) then
  5. for i = 0, count-1 do
  6.  
  7. writeBytes(results[i], 0x40, 0x00, 0x00, 0x00, 0x00)
  8. end
  9. end
  10. end
  11. end
  12.  
  13. function useResultsOff()
  14. if (results~=nil) then
  15. count=stringlist_getCount(results)
  16. if (count) then
  17. for i = 0, count-1 do
  18.  
  19. writeBytes(results[i], 0x40, 0x33, 0x33, 0x44, 0x43)
  20. end
  21. end
  22. end
  23. end
  24.  
  25. createHotkey(useResultsOff,0x39)
  26. createHotkey(useResultsOn,0x30)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement