i could make one for you. what message do you want to write and how fast should it write?
ah.. true. only works on 64 bit systems. sorry ^^
but if you got a working 64 bit system, go download autoit v3, open a new script and copy paste this
code:
Code:
HotKeySet("{NUMPAD1}", "start") ;to start application
HotKeySet("{NUMPAD2}", "pause") ;to pause it
HotKeySet("{NUMPAD3}", "end") ;to exit bot
Global $spamactive = False
Global $text = "Ghay" ; write the message you want to write within " "
Global $delay = 5000 ; set the delay you need for the textmessage
Global $help
Global $help2
Global $enterdelay = 600 ; dont lower this. otherwise some messages wont be sent
Func start()
$spamactive = True
SendKeepActive("Rappelz") ;Rappelz always in foreground
While $spamactive == True
$help = Random($delay - 250, $delay + 250, 1)
$help2 = Random($enterdelay - 100, $enterdelay + 150, 1)
Send("{ENTER}")
Sleep($help2)
Send($text)
Sleep($help2)
Send("{ENTER}")
Sleep($help)
WEnd
EndFunc
Func pause()
Sleep(50)
EndFunc
Func end()
Exit
EndFunc
While 1
Sleep(50)
WEnd