Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function useResultsOn()
- if (results~=nil) then
- count=stringlist_getCount(results)
- if (count) then
- for i = 0, count-1 do
- writeBytes(results[i], 0x40, 0x00, 0x00, 0x00, 0x00)
- end
- end
- end
- end
- function useResultsOff()
- if (results~=nil) then
- count=stringlist_getCount(results)
- if (count) then
- for i = 0, count-1 do
- writeBytes(results[i], 0x40, 0x33, 0x33, 0x44, 0x43)
- end
- end
- end
- end
- createHotkey(useResultsOff,0x39)
- createHotkey(useResultsOn,0x30)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement