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.

Secert Project "Unnammed Title"

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.
User avatar
InHumanUnit
Member
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"

Post by InHumanUnit »

...........................................
Image
Image
Image
XEON BOX GAMES - XBG is a blast from the past of a pirate mast to a cars thats fast.
You dare challenge me to Halo:Reach? You must die!
User avatar
PizzaLover101
Member
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"

Post by PizzaLover101 »

InHumanUnit wrote:...........................................
Please do no post unless you have something to say.
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/
User avatar
InHumanUnit
Member
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"

Post by InHumanUnit »

.................................................CHESE!!!
Image
Image
Image
XEON BOX GAMES - XBG is a blast from the past of a pirate mast to a cars thats fast.
You dare challenge me to Halo:Reach? You must die!
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: Secert Project "Unnammed Title"

Post by Leo_V117 »

One vital mistake there arcones...
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"
    ]
When it should be Like This:

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"
    ]
And for the Chests it should be more like this:

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.
User avatar
PizzaLover101
Member
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"

Post by PizzaLover101 »

ok, but will It help so that if I make a cfg file in notepad and say in every map

Code: Select all

read name.cfg
will that 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/
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: Secert Project "Unnammed Title"

Post by Leo_V117 »

Code: Select all

exec "name.cfg"
Would be useful If you used the correct code... Especially when its in the GUI Menus Tutorial...
User avatar
InHumanUnit
Member
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"

Post by InHumanUnit »

This hurts my head.....
Image
Image
Image
XEON BOX GAMES - XBG is a blast from the past of a pirate mast to a cars thats fast.
You dare challenge me to Halo:Reach? You must die!
User avatar
PizzaLover101
Member
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"

Post by PizzaLover101 »

Leo_V117 wrote:

Code: Select all

exec "name.cfg"
Would be useful If you used the correct code... Especially when its in the GUI Menus Tutorial...
I didn't know what the code was, I was only guessing :p

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/
User avatar
InHumanUnit
Member
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"

Post by InHumanUnit »

My head blew up just now....
Image
Image
Image
XEON BOX GAMES - XBG is a blast from the past of a pirate mast to a cars thats fast.
You dare challenge me to Halo:Reach? You must die!
User avatar
PizzaLover101
Member
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"

Post by PizzaLover101 »

Leo_V117 wrote:

Code: Select all

exec "name.cfg"
Would be useful If you used the correct code... Especially when its in the GUI Menus Tutorial...

.........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/
Locked