Register for your free account! | Forgot your password?

You last visited: Today at 16:00

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

Advertisement



Some Fixes

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

Reply
 
Old 06/11/2018, 16:54   #31
 
phat34's Avatar
 
elite*gold: 0
Join Date: Sep 2014
Posts: 354
Received Thanks: 120
Cool

Quote:
Originally Posted by tjubutsi View Post
Rendering in latest updated gwa2 works fine, check it for pattern. What is the zoom even for?

Another thing that doesn't work anymore is the ScanSkillTimer pattern.
link? your GitHub says not updated for two months... less your sneaking in updates...

ALSO --- Is Loadfinished pattern the only one linked to rendering?
phat34 is offline  
Old 06/11/2018, 19:20   #32
 
elite*gold: 0
Join Date: May 2008
Posts: 94
Received Thanks: 82
Quote:
Originally Posted by phat34 View Post
link? your GitHub says not updated for two months... less your sneaking in updates...

ALSO --- Is Loadfinished pattern the only one linked to rendering?
You know what else my github page says?

"I'm not going to continue updating on github (bloody microsoft). Project moved to https://gitlab.skyweb.nu/skyweb/gwa2"



I don't know if there's been any changed but on my machine with the latest gwa2 cpu usage is 0.

Quote:
Originally Posted by DerMoench14 View Post
Code:
$mZoomStill = GetScannedAddress("ScanZoomStill", 0x24)
$mZoomMoving = GetScannedAddress("ScanZoomMoving", 0x21)

_('ScanZoomStill:')
AddPattern('89470CEBD1')
	
_('ScanZoomMoving:')
AddPattern('EB358B4304')

;~ Description: Changes the maximum distance you can zoom out.
Func ChangeMaxZoom($aZoom = 900)
	MemoryWrite($mZoomStill, $aZoom, "float")
	MemoryWrite($mZoomMoving, $aZoom, "float")
EndFunc   ;==>ChangeMaxZoom


Still works for me:
Code:
$mSkillTimer = MemoryRead(GetScannedAddress('ScanSkillTimer', -3))

_('ScanSkillTimer:')
AddPattern('85C974158BD62BD183FA64')
Really weird, I spent 30 mins testing it yesterday and it didn't work. Tried it now and it does. Breaks when disabling rendering but that was known...
tjubutsi is offline  
Old 06/13/2018, 01:58   #33
 
elite*gold: 0
Join Date: Nov 2012
Posts: 134
Received Thanks: 49
ClickToMoveFix does not seem to be correct again. If anyone has the time to explain how to find the correct values, I would be appreciative. I am eager to learn how to fish.
savsuds is offline  
Old 06/13/2018, 06:52   #34
 
phat34's Avatar
 
elite*gold: 0
Join Date: Sep 2014
Posts: 354
Received Thanks: 120
Cool

Quote:
Originally Posted by savsuds View Post
ClickToMoveFix does not seem to be correct again. If anyone has the time to explain how to find the correct values, I would be appreciative. I am eager to learn how to fish.
Its good to get it down now while most patterns are working...

Code:
SetValue('ClickToMoveFix', '0x' & Hex(GetScannedAddress("ScanClickToMoveFix", -0x1E), 8))

_('ScanClickToMoveFix:')
AddPattern('568BF1578B460883F80F')
here are instructions:

