Thread: [HELP]Stamina

Results 1 to 6 of 6
  1. #1
    xown0x's Avatar
    Join Date
    Feb 2008
    Posts
    6
    Reputation
    10
    Thanks
    5

    [HELP]Stamina

    I make 2 buttons and 1 timer
    1 button:
    Timer1.Enabled=True
    2 button:
    Timer1.Enabled=False

    for the timer
    Dim STAN As Long
    Dim STAN1 As Long
    Call ReadALong("WarRock", &H1363380, STAN)
    STAN1 = STAN +&H288
    Call WriteALong("WarRock", STAN1, 100)

    COMPILE ERROR:

    SUB OR FUNCTION NOT DEFINIED.

    WHAT WRONG?

  2. #2
    diamondo25's Avatar
    Join Date
    May 2007
    Gender
    male
    Posts
    55
    Reputation
    10
    Thanks
    7
    My Mood
    Tired
    Do you have a hack module? are "ReadALong" and "WriteALong" right?

  3. #3
    tobiasm9's Avatar
    Join Date
    Feb 2008
    Gender
    male
    Location
    in your ass :P
    Posts
    82
    Reputation
    9
    Thanks
    2
    add this module:
    this is undetectable module:
    Public Const krebs = &H1F0FFF
    Dim f1holder As Integer
    Dim timer_pos As Long

    'API Declaration
    Public Declare Function string1 Lib "user32" Alias "GetWindowThreadProcessId" (ByVal hWnd As Long, lpdwProcessId As Long) As Long
    Public Declare Function string2 Lib "kernel32" Alias "OpenProcess" (ByVal dwDesiredAccess As Long, ByVal bInheritHandle As Long, ByVal dwProcessId As Long) As Long
    Public Declare Function string3 Lib "kernel32" Alias "WriteProcessMemory" (ByVal hProcess As Long, ByVal lpBaseAddress As Any, lpBuffer As Any, ByVal nSize As Long, lpNumberOfBytesWritten As Long) As Long
    Public Declare Function string4 Lib "kernel32" Alias "CloseHandle" (ByVal hObject As Long) As Long
    Public Declare Function string5 Lib "user32" Alias "FindWindowA" (ByVal Classname As String, ByVal WindowName As String) As Long
    Public Declare Function string6 Lib "user32" Alias "GetAsyncKeyState" (ByVal key As Long) As Integer
    Public Declare Function string7 Lib "kernel32" Alias "ReadProcessMemory" (ByVal hProcess As Long, ByVal lpBaseAddress As Any, ByRef lpBuffer As Any, ByVal nSize As Long, lpNumberOfBytesWritten As Long) As Long

    Public Function writealong(Warrock_fenster_4_ As String, Combination_4_ As Long, Super_zahl_4_ As Long) 'WriteALong
    Dim string8 As Long
    Dim string9 As Long
    Dim hoden As Long
    string8 = string5(vbNullString, Warrock_fenster_4_)
    If (string8 = 0) Then
    End
    Exit Function
    End If
    string1 string8, string9
    hoden = string2(krebs, False, string9)
    If (hoden = 0) Then
    Exit Function
    End If
    string3 hoden, Combination_4_, Super_zahl_4_, 4, 0&
    string4 lmdkwaa
    End Function

    Public Function readalong(Warrock_fenster_4_ As String, Combination_4_ As Long, Super_zahl_filter_4_ As Long) 'ReadALong
    Dim string8 As Long
    Dim string9 As Long
    Dim hoden As Long
    string8 = string5(vbNullString, Warrock_fenster_4_)
    If (string8 = 0) Then
    End
    Exit Function
    End If
    string1 string8, string9
    hoden = string2(krebs, False, string9)
    If (hoden = 0) Then
    Exit Function
    End If
    string7 hoden, Combination_4_, Super_zahl_filter_4_, 4, 0&
    string4 lmdkwaa
    End Function

    Public Function readafloat(Warrock_fenster_4_ As String, Combination_4_ As Long, Super_zahl_filter_4_ As Single) 'ReadAFloat
    Dim string8 As Long
    Dim string9 As Long
    Dim hoden As Long
    string8 = string5(vbNullString, Warrock_fenster_4_)
    If (string8 = 0) Then
    End
    Exit Function
    End If
    string1 string8, string9
    hoden = string2(krebs, False, string9)
    If (hoden = 0) Then
    Exit Function
    End If
    string7 hoden, Combination_4_, Super_zahl_filter_4_, 4, 0&
    string4 lmdkwaa
    End Function

    Public Function writeafloat(Warrock_fenster_4_ As String, Combination_4_ As Long, Super_zahl_4_ As Single) 'WriteAFloat
    Dim string8 As Long
    Dim string9 As Long
    Dim hoden As Long
    string8 = string5(vbNullString, Warrock_fenster_4_)
    If (string8 = 0) Then
    End
    Exit Function
    End If
    string1 string8, string9
    hoden = string2(krebs, False, string9)
    If (hoden = 0) Then
    Exit Function
    End If
    string3 hoden, Combination_4_, Super_zahl_4_, 4, 0&
    string4 lmdkwaa
    End Function

    Public Function writeabyte(Warrock_fenster_4_ As String, Combination_4_ As Long, Super_zahl_4_ As Byte) 'WriteAByte
    Dim string8 As Long
    Dim string9 As Long
    Dim hoden As Long
    string8 = string5(vbNullString, Warrock_fenster_4_)
    If (string8 = 0) Then
    End
    Exit Function
    End If
    string1 string8, string9
    hoden = string2(krebs, False, string9)
    If (hoden = 0) Then
    Exit Function
    End If
    string3 hoden, Combination_4_, Super_zahl_4_, 1, 0&
    string4 lmdkwaa
    End Function

    Public Function readabyte(Warrock_fenster_4_ As String, Combination_4_ As Long, Super_zahl_filter_4_ As Byte) 'ReadAByte
    Dim string8 As Long
    Dim string9 As Long
    Dim hoden As Long
    string8 = string5(vbNullString, Warrock_fenster_4_)
    If (string8 = 0) Then
    End
    Exit Function
    End If
    string1 string8, string9
    hoden = string2(krebs, False, string9)
    If (hoden = 0) Then
    Exit Function
    End If
    string7 hoden, Combination_4_, Super_zahl_filter_4_, 1, 0&
    string4 lmdkwaa
    End Function

  4. The Following User Says Thank You to tobiasm9 For This Useful Post:

    mull12 (02-26-2009)

  5. #4
    tobiasm9's Avatar
    Join Date
    Feb 2008
    Gender
    male
    Location
    in your ass :P
    Posts
    82
    Reputation
    9
    Thanks
    2
    right click add-module and press open new and paste this in it and u will get working hack

  6. #5
    tobiasm9's Avatar
    Join Date
    Feb 2008
    Gender
    male
    Location
    in your ass :P
    Posts
    82
    Reputation
    9
    Thanks
    2
    this is my hack pls tell if it works it is stamina hack

  7. #6
    Th3 0wnzman's Avatar
    Join Date
    Oct 2007
    Gender
    male
    Location
    I k2 networks bathroom
    Posts
    111
    Reputation
    10
    Thanks
    53
    Its WriteAFloat not WriteALong


    1 button:
    Timer1.Enabled=True
    2 button:
    Timer1.Enabled=False

    for the timer
    Dim STAN As Long
    Dim STAN1 As Long
    Call ReadALong("WarRock", &H1363380, STAN)
    STAN1 = STAN +&H288
    Call WriteAFloat("WarRock", STAN1, 100)
    The maker of th3 0wnzman hacks





Similar Threads

  1. [Help] Stamina code freezes to 0
    By ilovepie21 in forum Visual Basic Programming
    Replies: 2
    Last Post: 03-05-2008, 08:21 PM
  2. [ help ] stamina code
    By ilovepie21 in forum Visual Basic Programming
    Replies: 0
    Last Post: 03-02-2008, 03:43 PM
  3. [ HELP ] Stamina Code VB6
    By ilovepie21 in forum Visual Basic Programming
    Replies: 10
    Last Post: 03-02-2008, 06:57 AM
  4. [HELP]stamina
    By jeffrey1 in forum Visual Basic Programming
    Replies: 3
    Last Post: 02-28-2008, 02:59 PM
  5. [ HELP ] stamina code
    By ilovepie21 in forum Visual Basic Programming
    Replies: 1
    Last Post: 02-28-2008, 03:35 AM

Tags for this Thread