Quote:
Originally Posted by Fiore
so i just:
pawn Код:
new IsWar;
if(IsWar == false) { // something here }
right?
|
First of all, IsWar should be defined as a boolean:
Second, yes, this is correct but it's useless. You should value IsWar somewhere first. For example, if some command is executed, IsWar = true, and so on.