Register for your free account! | Forgot your password?

You last visited: Today at 23:37

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

Advertisement



Wonderland

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

Reply
 
Old   #1
 
elite*gold: 0
Join Date: Dec 2017
Posts: 16
Received Thanks: 3
Wonderland

Hello all
I localized any offsets for new version Wonderland (1.5.7), but i donot can fix anys functions.
Working Offsets

Base Address = 0xF76734
send packet = 0x898A70
gatheting = 0x4D9690
Cast Skill = 0x4E8BB0
Regular Atak = 0x4D38F0
Freeze = 0xF39EA4
Console = 0xF3A238
InFlag Game = 0xF5C494

Skill Base = 0x17AC
Skill Count = 0x4
Skill ID = 0x8

World Item Base = 0x24

player structure
[[[BA] + 0x0] + 0x3c]

player name
[[[[[BA] + 0x0] + 0x3c] + 0x810] + 0x0]

World Item
[[[[BA] + 0x0] + 0x24] + 0x1c]

NPC Base
[[[BA] + 0x0] + 0x20]

Instance
[[[[BA] + 0x0] + 0x24] + 0x94]

Quest
[[[[[BA] + 0x0] + 0x3c] + 1788] + 0x8]

Buffs
[[[BA] + 0x0] + 0x3c] + 0x398]


I hav offset for moveto function
Walk1 = 0x4EC320
Walk2 = 0x4F1A80
Walk3 = 0x4ED430

but my function donot work (crash client), i utilize this function from post
autopath function worked but now crash client too, but compare offset address and a function is correct.

