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.
In the meantime please join the new Discord Server!
If you have any questions please e-mail me through the Platinum Arts website.
Secert Project "Unnammed Title"
- InHumanUnit
- Member
- Posts: 1450
- Joined: May 22nd, 2010, 7:23 am
- Name: Ian, Haiku, I got alot ;)
- Location: Toyko, Japan. Currently in Illonis, Round Lake in America for secret purposes
- Contact:
Re: Secert Project "Unnammed Title"
...........................................
- PizzaLover101
- Member
- Posts: 1751
- Joined: October 23rd, 2009, 1:33 pm
- Name: NAME
- IRC Username: DaItsicle
- Location: By a computer
- Contact:
Re: Secert Project "Unnammed Title"
Please do no post unless you have something to say.InHumanUnit wrote:...........................................
Project 1: Da Chest Collector [TBD]
Project 2: Tis a secret [End of summer] announcement June 22 2011
Project 3: An even bigger secret!
http://pizzagametime.tk/
http://forums.pizzagametime.tk/
Project 2: Tis a secret [End of summer] announcement June 22 2011
Project 3: An even bigger secret!
http://pizzagametime.tk/
http://forums.pizzagametime.tk/
- InHumanUnit
- Member
- Posts: 1450
- Joined: May 22nd, 2010, 7:23 am
- Name: Ian, Haiku, I got alot ;)
- Location: Toyko, Japan. Currently in Illonis, Round Lake in America for secret purposes
- Contact:
Re: Secert Project "Unnammed Title"
.................................................CHESE!!!
- Leo_V117
- Support Team
- Posts: 1640
- Joined: February 16th, 2010, 8:00 pm
- Name: Leo
- IRC Username: Leo_V117
- Location: That one place...
- Contact:
Re: Secert Project "Unnammed Title"
One vital mistake there arcones...
You made the code like this:
When it should be Like This:
And for the Chests it should be more like this:
That should fix your problem.
You made the code like this:
Code: Select all
apples = 0
"level_trigger_#" = [ echo "You picked up an apple!"]
newgui main [
guibutton "Inventory" "showgui inventory"
]
newgui inventory [
guitext (format "You have %1 apples." $apples)
guibutton "Back" "showgui main"
]
Code: Select all
apples = 0
"level_trigger_#" = [ echo "You picked up an apple!"; apples = (+ $apples 1)]
newgui main [
guibutton "Inventory" "showgui inventory"
]
newgui inventory [
guitext (format "You have %1 apples." $apples)
guibutton "Back" "showgui main"
]
Code: Select all
chests = 0
"level_trigger_#" = [ echo "You found a Chest!"; chests = (+ $chests 1)]
newgui main [
guibutton "Inventory" "showgui inventory"
]
newgui inventory [
guitext (format "You have %1 chests." $chests)
guibutton "Back" "showgui main"
]
That should fix your problem.
Game Projects
Sandbox Tools
- PizzaLover101
- Member
- Posts: 1751
- Joined: October 23rd, 2009, 1:33 pm
- Name: NAME
- IRC Username: DaItsicle
- Location: By a computer
- Contact:
Re: Secert Project "Unnammed Title"
ok, but will It help so that if I make a cfg file in notepad and say in every map will that work
Code: Select all
read name.cfg
Project 1: Da Chest Collector [TBD]
Project 2: Tis a secret [End of summer] announcement June 22 2011
Project 3: An even bigger secret!
http://pizzagametime.tk/
http://forums.pizzagametime.tk/
Project 2: Tis a secret [End of summer] announcement June 22 2011
Project 3: An even bigger secret!
http://pizzagametime.tk/
http://forums.pizzagametime.tk/
- Leo_V117
- Support Team
- Posts: 1640
- Joined: February 16th, 2010, 8:00 pm
- Name: Leo
- IRC Username: Leo_V117
- Location: That one place...
- Contact:
Re: Secert Project "Unnammed Title"
Code: Select all
exec "name.cfg"
Game Projects
Sandbox Tools
- InHumanUnit
- Member
- Posts: 1450
- Joined: May 22nd, 2010, 7:23 am
- Name: Ian, Haiku, I got alot ;)
- Location: Toyko, Japan. Currently in Illonis, Round Lake in America for secret purposes
- Contact:
Re: Secert Project "Unnammed Title"
This hurts my head.....
- PizzaLover101
- Member
- Posts: 1751
- Joined: October 23rd, 2009, 1:33 pm
- Name: NAME
- IRC Username: DaItsicle
- Location: By a computer
- Contact:
Re: Secert Project "Unnammed Title"
I didn't know what the code was, I was only guessing :pLeo_V117 wrote:Would be useful If you used the correct code... Especially when its in the GUI Menus Tutorial...Code: Select all
exec "name.cfg"
BTW, if I do that, the code puts the chests automatically at 0, will It stay the same or change from map to map?
Project 1: Da Chest Collector [TBD]
Project 2: Tis a secret [End of summer] announcement June 22 2011
Project 3: An even bigger secret!
http://pizzagametime.tk/
http://forums.pizzagametime.tk/
Project 2: Tis a secret [End of summer] announcement June 22 2011
Project 3: An even bigger secret!
http://pizzagametime.tk/
http://forums.pizzagametime.tk/
- InHumanUnit
- Member
- Posts: 1450
- Joined: May 22nd, 2010, 7:23 am
- Name: Ian, Haiku, I got alot ;)
- Location: Toyko, Japan. Currently in Illonis, Round Lake in America for secret purposes
- Contact:
Re: Secert Project "Unnammed Title"
My head blew up just now....
- PizzaLover101
- Member
- Posts: 1751
- Joined: October 23rd, 2009, 1:33 pm
- Name: NAME
- IRC Username: DaItsicle
- Location: By a computer
- Contact:
Re: Secert Project "Unnammed Title"
Leo_V117 wrote:Would be useful If you used the correct code... Especially when its in the GUI Menus Tutorial...Code: Select all
exec "name.cfg"
.........didn't work.............
Project 1: Da Chest Collector [TBD]
Project 2: Tis a secret [End of summer] announcement June 22 2011
Project 3: An even bigger secret!
http://pizzagametime.tk/
http://forums.pizzagametime.tk/
Project 2: Tis a secret [End of summer] announcement June 22 2011
Project 3: An even bigger secret!
http://pizzagametime.tk/
http://forums.pizzagametime.tk/