technical questions
Posted: Thu Feb 23, 2017 6:25 am
AND
Did it work like all other programming language ?
Hello world will only be display when all value are not false ?
Function
I need to access player within myfunction did I have to place it in argument ?
or
Scope and good programming
The variable that I'll only use within myfunction did I have to prefix it with local or the default behavior is local ?
Did it work like all other programming language ?
Code: Select all
if not a AND not b AND not c then hello world! endFunction
I need to access player within myfunction did I have to place it in argument ?
Code: Select all
myfunction(player,max)Code: Select all
myfunction(max)The variable that I'll only use within myfunction did I have to prefix it with local or the default behavior is local ?