GW Working Bots 2020

01/15/2021 16:38 Restia Ashdoll#1396
Quote:
Originally Posted by kareklakis View Post
anyone has a repaired UseHeroSkill function?
it shouldn't be broken
01/15/2021 16:41 kareklakis#1397
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
01/15/2021 16:56 Restia Ashdoll#1398
Quote:
Originally Posted by kareklakis View Post
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
_('CommandUseHeroSkill:')
_('mov ecx,dword[eax+8]')
_('push ecx')
_('mov ecx,dword[eax+c]')
_('push ecx')
_('mov ecx,dword[eax+4]')
_('push ecx')
_('call UseHeroSkillFunction')
_('add esp,C')
_('ljmp CommandReturn')
01/15/2021 17:24 AndaraX42#1399
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?
01/15/2021 17:43 Restia Ashdoll#1400
Quote:
Originally Posted by AndaraX42 View Post
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?

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)
01/16/2021 15:41 FallenGod^^59#1401
Hello, it's me again.
Does anyone know what is
"GUI_UpdateStatus($ANAME & " " & GETMAXAGENTS())";
is?
I've got an error that asks me to declare this func but ... wtf it is?

thanks

M
01/16/2021 19:54 Diapersquad#1402
hey guys is there a vanguard farming bot that works? cant find it :)
01/16/2021 23:16 bob31450#1403
hi everyone, I have a problem I managed to make mantid farm of 2019 work, it works very well in one detail, it picks up everything except the celestial weapons ^^
does anyone have an idea?
01/17/2021 06:36 TheKraZe#1404
I'll pay if someone can get LDoA 2-10 10-20 working correctly add me on discord KrazeGod#3059
01/17/2021 08:56 alex197230#1405
Hello, guys, does anyone have a working cof bot? thx
01/17/2021 10:47 bob31450#1406
Quote:
Originally Posted by alex197230 View Post
Hello, guys, does anyone have a working cof bot? thx

Hello for the Cof bot, you just have to go to page 79 to get the updated headers, if you already had the bot go to GW_CoFApi where the old headers are and copy the new one, the bot should work, if you did not have it, it can be found on page 15.
01/17/2021 12:01 AndaraX42#1407
Quote:
Originally Posted by Restia Ashdoll View Post
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)
thnk i understood what you mean.

I actually just wanted to add a function - not the whole script. :)
01/17/2021 12:28 Restia Ashdoll#1408
Quote:
Originally Posted by AndaraX42 View Post
thnk i understood what you mean.

I actually just wanted to add a function - not the whole script. :)
so just copy the func over or get a seperate script with only that func andd other funcs you might wanna use and use the #include
01/17/2021 21:50 hard4life#1409
Quote:
Originally Posted by Restia Ashdoll View Post
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

Thank you Sir, this project looks very nice to me but somehow it's not working, like it reads my character send messenge one time and thats all :( regards and thx for taking your time in advance
01/17/2021 23:03 lemoutondu10#1410
Hi i was looking for the function to get gold from storage to update TOC bot.
Does anyone have that? Can't find it on any bot