|
Written by eaxs
|
|
Monday, 24 August 2009 21:31 |
Description This is your standard conditional clause. <command> is executed if <cond> is true. Syntax
Example Send a server message if the math condition is fulfilled. CreateVar int test 1
If [test == 1] ServerChat Condition is fulfilled Send a server message if the string condition is fulfilled
CreateVar string test hello
If #StringEquals(|#test|#, hello)# ServerChat Condition is fulfilled Notes Math operations need to be in square brackets []. String operations etc. dont.
|