Arcade Prehacks

Page 1 of 6 123 ... LastLast
Results 1 to 10 of 54
  1. #1
    Senior Member
    Join Date
    Jun 2008
    Location
    Dra'kar
    Posts
    1,263

    Basic Game Making With Visual Basic 6.0

    Requirements;
    Visual Basic 6.0
    A Brain

    Index;
    1. How to make a form Hide.
    2. How to make Secret Codes.
    3. How to use the Else function
    4. How to make a clickable Combobox.

    Tutorial;
    1. How to make form Hide.
    When you click a button and it take you to a different form and you want the form you just left disappear this is how you do it.

    Double click your button, and enter this code before the Form?.Show.
    Code:
    Me.Hide
    For Example
    Code:
    Me.Hide
    Form2.Show
    2. How to make Secret Codes.
    You have to make it so people have a way to find out the codes first.
    Make a Text Box and a Command Button.
    Double click the command button and enter this code.
    Code:
    If Text1.Text = "Your Secret Code Here" Then
    Form?.Show
    End If
    If you want more than one Secret code for example 4 secret code then it would look like this
    Code:
    If Text1.Text = "Your Secret Code Here" Then
    Form?.Show
    If Text1.Text = "Your Secret Code Here" Then
    Form?.Show
    If Text1.Text = "Your Secret Code Here" Then
    Form?.Show
    If Text1.Text = "Your Secret Code Here" Then
    Form?.Show
    End If
    3. How to use the Else function.
    This go good with the Secret Code Function. If you want somebody top enter something and if they get it wrong they start over, type this code.
    Code:
    If Text1.Text = "What you want them to enter Here" Then
    Me.Hide
    Form?.Show
    Else
    Form?.show
    End If
    the Second Form?.Show Will be the place where you tell the person they got it wrong and they have to start over.

    4. How to make a clickable Combobox
    Make a Combobox.
    Double click the Form. Not the Combobox.
    Enter this code.
    Code:
    With Combo1 
    .Additem "Item you want to display"
    End With
    If you want more then one item
    Code:
    With Combo1 
    .Additem "Item you want to display"
    .Additem "Item you want to display"
    .Additem "Item you want to display"
    .Additem "Item you want to display"
    End With
    Now Double Click the combobox.
    At the top it should say, (YOU HAVE TO DO THIS PART FIRST!)
    Private Sub Combo1_Change()
    Change that to
    Private Sub Combo1_Click()
    Now Enter this code
    Code:
    If Combo1 = "Item you want to display" Then
    Form?.Show
    End If
    For more than One,
    Code:
    If Combo1 = "Item you want to display" Then
    Form?.Show
    If Combo1 = "Item you want to display" Then
    Form?.Show
    If Combo1 = "Item you want to display" Then
    Form?.Show
    End If
    For Example;
    Form;
    Code:
    With Combo1 
    .Additem "Test"
    .Additem "Test2"
    End With
    ComboBox,
    Code:
    If Combo1 = "Test" Then
    Form2.Show
    End If
    If Combo1 = "Test2" Then
    Form3.Show
    End If
    This can be very Tricky... If you have problems with the combobox message me.
    Now test it.

    I will be adding more soon!

  2. #2

    Join Date
    Jun 2008
    Location
    Unknown Dungeon
    Posts
    1,513

    Re: Basic Game Making With Visual Basic 6.0

    lol thanks

  3. #3
    Senior Member
    Join Date
    Jun 2008
    Location
    Dra'kar
    Posts
    1,263

    Re: Basic Game Making With Visual Basic 6.0

    No problem

  4. #4

    Join Date
    Jun 2008
    Location
    Unknown Dungeon
    Posts
    1,513

    Re: Basic Game Making With Visual Basic 6.0

    Stickied

  5. #5
    Senior Member
    Join Date
    Jun 2008
    Location
    Dra'kar
    Posts
    1,263

    Re: Basic Game Making With Visual Basic 6.0

    yay

  6. #6

    Join Date
    Aug 2008
    Location
    Above and beyond the valleys of contentment
    Posts
    1,217

    Re: Basic Game Making With Visual Basic 6.0

    LOL not again!! I posted my own tutorial now my tutorial crashes on your tutorial now everyone say me copycat!
    And I made my tutorial better than you but you made it faster than me, unlucky...

  7. #7

    Join Date
    May 2008
    Posts
    573

    Re: Basic Game Making With Visual Basic 6.0

    Quote Originally Posted by mathewthe2
    LOL not again!! I posted my own tutorial now my tutorial crashes on your tutorial now everyone say me copycat!
    And I made my tutorial better than you but you made it faster than me, unlucky...
    shut up! we know its not the same! and no yours is not better. they are both good. the only thing they have in common is the form hide and the password things.
    Just an FYI to everyone, I don't hack anymore. I have stuff that I do outside of this. Goodbye and goodluck

  8. #8

    Join Date
    Aug 2008
    Location
    Above and beyond the valleys of contentment
    Posts
    1,217

    Re: Basic Game Making With Visual Basic 6.0

    Quote Originally Posted by sme11y
    Quote Originally Posted by mathewthe2
    LOL not again!! I posted my own tutorial now my tutorial crashes on your tutorial now everyone say me copycat!
    And I made my tutorial better than you but you made it faster than me, unlucky...
    shut up! we know its not the same! and no yours is not better. they are both good. the only thing they have in common is the form hide and the password things.
    LOL Im sorry I didn't know I did something wrong i apologize to everyone that i have hurt and beg you guys forgiveness I didn't know that I did this would give me a serious consequence and believe me I didn't do this with malicious intent.

  9. #9

    Join Date
    Jun 2008
    Location
    Don't have one,destroyed it
    Posts
    977

    Re: Basic Game Making With Visual Basic 6.0

    You shall be punished

  10. #10

    Join Date
    Jun 2008
    Location
    Unknown Dungeon
    Posts
    1,513

    Re: Basic Game Making With Visual Basic 6.0

    I must say the first time I saw sme11y that mad...

Page 1 of 6 123 ... LastLast

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •