SHOW:
|
|
- or go back to the newest paste.
| 1 | - | results=AOBScan("40 33 33 44 43 00 00 00 00 00 00 00 00 00 00 00 00 ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? 80 3F")
|
| 1 | + | |
| 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) |