[Pedido] Comando simples rs
#1

Galera sou noobzinho no pawn ainda, mas quero aprender, eu tentei fazer um simples comando pra um GM velho aqui, mas nгo consegui.

E o seguinte: eu olhei esse comando:
pawn Код:
if(strcmp(cmd, "/setarcombustivel", true) == 0)
    {
        if(IsPlayerAdmin(playerid))
        {
            tmp = strtok(cmdtext, idx);
            new id = strval(tmp);
            if(!strlen(tmp))
            {
                SendClientMessage(playerid, 0xC4C4FFAA, "Uso: /setarcombustivel [id] [quantidade]");
                return 1;
            }
            tmp = strtok(cmdtext, idx);
            new quantidade = strval(tmp);
            if(!strlen(tmp))
            {
                SendClientMessage(playerid, 0xC4C4FFAA, "Uso: /setarcombustivel [id] [quantidade]");
                return 1;
            }
            if(!IsPlayerConnected(id))
            {
                SendClientMessage(playerid, COR_BRANCO, "(ERRO) Jogador nгo estб conectado!");
                return 1;
            }
            new str[256];
            Gasolina[id] = quantidade;
            new giveplayer[MAX_PLAYER_NAME];
            new sendername[MAX_PLAYER_NAME];
            GetPlayerName(playerid, sendername, sizeof(sendername));
            GetPlayerName(id, giveplayer, sizeof(giveplayer));
            format(str, sizeof(str), "(INFO) O admin %s setou a sua gasolina para %d", sendername, quantidade);
            SendClientMessage(id, 0x00FA9AAA, str);
            format(str, sizeof(str), "(INFO) Vocк setou a gasolina do jogador %s para %d", giveplayer, quantidade);
            SendClientMessage(playerid, 0x00FA9AAA, str);
            printf("(iSeven) O administrador %s (%d) setou a gasolina do jogador %s (%d) para %d", sendername, playerid, giveplayer, id, quantidade);
        }
        else
        {
            SendClientMessage(playerid, COR_VERMELHO, "(ERRO) Vocк nгo й um administrador");
        }
        return 1;
    }
Notou que esse comando muda um simples nomero dentro de um diretorio? ele apenas muda o "Gasolina" pra o numero desejado... Entгo eu tentei seguir o comando acima e fazer um comando para a profissгo de Instrutor: o /terrestre [id], esse comando era pra somente mudar o valor do "Terrestre=0" pra "1" mas, eu nгo conseguir fazer o comando KKK, alguйm pode fazer ? please?

Diretorio: #define DIRETORIO "contas/usuarios/%s.ini"
Mudar dentro do .ini: "Terrestre=0" pra "Terrestre=1"
Reply


Messages In This Thread
Comando simples rs - by HumildadeForevis - 18.04.2013, 22:45
Re: Comando simples rs - by arakuta - 18.04.2013, 23:27
Re: Comando simples rs - by hard_dalzot - 19.04.2013, 03:04
Re: Comando simples rs - by HumildadeForevis - 19.04.2013, 17:05
Re: Comando simples rs - by douglasmacb - 20.07.2013, 00:27
Re: Comando simples rs - by HumildadeForevis - 25.07.2013, 00:10

Forum Jump:


Users browsing this thread: 1 Guest(s)