04.04.2012, 01:42
*sight*
pawn Код:
COMMAND:destroyv(playerid, params[])
{
new pName[MAX_PLAYER_NAME];
new string[256]
GetPlayerName(playerid, pName, MAX_PLAYER_NAME);
format(string, sizeof(string), "[Information]: %s has Destroyed one Vehicle!", pName);
SendClientMessageToAll(0xFFFFFFFF, string);
DestroyVehicle(VehicleID[playerid]);
return 1;
}

