Register for your free account! | Forgot your password?

You last visited: Today at 03:03

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

Advertisement



PWI Elysium Changes

Discussion on PWI Elysium Changes within the PW Hacks, Bots, Cheats, Exploits forum part of the Perfect World category.

Reply
 
Old 05/16/2016, 20:04   #31
 
elite*gold: 0
Join Date: Dec 2009
Posts: 70
Received Thanks: 15
Quote:
Originally Posted by jasty View Post
You need to replace a "28" in there with _Hex($Player_Offset, 2), the 28 was hard coded when it should not have been.

Ah didn't see that ty
Does anyone by chance have the current Partyinv offset as 0xE67CC8 doesn't seem to work ?
I can't even find it with my old regex....
sasukezero is offline  
Old 05/16/2016, 21:54   #32
 
elite*gold: 0
Join Date: Sep 2013
Posts: 146
Received Thanks: 84
try 0xE67C80
Stark77 is offline  
Thanks
1 User
Old 05/16/2016, 22:26   #33
 
elite*gold: 0
Join Date: Dec 2009
Posts: 70
Received Thanks: 15
Checked the Adress in IDA and tested it, works Tyvm
Apparently there is sometimes an issue when you read an Address lower case like current base address like this "0xe5b2a4" instead of this "0xE5B2A4". Let's the game crash oh well....one reason why Moveto didn't work.

I'm starting to lose my mind...the Moveto function works again, but my character tries to walk to the top end of the map all the time...I checked wrong addresses, different calculations, different variations of x,y,z(in case something changed), Autopath works...., tried revhex, hex etc......
Is anyone facing the same problem ?
sasukezero is offline  
Old 05/17/2016, 22:09   #34
 
elite*gold: 0
Join Date: Sep 2013
Posts: 146
Received Thanks: 84
i changed nothing but the Player_Offset and everything worked as before.
Stark77 is offline  
Thanks
1 User
Old 05/17/2016, 22:20   #35
 