any can help me in fix moveto function and sendpacket ( I use c language for develop.

PS: Sendpacket and autopath working in neverfall version (1.5.6), moveto aways crash.
PS2: i donot can find DC flag too

And Sry Admins for another post in wrong forum!
CeifadorX is offline  
Old 02/03/2018, 11:07   #2
 
elite*gold: 0
Join Date: Sep 2013
Posts: 146
Received Thanks: 84
Looks all pretty good - you might want to check your BaseAddress again - mine is 0xF39878

And the playerActionStruct/OFFSET_ACTIONBASE in the move funtion is 0x1780
Stark77 is offline  
Thanks
1 User
Old 02/03/2018, 17:25   #3
 
elite*gold: 0
Join Date: Dec 2017
Posts: 16
Received Thanks: 3
Very Thanks!!!

And, yeah, Sendpacket autopath and anothers injectino work now!!

BA = F39878, but char structure is = neverfall

[[[BA] + 0x1C] +0x34]
CeifadorX is offline  
Old 02/03/2018, 18:14   #4
 
elite*gold: 0
Join Date: Mar 2017
Posts: 5
Received Thanks: 0
New offsets/base adress

does anyone have the new base adresses/offsets? or can anyone tell me a way to find them?
BigStorms is offline  
Old 02/05/2018, 17:18   #5
 
elite*gold: 0
Join Date: Dec 2017
Posts: 16
Received Thanks: 3
Stark, all working, except my moveto function, i put new offset, but client crash on execute.

I try 4 versions moveto, including russians versions, but all crash client at execution.

this is a version from elitepvpers forums, whats is wrong?

public void moveto(float x, float y, float z, int FlyMode = 0)
{
ASM asm = new ASM();

asm.Pushad();
asm.Mov_EAX(this.off.BaseADD); // BaseAddress
asm.Mov_EAX_DWORD_Ptr_EAX();
asm.Mov_EAX_DWORD_Ptr_EAX_Add(this.off.Strutur); //0x1c
asm.Mov_ESI_DWORD_Ptr_EAX_Add(this.off.Playstrut); //0x34
asm.Mov_ECX_DWORD_Ptr_ESI_Add(this.off.ActBase); //0x1780
asm.Push6A(1);
asm.Mov_EDX(this.off.Walk1); //walk1
asm.Call_EDX();
asm.Mov_EDI_EAX();
asm.Lea_EAX_DWORD_Ptr_ESP_Add(0x18); // I try 0x18 and 0x1c
asm.Push_EAX();
asm.Mov_EDX(FlyMode);
asm.Push_EDX();
asm.Mov_ECX_EDI();
asm.Mov_EDX(this.off.Walk2); //walk2
asm.Call_EDX();
asm.Mov_ECX_DWORD_Ptr_ESI_Add(this.off.ActBase); //0x1780
asm.Mov_EAX(x);
asm.Mov_EDX_EDI();
asm.Add_EDX(this.off.OfX); // offset X pos, 0x3c
asm.Mov_DWORD_Ptr_EDX_EAX();
asm.Mov_EAX(z);
asm.Mov_EDX_EDI();
asm.Add_EDX(this.off.OfZ); // offset Z pos, 0x40
asm.Mov_DWORD_Ptr_EDX_EAX();
asm.Mov_EAX(y);
asm.Mov_EDX_EDI();
asm.Add_EDX(this.off.OfY); // offset Y pos, 0x44
asm.Mov_DWORD_Ptr_EDX_EAX();
asm.Push6A(0);
asm.Push6A(1);
asm.Push_EDI();
asm.Push6A(1);
asm.Mov_EDX(this.off.Walk3); // walk3
asm.Call_EDX();
asm.Popad();
asm.Ret();
asm.Run();
}

I checked the commands with the forum's moveto function, and the opcode is ok, my regular attack, cast skill, gather, and autopath function is working.

thanks!
CeifadorX is offline  
Old 02/05/2018, 20:05   #6
 
elite*gold: 0
Join Date: Sep 2013
Posts: 146
Received Thanks: 84
As I am currently super busy I will just post you the function I use currently and the offsets used for it:

Offsets:
global realBaseAddress := 0xF39878
global ADDRESS_ACTION1 := 0x4EC320
global ADDRESS_ACTION2 := 0x4F1A80
global ADDRESS_ACTION3 := 0x4ED430
global playerOffSet := 0x34
global playerActionStructOffset := 0x1780

Function:

Maybe you forgot to reverse something like the ActBase?
Stark77 is offline  
Old 02/05/2018, 23:04   #7
 
elite*gold: 0
Join Date: Dec 2017
Posts: 16
Received Thanks: 3
thank you very much for your response, but unfortunately the function does not work for me.

and the offsets of the positions, which in yours is like 20, 24, and 28, would not currently be 3c, 40, and 44? Or are not numbers the offsets?

I checked my assembly class and it is correctly converting the numbers, including doing the reverse, I made the system send an msgbox of the sent opcodes:



you can see that all the codes are correctly reversed.

Well, if anyone has any other code for a moveto, I'll thank you!
CeifadorX is offline  
Old 02/06/2018, 00:59   #8
 
elite*gold: 0
Join Date: Sep 2013
Posts: 146
Received Thanks: 84
The offsets for X,Y, and Z are 3c, 44, and 40. However, you do not put the offsets in there but the values of the coordinates where you want to move.

You have two times 00000000 in your code; I wonder where this comes from.
Stark77 is offline  
Old 02/06/2018, 01:34   #9
 
elite*gold: 0
Join Date: Dec 2017
Posts: 16
Received Thanks: 3
I'm sorry, I was trying to debug the function, now I executed the following command:

Char.Acao.MoverSe(1423, 876, 480, 1); // is floats X, Y, Z, and int mode

I'm using the position without being calculated

and we have this opcode

CeifadorX is offline  
Old 02/06/2018, 07:42   #10
 
elite*gold: 0
Join Date: Jul 2011
Posts: 145
Received Thanks: 97
I mentioned this in the other thread but is anyone able to extract PCKs?

There's a ton of data in configs.pck I need.
jasty is offline  
Old 02/06/2018, 22:03   #11
 
elite*gold: 0
Join Date: Sep 2013
Posts: 146
Received Thanks: 84
@: Sadly I dont ... sorry. @: It might be that this move function is not working on windows 10 ... other than that I cannot really see a mistake
Stark77 is offline  
Old 02/06/2018, 22:47   #12
 
elite*gold: 0
Join Date: Dec 2017
Posts: 16
Received Thanks: 3
Very thanks for reply Stark!

I had a , that worked the function here, but it has no source available, I had to find out how they managed to make such a feat.
but I'll keep trying ^^
CeifadorX is offline  
Old 02/19/2018, 13:29   #13
 
elite*gold: 0
Join Date: Dec 2017
Posts: 16
Received Thanks: 3
Post

Hello everyone!!

Finally I was able to correct the error of the script for movement and I arranged the scritp to follow players.

Very thanks to Stark, I used your script making some minor corrections to the Inter Neverfall / Wonderland v1 / Wonderland v2 and PW BR Neverfall.

The functions in C Language

Moveto Function:

Follow Function:

Probably there was some change in the Walk3 structure reading, because what was giving error, was the completion of the script with more items in the stack.

And in the address positions of the moveto, x, y, and z are not avatar offsets.
CeifadorX is offline  
Old 02/19/2018, 13:50   #14
 
elite*gold: 0
Join Date: Oct 2013
Posts: 30
Received Thanks: 0
Someone found out how to fix the autologin problem now?
the soldire is offline  
Old 02/19/2018, 18:31   #15
 
elite*gold: 0
Join Date: Jun 2017
Posts: 15
Received Thanks: 2
Quote:
Originally Posted by the soldire View Post
Someone found out how to fix the autologin problem now?
someone should just make a program that would ask for your email/password, open arc, start the patcher, close arc and start the game. Doesnt seem to be that hard
fGravity is offline  
Reply


Similar Threads Similar Threads
wonderland online
04/04/2011 - General Gaming Discussion - 32 Replies
can someone make a post about this game? like bots too would HELP BIG TIME!
WonderLand online
12/10/2009 - General Gaming Discussion - 10 Replies
its there any kind of cheats in this game like gold hack? i knew 1 hack c.e 5.4
[Req]Wonderland online Manufacturing trainer
07/26/2009 - General Gaming Discussion - 3 Replies
hello. im playing wonderland online. im sick of doing lots of stuff by myself(mean sitting and point the char what to do). for example: i need to make 100 iron materials,i need to klick 100 times to make the iron materials,and between every iron material i need to wait 2 minutes. so im asking, could somebody make a trainer that can manufacture for us? or faster? thanks ^^
Wonderland Online Beta Keys, $10 each.
07/26/2009 - Trading - 3 Replies
Wonderland Online is a new MMORPG game that has recently gone into Closed Beta. Each key from Wonderland Online is $10. Contact me at [email protected] Paypal Only. Here is the information needed to install and input your key. ------------------------------------------------- ---------- *STEP 1 - CREATE ACCOUNT FOR WONDERLAND ONLINE:*
Wonderland Online
11/08/2008 - User Submitted News - 1 Replies
The game im currently playing is Wonderland Online. If u guys got nothing to do now jus play it XD oh and its 8th Server - Scorpio Coming Soon Wonderland Online's 8th server - Scorpio will be coming at the same time as the new version - Fairy's Whisper. The new version will feature the releases of the Rebirth System, Mercenary System, Forging System, Fairy Skills, four new civilization maps and much, much more... Surely, players will have a whole new Wonderland experience to look forward too!...



All times are GMT +1. The time now is 23:38.


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.