Results 1 to 15 of 15
  1. #1
    jokuvaan11's Avatar
    Join Date
    May 2007
    Posts
    192
    Reputation
    11
    Thanks
    0

    Lightbulb [TuT] How to make PW and value box for Guns/Superjump/SkyStormer(VB6)

    Do nOT LEECH THIS
    INFORMATION
    Clause after ' is instruction
    DON'T COPY THIS RIGHT TO YOUR TRAINER CUZ IT DON'T WORK THEN
    Here it comes:

    Value Box:
    1.Start VB6
    2.Open project or start new
    3.First you make button for Guns and write code:
    Code:
        Dim gun As Long
        Dim gun1 As Long
        Dim gun2 As Long
        Call ReadALong("WarRock", &H¤address¤, gun)
        gun1 = gun + &H¤pointer¤
        gun2 = TextX 'TextX is text box where you write number of your gun
        Call WriteALong("WarRock", gun1, gun2)
    Then you just make textbox and run program
    you can write number of gun to the textbox!

    PassWord:
    1.start VB6
    2.open project or start new
    3.Make new Form, create textbox and timer
    4.Set timer interval to 100
    5.write this code to timer:

    Code:
    If GetKeyPress(vbKeyReturn) Then   'return mean "ENTER"
       If Text1.Text = "write password here" Then  'here you write your own PW
          Form1.Hide   'If your password Form Is called Form1 write Form1 here
          Form2.Show  'If your Trainer Form Is called Form2 write Form2 here
    End If
    End If   'remember 2x end if
    now just start program and write your password

    HAVE A NICE DAY!!!

  2. #2
    dikketr0l's Avatar
    Join Date
    May 2007
    Gender
    male
    Posts
    40
    Reputation
    10
    Thanks
    1

    Thumbs down

    The password doesn't work....
    OOhhhh I fucked ur mother





  3. #3
    dezer's Avatar
    Join Date
    Nov 2006
    Gender
    male
    Posts
    285
    Reputation
    12
    Thanks
    4
    My Mood
    Aggressive
    better password protection:
    on ur project, click on Form1 or however its colled for u, chose Add, then Form, chose Log in Dialog. Doubleclick OK, here's where u set the password:
    Code:
    If txtPassword = "password" Then
    just change the "password" to any string or combination of letters/numbers, so it can be like:
    Code:
    If txtPassword = "asd12a234" Then
    password will be asd12a234
    the username doesnt matter, can be left as empty blank.
    thats the OK code:
    Code:
    Private Sub cmdOK_Click()
        'check for correct password
        If txtPassword = "asd" Then
            'place code to here to pass the
            'success to the calling sub
            'setting a global var is the easiest
            LoginSucceeded = True
            Me.Hide
        Else
            MsgBox "Invalid Password, try again!", , "Login"
            txtPassword.SetFocus
            SendKeys "{Home}+{End}"
        End If
    End Sub
    After Me.Hide place YourFormName.Show.

    on the right side of ur screen there's a tree listing, right click Project1 or however ur project is called, then do YourProjectName Properties... and at Startup Object choose frmLogin. U can simply delete the username textbox or code it so it will check for username too.

    Attached example app with login
    Last edited by dezer; 06-29-2007 at 07:48 PM.
    Quote Originally Posted by killerofsake987 View Post
    wuts search button
    owned

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

    kingdonats143 (07-20-2012)

  5. #4
    Threadstarter
    Advanced Member
    jokuvaan11's Avatar
    Join Date
    May 2007
    Posts
    192
    Reputation
    11
    Thanks
    0
    It Is Your Style I Have My Own!!

  6. #5
    dezer's Avatar
    Join Date
    Nov 2006
    Gender
    male
    Posts
    285
    Reputation
    12
    Thanks
    4
    My Mood
    Aggressive
    some1 said ur isnt working
    Quote Originally Posted by killerofsake987 View Post
    wuts search button
    owned

  7. #6
    mains3rv3r's Avatar
    Join Date
    Mar 2007
    Gender
    male
    Location
    NC
    Posts
    360
    Reputation
    27
    Thanks
    29
    My Mood
    Devilish
    the password code looks very familiar...

  8. #7
    dezer's Avatar
    Join Date
    Nov 2006
    Gender
    male
    Posts
    285
    Reputation
    12
    Thanks
    4
    My Mood
    Aggressive
    its yours :/
    Quote Originally Posted by killerofsake987 View Post
    wuts search button
    owned

  9. #8
    mains3rv3r's Avatar
    Join Date
    Mar 2007
    Gender
    male
    Location
    NC
    Posts
    360
    Reputation
    27
    Thanks
    29
    My Mood
    Devilish
    Quote Originally Posted by dezer View Post
    its yours :/
    oh well... what's new...

  10. #9
    kyo's Avatar
    Join Date
    Dec 2005
    Location
    Belgium
    Posts
    285
    Reputation
    110
    Thanks
    131
    note that any clear text password in VB6 can be cracked by anyone with a little brain in about 2 minutes
    (if you don't believe it, make one and send it to me )

  11. #10
    mains3rv3r's Avatar
    Join Date
    Mar 2007
    Gender
    male
    Location
    NC
    Posts
    360
    Reputation
    27
    Thanks
    29
    My Mood
    Devilish
    Hmmm you're thinking of using a decompiler... if I really wanted to I could easily encrypt the entire file and you wouldn't be able to decompile anything... yes I know it can be done because I do it with others that are made this way, but if you can do this, then I don't see why you're not trusted to have the hack... but it can be stopped the way you're thinking.

  12. #11
    kyo's Avatar
    Join Date
    Dec 2005
    Location
    Belgium
    Posts
    285
    Reputation
    110
    Thanks
    131
    personaly i prefer to just encrypt the password into an md5 hash.
    works perfectly

  13. #12
    ltkort213's Avatar
    Join Date
    May 2007
    Gender
    male
    Location
    I live in my own pc and, I hack in my pc!
    Posts
    203
    Reputation
    11
    Thanks
    16
    My Mood
    Stressed
    so..............
    this is the wright code??:
    Code:
    Private Sub Command1_Click()
    Dim gun As Long
        Dim gun1 As Long
        Dim gun2 As Long
        Call ReadALong("WarRock", &H896E28, gun)
        gun1 = gun + &H4C
        gun2 = Text1
        Call WriteALong("WarRock", gun1, gun2)
    End Sub
    Srry for Bad English, I am Dutch!




    Help me raise my Habamon!

  14. #13
    Threadstarter
    Advanced Member
    jokuvaan11's Avatar
    Join Date
    May 2007
    Posts
    192
    Reputation
    11
    Thanks
    0
    Quote Originally Posted by ltkort213 View Post
    so..............
    this is the wright code??:
    Code:
    Private Sub Command1_Click()
    Dim gun As Long
        Dim gun1 As Long
        Dim gun2 As Long
        Call ReadALong("WarRock", &H896E28, gun)
        gun1 = gun + &H4C
        gun2 = Text1
        Call WriteALong("WarRock", gun1, gun2)
    End Sub
    YES THAT IS RIGHT CODE I THINK!!
    You must cheack just address and pointer

  15. #14
    M-Tune's Avatar
    Join Date
    Apr 2007
    Location
    Gelderland, the Netherlands
    Posts
    95
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by dikketr0l View Post
    The password doesn't work....
    Damn that 'value box' thing was Copy-pasted from my topic!
    LEECHER BAN HIM HES' NOOB

  16. #15
    Threadstarter
    Advanced Member
    jokuvaan11's Avatar
    Join Date
    May 2007
    Posts
    192
    Reputation
    11
    Thanks
    0
    I did this TUT myself

Similar Threads

  1. [Tut]How to Make KoWarrock Account Easy
    By EyalZamir in forum WarRock Korea Hacks
    Replies: 181
    Last Post: 06-08-2008, 12:05 PM
  2. [TuT]How to make a button to start Warrock
    By str1k3r21 in forum Visual Basic Programming
    Replies: 8
    Last Post: 11-10-2007, 10:25 AM
  3. (TUT)how to make your own warrock menu
    By aprill27 in forum WarRock - International Hacks
    Replies: 0
    Last Post: 09-21-2007, 03:46 PM
  4. [Request]Tut how to make his own bypass
    By BurakG in forum WarRock - International Hacks
    Replies: 3
    Last Post: 05-08-2007, 02:46 PM
  5. Tut: how to make cheese
    By ace76543 in forum General
    Replies: 14
    Last Post: 01-14-2007, 09:39 AM