13.04.2009, 20:29
i've made this "command"
And when i type /test , it results me 10 ...
pawn Код:
if(!strcmp(cmd, "/test",true))
{
new a = 10;
new b = 2;
new restul = b ? a : 2;
format(string,sizeof(string),"%d",restul);
SendClientMessage(playerid,COLOR_LIGHTGREEN,string);
return 1;
}