Register for your free account! | Forgot your password?

You last visited: Today at 00:18

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



GW Working Bots 2020

Discussion on GW Working Bots 2020 within the GW Exploits, Hacks, Bots, Tools & Macros forum part of the Guild Wars category.

Reply
 
Old 01/15/2021, 16:38   #1396
 
Restia Ashdoll's Avatar
 
elite*gold: 0
Join Date: Apr 2016
Posts: 305
Received Thanks: 163
Quote:
Originally Posted by kareklakis View Post
anyone has a repaired UseHeroSkill function?
it shouldn't be broken
Restia Ashdoll is offline  
Old 01/15/2021, 16:41   #1397
 
elite*gold: 0
Join Date: Dec 2010
Posts: 2
Received Thanks: 0
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
kareklakis is offline  
Old 01/15/2021, 16:56   #1398
 
Restia Ashdoll's Avatar
 
elite*gold: 0
Join Date: Apr 2016
Posts: 305
Received Thanks: 163
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')
Restia Ashdoll is offline  
Thanks
1 User
Old 01/15/2021, 17:24   #1399
 
elite*gold: 0
Join Date: Jun 2020
Posts: 54
Received Thanks: 3
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?
AndaraX42 is offline  
Old 01/15/2021, 17:43   #1400
 
Restia Ashdoll's Avatar
 
elite*gold: 0
Join Date: Apr 2016
Posts: 305
Received Thanks: 163
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)
Restia Ashdoll is offline  
Old 01/16/2021, 15:41   #1401
 
elite*gold: 0
Join Date: Dec 2019
Posts: 3
Received Thanks: 0
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
FallenGod^^59 is offline  
Old 01/16/2021, 19:54   #1402
 
elite*gold: 0
Join Date: Jan 2021
Posts: 2
Received Thanks: 0
hey guys is there a vanguard farming bot that works? cant find it
Diapersquad is offline  
Old 01/16/2021, 23:16   #1403
 
elite*gold: 0
Join Date: Jul 2012
Posts: 16
Received Thanks: 3
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?
bob31450 is offline  
Old 01/17/2021, 06:36   #1404
 
elite*gold: 0
Join Date: Jan 2021
Posts: 3
Received Thanks: 0
I'll pay if someone can get LDoA 2-10 10-20 working correctly add me on discord KrazeGod#3059
TheKraZe is offline  
Old 01/17/2021, 08:56   #1405
 
elite*gold: 0
Join Date: Dec 2017
Posts: 9
Received Thanks: 0
Hello, guys, does anyone have a working cof bot? thx
alex197230 is offline  
Old 01/17/2021, 10:47   #1406
 
elite*gold: 0
Join Date: Jul 2012
Posts: 16
Received Thanks: 3
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.
bob31450 is offline  
Old 01/17/2021, 12:01   #1407
 
elite*gold: 0
Join Date: Jun 2020
Posts: 54
Received Thanks: 3
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.
AndaraX42 is offline  
Old 01/17/2021, 12:28   #1408
 
Restia Ashdoll's Avatar
 
elite*gold: 0
Join Date: Apr 2016
Posts: 305
Received Thanks: 163
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
Restia Ashdoll is offline  
Thanks
1 User
Old 01/17/2021, 21:50   #1409
 
hard4life's Avatar
 
elite*gold: 0
Join Date: May 2015
Posts: 109
Received Thanks: 3
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
hard4life is offline  
Old 01/17/2021, 23:03   #1410
 
elite*gold: 0
Join Date: Jul 2008
Posts: 78
Received Thanks: 12
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
lemoutondu10 is offline  
Reply


Similar Threads Similar Threads
[WTT] UPlay Anno 2020 Complete Key gegen Anno 1404/Anno 2020 Complete STEAM
08/12/2015 - Steam Trading - 0 Replies
Want to Trade UPlay Anno 2020 Complete Key gegen Anno 1404 oder Anno 2020 Complete STEAM only with Middleman



All times are GMT +2. The time now is 00:18.


Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2024 elitepvpers All Rights Reserved.