Very quick question need quick answer!

10/25/2009 17:53 911Hacker#1
On line 21 of the CE non agro, what is the regular speed of the mobs? what do I change??

I wanna non agro that doesnt make the monsters so speedy... thansk!
10/25/2009 18:02 Vaidas B#2
u want normal mob speed?
10/25/2009 19:56 911Hacker#3
Quote:
Originally Posted by waidas123 View Post
u want normal mob speed?
Yes, I need it so the only thing that changes is that they dont hurt me.

:handsdown:
10/26/2009 07:18 Syberboy#4
40c00000
10/26/2009 17:50 911Hacker#5
Quote:
Originally Posted by Syberboy View Post
40c00000
What do I replace that with?
10/26/2009 20:24 Vaidas B#6
Code:
[ENABLE]
alloc(newmem,1024)
label(returnhere)
label(originalcode)
label(exit)

0053D10A:
jmp newmem
nop
nop
returnhere:

newmem:

originalcode:
movzx eax,word ptr [esi+00000154]

//mov eax,01
//mov word ptr [esi+00000156],ax
[color="red"]mov [esi+00000070],[/color] [color="green"]41400000[/color] [color="red"]// speed mob[/color]
//40c00000 = 6 lv 1 (to replace the above blue color)
//40400000 = 12 lv 2 (to replace the above blue color)
//41c00000 = 24 lv 3 (to replace the above blue color)
mov byte ptr [esi+00000174],00 // malee attack range = 0
mov byte ptr [esi+00000244],00 // magic attack range = 0
mov [esi+00000240],0000000 //other attack range = 0
mov [esi+0000023c],0000000 //other attack range = 0
mov [esi+00000238],0000000 //other attack range = 0
mov eax,03
mov word ptr [esi+00000154],ax

exit:
jmp returnhere


[DISABLE]
dealloc(newmem)

0053D10A:
movzx eax,word ptr [esi+00000154]
green