_('CommandUseHeroSkill:')Quote:
in my gwa2 version is commentet out.
;~ _('CommandUseHeroSkill:')
;~ _('mov ecx,dword[eax+4]')
;~ _('mov edx,dword[eax+c]')
;~ _('mov eax,dword[eax+8]')
;~ _('push eax')
;~ _('call UseHeroSkillFunction')
;~ _('ljmp CommandReturn')
and it doesent work if i enable this
Quote:
i have a question.
I don't know how to create a bot.
But can i for example add a code from a scribt include in another script?
for example:
Bot 1 is missing a storage function
something like "when 250 of item xyz put to storage"
Bot 2 has that feature
but if i have a script which has that function, can i just search for this in the script, copy it and put it in bot 1?
do i have to put it in a certain line or can i put it in anywhere i want?
Quote:
Hello, guys, does anyone have a working cof bot? thx
thnk i understood what you mean.Quote:
in generall this is possible but if now bot 1 & 2 also have simular func like f.e. GetCharakterName() or something like that you will get a dublicated function error
Thats why I use a folder with all usefull functions and ID's for skills/items etc. and i just include them into every script to make sure i know that there are no dublications
I am not that good at explaining but i hope you get what i want to say.
Also you can see at nearly every bot published here the #inlcude right at the top of the main script which is used to include the GWA2 (so basicly a bunch of informations and functions)
Quote:
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:
Edit the RndSleeps in the shown function 50000 = 50 SecondsCode: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