yes, gimme a few mins I'll write a quick example and edit this post.
edit:
Code:
$key = 0
while 1
Controlsend($PID,"","","u")
Controlsend($PID,"","",$key)
controlsend($PID,"","","{SPACE}")
_PCheck()
if $key = "=" then
$key = -1
sleep(500)
$proces_ID = ProcessExists($Input)
$handle = _MemoryOpen($proces_ID)
$map = _MemoryRead(0x00C9EE68, $handle)
$map = _MemoryRead($map + 0x04, $handle)
$map = _MemoryRead($map + 0xAC, $handle)
if $map = 13 Then
ExitLoop
EndIf
if $key = "-" then
$key = "="
continueloop(1)
endif
$key = $key+1
if $key = 9 Then
$key = "-"
EndIf
so basically what I did is I added a new var $key, by default its set to 1, so the bot will send '1' to the game window, each loop it increments it by 1 so each loop it will send another key. once it reaches 10, it will set the var to 0 so it sends '0'. this is just a quick fix, for those who dont have skillhack, I'd need a bit more time to figure out how to send - and = (I mean I already have the general idea, but it'd require a bit more time xd)
I took the code from the 91-130 dungeon I believe, look at whats changed and add it yourself :P
edif#2: I edited the code again and now it SHOULD spam all keys from 1 to = (including 0, - and =) I havent checked it though, coz I dont have a char in to play :p