23.07.2013, 14:41
pawn Код:
CMD:t1(playerid,params[])
{
masinike[playerid] = 400; // No idea why you do this, since it will always evaluate the next IF as false
if(masinike[playerid] == 0)
{
SendClientMessage(playerid,RAUDONA,"No units.");
}
else
{
new msg[24];
format(msg,sizeof(msg),"Is units: v%d", masinike[playerid]);
SendClientMessage(playerid,RAUDONA,msg);
}
return 1;
}