[HELP]Speedhack

07/23/2009 20:44 guisejj#1
My buddy gave me this speed hack but its really slow how can i speed it up?

Code:
[ENABLE]
alloc(newmem,1024)
label(returnhere)
label(originalcode)
label(exit)

007C42AA:
jmp newmem
returnhere:

newmem:
mov [eax+08],40BEDD2E // change float point to desire speed
mov [eax+0c],44C48C75 // change float point to desire speed

originalcode:
fld dword ptr [eax+08]
pop edi
pop esi

exit:
jmp returnhere

a2E4C0:
dd 44600000

[DISABLE]
dealloc(newmem)
007C42AA: // D9 40 08 5F 5E C3 8B 0D 0C 8E BF 00 8B 01 56 57 FF 50 08 8B 0D 0C 8B BF
fld dword ptr [eax+08]
pop edi
pop esi

a2E4C0: // 64 79 00 00 54 5F 50 6F 72 74 00 00 52 5F 57 65 61 70 6F 6E 00 00 00 00
dd 44700000
07/23/2009 20:47 Vaidas B#2
Quote:
Originally Posted by guisejj View Post
My buddy gave me this speed hack but its really slow how can i speed it up?

Code:
[ENABLE]
alloc(newmem,1024)
label(returnhere)
label(originalcode)
label(exit)

007C42AA:
jmp newmem
returnhere:

newmem:
[color="red"]mov [eax+08],40BEDD2E // change float point to desire speed[/color]
[color="red"]mov [eax+0c],44C48C75 // change float point to desire speed[/color]

originalcode:
fld dword ptr [eax+08]
pop edi
pop esi

exit:
jmp returnhere

a2E4C0:
dd 44600000

[DISABLE]
dealloc(newmem)
007C42AA: // D9 40 08 5F 5E C3 8B 0D 0C 8E BF 00 8B 01 56 57 FF 50 08 8B 0D 0C 8B BF
fld dword ptr [eax+08]
pop edi
pop esi

a2E4C0: // 64 79 00 00 54 5F 50 6F 72 74 00 00 52 5F 57 65 61 70 6F 6E 00 00 00 00
dd 44700000
those are hex value's, find the speed u want, make it hex and change thease
07/23/2009 22:51 guisejj#3
Code:
[ENABLE]
alloc(newmem,1024)
label(returnhere)
label(originalcode)
label(exit)

007C42AA:
jmp newmem
returnhere:

newmem:
[COLOR="Red"]mov [eax+08],706de52e // change float point to desire speed
mov [eax+0c],706de52e // change float point to desire speed
[/COLOR]
originalcode:
fld dword ptr [eax+08]
pop edi
pop esi

exit:
jmp returnhere

a2E4C0:
dd 44600000

[DISABLE]
dealloc(newmem)
007C42AA: // D9 40 08 5F 5E C3 8B 0D 0C 8E BF 00 8B 01 56 57 FF 50 08 8B 0D 0C 8B BF
fld dword ptr [eax+08]
pop edi
pop esi

a2E4C0: // 64 79 00 00 54 5F 50 6F 72 74 00 00 52 5F 57 65 61 70 6F 6E 00 00 00 00
dd 44700000
So like that?
07/24/2009 01:35 cgsrki#4
found this in my non agro script mbe it will help....
//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)

so i quess if u use 41c00000 u will have ur speed x3...
07/25/2009 08:21 fuckdie#5
1038090 increases speed by 10% so just add this to 1075942785, then after ur done finding the speed u wanna go, u must make it hexadecimal.
07/26/2009 00:02 sachamo512#6
change the hex value in your script (where it says "Change to desired speed") to whaterver you want. What I did was convert the standard number to decimal, which is like 1071682. I changed the 107 to 108, then 109, then 110 and called them speed 1, speed 2 and speed 3.

Just edit that value until you find whichever one you like.