|
You last visited: Today at 19:11
-
Did you know? elitepvpers has its own image host, epvpimg.com.
HELP? Autoit Hack
This is a discussion on HELP? Autoit Hack within the AutoIt forum part of the Coders Den category; Cna someone say to me what's the problem in my hack?
Code:
#RequireAdmin
#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#include ...
07-15-2012, 17:15
|
#1
|
kiko298
Join Date: Apr 2010
Posts: 38
Received Thanks: 25
|
HELP? Autoit Hack
Cna someone say to me what's the problem in my hack?
Code:
#RequireAdmin
#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#include <NomadMemory.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Mini-Trainer-88", 332, 174, 192, 124)
$Button1 = GUICtrlCreateButton("Start", 48, 64, 89, 33)
$Checkbox1 = GUICtrlCreateCheckbox("Speed", 32, 16, 121, 25)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
case $Button1
Hack()
Func Hack()
ToolTip("Start S4 League!",0,0)
$PID = ProcessWait("S4Client.exe")
$OPEN = _MemoryOpen($PID)
If GUICtrlRead($Checkbox1) = 1 then
_MemoryWrite(0x005CCCD4, $OPEN, "99999999", "long")
_MemoryClose($PID)
EndIf
Exit
EndFunc
EndSwitch
WEnd
__________________
|
|
|
07-15-2012, 17:18
|
#2
|
Senior Member
Join Date: Dec 2011
Posts: 139
Received Thanks: 91
|
Actually epvp has a separate forum where you can ask your question, i don't mean to be rude but you are not supposed to ask such questions here. AutoIt
|
|
|
07-15-2012, 18:03
|
#3
|
Comes out of Hell
Join Date: Jan 2012
Posts: 1,068
Received Thanks: 1,134
|
It should be like that,sir:
Code:
#RequireAdmin
#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#include <NomadMemory.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Mini-Trainer-88", 332, 174, 192, 124)
$Button1 = GUICtrlCreateButton("Start", 48, 64, 89, 33)
$Checkbox1 = GUICtrlCreateCheckbox("Speed", 32, 16, 121, 25)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
case $Button1
_Hack()
EndSwitch
WEnd
Func Hack()
ToolTip("Start S4 League!",0,0)
$PID = ProcessWait("S4Client.exe")
$OPEN = _MemoryOpen($PID)
If GUICtrlRead($Checkbox1) = 1 then
_MemoryWrite(0x005CCCD4, $OPEN, "99999999", "long")
EndIf
EndFunc
This is my trainer's base, Hope it helped ya
Kind Regards,
Hybrid~
|
|
|
07-15-2012, 18:11
|
#4
|
(´・ω・ `) Inactive
Join Date: Nov 2008
Posts: 42,057
Received Thanks: 12,521
|
S4 League -> AutoIt
/moved
Code:
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
case $Button1
Hack()
you forget EndSwitch and WEnd
Quote:
Originally Posted by ™Hybrid™
He didn't
He putted them at the end of the script
|
srsly dafug
Last edited by Der-Eddy; 07-16-2012 at 02:24.
|
|
|
07-15-2012, 18:20
|
#5
|
Comes out of Hell
Join Date: Jan 2012
Posts: 1,068
Received Thanks: 1,134
|
Quote:
Originally Posted by Der-Eddy
/moved
Code:
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
case $Button1
Hack()
you forget EndSwitch and WEnd
|
He didn't
He putted them at the end of the script
|
|
|
All times are GMT +2. The time now is 19:11.
|
|