16.07.2012, 05:25
Here is the command. You do /licenseplate [Text]
Everything compiles fine but this is what it looks like In game.
pawn Код:
if(strcmp(cmd, "/licenseplate", true) == 0)
{
if(PlayerInfo[playerid][Level] >= 1)
{
if (GetPlayerState(playerid) == 2)
{
new VehicleID = GetPlayerVehicleID(playerid), LModel = GetVehicleModel(VehicleID);
switch(LModel)
{
case 448,461,462,463,468,471,509,510,521,522,523,581,586, 449: return SendClientMessage(playerid,red,"ERROR: You can not tune this vehicle");
}
new str[128], Float:pos[3]; format(str, sizeof(str), "%s", cmdtext[2]);
SetVehicleNumberPlate(VehicleID, str);
GetPlayerPos(playerid, pos[0], pos[1], pos[2]); SetPlayerPos(playerid, pos[0]+1, pos[1], pos[2]);
SetVehicleToRespawn(VehicleID); SetVehiclePos(VehicleID, pos[0], pos[1], pos[2]);
SetTimerEx("TuneLCar",4000,0,"d",VehicleID); PlayerPlaySound(playerid,1133,0.0,0.0,0.0);
SendClientMessage(playerid, blue, "You have changed your licence plate");
}
else
{
SendClientMessage(playerid,red,"Error: You have to be the driver of a vehicle to change its licence plate");
}
}
else
{
SendClientMessage(playerid,red,"ERROR: You need to be level 1 use this command");
}
return 1;
}