Quote:
Originally Posted by shadowman123
If u have Female char ... Could Do packet 2707 to us ? .. my only problem is that i dont have female char that can do transformation
|
That'd be impossible at the moment, unfortunately. Flowers have been botted for the past two or three years on my server, plus I haven't been on real co in a long time.
If I still had my Co2 source, I would help you. But I do not. All I can tell you is that you should open a packet logger and ask someone around you to transform.
EDIT: Also, if you're trying to find the packet for displaying the number of flowers, etc, just keep entering different values. For one offset, use 12345, for the next, 12346, etc. Then you know that if the number of flowers is 12346, it's the offset you set as 12346. That's one of the best ways to go about it if you don't have a way of logging the packets. The second way, of course, would be to run OllyDBG or VS On-Time debugger and find the handler for the packet in the conquer client. You can find the offsets that way. Or rather, find an estimate for them.
For example, if it reads four values of two Int32s, one Int16, and one Byte, you know that's a length of at least 15, since we know that an Int32 (or UInt32) is four bytes, and we have two. That's eight bytes. An Int16 (or UInt16/UShort/Short) is two bytes, and a byte is, of course, one byte. That brings it to 11 bytes, and we add the 4 bytes for the header (length + type). Good luck.