Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Aura Kingdom
You last visited: Today at 01:36

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

Advertisement



AK - Duplicating help needed

Discussion on AK - Duplicating help needed within the Aura Kingdom forum part of the MMORPGs category.

Reply
 
Old 03/27/2014, 13:38   #76
 
Oriya9's Avatar
 
elite*gold: 94
Join Date: Mar 2007
Posts: 569
Received Thanks: 1,497
Added support to the French client.
download is in the initial release post.
Oriya9 is offline  
Thanks
3 Users
Old 03/27/2014, 14:54   #77
 
elite*gold: 0
Join Date: May 2010
Posts: 23
Received Thanks: 4
It works

Thank you
Sylehn is offline  
Old 03/27/2014, 18:54   #78
 
elite*gold: 0
Join Date: Dec 2010
Posts: 22
Received Thanks: 0
Quote:
Originally Posted by Oriya9 View Post
Give me the French version game.bin please. I'll check it out.
Can you do for Pserver too? Since the server files came from Aeria. I can provide also game.bin if you want. I tried it and my client did not crash but nothing show ed up.
ayzal09 is offline  
Old 03/27/2014, 20:50   #79
 
Oriya9's Avatar
 
elite*gold: 94
Join Date: Mar 2007
Posts: 569
Received Thanks: 1,497
Quote:
Originally Posted by ayzal09 View Post
Can you do for Pserver too? Since the server files came from Aeria. I can provide also game.bin if you want. I tried it and my client did not crash but nothing show ed up.
Quote:
Originally Posted by Oriya9 View Post
I do not have any plans for anything private-server-related at the moment, sorry.
/1char
Oriya9 is offline  
Old 03/28/2014, 04:58   #80
 
elite*gold: 0
Join Date: Oct 2009
Posts: 61
Received Thanks: 20
This look interesting to me. I might try it out and maybe play around with it to see if I can reset the DNG cool down.
thaikill is offline  
Old 03/28/2014, 14:27   #81
 
elite*gold: 0
Join Date: May 2009
Posts: 236
Received Thanks: 177
Seems like this game uses WSASend rather than Send() only. Anyway Recv packets are useless. Detouring the encryption function is a good workaround. Just need to find the function address make assembly to it hook via detour of MS. Then call it.

An example would be like this.

static DWORD EncryptionAddress = 0x0000000;
void Encryption(int a1, int a2, DWORD a3, const char * a4);
{
___asm
{
push a4
push a3
push a2
push a1
Call EncryptionAddress
ADD ESP, 16 // CLean stacks
}
}
where a1 = size
a2 = sort of pointer
a3 = headers
a4 = packet you wanna send

those pushes and args will definitely be not like that. Just an example. Just giving out a clue for those who wanted to send packets to their own. Keep in mind that wrong packet might kick you out of the game or crash (especially wrong calling of arguments)
ken12 is offline  
Old 03/28/2014, 15:10   #82
 
Oriya9's Avatar
 
elite*gold: 94
Join Date: Mar 2007
Posts: 569
Received Thanks: 1,497
Quote:
Originally Posted by ken12 View Post
Seems like this game uses WSASend rather than Send() only. Anyway Recv packets are useless. Detouring the encryption function is a good workaround. Just need to find the function address make assembly to it hook via detour of MS. Then call it.

An example would be like this.

static DWORD EncryptionAddress = 0x0000000;
void Encryption(int a1, int a2, DWORD a3, const char * a4);
{
___asm
{
push a4
push a3
push a2
push a1
Call EncryptionAddress
ADD ESP, 16 // CLean stacks
}
}
where a1 = size
a2 = sort of pointer
a3 = headers
a4 = packet you wanna send

those pushes and args will definitely be not like that. Just an example. Just giving out a clue for those who wanted to send packets to their own. Keep in mind that wrong packet might kick you out of the game or crash (especially wrong calling of arguments)
You don't even need to do that. you can just re-write the encryption and grab the initialized key/initialize your own key. you don't need to hook it.
and the game is not using WSASend after you actually log into one of the channels.
read my previous posts, the only two things the PE is hooking are WSAConnect and closesocket and it's working great.
Oriya9 is offline  
Old 03/28/2014, 15:49   #83
 
elite*gold: 0
Join Date: May 2009
Posts: 236
Received Thanks: 177
Oh yeah just figure it out too.. It only uses WSA sockets for few steps then -> Send is on the go..

Oh I meant calling a function not detouring. @.@ My bad.
ken12 is offline  
Old 03/28/2014, 16:02   #84
 
elite*gold: 0
Join Date: Dec 2010
Posts: 22
Received Thanks: 0
Quote:
Originally Posted by Oriya9 View Post
/1char
Ok ok. Too bad i don't play the official. Thanks anyway.
ayzal09 is offline  
Old 03/28/2014, 17:09   #85
 
