Re: did i do this right??
Mhm bit impressive did you try it??? because pm me if you want me to help you on making your first joker??? just asking and why not make it short
Re: did i do this right??
dats real wrong check this.if im wrong jus correct me
J - Hook
lui t0 $XXXX - 1st Half Of Pointer in real addressing(+0880)
lw t1 $XXXX(t0) - 2nd Half Of Pointer
lui t1 $XXXX - 1st Half Of Hex
addiu t1 t1 $XXXX - 2nd Half Of Hex
sw t1 $XXXX(t0) - Off Set
jr ra - End Routine
but if its a multi sub jus to this
J - Hook
lui t0 $XXXX - 1st Half Of Pointer in real addressing(+0880)
lw t1 $XXXX(t0) - 2nd Half Of Pointer
lui t1 $XXXX1 - 1st Half Of Hex
addiu t1 t1 $XXXX - 2nd Half Of Hex
sw t1 $XXXX(t0) - Off Set
lui t3 $XXXX - 1st Half Of Pointer in real addressing(+0880)
lw t4 $XXXX(t3) - 2nd Half Of Pointer
lui t4 $XXXX - 1st Half Of Hex
addiu t4 t4 $XXXX - 2nd Half Of Hex
sw t4 $XXXX(t3) - Off Set
jr ra - End Routine
Re: did i do this right??
i used almost the same templete you did black kid except the 2nd half of the addys were at the end
and it works i tested it
wtf why is warcrazy ban?!?!?!?!?!
another stupid question but whats off set?
Re: did i do this right??
the offset is the difference between the address that the pointer jumps to and the actual codes address
Pointer
#DMA Virus Mode
0xFFFFFFFF 0x007CD1C
0x00000BD8 0x00000001
Virus mode
;tonic
0x0055A048 0x00000001
7cd1c is the pointer - the pointer points to an address
7cd1c points to 8d59470
8d59470 is in real addressing so you subtract 08800000
you get 559470
the difference between 559470 and 55a048 is the offset
bd8 is the offset - the offset is the difference between the non dma'd codes address and the address at the pointer minus 8800000
check out my unDMA tut if you still dont understand
Re: did i do this right??
i sorta get it
definitely gonna check out your tut thanks!