Sending Packets

10/05/2011 02:28 Smurfin#271
what tools do you use for recording packets ? I remember Interest07 said the packets was retreived before it got encrypted.

can anyone experienced in this share the tools for doing that ? it's very convenient to have a lot of useful packets collection for doing stuffs instantly.

I ever tried using wpepro in other game but it has a lot of packets (send/receive), how do you know which packet is for doing what
10/05/2011 09:51 Sᴡoosh#272
Yeah, you can "copy" packets out of recv buffer after they are decrypted and decompressed.

Sorry, I never share any of my tools - i'm a capitalistic asshole in that direction.

WPE wont work here - it analyses packets in direct recv buffer and send buffer, not en/decrypted ones. Hence useless sadly.

Cheers
10/05/2011 11:04 Interest07#273
THought I posted what I use in thsi thread somewhere... hmm


[Only registered and activated users can see links. Click Here To Register...]
10/05/2011 13:33 Smurfin#274
Quote:
Originally Posted by Sᴡoosh View Post
Yeah, you can "copy" packets out of recv buffer after they are decrypted and decompressed.

Sorry, I never share any of my tools - i'm a capitalistic asshole in that direction.

WPE wont work here - it analyses packets in direct recv buffer and send buffer, not en/decrypted ones. Hence useless sadly.

Cheers
ahaha you've all been much helpful with offsets alone and sharing some other useful stuffs though :handsdown:
and yea WPE kinda give nothing, it's like giving packets from an entirely different game lol, maybe because it's decrypted and compressed like you said.

Quote:
Originally Posted by Interest07 View Post
THought I posted what I use in thsi thread somewhere... hmm


[Only registered and activated users can see links. Click Here To Register...]
at post #239 using MHS ? is that a script to run in MHS ? I ever tried MHS and I don't understand much using it, I'll give it a try again later
10/05/2011 17:27 Interest07#275
Quote:
Originally Posted by Smurfin View Post
ahaha you've all been much helpful with offsets alone and sharing some other useful stuffs though :handsdown:
and yea WPE kinda give nothing, it's like giving packets from an entirely different game lol, maybe because it's decrypted and compressed like you said.



at post #239 using MHS ? is that a script to run in MHS ? I ever tried MHS and I don't understand much using it, I'll give it a try again later
yeah you set a breakpoint in MHS on the sendpacket function address, and set it to run a script with param 1 when the breakpoint hits. You should have the script editor opened and it should output the packets (non encrypted) there in the output section.
11/16/2011 07:08 Smurfin#276
was the packet for acceptquest/HandInQuest changed after genesis patch ?
it doesnt seem to be working after genesis patch, the startnpcdialogue is still working fine though.

*edit*
HandInQuest is still working, it's acceptQuest which is not working.
If anyone has a working acceptQuest, plz post it here
01/08/2012 12:51 chersanya#277
Thanks for such a large base of packets, it really helps much =)
But I can't understand, how to set up a catshop? There is only one packet here related to this, which opens initial catshop window. I tried to use packet sniffer then, but couldn't get other related packets. Any help appreciated =)
02/04/2012 01:05 orve#278
Interest07

Could you teach me how to capture and edit data packets in the Brazilian servers so my goal and I'm starting learning studies in computer science and all knowledge at this point and little

help me if I would be very grateful
02/12/2012 04:13 atelarie#279
This has a lot of potential for my little bot that i'm currently developing.
Unfortunately i's a bit stuck in real base address; I can't seem to find any useful hints for what it is and how to find it.
Is there any guide, list or anything that i can use to find real base address?
any help will be highly appreciated.
many thanks
02/12/2012 09:10 Interest07#280
Quote:
Originally Posted by atelarie View Post
This has a lot of potential for my little bot that i'm currently developing.
Unfortunately i's a bit stuck in real base address; I can't seem to find any useful hints for what it is and how to find it.
Is there any guide, list or anything that i can use to find real base address?
any help will be highly appreciated.
many thanks
if you look for your player MP for example, you'll find an offset 'chain' as follows:

Code:
MP = [[[[realBaseAddress] + 0x1C] + 0x34] + 0x494]
That should tell you enough I hope :)
02/13/2012 03:39 atelarie#281
[QUOTE=That should tell you enough I hope :)[/QUOTE]

bullseye! thanks interest07 you're the man.
02/13/2012 13:30 Smurfin#282
@Interest07, do you have equipped weapon's durability offset ?
02/14/2012 10:24 Interest07#283
Quote:
Originally Posted by Smurfin View Post
@Interest07, do you have equipped weapon's durability offset ?

Code:
currentDur = [[[[[[[realBaseAddress] + 0x1C] + 0x34] + 0xCB0] + 0xC] + 0x0] + 0x68]
maxDur =  [[[[[[[realBaseAddress] + 0x1C] + 0x34] + 0xCB0] + 0xC] + 0x0] + 0x6C]
02/14/2012 11:50 Smurfin#284
tks Interest07, just about time before PWI gets upgraded to Descent tomorrow.
02/14/2012 19:34 atelarie#285
Quote:
Originally Posted by Smurfin View Post
tks Interest07, just about time before PWI gets upgraded to Descent tomorrow.
wait. PWI as in PW International or PWI as in PW Indo? I'm a bit lost in the abbreviation used in this forum.

Interest07 thanks for the durability tip. currently i'm using a timer and a guestimate to switch weapons. now i can flush my guestimate down the drain.