| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146 |
- /*
- /$$ /$$ /$$$$$$ /$$$$$$$ /$$$$$$$
- | $$$ | $$ /$$__ $$ | $$__ $$| $$__ $$
- | $$$$| $$| $$ \__/ | $$ \ $$| $$ \ $$
- | $$ $$ $$| $$ /$$$$ /$$$$$$| $$$$$$$/| $$$$$$$/
- | $$ $$$$| $$|_ $$|______/| $$__ $$| $$____/
- | $$\ $$$| $$ \ $$ | $$ \ $$| $$
- | $$ \ $$| $$$$$$/ | $$ | $$| $$
- |__/ \__/ \______/ |__/ |__/|__/
- Service Commands
- Next Generation Gaming, LLC
- (created by Next Generation Gaming Development Team)
-
- * Copyright (c) 2016, Next Generation Gaming, LLC
- *
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without modification,
- * are not permitted in any case.
- *
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
- * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
- * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
- * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
- CMD:service(playerid, params[])
- {
- new string[128], choice[32];
- if(sscanf(params, "s[32]", choice))
- {
- SendClientMessageEx(playerid, COLOR_GREY, "USAGE: /service [name]");
- SendClientMessageEx(playerid, COLOR_GREY, "Available names: Taxi, Bus, Medic, Mechanic, EMS");
- return 1;
- }
- if(PlayerInfo[playerid][pJailTime] > 0)
- {
- SendClientMessageEx(playerid, COLOR_WHITE, "You cannot use this in jail/prison.");
- return 1;
- }
- if(gettime() < PlayerInfo[playerid][pServiceTime]) return SendClientMessage(playerid, COLOR_WHITE, "You must wait 30 seconds before using this command again. " );
- if(strcmp(choice,"ems",true) == 0)
- {
- if(GetPVarInt(playerid, "Injured") == 0)
- {
- SendClientMessageEx(playerid, COLOR_GREY, " You are not injured, you can't call for EMS now!");
- return 1;
- }
- new zone[MAX_ZONE_NAME];
- GetPlayer2DZone(playerid, zone, MAX_ZONE_NAME);
- SetPVarInt(playerid, "EMSAttempt", 1);
- SendClientMessageEx(playerid, COLOR_WHITE, "The EMS has been informed of your current location and is on its way.");
- format(string, sizeof(string), "Emergency Dispatch has reported (%d) %s at %s. They require immediate emergency transport (/emslist).",playerid, GetPlayerNameEx(playerid), zone);
- SendMedicMessage(TEAM_MED_COLOR, string);
- PlayerInfo[playerid][pServiceTime] = gettime()+30;
- return 1;
- }
- else if(strcmp(choice,"taxi",true) == 0)
- {
- if(TaxiDrivers < 1) return SendClientMessageEx(playerid, COLOR_GREY, " There are no taxi drivers on duty at the moment, try again later!");
- if(TransportDuty[playerid] > 0) return SendClientMessageEx(playerid, COLOR_GREY, " You can't call for a taxi now!");
- if(GetPVarInt(playerid, "TaxiCall")) return SendClientMessage(playerid, COLOR_GREY, " You already have a pending taxi request (/cancel taxi).");
- new szZoneName[MAX_ZONE_NAME];
- GetPlayer2DZone(playerid, szZoneName, MAX_ZONE_NAME);
- format(string, sizeof(string), "** %s (%d) is in need of a taxi driver at %s - use /ataxi to accept the call.", GetPlayerNameEx(playerid), playerid, szZoneName );
- SendTaxiMessage(TEAM_AZTECAS_COLOR, string);
- SendClientMessageEx(playerid, COLOR_LIGHTBLUE, "* You have called for a taxi driver, wait for a reply.");
- SetPVarInt(playerid, "TaxiCall", 1);
- PlayerInfo[playerid][pServiceTime] = gettime()+30;
- return 1;
- }
- else if(strcmp(choice,"bus",true) == 0)
- {
- if(BusDrivers < 1) return SendClientMessageEx(playerid, COLOR_GREY, " There are no bus drivers at the moment, try again later!");
- if(TransportDuty[playerid] > 0) SendClientMessageEx(playerid, COLOR_GREY, " You can't call for a bus now!");
-
- new szZoneName[MAX_ZONE_NAME];
- GetPlayer2DZone(playerid, szZoneName, sizeof(szZoneName));
- format(string, sizeof(string), "** %s(%d) is in need of a bus driver at %s - use /abus to accept the call.", GetPlayerNameEx(playerid), playerid, szZoneName );
- SendTaxiMessage(TEAM_AZTECAS_COLOR, string);
- SendClientMessageEx(playerid, COLOR_LIGHTBLUE, "* You have called for a bus driver, wait for a reply.");
- SetPVarInt(playerid, "BusCall", 1);
- PlayerInfo[playerid][pServiceTime] = gettime()+30;
- return 1;
- }
- else if(strcmp(choice,"medic",true) == 0)
- {
- new OnDutyMedics;
- foreach(new i: Player)
- {
- if(IsAMedic(i) || IsFirstAid(i) && PlayerInfo[i][pDuty] == 1)
- {
- OnDutyMedics++;
- }
- }
- if(OnDutyMedics < 1)
- {
- SendClientMessageEx(playerid, COLOR_GREY, " There are no medics on duty at the moment, try again later!");
- return 1;
- }
- else
- {
- format(string, sizeof(string), "** %s is in need of a Medic - use /accept medic to accept the call.", GetPlayerNameEx(playerid));
- SendDivisionMessage(12, 2, TEAM_AZTECAS_COLOR, string);
- SendClientMessageEx(playerid, COLOR_LIGHTBLUE, "* You have called for a medic, wait for a reply.");
- MedicCall = playerid;
- PlayerInfo[playerid][pServiceTime] = gettime()+30;
- OnDutyMedics = 0;
- return 1;
- }
- }
- else if(strcmp(choice,"mechanic",true) == 0)
- {
- if(Mechanics < 1)
- {
- SendClientMessageEx(playerid, COLOR_GREY, " There are no car mechanics on duty at the moment, try again later!");
- return 1;
- }
- format(string, sizeof(string), "** %s is in need of a car mechanic - use /accept mechanic to accept the call.", GetPlayerNameEx(playerid));
- SendJobMessage(7, TEAM_AZTECAS_COLOR, string);
- SendClientMessageEx(playerid, COLOR_LIGHTBLUE, "* You have called for a car mechanic, wait for a reply.");
- MechanicCall = playerid;
- PlayerInfo[playerid][pServiceTime] = gettime()+30;
- return 1;
- }
- else
- {
- SendClientMessageEx(playerid, COLOR_GREY, " Unknown service name!");
- return 1;
- }
- }
|