Change where a reflex pionts
Change where a reflex pionts
How would i take the reflex
0100 0000 7888 1E80
which points to offset 992 and make it point to say offset 1065??
thanks for help
0100 0000 7888 1E80
which points to offset 992 and make it point to say offset 1065??
thanks for help
-
- Posts: 357
- Joined: Sun Mar 07, 2004 4:34 pm
![]() |
![]() |
![]() |
if you wanted to calcuate a reflexive by hand:
you would take the reflexive (7888 1E80) and edian swap it (swap in pairs)
so that would be 80 1e 88 78
then you would subtract map magic, which would give you the offset.
if you wanted to make a reflexive you do the opposite.
offset + mapMagic = x (and you edian swap that)
correct me if i'm wrong, i havent done reflexives since halo
you would take the reflexive (7888 1E80) and edian swap it (swap in pairs)
so that would be 80 1e 88 78
then you would subtract map magic, which would give you the offset.
if you wanted to make a reflexive you do the opposite.
offset + mapMagic = x (and you edian swap that)
correct me if i'm wrong, i havent done reflexives since halo

-
- Posts: 565
- Joined: Wed Nov 17, 2004 8:41 am
- Location: Vancouver, BC This is where people put their modding team because they feel important.
- Contact:
![]() |
![]() |
Heres how using examples and the map I've got open right now and a random meta tag
So Map = ascension
Tag = banshee_bomb
Lets use the first reflex
The first reflex is
03 00 00 00 24 CB 2D 80
so thats chunk count 3
and the adress the reflex points to is:
802DCB24-Secondary Map Magic
gives us the raw offset
19AF724
So the offset to our current tag is 19AF580
19AF724-19AF580=1A4
or
420
This reflex points to adress 0x1A4 in the meta Banshee Bomb.
Your going to have to find exactly what tag the offset points to yourself if it doesnt point to anything in the current tag
So Map = ascension
Tag = banshee_bomb
Lets use the first reflex
The first reflex is
03 00 00 00 24 CB 2D 80
so thats chunk count 3
and the adress the reflex points to is:
802DCB24-Secondary Map Magic
gives us the raw offset
19AF724
So the offset to our current tag is 19AF580
19AF724-19AF580=1A4
or
420
This reflex points to adress 0x1A4 in the meta Banshee Bomb.
Your going to have to find exactly what tag the offset points to yourself if it doesnt point to anything in the current tag
Last edited by Shalted on Wed Oct 19, 2005 10:35 pm, edited 1 time in total.
Awaiting connection...
-
- Posts: 463
- Joined: Mon Mar 28, 2005 6:32 pm
-
- Posts: 463
- Joined: Mon Mar 28, 2005 6:32 pm
-
- Posts: 357
- Joined: Sun Mar 07, 2004 4:34 pm
![]() |
![]() |
![]() |