Offset For 5517+ Flower Spawning

09/11/2011 11:51 marlyandedsel#1
Quote:
public uint ActualMyTypeFlower
{
get { return f_flower; }
set
{
f_flower = value;
WriteUInt32(value, 113, SpawnPacket);
}
}
Can I ask please what is the correct offset of this one? the red color? for the 5165 its 84, but this is for 5517+ Thanks in advance..
09/11/2011 16:30 pro4never#2
What I use to find simple single offsets like this is I create a command to continually modify the offset I'm writing to and a hardcoded (or cmd modified) value.

Lets you find offsets for little things like that very, very quickly.

Hell I structured my entire warehouse packet just using that type of a cmd.
09/12/2011 15:19 dego4ever#3
Quote:
Originally Posted by pro4never View Post
What I use to find simple single offsets like this is I create a command to continually modify the offset I'm writing to and a hardcoded (or cmd modified) value.

Lets you find offsets for little things like that very, very quickly.

Hell I structured my entire warehouse packet just using that type of a cmd.
nice idea ;)
06/27/2012 11:40 marlyandedsel#4
can you give us clue code for that pro?
06/27/2012 12:03 Sp!!ke#5
edsel when you will be online buzz me, I will give you correct offset for flowers ..
06/27/2012 12:10 marlyandedsel#6
yes thanks I already got it long time ago, I just want some clue on how to get some offset the way what pro said just a clue code so that I can learn on how to get some offset not just for flowers.....
06/27/2012 15:47 Zeroxelli#7
Quote:
Originally Posted by pro4never View Post
What I use to find simple single offsets like this is I create a command to continually modify the offset I'm writing to and a hardcoded (or cmd modified) value.

Lets you find offsets for little things like that very, very quickly.

Hell I structured my entire warehouse packet just using that type of a cmd.
Same here, that's how I found the majority of my packets back before there were any wikis with the structures. Doesn't take but a minute or two for someone to write a loop..