Qualifier

 

Hi Guys,

 

I'm writing an EA and I stumbled into a problem for my if statement.

 

I have:

 

if(something) && (something2)

{

 

} 

 

However it won't let me do this, it comes up with an error for && and then if I put just one &, it comes up with errors in subsequent lines which disappear as soon as I delete the something2 qualifier. So obviously I'm not able to put two qualifiers the way I put them. Any suggestions?

 
if(something && something2)

{

 

} 

or...

if((something) && (something2))

{

 

} 
 
Got it thanks.
Reason: