Jump to content
Welcome, Guest
Existing user? Sign In

Sign In



Sign Up
The MatriX
  • Welcome To Ghbsys
  • CS GO Streaming Version is released. Have fun streaming while cheating!
  • Have a Payment Issue? Send us a Support ticket.
  • Make a thread if you need support or join our discord for live support.
  • Have Suggestions? Make a thread and you'll earn Ghbsys Points for implemented suggestions.
  • Join our discord to stay well connected! Don't forget to integrate your discord to the site
  • Welcome to [GHB] - GAmEhAcKbAsTaRdS Forum

    Welcome to [GHB] - GAmEhAcKbAsTaRdS Forum, like most online communities you must register to view or post in our community, but don't worry this is a simple free process that requires minimal information for you to signup. Be apart of [GHB] - GAmEhAcKbAsTaRdS Forum by signing in or creating an account.
    • Start new topics and reply to others
    • Subscribe to topics and forums to get email updates
    • Get your own profile page and make new friends
    • Send personal messages to other members.

    [TuT] How to make a Hack


    Kvn'X
     Share

    Recommended Posts

    - Info before...

    This Tutorial is not for newcomer, this tutorial is for people who know a little bit about vb2008.

    So if you dont know how to create a new project or something else use google, dont post here.

    Other questions are welcome.

     

     

    - Step 1

    Hello all welcome to my Tutorial.

    Ok at first you need to create a new Projekt.

    After you done add a new Module with this content .

    ( Link : http://f2k.d4rc.net/kvnx/module.txt )

    This module is the brain of the functions of hacks O.o

     

     

     

    - Step 2

    Create 2 buttons, 1 timer.

    Name the first button : "Checkpointhack On"

    Name the second button : "Checkpointhack Off"

     

     

     

    - Step 3

    Write in the On-Button this code :

    Timer1.enabled = true

     

    Write in the Off-Button this code :

    Timer1.enabled = false

    This means that the Hack-Timer will turn on if you click the on-button and off if you click the off-button, logical, arent it?

     

    Write in the Timer :

    WriteLongPointer(&HABE2D0 + &H400000, &H32C, -100, 4)
    WriteLongPointer(&HAC1908 + &H400000, &H31C, -100, 4)
    WriteLongPointer(&HABE2D0 + &H400000, &H328, -100, 4)
    WriteLongPointer(&HAC1908 + &H400000, &H318, -100, 4)

    This is the hack function!

     

     

     

    - Step 4

    Set the Timer interval to "1000" and make sure you start the TmForever.exe before you activate the Function.

     

     

     

     

    - Step 5

    Say thanks and i hope you learnd something.

    With other hacks it is near the same xD

    Credits : Bigxxx

    Edited by Kvn'X
    • Upvote 1
    Link to comment
    Share on other sites

    Thank you, i was waiting so long for this!

     

    but, i get in the module, endfunction error?

    maby something wrong in the module

    Edited by daandaan50
    Link to comment
    Share on other sites

    the module is 100% correct.

    Be sure that your module is 100% empty O.o

    Link to comment
    Share on other sites

    no, there where 2 line's.

     

    thank you for your fast replay O.o

    Link to comment
    Share on other sites

    endfunction1.jpg

     

    that is the error, can't fix it!

    Edited by daandaan50
    Link to comment
    Share on other sites

    these green errors are not important O.o

    Just ignore

    Link to comment
    Share on other sites

    Really thanks, (you) made my first hack O.o

    However, to resolve the errors that daandaan50 has (even if they are not important, are only notices that say that the function is not run if the return value is zero), only write, at the end of the function, right before the command "End Function", Return (name of the variable called in the function). Example:

     

     

    Code:

     

     

    Public Function NOP(ByVal Address As Integer, ByVal value As Integer)

     

    Dim TmForeverLookUp As Process() = Process.GetProcessesByName("TmForever") <--- The varaible is the text write between "Dim" and "As". You must write it right down

     

    If TmForeverLookUp.Length = 0 Then

     

    End

     

    End If

     

    Dim processHandle As IntPtr = OpenProcess(&H1F0FFF, 0, TmForeverLookUp(0).Id)

     

    WriteProcessMemory(processHandle, Address, value, 1, Nothing)

     

    CloseHandle(processHandle)

     

    Return TmForeverLookUp <---- Write the command "Return" and the name of the variable that you seen before!!

     

    End Function

     

     

     

     

     

    This should not be wrong Bigxxx

    Sorry for bad english, I'm italian.

    Hope to be helpful xD

    Link to comment
    Share on other sites

    aleeraser nice information O.o

    No problem

    Link to comment
    Share on other sites

    This Tutorial is not for newcomer, this tutorial is for people who know a little bit about vb2008.

    I allready said it xD

    Learn vb2008 anywhere else O.o

    Link to comment
    Share on other sites

    Hi, Nice tutorial but how to put this in a hack...:

     

    Timefreeze Hack :

     

    Address(1) ::: Pointer : &H400000 + &HABE2D0 || Offset : &H334 || Value : 1

    Link to comment
    Share on other sites

    try this i'm not sure but normaly its right ^^

     

    WriteLongPointer(&H400000 + &HABE2D0, &H334, 1, 1)

     

    say thx ^^

    Link to comment
    Share on other sites

    WriteLongPointer(&H400000 + &HABE2D0, &H334, 1) think so O.o i drunk swo i am not shrue

    Link to comment
    Share on other sites

    • 2 weeks later...

    could you say how to change the rankhack number with a texbox?

    like this: WriteLongPointer(&H400000 + &HABE2D0, &H334, "textbox1.text")

     

    pleas post a code how i can change it? like you in your tmsucker V2

    Edited by daandaan51
    Link to comment
    Share on other sites

    • 2 weeks later...
    could you say how to change the rankhack number with a texbox?

    like this: WriteLongPointer(&H400000 + &HABE2D0, &H334, "textbox1.text")

     

    pleas post a code how i can change it? like you in your tmsucker V2

     

    Enter number in your textbox1 O.o

    Link to comment
    Share on other sites

    WriteLongPointer(&H400000 + &HABE2D0, &H334, textbox1.text)

     

    without " before textbox1.text O.o

    Link to comment
    Share on other sites

    and how to make a thing status like:

    Waiting for TmForever.exe!

     

    if TmForever.exe is found that the hacks can be enabled?

     

    sorry for bad english, i'm dutch!

    Link to comment
    Share on other sites

    If you look in the module you know how to O.o

    Link to comment
    Share on other sites

    is it something with the Process.GetProcessesByName("TmForever")???????

     

    pleas tell me how i can do it! i realy don't know.

     

    thank you!

    Link to comment
    Share on other sites

    I done it like this :

     

      If TmForeverLookUp.Length = 0 Then
    		Label8.ForeColor = Color.Red
    		Label8.Text = "Please Start " & Label44.Text & "!"
    		Timer6.Enabled = False
    	Else
    		Label8.ForeColor = Color.LimeGreen
    		Label8.Text = Label44.Text & "Found :)"
    		Timer6.Enabled = True
    	End If

    Link to comment
    Share on other sites

    Thank you!

    is it in the module or on a timer?

    but what is this?

    -----------------------------------------------------------------------------

    If TmForeverLookUp.Length = 0 Then

    Label8.ForeColor = Color.Red

    Label8.Text = "Please Start " & Label44.Text & "!"

    Timer6.Enabled = False

    Else

    Label8.ForeColor = Color.LimeGreen

    Label8.Text = Label44.Text & "Found O.o"

    Timer6.Enabled = True

    End If

    -----------------------------------------------------------------------------

    Edited by e-warior
    Link to comment
    Share on other sites

    put it into a timer O.o

    Link to comment
    Share on other sites

    Guest
    This topic is now closed to further replies.
     Share

    • Recently Browsing   0 members

      • No registered users viewing this page.
    ×
    ×
    • Create New...