[TuT] How to make a GunZ Launcher Bounty's Style

Page 1 of 3 123 LastLast
Results 1 to 25 of 55
  1. #1
    Extreme Coder - Delphi bounty-hunter is offline
    MemberRank
    Sep 2007 Join Date
    GunZone MansionLocation
    1,725Posts
    Here i will show you how to make your own GunZ Launcher, in the easiest programming language to me VB6. It can launch any GunZ EXE.

    NOTE: THIS WILL NOT WORK ON WINDOWS VISTA

    Here is the contents
    1) Requirements
    2) Setup
    3) Method
    4) Credits =O

    ------------------------------------------------------------------------
    Requirements:
    -----------------------------------------------------------------------------------------------------

    1) Visual Basic 6 (enterprise edition)
    2) A brain
    3) A picture to put for the Launcher's Design
    4) A picture for your Launcher's Start Game Button
    5) A picture saying "View Website"

    Downloads:
    Visual Basic 6 (Torrented)

    ------------------------------------------------------------------------
    Setup:
    ------------------------------------------------------------------------

    This is what you have to do to setup your environment.

    1) Install Visual Basic 6 into your computer
    2) Make a new Folder Called VbGzL on your deskptop
    3) Run VB6, to test if it works. (if it works then continue, if it doenst work, post a screenie here and ill look at it)

    ------------------------------------------------------------------------
    Method:
    ------------------------------------------------------------------------

    1) What we are going to do now, is get familiar with how vb6 works and the basics needed for the launcher. Open up VB6 and a Popup should show saysing new Project.


    Double Click on Standard EXE and a Form should show up called Form1.


    The Form is the design of your Application. You can easily edit it (ill mention a bit later). Basically you now have your Application Environment Setup. Towards the left you see a tool box, you can easily add those tools into your form.

    Code:
    Description of Tools:
    Label:Can be used for Text or can be used for the GunZ Start button
    Picturebox: Can be used to input the launcher interface
    Button:Can be used for GunZ Start Button
    Timer: Really important to do special features.
    Have Fun messing around with the tools, when your ready continue to step 2.

    2) Now that you are Familiar with VB6, i will teach you the execution for the GunZ.exe. Create a Standard Exe and use the button tool and place your button on the form.

    Double click the button and it should open up as Form1 (code)
    You see where it says "Private Sub Command1_Click()", this means that if you put any code under this, it will come to life when the button is pressed.

    Now under Private Sub Command1_Click()
    shell ("path of exe you want it to launch") eg shell ("C:/programfiles/Pornos/parishiltonsexgame.exe"). Try the shell command out and you will understand how it works. ( Make sure to replace my example with something on your pc )

    When you fully understand how this shell command works then move onto the next step.

    3) Now ill teach you how to add an image to your Application.
    On the toolbox select the image tool and click on your Form and move the mouse so it fits the whole size of the application.
    Now on the right, you should see a properties box. Click on image1 and look in its properties

    Where it says picture, click on it and browse a interface. This interface will be embedded in the app, so it cant be edited.

    Thats it for images.

    4) How to add a webbrowser so that the launcher shows your site. Create a standard exe and press Ctrl + T. a Components box should show up. Scroll untill you find Microsoft Internet Controls. Click the tick box and select apply, after that u can close the component prompt.

    You should see a Globe on your tool box now. Click it and add it to your form. Now Right click on Form1 and select View Code.

    The code menu should be brought up. Look for Private Sub Form_Load() under it type webbrowser1.navigate ("www.mysite.com"). It should show your site when the Form Loads up. Now you should gain a basic understanding on how things work.

    5) Putting it all together :

    This is where you put your knowledge learnt in hand. I know most of you would have probably skipped all that and came here. "YOU WILL LEARN NOTHING" unless u have previous knowledge of VB6.

    Create a Standard EXE

    Add your GunZ Launcher Interface. Note: you can resize the Launcher to suit your interface.

    Now add a label and go to its properties and select picture. Browse for your StartGame Button. Place the Label where you want the button to be. Now after doing that open the labels code menu. Add Shell ("Path to your Exe here")

    Now Compile and test out your Launcher. Now we need to add that webbrowser. Open up the components prompt and enable microsoft internet controls. Add the webbrowser to your form. Now add another lablel and give it the picture of "View website". Now open the code menu for the new label. Type in webbrowser1.visible = "true"

    Open up Form1 code menu and type webbrowser1.visible = "false"
    webbrowser1.navigate ("your site")

    And Thats About it ^^.

    [COLOR=Red]------------------------------------------------------------------------
    Credits:
    ------------------------------------------------------------------------

    1) Microsoft for Visual basic Software.

    2) Me for writing this tutorial.


    If any body wants help please dont hesitate to ask :P

    Please tell me if this TuT was useful[

    Dont think im a newb for using VB , i usually code in C#^_^/COLOR]











    Last edited by Rotana; 07-07-08 at 05:30 PM.


  2. #2
    Apprentice stipher is offline
    MemberRank
    Jul 2008 Join Date
    8Posts

    Re: [TuT] How to make a GunZ Launcher Bounty's Style

    It work for me !

    Nice tut Bro !!

  3. #3
    Extreme Coder - Delphi bounty-hunter is offline
    MemberRank
    Sep 2007 Join Date
    GunZone MansionLocation
    1,725Posts

    Re: [TuT] How to make a GunZ Launcher Bounty's Style

    Thanks ^^

  4. #4
    Banned MAXTRAXv3 is offline
    BannedRank
    Jan 2007 Join Date
    Perth, WesternLocation
    2,252Posts

    Re: [TuT] How to make a GunZ Launcher Bounty's Style

    eg shell ("C:/programfiles/Pornos/parishiltonsexgame.exe"). LOL!

  5. #5
    Account Upgraded | Title Enabled! djpommes is offline
    MemberRank
    Apr 2007 Join Date
    221Posts

    Re: [TuT] How to make a GunZ Launcher Bounty's Style

    hmm can you move your forum if you use no borders ? (already know the anser)

  6. #6
    Extreme Coder - Delphi bounty-hunter is offline
    MemberRank
    Sep 2007 Join Date
    GunZone MansionLocation
    1,725Posts

    Re: [TuT] How to make a GunZ Launcher Bounty's Style

    Yes you can

  7. #7
    Account Upgraded | Title Enabled! djpommes is offline
    MemberRank
    Apr 2007 Join Date
    221Posts

    Re: [TuT] How to make a GunZ Launcher Bounty's Style

    Quote Originally Posted by bounty-hunter View Post
    Yes you can
    k (dint read whole tut)

  8. #8
    Account Upgraded | Title Enabled! Kingston is offline
    MemberRank
    Jun 2007 Join Date
    601Posts

    Re: [TuT] How to make a GunZ Launcher Bounty's Style

    very nice tutorial.

  9. #9
    X-Fuzion.com Mikeez is offline
    MemberRank
    Jul 2007 Join Date
    213Posts

    Re: [TuT] How to make a GunZ Launcher Bounty's Style

    This sucks =D

  10. #10
    Account Upgraded | Title Enabled! GotRice10 is offline
    MemberRank
    Jul 2007 Join Date
    346Posts

    Re: [TuT] How to make a GunZ Launcher Bounty's Style

    Quote Originally Posted by Mikeez View Post
    This sucks =D
    maby cuz u dont know how to do it

    nice tut

  11. #11
    Extreme Coder - Delphi bounty-hunter is offline
    MemberRank
    Sep 2007 Join Date
    GunZone MansionLocation
    1,725Posts

    Re: [TuT] How to make a GunZ Launcher Bounty's Style

    why is this edited by Rotana -.- ? and i got infracted :@

  12. #12
    Infraction Banned hero322 is offline
    MemberRank
    Nov 2006 Join Date
    CanadaLocation
    1,036Posts

    Re: [TuT] How to make a GunZ Launcher Bounty's Style

    ouch... hmm ask him in PM... if he doesnt answer talk to a super mod..

  13. #13
    Member pspboy2008 is offline
    MemberRank
    Apr 2008 Join Date
    67Posts

    Re: [TuT] How to make a GunZ Launcher Bounty's Style

    How to make it update?:scratch:

    and yes i got this working in vista... ^_^

  14. #14
    Extreme Coder - Delphi bounty-hunter is offline
    MemberRank
    Sep 2007 Join Date
    GunZone MansionLocation
    1,725Posts

    Re: [TuT] How to make a GunZ Launcher Bounty's Style

    Your using VB.net follow a guide on MSDN to make the updater.

  15. #15
    X-Fuzion.com Mikeez is offline
    MemberRank
    Jul 2007 Join Date
    213Posts

    Re: [TuT] How to make a GunZ Launcher Bounty's Style

    Quote Originally Posted by pspboy2008 View Post
    How to make it update?:scratch:

    and yes i got this working in vista... ^_^
    Great, bounty is a noob.
    Last edited by Mikeez; 10-07-08 at 12:38 AM. Reason: bounty is a noob

  16. #16
    Extreme Coder - Delphi bounty-hunter is offline
    MemberRank
    Sep 2007 Join Date
    GunZone MansionLocation
    1,725Posts

    Re: [TuT] How to make a GunZ Launcher Bounty's Style

    WoW, dude lets see you make a tut, you cant even make shit.

  17. #17
    Member pspboy2008 is offline
    MemberRank
    Apr 2008 Join Date
    67Posts

    Re: [TuT] How to make a GunZ Launcher Bounty's Style

    This is Awsome, and Mikeez your a Noob you cant do anything ^^:2gunsfiring_v1::technolog

  18. #18
    Infraction Banned Juanitox is offline
    MemberRank
    May 2008 Join Date
    Peru,LimaLocation
    317Posts

    Re: [TuT] How to make a GunZ Launcher Bounty's Style

    OMG I have Windows Vista :S

  19. #19
    Extreme Coder - Delphi bounty-hunter is offline
    MemberRank
    Sep 2007 Join Date
    GunZone MansionLocation
    1,725Posts

    Re: [TuT] How to make a GunZ Launcher Bounty's Style

    Go to google and type Visual Studioss Express editions, Download VB 2008 it works on vista =D

  20. #20
    Best Commu NA Cure is offline
    MemberRank
    Sep 2007 Join Date
    That way .. →Location
    1,246Posts

    Re: [TuT] How to make a GunZ Launcher Bounty's Style

    Nice Guide-

  21. #21
    Account Upgraded | Title Enabled! Someplayer is offline
    MemberRank
    Aug 2007 Join Date
    In a dumpster behind 7-Eleven.Location
    391Posts

    Re: [TuT] How to make a GunZ Launcher Bounty's Style

    VB6 = sucks
    But anyways nice tut for the newbies.

    Now, Go make a tut for an auto-updating one in C# and VB.net!

    I'll help you code half of it :P

  22. #22
    Extreme Coder - Delphi bounty-hunter is offline
    MemberRank
    Sep 2007 Join Date
    GunZone MansionLocation
    1,725Posts

    Re: [TuT] How to make a GunZ Launcher Bounty's Style

    Thanks Dude.... lets do the C# first :P?

  23. #23
    Account Upgraded | Title Enabled! RepublicOfAstra is offline
    MemberRank
    Dec 2006 Join Date
    1,122Posts

    Re: [TuT] How to make a GunZ Launcher Bounty's Style

    What the hell's the point of a launcher that doesn't auto-update?

  24. #24
    Account Upgraded | Title Enabled! maxteam is offline
    MemberRank
    Aug 2007 Join Date
    IndiaLocation
    428Posts

    Re: [TuT] How to make a GunZ Launcher Bounty's Style

    Quote Originally Posted by RepublicOfAstra View Post
    What the hell's the point of a launcher that doesn't auto-update?
    LOL ya
    i dint bother to do this :)

  25. #25
    Banned leway21 is offline
    BannedRank
    Dec 2004 Join Date
    OregonLocation
    456Posts

    Re: [TuT] How to make a GunZ Launcher Bounty's Style

    good tut. much love



Page 1 of 3 123 LastLast

Advertisement