Checking for spaces in OnPlayerText
#8

The command;
pawn Код:
CMD:call(playerid, params[]) {
    new num;
    if(sscanf(params, "i", num)) return SendUsageMessage(playerid, "/call [phone number]");
    else {
        if(num == 454) {
            PlayerInfo[playerid][pOnPhone] = true;
            PlayerInfo[playerid][pCalled] = 454;
            SendClientMessage(playerid, COLOR_GREY, "Redsquare Taxis says: Thank you for calling, where are you located?");
            TaxiStep{playerid} = 1;
            PlayerCalledTaxi{playerid} = playerid;
        }
    }  
    return 1;
}
OnPlayerText part;
pawn Код:
if(TaxiStep{playerid} == 1) {
                strmid(PlayerTaxiLoca[playerid], tmp, 0, strlen(text), sizeof(tmp));
                format(string, sizeof string, "Redsquare Taxis says: Alright, a Taxi should be on it's way to '%s'! Thanks for calling.", PlayerTaxiLoca[playerid]);
                SendClientMessage(playerid, COLOR_GREY, string);
                PlayerInfo[playerid][pOnPhone] = false;
                PlayerInfo[playerid][pCalled] = 0;
                TaxiStep{playerid} = 0;
                foreach(new i : Player) {
                    if(PlayerInfo[i][pTaxiDuty] == 1) {
                        new Float:X, Float:Y, Float:Z;
                        format(string, sizeof string, "Dispatch: We have a customer located at, %s.", PlayerTaxiLoca[playerid]);
                        SendClientMessage(i, COLOR_WHITE, string);
                        GetPlayerPos(playerid, X, Y, Z);
                        TaxiCustomerCP{i} = CreateDynamicCP(X, Y, Z, 6.0, -1, -1, i, 12000.0);
                    }
                }
            }
Sorry about the indentation.
Reply


Messages In This Thread
Checking for spaces in OnPlayerText - by Luis- - 06.05.2015, 13:50
Re: Checking for spaces in OnPlayerText - by Konstantinos - 06.05.2015, 13:58
Re: Checking for spaces in OnPlayerText - by Luis- - 06.05.2015, 14:01
Re: Checking for spaces in OnPlayerText - by Konstantinos - 06.05.2015, 14:05
Re: Checking for spaces in OnPlayerText - by Luis- - 06.05.2015, 14:07
Re: Checking for spaces in OnPlayerText - by Ahmad45123 - 06.05.2015, 14:08
Re: Checking for spaces in OnPlayerText - by Konstantinos - 06.05.2015, 14:15
Re: Checking for spaces in OnPlayerText - by Luis- - 06.05.2015, 14:16
Re: Checking for spaces in OnPlayerText - by MP2 - 06.05.2015, 14:20
Re: Checking for spaces in OnPlayerText - by Luis- - 06.05.2015, 14:24

Forum Jump:


Users browsing this thread: 1 Guest(s)