Cube Scripting Tutorials
Posted: June 3rd, 2010, 12:18 pm
DOWNLOAD: Latest CubeScript map update. (This time, the text actually works and I fixed some errors)
Instead of going into the syntax of everything, I'm just going to give you extremely detailed tutorials. These have helped me considerably and address most if not all the concepts of CubeScript.
Without further ado, Cube Scripting Guide
These include several chapters (4 to be exact) and delves into gui menus, $arg, and more.
This tutorial is very lengthy and includes much about the "Integer Arithmetic" of CubeScript. CubeScript
If you have any problems, post below and we can try to answer it!
Whaddya think??
Arcones
EDIT: THIS DOESN'T WORK!!!Instead of going into the syntax of everything, I'm just going to give you extremely detailed tutorials. These have helped me considerably and address most if not all the concepts of CubeScript.
Without further ado, Cube Scripting Guide
These include several chapters (4 to be exact) and delves into gui menus, $arg, and more.
This tutorial is very lengthy and includes much about the "Integer Arithmetic" of CubeScript. CubeScript
If you have any problems, post below and we can try to answer it!
Code: Select all
"level_trigger_1" = "showgui Friend"
newgui "Friend" [
guitext "Hi I'm your friend!" chat
guitext "Want to talk?" chat
guibutton "Sure!" "showgui Friend_1"
guibutton "No. (close)" "cleargui"
]"Arcones
newgui "Friend_1" [
guitext "So, do you like Sandbox?" chat
guibar
guibutton "Yes! Duh!" "showgui Friend_1.1"
guibutton "No, not really (close)" "cleargui"
]"Arcones"
newgui "Friend_1.1" [
guitext "I love as well! Very easy to create games!" chat
guitext "Shop scripts are easy, dialogues like this one" chat
guitext "are easy, and menu's should be easy as well!" chat
guibar
guibutton "That's great!" "showgui Friend_1.2"
guibutton "Interesting! Menus' you say?" "showgui Friend_1.1.1"
guibutton "K, well I need to go!" "cleargui" echo "See ye later!"
]"Arcones"
newgui "Friend_1.2" [
guitext "Yep, it is! Sandbox is continually growing!" chat
guitext "Did you know that there's a Vehicle Simulator coming out?" chat
guitext "And a Flight Simulator?" chat
guibar
guibutton "Wow! That's incredible!" "showgui Friend_1.3"
guibutton "Yeah I did, Water Wars too!" "showgui Friend_1.4"
]"Arcones"
newgui "Friend_1.1.1" [
guitext "Yep, menus should be easier to make once a tut is out!"
guibutton "Okay, well I need to go!" "cleargui"
]"Arcones"
newgui "Friend_1.3" [
guitext "Yes it is and I'm glad you think so!" chat
guitext "It will definitely draw more people in!" chat
guitext "But I got to go now! See you later!" chat
guibutton "Bye! (close)" "cleargui"
]"Arcones"
newgui "Friend_1.4" [
guitext "Water Wars ye say?" chat
guitext "Sounds fun! Is it going to be released soon?" chat
guibutton "I don't know..." "showgui Friend_1.4.1"
guibutton "It's actually in the SVN right now!!!" "showgui Friend_1.5"
]"Arcones"
newgui "Friend_1.4.1" [
guitext "That's okay, I'm sure it'll come out soon!" chat
guitext "Bye now!" chat
guibutton "Bye!" "cleargui"
]"Arcones"
newgui "Friend_1.5" [
guitext "That's awesome! Gonna go pick it up and play it!" chat
guitext "So I'll go now!" chat
guibutton "Alright see ya!" "cleargui"
]"Arcones"

Arcones
