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.

Some scripts I made

Have any cool screenshots and/or projects to show off? Post your content here!
(If you need somewhere to post your images, why not use our gallery?)
Locked
User avatar
lzrstrm
Member
Member
Posts: 122
Joined: September 21st, 2011, 8:26 pm
Name: Cameron
Location: Canada

Some scripts I made

Post by lzrstrm »

Here im going to post some scripts i have made

1. the first one is a script for a broken robot

Code: Select all

level_trigger_14 = [showgui dead]
newgui dead [
guitext "Hi, my naaame is ....."
guibar
guibutton "ummmmm" [showgui dead2]
guibutton "Goodbye." [cleargui]
] "Broken Robot"
newgui dead2 [
guitext "I...I like choc..chocolate hehe"
guibar
guibutton "Ooooook" [showgui dead3]
guibutton "I Think Im Going To Leave..." [cleargui]
] "Broken Robot"
newgui dead3 [
guitext "Have Yyyyou Been To The....Give Me All Your Mooone...Store Yet?"
guibar
guibutton "No Not Yet" [showgui dead4]
guibutton "Ya" [showgui dead5]
guibutton "ya Its Supercalifragilisticexpialidocious" [showgui dead6]
guibutton "Why Do I Have To Answer Your Silly Questions?" [cleargui]
] "Broken Robot"
newgui dead4 [
guitext "You Should Go It Is...Stop Where You Are And Put Your Hands Up...Fun!!"
guibar
guibutton "Im going Now" [cleargui]
guibutton "Good Advice...BYE!" [echo "Sure!" cleargui]
] "Broken Robot"
newgui dead5 [
guitext "Oh Good...(Error 309DF57D)...Automatic Shutdown Activated"
guibar
guibutton "Ummm Bye" [cleargui]
] "Broken Robot"
newgui dead6 [
guitext "Unknown Word...Acitivating Self-Destruct Mode...5-4-3-2"
guibar
guibutton "GOODBYE!!" [cleargui]
] "Broken Robot"
feel free to try them out
:D
Virus 44
Image
java.x.beast
Member
Member
Posts: 194
Joined: August 10th, 2011, 2:35 pm
Name: Addis
IRC Username: javaxbeast
Location: Chicago, IL
Contact:

Re: Some scripts I made

Post by java.x.beast »

In the gui titled dead4, for the last guibutton, there should be a semicolon (;) separating the echo and the cleargui.

EX:

Code: Select all

newgui dead4 [
guitext "You Should Go It Is...Stop Where You Are And Put Your Hands Up...Fun!!"
guibar
guibutton "Im going Now" [cleargui]
guibutton "Good Advice...BYE!" [echo "Sure!" ; cleargui]
] "Broken Robot"
Otherwise, it's valid code! Nice work, hope to see you come up with more!

-Java
Age of Darkness
Maps: Image
Music: Image
Models: Image
Scripts: Image
Other: Image
Visit the company website: (In progress (Expected to be released in two weeks :uber:) 8-) :D 8-) )
Visit the company page on ModDB: Vulcanis Entertainment
java.x.beast wrote: I got them moves like JAGger!!!
User avatar
lzrstrm
Member
Member
Posts: 122
Joined: September 21st, 2011, 8:26 pm
Name: Cameron
Location: Canada

Re: Some scripts I made

Post by lzrstrm »

Thx java i will
Virus 44
Image
Locked