Is it possible?
#4

Quote:
Originally Posted by AustinJ
Посмотреть сообщение
Can you explain in greater detail of how to to do this. So lets say the array is defined "new Group[GROUP_MAX][GroupInfo];" and the players group id is obtained by "Player[playerid][Group]" and their rank id is obtained by "Player[playerid][Rank]" explain how I would send a client message saying their rank.
Sorry to say WRONG! it would bee

new Player[MAX_PLAYERS][GroupInfo];

also I man for example a command locked to that group you'd do

pawn Код:
Player[playerid][Rank] >= x); x being equal or higher than
or for a swich()

pawn Код:
if(Playe[playerid][Rank] >= x);
{
        switch(listitem)
        {
              case....
or do you mean set the players text above his name to his rank?

EDIT:nothing better to do so...
pawn Код:
if(Player[playerid][Rank] >= x);
{
        label[playerid] = Create3DTextLabel("Gangsta", 0xFFFFFFFF, //info here);
        Attach3DTextLabelToPlayer(label[playerid], playerid,// info here);
}
explain more what do you want it for
Reply


Messages In This Thread
Is it possible? - by AustinJ - 31.08.2011, 21:57
Re: Is it possible? - by IceCube! - 31.08.2011, 22:00
Re: Is it possible? - by AustinJ - 31.08.2011, 22:11
Re: Is it possible? - by IceCube! - 31.08.2011, 22:19
Re: Is it possible? - by AustinJ - 31.08.2011, 22:33
Re: Is it possible? - by IceCube! - 31.08.2011, 22:38
Re: Is it possible? - by AustinJ - 31.08.2011, 22:43
Re: Is it possible? - by IceCube! - 31.08.2011, 22:45
Re: Is it possible? - by AustinJ - 31.08.2011, 22:50
Re: Is it possible? - by IceCube! - 31.08.2011, 22:51

Forum Jump:


Users browsing this thread: 1 Guest(s)