elite*gold: 0
Join Date: Dec 2011
Posts: 15
Received Thanks: 26
click for "Select" serverlist:
Code:
Procedure ClConfurm(pid)
    
    hProcess=OpenProcess_(#PROCESS_ALL_ACCESS, #False, pid) 
    ReadProcessMemory_(hProcess,($00e5ba4c ) Ibuf,4,***)
    ReadProcessMemory_(hProcess,(ibuf+$18) Ibuf,4,***)
    ReadProcessMemory_(hProcess,(ibuf+$8) windarr,4,***)
    ReadProcessMemory_(hProcess,(WindArr+$8c) Winup,4,***)
    
    While WinUp<>0
      ReadProcessMemory_(hProcess,(WinUp+$8) winstruct,4,***)
      ReadProcessMemory_(hProcess,(winstruct+$4c)  winnameadr,4,***)
      ReadProcessMemory_(hProcess,(winnameadr+0)  winname,50,***) ;ASCII string
      
      If winname="Win_LoginServerListButton"
        ReadProcessMemory_(hProcess,(winstruct+$1c8) Ibuf,4,***)
        ReadProcessMemory_(hProcess,(ibuf+$0c) Ibuf,4,***)
        ReadProcessMemory_(hProcess,(ibuf+$08) Ibuf,4,***)
        ReadProcessMemory_(hProcess,(ibuf+$1c) Ibuf,4,***) ; Commandadr
        
        opcode.s="60"+"B9"+Reverse(winstruct)+"68"+Reverse(ibuf)+"BA"+Reverse($A69A70)+"FFD2"+"61"+"C3"
        Inject(pid,opcode) 
        CloseHandle_(hProcess)
        ProcedureReturn 1;click send
      EndIf 
      ReadProcessMemory_(hProcess,(WinUp) Winup,4,***)
      
    Wend
    
    CloseHandle_(hProcess) 
    ProcedureReturn 0 ;not find window
  EndProcedure
* Chance of ReportBug
** addresses are specified for the current version PWI(946)
*** English is not my native language.
Remmm is offline  
Thanks
2 Users
Old 05/18/2016, 22:37   #36
 
elite*gold: 0
Join Date: Dec 2009
Posts: 70
Received Thanks: 15
Quote:
Originally Posted by Stark77 View Post
i changed nothing but the Player_Offset and everything worked as before.
Found the issue...it was a replaced 24...replace all is not always good...
Went through my whole code to eliminate a lot of things and therefore it happened oh well. Tyvm, this way i knew it still works
sasukezero is offline  
Old 05/18/2016, 23:02   #37
 
elite*gold: 0
Join Date: Sep 2013
Posts: 146
Received Thanks: 84
thats good to hear i acutally also have a question related to this moveto function. for me this function is only working on windows 7 or lower. client will crash with win10.

does anyone have the same issue or maybe even knows how to fix it? the opcode i use is below.

Stark77 is offline  
Old 05/19/2016, 19:04   #38
 
elite*gold: 0
Join Date: Dec 2011
Posts: 15
Received Thanks: 26
Try it moveto (works for win10, unstable, possible crash client)
Remmm is offline  
Thanks
3 Users
Old 05/19/2016, 23:31   #39
 
elite*gold: 0
Join Date: Sep 2013
Posts: 146
Received Thanks: 84


THANK YOU alot for this ... its working perfectly
Stark77 is offline  
Old 05/20/2016, 23:44   #40
 
elite*gold: 0
Join Date: Dec 2009
Posts: 70
Received Thanks: 15
I was playing around with the chat. I can read out the whole chat with this function here:

The only Problem here is, that linked items are shown like this "<1><>" :/
Does anyone know what way i can read out the text with items as wchar doesn't really do the trick?
sasukezero is offline  
Old 05/21/2016, 01:54   #41
 
elite*gold: 0
Join Date: Jul 2011
Posts: 145
Received Thanks: 97
Quote:
Originally Posted by sasukezero View Post
The only Problem here is, that linked items are shown like this "<1><>" :/
Does anyone know what way i can read out the text with items as wchar doesn't really do the trick?
Here's an old writeup but getting the actual tooltip looks complicated.

The item itself looks like its at the same offset chain but with 0xC at the end instead of 0x8.
jasty is offline  
Thanks
1 User
Old 05/21/2016, 03:09   #42
 
elite*gold: 0
Join Date: Dec 2009
Posts: 70
Received Thanks: 15
Quote:
Originally Posted by jasty View Post
Here's an old writeup but getting the actual tooltip looks complicated.

The item itself looks like its at the same offset chain but with 0xC at the end instead of 0x8.
That did the trick with 0xC it reads out the item name too. Now i still have the extra signs etc but its more readable. String replace does the rest. Ty

sasukezero is offline  
Old 05/21/2016, 11:54   #43
 
elite*gold: 0
Join Date: Nov 2013
Posts: 32
Received Thanks: 1
hi any one can give me questID for Enter Base faction from

Faction Base Manager Zeen


i try find in pwdatabase.com

"Enter the Base"


but no quest found
DurianMontong is offline  
Old 05/21/2016, 15:57   #44
 
elite*gold: 0
Join Date: Dec 2009
Posts: 70
Received Thanks: 15
I checked for the send package via this old guid:

And came up with this:


Tested it on 2 different characters and it works like a charm.
Seems like you don't have to open the npcdialogue, just stand close enough and select it
sasukezero is offline  
Thanks
1 User
Old 05/21/2016, 17:46   #45
 
elite*gold: 0
Join Date: Nov 2013
Posts: 32
Received Thanks: 1
Quote:
Originally Posted by sasukezero View Post
I checked for the send package via this old guid:

And came up with this:


Tested it on 2 different characters and it works like a charm.
Seems like you don't have to open the npcdialogue, just stand close enough and select it
hi thx for info, but can u tell me how to find my $factionid
DurianMontong is offline  
Reply


Similar Threads Similar Threads
Elysium
02/20/2016 - 9Dragons - 7 Replies
Deleted.
[Selling] Nachjägerin (180 - Elysium)
02/05/2015 - Last Chaos Trading - 13 Replies
Hallo Ihr, wie man wohl sieht bin ich neu hier, ein Freund hat mir das Forum empfohlen um meine Assa in gute Hände weiterzugeben. Hab nun einige Jahre LC gespielt und bin zu einem Privatserver gewechselt, daher habe ich mich entschlossen meine Assa zum Verkauf anzubieten. Wer mir nicht vertraut kann auch gerne mit mir vorher auf unserem TS plaudern ect. Da der neue Server nur PSC oder Paypal akzeptiert habe ich mich dazu entschlossen auch nur PSC und Überweisung, sowie egold zu akzeptieren. ...
elysium?¿
01/28/2015 - 9Dragons - 10 Replies
hmm what happend with elysium ? web doesn´t work, and the launcher seems the GC one ¬¬ any notices or its just disapear? :confused:
Suche EQ auf Elysium (PSG)
06/12/2011 - Metin2 Trading - 1 Replies
Gude suche EQ auf "Elysium" auf dem PSG Network. Biete 28 e*gold Was erwartet Ihr denn.
[HELP] Elysium Pictures
03/16/2010 - EO PServer Hosting - 0 Replies
Hy @all I am already so far some of it am indicated,… only unfortunately white I no more further,… which files I forgot/to be still added am. And the Debug says to me relatively nothing more which still be missing could at image files. I inserted and/or worked on the following files



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


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.