[Ajuda] a Criar Org :D
#1

bom to tentando criar a org PM para um gm q estou a desenvolver do "0" ja olhei tutoriais eu atй concigui mais meus cmd n seta o player para a org e queria tb poder salvar a org do player


pawn Код:
enum pInfo
{
    PMilitar;
}
Cmd /Convidar [id]
pawn Код:
CMD:convidar(playerid, params[])
{
    new PlayerB;
    if(sscanf(params, "u", PlayerB)) return SendClientMessage(playerid, BRANCO, "Uso correto: /convidar [id]");
    if(!IsPlayerConnected(PlayerB)) return SendClientMessage(playerid, BRANCO, "Este jogador nгo estб conectado");
    if(PlayerDados[playerid][PMilitar] >= 6)
        {
            PlayerDados[PlayerB][PMilitar] = 1;
            SendClientMessage(PlayerB, BRANCO, "Vocк entrou Para Polнcia Militar");
            SetPlayerColor(PlayerB, Cor_PMilitar);
            return 1;
        }
    return 1;
 }

Cmd /Promover [id]

pawn Код:
CMD:promover(playerid, params[])
{
        new PlayerB, level;
        if(sscanf(params, "ui", PlayerB, level)) return SendClientMessage(playerid, BRANCO, "Uso correto: /promover [id] [cargo]");
        if(!IsPlayerConnected(PlayerB)) return SendClientMessage(playerid, BRANCO, "Este jogador nгo estб conectado");
        if(level < 1 || level > 6) return SendClientMessage(playerid, BRANCO, "O level deve ser maior que 0 e menor que 7");
        new string[128], promovedor[MAX_PLAYER_NAME];
        GetPlayerName(playerid, promovedor, sizeof(promovedor));
        if(PlayerDados[playerid][PMilitar] >= 6)
        {
            if(PlayerDados[PlayerB][PMilitar] < 1) return SendClientMessage(playerid, BRANCO, "Este jogador nгo й da sua org");
            PlayerDados[PlayerB][PMilitar] = level;
            format(string, sizeof(string), "Vocк foi promovido a level %d por %s", level, promovedor);
            SendClientMessage(PlayerB, BRANCO, string);
            return 1;
       }
        return 1;
}
Cmd /Demitir [id]

pawn Код:
CMD:demitir(playerid, params[])
{
        new PlayerB, string[128], demitidor[MAX_PLAYER_NAME];
        if(sscanf(params, "u", PlayerB)) return SendClientMessage(playerid, BRANCO, "Uso correto: /demitir [id]");
        GetPlayerName(playerid, demitidor, sizeof(demitidor));
        if(!IsPlayerConnected(PlayerB)) return SendClientMessage(playerid, BRANCO, "Este jogador nгo estб conectado");
        if(PlayerDados[playerid][PMilitar] >= 6)
        {
            if(PlayerDados[PlayerB][PMilitar] < 1) return SendClientMessage(playerid, BRANCO, "Este jogador nгo й da sua organizaзгo");
            PlayerDados[PlayerB][PMilitar] = 0;
            format(string, sizeof(string), "Vocк foi demitido por %s", demitidor);
            SendClientMessage(PlayerB, BRANCO, string);
            return 1;
        }
        return 1;
}
Help-me Reep ++
Reply
#2

Oque acontece quando vocк tente setar um player para org ?

@OFF Exemplo bбsico, para admins logados na Rcon
pawn Код:
#define MAX_ORGS (20) // valor de orgs
new org[MAX_PLAYERS][MAX_ORGS];

CMD:convidar(playerid, params[])
{
    new otherId, orgId, cargoLvl;
    if(!IsPlayerAdmin(playerid))
        return SendClientMessage(playerid, -1, "Vocк nгo й um admin Rcon.");
       
    if(sscanf(params, "udd", otherId, orgId, cargoLvl))
        return SendClientMessage(playerid, -1, "/convidar [id][org]");
       
    if(otherId == INVALID_PLAYER_ID)
        return SendClientMessage(playerid, -1, "Id invбlido.");
       
    if(orgId > MAX_ORGS)
        return SendClientMessage(playerid, -1, "ORG invбlida.");
       
    org[otherId][orgId] = cargoLvl;
    new str[60];
    format(str, 60, "Vocк foi convidado pelo Admin para org id %d, cargo %d", orgId, cargoLvl);
    return 1;
}
No seu caso, tente assim...
pawn Код:
CMD:convidar(playerid, params[])
{
    new PlayerB;
    if(sscanf(params, "u", PlayerB)) return SendClientMessage(playerid, BRANCO, "Uso correto: /convidar [id]");
    if(!IsPlayerConnected(PlayerB)) return SendClientMessage(playerid, BRANCO, "Este jogador nгo estб conectado");
    //if(PlayerDados[playerid][PMilitar] >= 6)
    //{
    PlayerDados[PlayerB][PMilitar] = 1;
    SendClientMessage(PlayerB, BRANCO, "Vocк entrou Para Polнcia Militar");
    SetPlayerColor(PlayerB, Cor_PMilitar);
        //return 1;
    //}
    return 1;
}
Vai ver vocк pode nгo estar logado como PMilitar 6 ou +, etc...
Reply
#3

O Melhor q Achei ate Hj e Mais Facil '-'
Reply
#4

@Willian_Luigi
eu uso o comando e nгo acontece nada nao aparece a menssagem: Vocк entrou Para Polнcia Militar

vou usar oq vc passou.

@leosivi

pois й eu usei esse so q eu passei ele pra zcmd e sscanf e mesmo assim nгo deu

@Edit
@Willian_Luigi
Deu Certo aki
Reply
#5

Disponha, qualquer coisa poste novamente aqui que eu estarei checando, assim nгo precisa criar tуpico novo.
Reply
#6

agora pra min salvar a org, o cargo e se ele й lider utilizo DOF2
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)