Quote:
Originally Posted by tyler12
pawn Код:
new SomeIntger, YesOrNoString[24],string[124];; // The variable ( 1 / 0 ) and the YesOrNoString where Yes / No is stored
if(SomeIntger == 1) // If the variable is 1 { YesOrNoString = "Yes"; // Set the YesOrNoString to Yes. } else if(SomeIntger == 0) // The variable is 0 { YesOrNoString = "No"; // Set the YesOrNoString to No. }
format(string,sizeof(string),"The answer is: %s",YesOrNoString); //We say Yes / No
|
So how would I do this for VIP in /stats?