Declaring variables

From the Oblivion ConstructionSet Wiki
Revision as of 15:18, 10 February 2006 by imported>Jduvall
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
short      -32,768 to 32,767 
long      -2,147,483,648 to 2,147,483,647 
float      3.4E +/- 38 (7 digits) 

You can declare three types of variables through scripts and as global variables. Variable names are not case sensitive. Declare with type and name:

short myShortVariable 
long  myLongVariable   
float myFloatVariable 


Scripts can also declare and use reference variables:

ref      myRefVariable