Hi! Welcome to the forum for Platinum Arts Sandbox Free 3D Game Maker. I currently have the forums locked as I am attempting to properly update them.

In the meantime please join the new Discord Server!

If you have any questions please e-mail me through the Platinum Arts website.

Help with my first game

Having issues not related to a specific Sandbox game mode? Get help here!
Please also read the rules for support when posting support requests.
Failure to comply with the forum rules may result in your topic being locked without resolution.
Locked
User avatar
klimyriad
Support Team
Support Team
Posts: 969
Joined: December 23rd, 2009, 1:43 pm
Name: liam
Contact:

Help with my first game

Post by klimyriad »

In step of just keep asking loads of questions wasting the forum space i decided just to make a new thread which will also help anyone else

Right as i got not alot of experience i want to know a few things

how to make your own menus and game intro and put it into the game
then how to put the map and stuff into the game
also how to put music where you want it and the menu music as well


i help would be nice and will help others in the future

With this help i can keep making games without an hitch in the future

thanks
klimyriad
Firstspace the attack Progress. Image
Maps= Image finishing the town of hisal map.
Models and textures Image Just started finding these.
Menus, script's and other stuff. Image
User avatar
Leo_V117
Support Team
Support Team
Posts: 1640
Joined: February 16th, 2010, 8:00 pm
Name: Leo
IRC Username: Leo_V117
Location: That one place...
Contact:

Re: Help with my first game

Post by Leo_V117 »

locate the menus.cfg file and search "Main".

find the following section of code:

Code: Select all

main = [
	guilist [
		if (= $editing 1) [
			guilist [
				guibutton "Newmap"		"showgui newmap"
				guibutton "Savemap"		"showgui savemap"
				guibar
				guibutton "Test Map"		"edittoggle"
				guibar
	 			guibutton "New particle"	"showgui newparticles"
				guibutton "New light"		"showgui newlight"
				guibutton "New Mapmodel"	"showgui mapmodels"
				guibutton "Find Entities (F5)"	"showgui entfind"
				guibutton "Editing GUI"		"showgui editing"
				guibutton "Skybox menu (F4)"	"showgui skies"
				guibutton "Edit Materials"	"showgui materials"
				guibutton "Quickedit Menu (F3)"	"showquickgui"
				guibutton "Texture Menu (F2)"	"showtexgui"
			]
			guibar
		]
		guilist [
			guibutton "Campaign"		[showgui Campaign]
			guibutton "Map Community"	[showgui Editor]
			guibutton "Test"			[showgui Game; paused (= $paused 0); togglemessage $paused "paused"]
			guibutton "Multiplayer"	[showgui multiplayer]
			guibutton "Help"		[showgui help]
			guibar
			guibutton "Bio"			[showgui Bio]
			guibar
			guibutton "Settings"		[showgui Settings]
			guibutton "Extras"		[showgui Extras]
			guibar
			guibutton "Options"		[showgui options]

			guibutton "Change Skill Level" 	[showgui skilllvl]
			guibutton "About"		[showgui About]
			guibutton "Exit The Game"	quit	exit
		]
	]
]
(mines modified)

add this part to the part where "Exit The Game" is located... preferably above the part where it says "Help" on mine:

Code: Select all

			guibutton "Campaign"		[showgui Campaign]
now, go to the bottom and add this:

Code: Select all

newgui Campaign [
	guibutton "New Game"			[showgui New]
	guibutton "Load"				[showgui Load]
	guibar
	guibutton "Return"			[showgui main]
]

newgui New [
	guititle "New Game"
	guibar
	guilist [
		guitext "Difficulty"
		guilist [
			guibutton "Easy"			[botskill = 1]	action
			guibutton "Casual"		[botskill = 10]	action
			guibutton "Hardcore"		[botskill = 25]	action
			guibutton "Legendary"		[botskill = 50]	action
			guibutton "Extinction"		[botskill = 100]	action
			]
		]
	guibar
	guibutton "Start Game"	[sp Intro]
	guibar
	guibutton "Return"	[showgui Campaign]
]
(ignore the "Difficulty" for now)

the part:

Code: Select all

	guibutton "Start Game"	[sp Intro]
Is the map load section. Name the starting map as Intro and connect the others to the Intro map and Onwards.

Hope this Helps.
- Leo
User avatar
klimyriad
Support Team
Support Team
Posts: 969
Joined: December 23rd, 2009, 1:43 pm
Name: liam
Contact:

Re: Help with my first game

Post by klimyriad »

wow thanks leo that will help allot
Firstspace the attack Progress. Image
Maps= Image finishing the town of hisal map.
Models and textures Image Just started finding these.
Menus, script's and other stuff. Image
User avatar
klimyriad
Support Team
Support Team
Posts: 969
Joined: December 23rd, 2009, 1:43 pm
Name: liam
Contact:

Re: Help with my first game

Post by klimyriad »

Leo i done that but nothing happened
Firstspace the attack Progress. Image
Maps= Image finishing the town of hisal map.
Models and textures Image Just started finding these.
Menus, script's and other stuff. Image
User avatar
Leo_V117
Support Team
Support Team
Posts: 1640
Joined: February 16th, 2010, 8:00 pm
Name: Leo
IRC Username: Leo_V117
Location: That one place...
Contact:

Re: Help with my first game

Post by Leo_V117 »

send me your menus.cfg
User avatar
klimyriad
Support Team
Support Team
Posts: 969
Joined: December 23rd, 2009, 1:43 pm
Name: liam
Contact:

Re: Help with my first game

Post by klimyriad »

I will give me a few minutes

Edit: here the link: http://www.mediafire.com/?mdwv0jkii0o
Firstspace the attack Progress. Image
Maps= Image finishing the town of hisal map.
Models and textures Image Just started finding these.
Menus, script's and other stuff. Image
Locked