- Home /
Question by
paco morales · Feb 01, 2013 at 10:05 AM ·
varthird
How to add a third Variable?
Hi Everyone,
I'm trying to add a third Variable to this line, but I don't know how, please can anyone help me?
Please take a look to this line that I want to add another Variable.
if(bate == false && emble == false){
return true;
Here I want to add the third Variable with name "sonGo" but I don't know how.
if(sonGo == false && bate == emble == false ){
return true;
Thanks for your help,
Comment
Best Answer
Answer by Berenger · Feb 01, 2013 at 10:23 AM
if(sonGo == false && bate == false && emble == false )
return true;
Just between us, this work as well, unless it's not the end of the function :
return sonGo == false && bate == false && emble == false;
Answer by BBG · Feb 01, 2013 at 02:02 PM
if(sonGo == false && bate == false && emble == false )
return true;
Your answer
Follow this Question
Related Questions
A node in a childnode? 1 Answer
Two variables in a GUI Button? 1 Answer
mouse displays GUI text when on objects 3 Answers
Assigning two variables ? 1 Answer
Weapon Switching 3th Person 0 Answers