Hi ich wollte nur mal einen Camerahack-code releasen !
Wer bock hat kann ihn ja benutzen oder sonstwas ! :D
Wer sich fragt warum ich sonen löpúe reinstelle : Langeweile !:confused:
PHP Code:
#include <NomadMemory.au3>
#include <GUIConstantsEx.au3>
#Include <Constants.au3>
$Form1 = GUICreate('S4 Camera by [S]4[H]acker',191,202)
GUISetBKColor (0xffffff)
$Label1 = GUICtrlCreateLabel('Zoom',9,8)
GUICtrlSetBkColor(-1, $GUI_BKCOLOR_TRANSPARENT)
GUICtrlSetColor ($label1, 0x000000)
$Input1 = GUICtrlCreateInput('',9,23,172,20)
$Label2 = GUICtrlCreateLabel('X Axe',10,56)
GUICtrlSetColor ($label2, 0x000000)
GUICtrlSetBkColor(-1, $GUI_BKCOLOR_TRANSPARENT)
$Input2 = GUICtrlCreateInput('',10,71,172,20)
$Label3 = GUICtrlCreateLabel('Y Axe',11,107)
GUICtrlSetColor ($label3, 0x000000)
GUICtrlSetBkColor(-1, $GUI_BKCOLOR_TRANSPARENT)
$Input3 = GUICtrlCreateInput('',11,122,172,20)
$Button1 = GUICtrlCreateButton('Start',11,163,75,23)
$Button2 = GUICtrlCreateButton('Close',93,163,75,23)
GUISetState(@SW_SHOW)
#EndRegion ### GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $Button1
_Start()
Case $Button2
Exit
EndSwitch
$tMsg = TrayGetMsg()
Switch $tMsg
Case $exititem
Exit
Case $startitem
_Start()
EndSwitch
WEnd
Func _Start()
ToolTip('Waiting for S4Client.exe...',0,0)
ProcessWait('S4Client.exe')
$PID = ProcessExists('S4Client.exe')
ToolTip('Hack !',0,0)
Sleep(600)
$open = _MemoryOpen($PID)
_MemoryWrite(0x00F124DC,$open,GUICtrlRead($Input1),'float')
_MemoryWrite(0x01277A28,$open,GUICtrlRead($Input1),'float')
_MemoryWrite(0x00F6E104,$open,GUICtrlRead($Input2),'float')
_MemoryWrite(0x00F12730,$open,GUICtrlRead($Input3),'float')
_MemoryClose($open)
Exit
EndFunc
Wer sich fragt warum ich sonen löpúe reinstelle : Langeweile !:confused: