hi , i want to share my working chat spam tool , i hope someone can upgrade it or share is own cause my UI sucks verry well but its working, bad point is you need to edit au3 file all time you want to change text/cooldown...
for exemple here is the code i used :
#AutoIt3Wrapper_UseX64=n
#include "GWA2.au3"
Local $Character = InputBox("Spam Trade", "Name Here","","",300,150)
Global $Paused
HotKeySet("+s", "TogglePause") ;Shift + s
HotKeySet("+t", "Terminate") ;Shift + t
Opt("TrayAutoPause", 0)
TraySetToolTip("GW trade tool" & " - " & $Character)
Initialize($Character)
While 1
Local $aMessage = 'wtb Ether the noob mom nudes' ;Message here
Local $aChannel = '$' ;Channel here
SendChat($aMessage, $aChannel)
Sleep(50000) ;50 seconds
RndSleep(60000) ;60 seconds
WEnd
Func TogglePause()
$Paused = Not $Paused
While $Paused
Sleep(100)
ToolTip('Script is "Paused"', 0, 0)
WEnd
ToolTip('Script is "Running"', 0, 0)
EndFunc ;==>TogglePause
Func Terminate()
Exit 0
EndFunc ;==>Terminate
ty have a nice day







