08.04.2013, 13:25
Hey I've made new system of Deliver System for that u get Spas 12 but IDK to do where should he go , I mean inside that cmd where to write the positions he should to go for get the spas...
Heres the cmd :
Heres the cmd :
Код:
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; }