Quote:
Originally Posted by rexzshadow
I tried the range hack but instead of increasing my range made my ranger melee lol can you explain the part where it scan for the address which address do you edit? and do you edit the number you want your new range to be? thanks.
|
If you watch the video in HD you will see what I edit!
Anyway, this is how to do it:
1- Scan for this assembly code (from 00000000 to FFFFFFFF):
Code:
movss xmm0,*
jmp *
movss xmm0,*
jmp *
movss xmm0,*
jmp *
movss xmm0,*
jmp *
movss xmm0,*
jmp *
movss xmm0,*
jmp *
movss xmm0,*
2- You will find this address:
Code:
Neuz.exe+2C1AF4 - F3 0F10 05 ACBD6F01 - movss xmm0,[Neuz.exe+6EBDAC]
3 - the address to edit is this one:
Code:
Neuz.exe+2C1B41 - F3 0F11 45 08 - movss [ebp+08],xmm0
4- Your range is at
[ebp+08]. Transform the range value you want from float to hex using this website for example
[Only registered and activated users can see links. Click Here To Register...]
If you want a range of 90.0 (hex=42b40000) you can replace this opcode
Code:
movss [ebp+08],xmm0
by this new one
Code:
mov [ebp+08],42b40000
Is it clear now :)