16.05.2012, 12:38
ZCMD include alone you to place your code were you wont into your gm/fs but not in callbacks/functions or other place
pawn Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
return 1;
}
CMD:detach(playerid, params[])
{
new var0 = 0;
var0 = GetPlayerVehicleID(playerid);
DetachTrailerFromVehicle(var0);
SendClientMessage(playerid, 0x00FF00FF, "Trailer Detached");
return 1;
}