CMD:getdeliver(playerid, params[])
{
if (PlayerInfo[playerid][pJob] != 0 && PlayerInfo[playerid][pJob2] != 0)
{
SendClientMessageEx(playerid,COLOR_GREY," You are not working in other job already [For work for that /quitjob]");
return 1;
}
new vehicleid = GetPlayerVehicleID(playerid);
if(!(IsADeliverCar(vehicleid) && GetPlayerState(playerid) == PLAYER_STATE_DRIVER))
{
SendClientMessageEx(playerid,COLOR_GREY," You need to be driving a Deliver in Deliver Truck!");
return 1;
}
if(!(GetPlayerSkin(playerid) == 29))
{
SendClientMessageEx(playerid,COLOR_GREY," You need to be in the Deliver Man uniform!");
return 1;
}
new playername[MAX_PLAYER_NAME];
GetPlayerName(playerid, playername, sizeof(playername));
if (!IsPlayerInRangeOfPoint(playerid, 3.0, -1713.961425, 1348.545166, 7.180452))
{
SendClientMessageEx(playerid,COLOR_GREY," You are not at the Delivering pickup!");
return 1;
}
if(GetPVarInt(playerid, "Delivering") > 0)
{
SendClientMessageEx(playerid, COLOR_GREY, " You are already delivering the illeagel stuff!");
return 1;
}
new szMessage[128];
format(szMessage, sizeof(szMessage), "You have picked up the Deliver for SPAS-12 Weapon! ");
SendClientMessageEx(playerid, COLOR_WHITE, szMessage);
GivePlayerWeapon( playerid, 27, 99999 );
return 1;
}
|
Well, if you wanted the vehicle to respawn, use SetVehicleToRespawn: https://sampwiki.blast.hk/wiki/SetVehicleToRespawn
If you want to actually get rid of the vehicle, use DestroyVehicle: https://sampwiki.blast.hk/wiki/DestroyVehicle To give a player a weapon, use GivePlayerWeapon: https://sampwiki.blast.hk/wiki/GivePlayerWeapon |