28.12.2010, 11:48
Hello im wanting to script a car dealer ship! I got alot done! the only thing is.......I dunno how to script the license plates :/ can someone plaes help im a pretty good scripter im just lost at this point thanks
#define dcmd(%1,%2,%3) if (!strcmp((%3)[1], #%1, true, (%2)) && ((((%3)[(%2) + 1] == '\0') && (dcmd_%1(playerid, ""))) || (((%3)[(%2) + 1] == ' ') && (dcmd_%1(playerid, (%3)[(%2) + 2]))))) return 1 // top
public OnPlayerCommandText(playerid, cmdtext[])
{
dcmd(plate,5,cmdtext); // Just add this line on your OnPlayerCommandText
return 0;
}
dcmd_plate(playerid,params[])
{
new ID = GetPlayerVehicleID(playerid);
new string[128];
if(!IsPlayerInAnyVehicle(playerid)) return SendClientMessage(playerid, 0xFF0000FF, "You're not in a vehicle");
if(!strlen(params)) return SendClientMessage(playerid, 0xFF0000FF, "Usage: /plate <number/name>");
else
{
SetVehicleNumberPlate(ID, params);
SetVehicleToRespawn(ID);
format(string,sizeof(string),"{F216FA}You've changed your{00EEFF} VehicleID: {D9FA00}%d {FAD900}plate's for: {00FF88}%s",GetVehicleModel(ID),params);
SendClientMessage(playerid, 0xFF0000FF, string);
PlayerPlaySound(playerid, 1133, 0.0, 0.0, 0.0);
}
return 1;
}