Page 3 of 3

Posted: Mon Jul 31, 2006 11:23 am
by ?mike?
crap now i remember that one! i feel like a dumbass :?


EDIT-- ive been trying reflexives for some time now and something is not working. this is what i do tell me if its wrong.

1. i go to the meta of a weapon
2. i know that the offset is 0x00 and that its a reflexive
3. i skip the first long which is 02 00 04 00 and go to 9A 99 19 3F
4. i make that into 3F 19 99 9A
5. i minus the magic from that and get a new offset.
6. i try to go to that offset and it doesnt exist.

im only asking because ive been trying to do this for some time and keep getting the same answers that dont work!

Posted: Mon Jul 31, 2006 12:46 pm
by A Bunny
¿mike? wrote:crap now i remember that one! i feel like a dumbass :?


EDIT-- ive been trying reflexives for some time now and something is not working. this is what i do tell me if its wrong.

1. i go to the meta of a weapon
2. i know that the offset is 0x00 and that its a reflexive
3. i skip the first long which is 02 00 04 00 and go to 9A 99 19 3F
4. i make that into 3F 19 99 9A
5. i minus the magic from that and get a new offset.
6. i try to go to that offset and it doesnt exist.

im only asking because ive been trying to do this for some time and keep getting the same answers that dont work!
You have the wrong offset, 0x00 is part of the structure not the reflexive offset, to find the reflexive for the structure you want look for an attribute like this:

Code: Select all

  <value>

   <type>reflexive</type>

   <offset>0x4FC</offset>

   <name>Projectile</name>

  </value>
Except with the same name as the structure you wish to locate.

Posted: Mon Jul 31, 2006 1:53 pm
by ?mike?
lol i feel so stupid i knew that and i still did not remember to do it!


well thanks for the help!