Register for your free account! | Forgot your password?

You last visited: Today at 22:57

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

Advertisement



GWA2 Update

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

Reply
 
Old 12/28/2024, 23:11   #31
 
elite*gold: 0
Join Date: Feb 2018
Posts: 33
Received Thanks: 15
So a quick question. The new GWA2 has "current action" listed a lot throughout. It is making an error that says unknown function name. I cannot find "Current Action" listed anywhere as a function name. Is there a function for current action?
glechene is offline  
Old 12/28/2024, 23:48   #32
 
elite*gold: 0
Join Date: Jan 2022
Posts: 8
Received Thanks: 11
Quote:
Originally Posted by glechene View Post
So a quick question. The new GWA2 has "current action" listed a lot throughout. It is making an error that says unknown function name. I cannot find "Current Action" listed anywhere as a function name. Is there a function for current action?
He was more than likely using this for debugging and fixing things. For my uses, I just found all CurrentAction in Notepad++ and replaced it with ;~CurrentAction to comment them out and it fixed it for me.
Mandilus33 is offline  
Thanks
1 User
Old 12/29/2024, 00:18   #33
 
elite*gold: 0
Join Date: Feb 2018
Posts: 33
Received Thanks: 15
Quote:
Originally Posted by Mandilus33 View Post
He was more than likely using this for debugging and fixing things. For my uses, I just found all CurrentAction in Notepad++ and replaced it with ;~CurrentAction to comment them out and it fixed it for me.
Thank you. I did find a function in an old GWA2 instead of commenting out everything.
glechene is offline  
Old 12/29/2024, 00:22   #34


 
Mrjambix's Avatar
 
elite*gold: 258
Join Date: Jan 2021
Posts: 126
Received Thanks: 135
Yeah I use CurrentAction as a debugger ^_^, I did put in the notes on Github to change it as needed
Mrjambix is offline  
Old 12/29/2024, 09:24   #35
 
elite*gold: 0
Join Date: Mar 2023
Posts: 18
Received Thanks: 0
very nice. can you update EquipItem(GetItemBySlot(1,1)),it dont work. and fight() func dont work too.

Thank you very much!
gwbotcrazy123 is offline  
Old 12/29/2024, 15:49   #36


 
Mrjambix's Avatar
 
elite*gold: 258
Join Date: Jan 2021
Posts: 126
Received Thanks: 135
Quote:
Originally Posted by gwbotcrazy123 View Post
very nice. can you update EquipItem(GetItemBySlot(1,1)),it dont work. and fight() func dont work too.

Thank you very much!
What's wrong with EquipItem?
I'm not fixing actual functions only patterns/address.

Your Equip Item should be talking to this function
Code:
;~ Description: Equips an item.
Func EquipItem($aItem)
	Local $lItemID

	If IsDllStruct($aItem) = 0 Then
		$lItemID = $aItem
	Else
		$lItemID = DllStructGetData($aItem, 'ID')
	EndIf

	Return SendPacket(0x8, $HEADER_ITEM_EQUIP, $lItemID)
EndFunc   ;==>EquipItem
which in return talks to
Code:
Global Const $HEADER_ITEM_EQUIP = 0x002F ; Equip an item.
This header was verified to be working!

for the Fight Function once again, I don't fix Individual function what we are looking for is the freeze issue happening as you use skills to see if there's an issue causing the freeze up.

Code:
; **Skill Base and Timer**
    $mSkillBase = MemoryRead(GetScannedAddress('ScanSkillBase', 8))
    If [MENTION=2544426]Error T[/MENTION]hen
        WriteLog("Failed to read skill base")
        Return 0
    EndIf
    $mSkillTimer = MemoryRead(GetScannedAddress('ScanSkillTimer', -3))
    If [MENTION=2544426]Error T[/MENTION]hen
        WriteLog("Failed to read skill timer")
        Return 0
    EndIf
    WriteLog("Read skill base and timer: 0x" & Hex($mSkillBase, 8) & ", 0x" & Hex($mSkillTimer, 8))
If your functions are jacked/broken apart from what I mentioned above, then it's on you. Please do report issues but debug them and give some details in the future so we can dig into it.
Mrjambix is offline  
Thanks
1 User
Old 12/29/2024, 20:54   #37
 
elite*gold: 200
Join Date: Aug 2022
Posts: 46
Received Thanks: 80
Hi, thanks for job. I have a little problem when i run my bot. Some help plz
Attached Images
File Type: jpg pb.jpg (27.0 KB, 82 views)
sky51100 is offline  
Old 12/29/2024, 21:22   #38
 
elite*gold: 0
Join Date: Feb 2022
Posts: 102
Received Thanks: 66
Quote:
Originally Posted by sky51100 View Post
Hi, thanks for job. I have a little problem when i run my bot. Some help plz
It's because the headers are defined in the GWA2 already, removed the include <GWA2_Headers> from your bot script.
AlienMan9696 is offline  
Old 12/30/2024, 10:08   #39
 
elite*gold: 200
Join Date: Aug 2022
Posts: 46
Received Thanks: 80
Quote:
Originally Posted by AlienMan9696 View Post
It's because the headers are defined in the GWA2 already, removed the include <GWA2_Headers> from your bot script.
THKS Bro ! I've a another problem : bot crash when dropping and an another bot freeze my character on a position (when i create a spirit whith my RT after that my character still at this position and bot crash after)

EDIT : all of my Nickset Bot don't work (freeze and crash)

Someone can help me plz ?
sky51100 is offline  
Old 12/30/2024, 13:40   #40
 
Gint0nic's Avatar
 
elite*gold: 0
Join Date: Mar 2011
Posts: 450
Received Thanks: 58
Tysm for your work! How do I use it right? Overwrite the current files in the bots? That does not work for me.. What do I have to do?
Gint0nic is offline  
Old 12/30/2024, 16:40   #41
 
elite*gold: 0
Join Date: Feb 2022
Posts: 102
Received Thanks: 66
Quote:
Originally Posted by sky51100 View Post
THKS Bro ! I've a another problem : bot crash when dropping and an another bot freeze my character on a position (when i create a spirit whith my RT after that my character still at this position and bot crash after)

EDIT : all of my Nickset Bot don't work (freeze and crash)

Someone can help me plz ?
It seems to be a memory related issue, he’s aware of it, best thing we can go is bust open cheat engine and try to help or just wait patiently and maybe he finds a fix.
AlienMan9696 is offline  
Old 12/30/2024, 17:07   #42
 
elite*gold: 0
Join Date: Dec 2013
Posts: 45
Received Thanks: 8
Test… that was weird.. I wasn’t able to go to or see page 3 until I made a comment..
epvp_dragon is offline  
Old 12/30/2024, 19:29   #43
 
elite*gold: 0
Join Date: May 2011
Posts: 43
Received Thanks: 56
GWA2 Functioning Update

GWA2 Is 99% fully functioning, there may be a few things here or there. Disable Rendering is known to not be working at this time also.
Here is a zip file of updated gwa2, headers, and bots. Please don't bombard me with questions if something is not working. I believe mrjambix and I have done far enough now and any issue you come across are likely to be found with a quick search of the forums. HUGE Thank you to mrjambix and any of his associates that helped. Cheers! -Globs
Attached Files
File Type: zip GWA2 Update 12.24.zip (3.38 MB, 73 views)
moneyvsmoney is offline  
Thanks
2 Users
Old 12/30/2024, 21:46   #44
 
Gint0nic's Avatar
 
elite*gold: 0
Join Date: Mar 2011
Posts: 450
Received Thanks: 58
Quote:
Originally Posted by moneyvsmoney View Post
GWA2 Is 99% fully functioning, there may be a few things here or there. Disable Rendering is known to not be working at this time also.
Here is a zip file of updated gwa2, headers, and bots. Please don't bombard me with questions if something is not working. I believe mrjambix and I have done far enough now and any issue you come across are likely to be found with a quick search of the forums. HUGE Thank you to mrjambix and any of his associates that helped. Cheers! -Globs
Ty for ur work! It`s sadly not very userfriendly, because every Bot gives an error message when you start it. But people with a good knowledge will surely can use it
Gint0nic is offline  
Old 12/31/2024, 00:06   #45


 
Mrjambix's Avatar
 
elite*gold: 258
Join Date: Jan 2021
Posts: 126
Received Thanks: 135
This updated GWA2 Lib won't be operational forever...take this time and reflect on the past month that everyone has been unable to bot or refuse to learn how to with PY4GW. Stop being leeches and start learning the process so that when the time comes you are able to contribute as well.

For those in private that updated their scripts and kept it secret, I don't blame you...The amount of people who refuse to do the simplest things drives me crazy sometimes, as well as the amount of ******** that happens in this community by those leechers. If you want to work with me in the future let me know.
Mrjambix is offline  
Thanks
2 Users
Reply


Similar Threads Similar Threads
How to update GWA2.au3 values
01/10/2022 - GW Bots - 0 Replies
Hey, i would like to learn updating the adresses in gwa2.au3 Can someone show me how to do it? My bot isn't running... I will also upload the new file for the community :)
How Update 13th décembre GWA2
01/12/2020 - GW Bots - 1 Replies
Hello, Can anyone explain to me how to fix gwa2.au3 since update of 13th december? I know it is bot only header...
New GWA2 for update on March 23, 2018
08/14/2018 - GW Exploits, Hacks, Bots, Tools & Macros - 79 Replies
-edit- repo is gone
COF bot still crashes after GWA2 update
04/15/2018 - GW Exploits, Hacks, Bots, Tools & Macros - 2 Replies
Hello. So, I updated all the headers as per the update on this bot. The bot travels to Doomlore and then it crashes as soon as it leaves the exit. I cant figure it out. Any help would be greatly appreciated. Thank you.



All times are GMT +1. The time now is 22:57.


Powered by vBulletin®
Copyright ©2000 - 2025, 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 ©2025 elitepvpers All Rights Reserved.