[AJUDA] Codigo do Motorista
#1

Qual o Codigo q Representa o Motorista,
qro dar dinheiro para o motorista do onibus, mas so pra ele! ao digitar /pagarpassagem
Tira o Dinheiro de qm ta pagano
e pra dar o dinheiro pro motorista seria>
GivePlayerMoney(??,3);
Mas tem q seer so pro motorista do onibus, mais de nehuma profissao/player (??) qual й o codigo dele!?
Reply
#2

GetPlayerMoney eu acho
Reply
#3

pawn Код:
if(strcmp(cmd, "/pagar", true) ==0)
    {
        tmp = strtok(cmdtext, idx);
        if(!strlen(tmp))
        {
            SendClientMessage(playerid, 0xFF0000AA, "USO: /pagar [ID] [Quantidade");
            return 1;
        }
        new ID;
        ID = strval(tmp);
        tmp = strtok(cmdtext, idx);
        if(!strlen(tmp))
        {
            SendClientMessage(playerid, 0xFF0000AA, "USO: /pagar [ID] [Quantidade");
            return 1;
        }
        new Qtd;
        Qtd = strval(tmp);
        GivePlayerMoney(playerid, -Qtd);
        GivePlayerMoney(ID, Qtd);
        new Nome[MAX_PLAYER_NAME];
        new Nome2[MAX_PLAYER_NAME];
        GetPlayerName(playerid, Nome, sizeof(Nome));
        GetPlayerName(ID, Nome2, sizeof(Nome2));
        new String[128];
        format(String, sizeof(String), "%s Pagou R%%d Para Vocк",Nome, Qtd);
        SendClientMessage(ID,0xFFFF00AA,String);
        format(String, sizeof(String), "Vocк Pagou R$%d Para %s",Qtd, Nome2);
        SendClientMessage(ID,0xFFFF00AA,String);
        return 1;
    }
Comando Simples De Pagar
Reply


Forum Jump:


Users browsing this thread: 2 Guest(s)