TheStupidDog's Avatar
 
elite*gold: 0
Join Date: Sep 2009
Posts: 78
Received Thanks: 54
I managed to find a way to change the amount or items in a trade window. The person on the other end will see one thing, but the end result of the trade will be different.

In short, I was able to trade with a friend and put 500 gold in the trade window. While the trade window was up and locked, I was able to change the amount in the trade window to whatever I wanted and it didn't show up on his screen. After completing the trade, I received the item and he got 1 silver instead of 500 gold. Obviously this is a serious screw up and you should not use the trade function for any reason until it's fixed. The mail is by far the most secure way of trading.

tl;dr version. DO NOT USE THE TRADE WINDOW. If someone refuses to COD and insists on using the trade window, they're very likely trying to scam you.
TheStupidDog is offline  
Thanks
3 Users
Old 03/28/2014, 18:26   #86
 
elite*gold: 0
Join Date: Jun 2008
Posts: 30
Received Thanks: 17
i found free dye...
not actually need the item, can just send the right color packet to change to any color u want...

say no more to expensive dyes


PS: if someone want to make trainer for it, can be done via client sided with CE or something
sakray777 is offline  
Thanks
2 Users
Old 03/28/2014, 18:58   #87
 
TheStupidDog's Avatar
 
elite*gold: 0
Join Date: Sep 2009
Posts: 78
Received Thanks: 54
Nice find! Any chance you'd like to share the packet? (I don't have any dye on my characters to get the packet myself )
TheStupidDog is offline  
Old 03/28/2014, 19:04   #88
 
elite*gold: 0
Join Date: Jun 2008
Posts: 30
Received Thanks: 17
B0 00 01 00 02 00 FF FF FF FF 01 xx
B0 00 01 00 02 00 FF FF FF FF 02 xx
B0 00 01 00 02 00 FF FF FF FF 03 xx

its for any dyeable costumes i guess, i tried that on custom frost wiz,
change xx to 00* default till 19* white, for other color look at ur color selection,

for other costume like custom hat or back just try ur self xD
dont have dyeable custom hat or back hehehe...


*hex
sakray777 is offline  
Thanks
3 Users
Old 03/28/2014, 19:05   #89
 
elite*gold: 0
Join Date: May 2008
Posts: 12
Received Thanks: 2
Quote:
Originally Posted by TheStupidDog View Post
I managed to find a way to change the amount or items in a trade window. The person on the other end will see one thing, but the end result of the trade will be different.

In short, I was able to trade with a friend and put 500 gold in the trade window. While the trade window was up and locked, I was able to change the amount in the trade window to whatever I wanted and it didn't show up on his screen. After completing the trade, I received the item and he got 1 silver instead of 500 gold. Obviously this is a serious screw up and you should not use the trade function for any reason until it's fixed. The mail is by far the most secure way of trading.

tl;dr version. DO NOT USE THE TRADE WINDOW. If someone refuses to COD and insists on using the trade window, they're very likely trying to scam you.
try it again. pretty sure its client sided. was trying it with my friend. we also tried blocking packets and its still sending the previous gold we put
pussyhater is offline  
Old 03/28/2014, 20:03   #90
 
TheStupidDog's Avatar
 
elite*gold: 0
Join Date: Sep 2009
Posts: 78
Received Thanks: 54
It wasn't visual, we checked that and re-tested it. I can replicate this and get the same results everytime :/ The amount he saw in his window (that I was meant to be giving him) wasn't the amount the he got after pressing the OK button.
TheStupidDog is offline  
Reply


Similar Threads Similar Threads
duplicating
09/30/2012 - General Gaming Discussion - 3 Replies
can any1 please share with me as to how they duplicate items in the game... ty in advance.
[WTB]Duplicating hack
01/15/2012 - Dekaron Trading - 3 Replies
Wtb an item duplication hack
Duplicating??!?!?!
04/29/2009 - General Gaming Discussion - 25 Replies
Hello All Neocron Runners, I'm wondering what Macro, as well as how exactly to dupp. I've read a few threads on here, but its mainly german, or they say how but doesnt exactly work cuz i dont know the macro and other things... please let me know how 0_o
[Help] Duplicating a map?
01/10/2009 - CO2 Private Server - 2 Replies
Is it possible to duplicate the same map over and over again?
WoW Key Duplicating
10/17/2005 - World of Warcraft - 10 Replies
-------------------------------------------------- ----------- World of Warcraft Key Duplicating by SiLENCE.D3 Tested on EU Servers ------------------------------------------------- ------------ So, you whant a second World of Warcraft Key? Just follow these: This is Your Key: 123ABC-12AB-123ABC-12AB-123ABC Block1: 123ABC



All times are GMT +1. The time now is 01:36.


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