09.12.2012, 11:59
You can also do it this way
http://forum.sa-mp.com/showpost.php?...7&postcount=73
pawn Код:
new yourinteger = 1, yourstring[10];
format(yourstring, sizeof yourstring, "%s", yourinteger ? ("Yes") : ("No"));
print(yourstring); //Outputs "Yes"