Working on patch 5028 - TEMPORARY SPEEDHACK TILL THE NON DC SPEEDHACK COMES ALIVE
simple standalone speedhack written in autoit will show false possitive's
MOD can confirm that is shows false possitive results
!!! THIS SPEEDHACK HAS SOO MANY BUGS ****!!!
!!! IT TURNS OFF WHEN THE XP SKILL COMES OUT!!!
!!! SO YOU MUST FIRST USE THE XP SKILL THEN TURN THE SPEEDHACK BACK ON WITH THE HOTKEY F11!!!
THIS SPEEDHACK IS TERMPORARY ONLY!!!
IF YOU KNOW HOW TO FIX THIS SHIT PLS FIX THIS **** AND LET ME KNOW
features:
1. this is a dc speedhack you will dc
2. hotkey for on/off is F11
instructions:
1. open speedhack
2. alt tab to your character whom you want speedhack to be enabled to
3. press f11
4. viola speedhack is on
simple standalone speedhack written in autoit will show false possitive's
MOD can confirm that is shows false possitive results
!!! THIS SPEEDHACK HAS SOO MANY BUGS ****!!!
!!! IT TURNS OFF WHEN THE XP SKILL COMES OUT!!!
!!! SO YOU MUST FIRST USE THE XP SKILL THEN TURN THE SPEEDHACK BACK ON WITH THE HOTKEY F11!!!
THIS SPEEDHACK IS TERMPORARY ONLY!!!
IF YOU KNOW HOW TO FIX THIS SHIT PLS FIX THIS **** AND LET ME KNOW
features:
1. this is a dc speedhack you will dc
2. hotkey for on/off is F11
instructions:
1. open speedhack
2. alt tab to your character whom you want speedhack to be enabled to
3. press f11
4. viola speedhack is on
Quote:
SOURCE CODE
$Form1 = GUICreate("Emmanic's Speed", 126, 36, 193, 125)
$Label1 = GUICtrlCreateLabel("SpeedHack", 8, 12, 113, 17)
$Button1 = GUICtrlCreateButton("On/Off",80,4,40,30)
GUISetState(@SW_SHOW)
Func Speed()
$Process = WinGetProcess ("[Conquer2.0")
$Open = _MemoryOpen($Process)
$Read = _MemoryRead(0x0056B06B, $Open)
If $Read=255 Then
_MemoryWrite(0x0056B06B, $Open, 2147483903)
MsgBox(0,"","Speedhack On")
Else
_MemoryWrite(0x0056B06B, $Open, 255)
MsgBox(0,"","Speedhack Off")
EndIf
_MemoryClose($Open)
EndFunc
While 1
$nMsg = GUIGetMsg()
HotKeySet("{f11}", "Speed")
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $Button1
$Process = WinGetProcess ("[Conquer2.0")
$Open = _MemoryOpen($Process)
$Read = _MemoryRead(0x0056B06B, $Open)
If $Read=255 Then
_MemoryWrite(0x0056B06B, $Open, 2147483903)
MsgBox(0,"","Speedhack On")
Else
_MemoryWrite(0x0056B06B, $Open, 255)
MsgBox(0,"","Speedhack Off")
EndIf
_MemoryClose($Open)
EndSwitch
WEnd