|
You last visited: Today at 07:06
Advertisement
Help With 1. Hack Please
Discussion on Help With 1. Hack Please within the S4 League forum part of the Shooter category.
04/24/2012, 20:36
|
#1
|
elite*gold: 99
Join Date: Jul 2010
Posts: 199
Received Thanks: 161
|
Help With 1. Hack Please
Hello Every one.
I'm trying to make my first hack.
but its not working
Can someone pls tell me whats wrong?
Or Even if the Add's are wrong.
This Is the code
Code:
#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#include <NomadMemory.au3>
#Region ### START Koda GUI section ### Form=Form1.kxf
$Form1 = GUICreate("1. Hack", 168, 94, 192, 124)
GUISetBkColor(0xFF0000)
GUISetOnEvent($GUI_EVENT_CLOSE, "Form1Close")
GUISetOnEvent($GUI_EVENT_MINIMIZE, "Form1Minimize")
GUISetOnEvent($GUI_EVENT_MAXIMIZE, "Form1Maximize")
GUISetOnEvent($GUI_EVENT_RESTORE, "Form1Restore")
$Checkbox1 = GUICtrlCreateCheckbox("FastFire", 8, 40, 65, 17)
GUICtrlSetOnEvent(-1,"Checkbox1Click")
$Button1 = GUICtrlCreateButton("Start", 80, 8, 75, 25)
GUICtrlSetOnEvent(-1, "Button1Click")
$Button2 = GUICtrlCreateButton("Stop", 80, 56, 75, 25)
GUICtrlSetOnEvent(-1, "Button2Click")
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $Button1
Start()
Case $Button2
Exit
EndSwitch
WEnd
Func Start()
GUISetState(@SW_HIDE)
ToolTip("Start S4League Now..",0,0)
$Wait = ProcessWait("S4Client.exe")
$PID = ProcessExists("S4Client.exe")
Sleep(500)
$Open = _MemoryOpen ($PID)
If GUICtrlRead($Checkbox1) = 1 Then
_MemoryWrite(0x010BB99C,"text","char[15]")
_MemoryWrite(0x010BB9E8,"text","char[15]")
_MemoryWrite(0x010BBA48,"text","char[15]")
_MemoryWrite(0x010BBAB8,"text","char[15]")
_MemoryWrite(0x08082CDC,"text","char[15]")
EndIf
_MemoryClose ($Open)
Exit
EndFunc
Pls Help Me
|
|
|
04/24/2012, 20:44
|
#2
|
elite*gold: 0
Join Date: Jan 2011
Posts: 2,520
Received Thanks: 4,567
|
Why do you write the value "text" into the address?
|
|
|
04/24/2012, 20:47
|
#3
|
elite*gold: 99
Join Date: Jul 2010
Posts: 199
Received Thanks: 161
|
Quote:
Originally Posted by Applecode
_MEMORYWRITE(0x0104BBF4, $OPEN, "text", "char[5]")
|
Cuz I've searched for the problem and found this.
|
|
|
04/24/2012, 20:54
|
#4
|
elite*gold: 0
Join Date: Mar 2012
Posts: 134
Received Thanks: 76
|
Test It xD
ADDRESS - TYPE - VALUE
- -
010BBAB8 - String[15] - sniper_mode_fov
010BB9E8 - String[15] - sniper_mode_fov
010BBA48 - String[15] - sniper_mode_fov
010BBAB8 - String[15] - sniper_mode_fov
|
|
|
04/24/2012, 21:01
|
#5
|
elite*gold: 99
Join Date: Jul 2010
Posts: 199
Received Thanks: 161
|
Quote:
Originally Posted by *TheWarLords*
Test It xD
ADDRESS - TYPE - VALUE
- -
010BBAB8 - String[15] - sniper_mode_fov
010BB9E8 - String[15] - sniper_mode_fov
010BBA48 - String[15] - sniper_mode_fov
010BBAB8 - String[15] - sniper_mode_fov
|
Thx 4 help
But Not Working ._.
Script Looks Like This Now:
Code:
#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#include <NomadMemory.au3>
#Region ### START Koda GUI section ### Form=Form1.kxf
$Form1 = GUICreate("1. Hack", 168, 94, 192, 124)
GUISetBkColor(0xFF0000)
GUISetOnEvent($GUI_EVENT_CLOSE, "Form1Close")
GUISetOnEvent($GUI_EVENT_MINIMIZE, "Form1Minimize")
GUISetOnEvent($GUI_EVENT_MAXIMIZE, "Form1Maximize")
GUISetOnEvent($GUI_EVENT_RESTORE, "Form1Restore")
$Checkbox1 = GUICtrlCreateCheckbox("FastFire", 8, 40, 65, 17)
GUICtrlSetOnEvent(-1,"Checkbox1Click")
$Button1 = GUICtrlCreateButton("Start", 80, 8, 75, 25)
GUICtrlSetOnEvent(-1, "Button1Click")
$Button2 = GUICtrlCreateButton("Stop", 80, 56, 75, 25)
GUICtrlSetOnEvent(-1, "Button2Click")
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $Button1
Start()
Case $Button2
Exit
EndSwitch
WEnd
Func Start()
GUISetState(@SW_HIDE)
ToolTip("Start S4League Now..",0,0)
$Wait = ProcessWait("S4Client.exe")
$PID = ProcessExists("S4Client.exe")
Sleep(500)
$Open = _MemoryOpen ($PID)
If GUICtrlRead($Checkbox1) = 1 Then
_MemoryWrite(0x010BB99C, "String[15]", "sniper_mode_fov")
_MemoryWrite(0x010BB9E8, "String[15]", "sniper_mode_fov")
_MemoryWrite(0x010BBA48, "String[15]", "sniper_mode_fov")
_MemoryWrite(0x010BBAB8, "String[15]", "sniper_mode_fov")
_MemoryWrite(0x08082CDC, "String[15]", "sniper_mode_fov")
EndIf
_MemoryClose ($Open)
Exit
EndFunc
|
|
|
04/24/2012, 21:09
|
#6
|
elite*gold: 4
Join Date: Aug 2011
Posts: 2,169
Received Thanks: 7,917
|
Addys are possible not work,or they are fake
|
|
|
All times are GMT +1. The time now is 07:06.
|
|