[Ajuda] Org Equipada
#1

Seguinte , procuro como fazer , de forma bem detalhada para aprender , a como fazer o membros de uma determinada orb ( no caso hitmans ) nasзam com armas , Por exemplo , os membros sгo setados e no spawn ja vem com suas devidas armas , *-*
Agradeзo desde jб .
Att
Reply
#2

pawn Код:
Na Callback OnPlayerSpawn:

if(ArrayDasOrgs[playerid] == NOMEDAORG)
{
    GivePlayerWeapon(playerid, 23, 99999);
    GivePlayerWeapon(playerid, 32,99999);
    .......... //Outras armas se quiser..
return 1;
}
Sу foi um exemplo , so trocar a array que coloquei ali , pela array de suas orgs
Reply
#3

Vou tentar aqui , meu +REP desde jб por atender (;
Reply
#4

Linhas ~

Код:
// NASCER EQUIPADO HITMANS
    if(PlayerInfo[playerid][pMembro] == 8 || PlayerInfo[playerid][pLider] == 8 // linha 7958
    {
    GivePlayerWeapon(playerid, 24, 99999);
    GivePlayerWeapon(playerid, 35,99999);
    return 1; // linha 7962
}
Erros :

(7958 ) : error 010: invalid function or declaration
(7962 ) : error 010: invalid function or declaration

2 Errors.
Reply
#5

pawn Код:
public OnPlayerSpawn(playerid)
{
    if(PlayerInfo[playerid][pMembro] == 8 || PlayerInfo[playerid][pLider] == 8) // linha 7958
    {
    GivePlayerWeapon(playerid, 24, 99999);
    GivePlayerWeapon(playerid, 35,99999);
    }
    return 1;
}
'-'
Reply
#6

(7875 ) : error 010: invalid function or declaration
(7880 ) : error 010: invalid function or declaration
(7882 ) : error 010: invalid function or declaration
(7888 ) : error 010: invalid function or declaration
(7893 ) : error 010: invalid function or declaration
(7899 ) : error 010: invalid function or declaration
(7903 ) : error 010: invalid function or declaration
(7905 ) : error 010: invalid function or declaration
(7908 ) : error 010: invalid function or declaration
(7909 ) : error 010: invalid function or declaration
(7910 ) : error 010: invalid function or declaration
(7911 ) : error 010: invalid function or declaration

26 Errors.

sei que й chave em lugar errado , mas nгo identifico onde e-e

Linhas ~

Код:
public OnPlayerSpawn(playerid)
{
    if(PlayerInfo[playerid][pMembro] == 8 || PlayerInfo[playerid][pLider] == 8)
    {
    GivePlayerWeapon(playerid, 24, 99999);
    GivePlayerWeapon(playerid, 35,99999);
    }
    return 1;
}
Reply
#7

Obrigado ja solucionei o problema aqui , obrigado por sua atenзгo
+REP (;
Reply
#8

pawn Код:
public OnPlayerSpawn(playerid)
{ //Abre chave 1
    if(PlayerInfo[playerid][pMembro] == 8 || PlayerInfo[playerid][pLider] == 8)
    { //Abre chave 2
    GivePlayerWeapon(playerid, 24, 99999);
    GivePlayerWeapon(playerid, 35,99999);
    } //Fecha chave 1
} //Fecha chave 2
    return 1;
}
Serб q й assim ? O.o To aprendendo ainda rs
Reply
#9

pawn Код:
public OnPlayerSpawn(playerid)
{ //Abre chave 1
    if(PlayerInfo[playerid][pMembro] == 8 || PlayerInfo[playerid][pLider] == 8)
    { //Abre chave '2'
    GivePlayerWeapon(playerid, 24, 99999);
    GivePlayerWeapon(playerid, 35,99999);
    } //Fecha chave '2'
    return 1;
}//Fecha chave '1'
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)