Jump to content

Runner 101 Beta


keen
 Share

Recommended Posts

This is a Chao Adventure from Sonic Adventures. Made by request of my lil Bro.

This is Beta V 1.4 I will keep on updating this from time to time.

#include <GUIConstants.au3>



GUICreate("Runner 101", 750, 750)
GUISetState (@SW_SHOW)

GUICtrlCreateTab(1, 70, 750, 700)
$tab1 = GUICtrlCreateTabItem("Lobby")
GUICtrlCreateLabel ( "Welcome to the lobby. Please browse around at the different gardens or create your own my pressing the Create New Garden button. Have Fun.", 100, 100, 375, 100)
$tab2 = GUICtrlCreateTabItem("Nutral Garden")
GUICtrlCreateLabel ( "Welcome to the Nutral Garden.", 100, 100, 375, 100)
$chaos1 = GUICtrlCreateLabel ( "Current Chaos In Garden: ChaCha", 150, 150, 375, 100)
$tab3 = GUICtrlCreateTabItem("Dark Garden")
GUICtrlCreateLabel ( "Welcome to the Dark Garden.", 100, 100, 375, 100)
$Chaos2 = GUICtrlCreateLabel ( "Current Chaos In Garden: Shadow", 150, 150, 375, 100)
$tab4 = GUICtrlCreateTabItem("Hero Garden")
GUICtrlCreateLabel ( "Welcome to the hero Garden.", 100, 100, 375, 100)
$Chaos3 = GUICtrlCreateLabel ( "Current Chaos In Garden: Eggy", 150, 150, 375, 100)
$tab5 = GUICtrlCreateTabItem("Buy Chaos")
$Nutral = GUICtrlCreateButton( "Buy Nutral Chao", 150, 120, 110, 30)
$Dark = GUICtrlCreateButton("Buy Dark Chao", 150, 150, 110, 30)
$hero = GUICtrlCreateButton("Buy Hero Chao", 150, 180, 110, 30)


; Run the GUI until the dialog is closed
While 1
$msg = GUIGetMsg()
Select
Case $msg = $Dark
$Dark2 = InputBox ( "Name", "Please enter a name for your new dark chao:")
if not @error then guictrlsetdata($chaos2, guictrlread($chaos2) & ", " & $dark2)
Case $msg = $Nutral
$Nutral2 = InputBox ( "Name", "Please enter a name for your new nutral chao:")
if not @error then guictrlsetdata($chaos1, guictrlread($chaos1) & ", " & $Nutral2)
Case $msg = $hero
$hero2 = InputBox ( "Name", "Please enter a name for your new hero chao:")
if not @error then guictrlsetdata($chaos3, guictrlread($chaos3) & ", " & $hero2)
EndSelect
If $msg = $GUI_EVENT_CLOSE Then ExitLoop
Wend

[center]Kesne's Bar & Grill[/center]

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

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