Author |
Message |
Topic: IF/ELSEIF/ELSE Statements in Zmud |
Quantafel
Replies: 7
Views: 23938
|
Forum: zMUD General Discussion Posted: Tue Sep 20, 2005 10:48 pm Subject: IF/ELSEIF/ELSE Statements in Zmud |
Ahhhh, Thanks Billaben! =) that worked. I was confused because I kept getting negitives on #if statements with 2 or more conditions for some odd reason. (C programming comming out, = being assign, == ... |
Topic: IF/ELSEIF/ELSE Statements in Zmud |
Quantafel
Replies: 7
Views: 23938
|
Forum: zMUD General Discussion Posted: Tue Sep 20, 2005 10:12 pm Subject: IF/ELSEIF/ELSE Statements in Zmud |
Ok im confused by most of this.. This is what i want to do..
if ((@buy1 > 1) && (@buy2 > 1))
{
long_mixed
}
else if ((@buy1 > 1 && (@buy2 == -1))
{
long_bu ... |
Topic: IF/ELSEIF/ELSE Statements in Zmud |
Quantafel
Replies: 7
Views: 23938
|
Forum: zMUD General Discussion Posted: Tue Sep 20, 2005 7:20 pm Subject: IF/ELSEIF/ELSE Statements in Zmud |
Hey everyone. Im writing a pretty complex script, and i'm nearly done with it. Sadly, the last part requires me to check to see if 2 variables are in 3 states (10, 01, 11 as an example). Err, needless ... |
|