1) load guild wars 2) load ollydbg 3) attach guild wars to olly 4) press play if you want gw to resume procedures 5) hit M for memory map 6) hit ctrl B to search for a binary string 7) enter the patter in hex in the lower box and hit enter. 8) olly will search memory for the pattern. If it is a good pattern it will be found in or around gw code in program memory...(hint: usually a six digit address between 4xx,xxx and less than exx,xxx. from the first byte in the pattern count forward or back the offset found in the set value line of code.. (here -0x1E … so up 174 bytes... this should be the start of your GW function being hooked by this scan.)

You can verify this code location by adding this command under the set value command in your .au3 file...

Code:
MSGBOX(0, "ClickToMoveFix", "Address: " & Hex(GetScannedAddress("ScanClickToMoveFix", -0x1E), 8))
...more to follow on this later... questions welcome.
phat34 is offline  
Old 06/13/2018, 07:10   #35
 
elite*gold: 0
Join Date: Nov 2012
Posts: 134
Received Thanks: 49
Quote:
Originally Posted by phat34 View Post
Its good to get it down now while most patterns are working...

Code:
SetValue('ClickToMoveFix', '0x' & Hex(GetScannedAddress("ScanClickToMoveFix", -0x1E), 8))

_('ScanClickToMoveFix:')
AddPattern('568BF1578B460883F80F')
here are instructions:

1) load guild wars 2) load ollydbg 3) attach guild wars to olly 4) press play if you want gw to resume procedures 5) hit M for memory map 6) hit ctrl B to search for a binary string 7) enter the patter in hex in the lower box and hit enter. 8) olly will search memory for the pattern. If it is a good pattern it will be found in or around gw code in program memory...(hint: usually a six digit address between 4xx,xxx and less than exx,xxx. from the first byte in the pattern count forward or back the offset found in the set value line of code.. (here -0x1E … so up 174 bytes... this should be the start of your GW function being hooked by this scan.)

You can verify this code location by adding this command under the set value command in your .au3 file...

Code:
MSGBOX(0, "ClickToMoveFix", "Address: " & Hex(GetScannedAddress("ScanClickToMoveFix", -0x1E), 8))
...more to follow on this later... questions welcome.
It gives me address of 00455860. When I searched for the Hex pattern, There is no -0x1E. Also it comes up in red. The only times I have seen red is if it is incorrect. I don't know what my next question should be.
Attached Images
File Type: jpg ScanToClickMoveFix Olly.jpg (578.0 KB, 64 views)
savsuds is offline  
Old 06/13/2018, 11:10   #36
 
elite*gold: 0
Join Date: May 2014
Posts: 269
Received Thanks: 320
Quote:
Originally Posted by savsuds View Post
It gives me address of 00455860. When I searched for the Hex pattern, There is no -0x1E. Also it comes up in red. The only times I have seen red is if it is incorrect. I don't know what my next question should be.
@: The pattern leads you to 00455860 which is correct so far.
Code:
SetValue('ClickToMoveFix', '0x' & Hex(GetScannedAddress("ScanClickToMoveFix", -0x1E), 8))
The -0x1E is the offset from the found address and will leads you to 00455842 which is almost the correct address.
GWA2 is weird as pattern-scanning has a static offset of +0x1.
So when you also decrease the found address by 1 you'll get the correct address (00455841).
Somewhere in GWA2 you'll found this piece of code:
Code:
WriteBinary("83F8009090", GetValue('ClickToMoveFix'))
So when you'll look in your debugger you'll see the change:
Code:
00455841   3D D3010000      CMP EAX,1D3
becomes (after initialize GWA2)
Code:
00455841   83F8 00          CMP EAX,0
00455844   90               NOP
00455845   90               NOP
Thats the whole trick ... for me it works.
Could you explain how you tested it?
DerMoench14 is offline  
Old 06/13/2018, 17:02   #37
 
elite*gold: 0
Join Date: Apr 2011
Posts: 2
Received Thanks: 0
Hey everyone,

I'm brand new to this and have been reading/learning as much as I possibly can however I'm still having trouble with one thing.

Using any/all of the ''updated'' vaettir bots, the most successful one still fails/crashes when it's time to sell/purchase ID/salvage kits, and when I relaunch gw I'm always at the EoTN outpost with one full inventory worth of stuff on me.

Any advice? Thanks in advance!

[Edit: It also identifies all golds when I want it to store them so I can ID on another account. I have the ''Store Golds''' box checked.]
skreamr is offline  
Old 06/13/2018, 17:52   #38
 
elite*gold: 0
Join Date: Dec 2017
Posts: 64
Received Thanks: 2
Anybody know how why gw crash after use func AcceptTrade? I'm think problem bacause need press 'View'. But how do it?
Stary Pen' is offline  
Old 06/13/2018, 20:05   #39
 
elite*gold: 0
Join Date: May 2014
Posts: 269
Received Thanks: 320
If is this why you asked about PerformAction(), i think it's not called by.
DerMoench14 is offline  
Old 06/13/2018, 20:21   #40
 
elite*gold: 0
Join Date: Dec 2017
Posts: 64
Received Thanks: 2
yeah, I thought the problem could be solved if use PerformAction()... If not maybe you know any way?
Stary Pen' is offline  
Old 06/13/2018, 20:27   #41
 
elite*gold: 0
Join Date: May 2014
Posts: 269
Received Thanks: 320
I know how but i can't tell you. Sry but this is only known by a closed group.
DerMoench14 is offline  
Old 06/13/2018, 20:41   #42
 
elite*gold: 0
Join Date: Dec 2017
Posts: 64
Received Thanks: 2
just give me some advice on how to find a way to do this, maybe I'll figure it out.
Stary Pen' is offline  
Old 06/13/2018, 21:34   #43
 
phat34's Avatar
 
elite*gold: 0
Join Date: Sep 2014
Posts: 354
Received Thanks: 120
Perhaps you need to find the correct header value for it...

Code:
FUNC ACCEPTTRADE()
	SENDPACKET(4, 0xC1)
ENDFUNC
phat34 is offline  
Old 06/13/2018, 22:14   #44
 
elite*gold: 0
Join Date: Dec 2017
Posts: 64
Received Thanks: 2
You also send dont right SENDPACKET. And problem not there.
Stary Pen' is offline  
Old 06/13/2018, 22:18   #45
 
phat34's Avatar
 
elite*gold: 0
Join Date: Sep 2014
Posts: 354
Received Thanks: 120
Cool

Quote:
Originally Posted by Stary Pen' View Post
You also send dont right SENDPACKET. And problem not there.
Yeah, I am not implementing this currently... What is the correct header for this? I will take a look into this issue as well.
phat34 is offline  
Reply


Similar Threads Similar Threads
Fixes for GhostLoL - Fixes (UPDATING)
12/05/2014 - League of Legends Hacks, Bots, Cheats & Exploits - 2 Replies
Hello, this thread is about GhostLoL issues and how to fix them. Known issues: 1. PROBLEM - No internet connection when trying to reach lol download page (or another page..) ANSWER - Open ie (internet explorer) and then search for tools>Internet Options>Advanced>Now scroll down untill you see TLS something (example: tls 1.0), and check them all (make them with V). In expample, I had tls 1.0, tls 2.0 and tls 3.0, then I checked them all and now it works. CREDIT - murat65
Some Fixes for better Gameplay !
08/30/2012 - All Points Bulletin - 0 Replies
1) Leatrix Latency Fix - Leatrix Latency Fix : WoW Tools & Utilities : World of Warcraft AddOns This reduces your Latency (ping). More info on what it does and how to install is on that website. 2) Making APB:R Faster - Making APB:R Faster - GamersFirst Forums This is ment for slower PCs whos FPS is small and have lags 3) Removing the 60fps limit cap - How to remove the 60fps cap - GamersFirst Forums This is recommend for people with GOOD PCs only, basically it will allow your FPS to...
Need some help with fixes... Again =)
08/03/2012 - Rappelz Private Server - 6 Replies
Hey guys =) Can you give me a fixes for master's hammers? (I don't know how it named in your client, this is an item that repairs equipment, weapons and other, sorry for Eng) I'll be grateful =)
Some Common Fixes for SM errors
05/16/2007 - Silkroad Online - 65 Replies
Q: Character is standing there in the battle field not buffing or attacking! A: Scroll back to town and start again. Q: Character is just standing there and won't use any skills! A: If you have leveled lets say a sword slash move, then you must press 'home', refresh skills, and add them again after removing them. If you didn't level them, refresh+re-add anyways. A2: Reboot sro. Q: It keeps saying "too far from training place". A: This could mean that you are not in the city that you...



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


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.