02.06.2010, 02:44
why you have if(!strcmp ...
use this..
use this..
pawn Код:
if(!strcmp(cmd,"/test",true))
{
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(!IsPlayerConnected(veh1[i]))
{
DestroyVehicle(veh1[i]);
}
}
}