Quote:
Originally Posted by Mad head Trip
i wasnt trying to sound rude im sorry, i was generally asking if it was easy or a pain in the ass....i should have worded it differently. once again it was in no means meant to sound rude or ungreatful. i appreciate everything everyone does
|
Since i might also have overreacted here you go i put together a tool which should do the job -> to get noticed about pm's i suggest you use toolbox . Toolbox has an option to let guildwars flash in the task menu.
As an introduction:
1. Choose your Character
2. Put your messages in - If empty this message will be skipt
Inputbox 1 & 2 are for Tradingchat
Inputbox 3 is for All-Chat so f.e. your Guild Advertisment
I made it so you can increase the size of the GUI so you have enought room for your messages
To adjust the timing the messages will be send:
Code:
While True
If $bRunning = True Then
$Message1 = GUICtrlRead($Message_1)
If $Message_1 <> "" Then
Sleep(100)
SendChat($Message1, "$")
RndSleep(50000) ;+/- 50 seconds
EndIf
$Message2 = GUICtrlRead($Message_2)
If $Message_2 <> "" Then
Sleep(100)
SendChat($Message2, "$")
RndSleep(50000) ;+/- 50 seconds
EndIf
$Message3 = GUICtrlRead($Message_3)
If $Message_3 <> "" Then
Sleep(100)
SendChat($Message3, "!")
RndSleep(50000) ; +/- 50 seconds
EndIf
Else
Sleep(1000)
EndIf
If $brunning = false Then
GUICtrlSetData($bStart, "Start")
GUICtrlSetState($bStart, $GUI_ENABLE)
EndIf
WEnd
Edit the RndSleeps in the shown function 50000 = 50 Seconds