31.08.2011, 22:19
Quote:
|
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.
|
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
pawn Код:
if(Playe[playerid][Rank] >= x);
{
switch(listitem)
{
case....
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);
}


