[Ajuda] E possivel fazer um Attach3DTextLabelToPlayer para admin ?
#1

Poderiao me ajudar ? tipo esse codigo eu fiz Para ficar no Jogador AFK mas nao estou acertando como Admin.
poderiao me ajudar ?
Код:
	AfkTD[playerid] = Create3DTextLabel("Jogador Ausente", 0xFF0000FF, 20.0, 20.0, 20.0, 20.0, 0);
		Attach3DTextLabelToPlayer(AfkTD[playerid], playerid, 0.0, 0.0, 0.4);
		TextDrawShowForPlayer(playerid, AFKTD2);
Reply
#2

pawn Код:
// abaixo das includes
new Text3D:textAdmin[MAX_PLAYERS];

// logo apуs carregar os dados da conta do jogador e dar spawn
if ( PlayerInfo[playerid][pAdmin] > 0 ) {
   
    textAdmin[playerid] = Create3DTextLabel("Admin", 0xFF0000FF, 20.0, 20.0, 20.0, 20.0, 0);
    Attach3DTextLabelToPlayer(textAdmin[playerid], playerid, 0.0, 0.0, 0.4);   
}
OBS: Substitua a variбvel PlayerInfo[playerid][pAdmin] pela variбvel do seu GM que guarda o "nнvel de administrador" de determinado player.
Reply
#3

obrigado
Reply
#4

Nao Estou conseguindo :v me de mais uma informзao
Reply
#5

Se for destб maneira so da um da uma olhada aq Clique aqui olha ai dps...
Reply
#6

C:\Users\Vinny3D\Desktop\City Brasil Drift V1.a\gamemodes\CBD.pwn(8241) : error 010: invalid function or declaration
C:\Users\Vinny3D\Desktop\City Brasil Drift V1.a\gamemodes\CBD.pwn(17232) : warning 203: symbol is never used: "adminonline"
Reply
#7

Quote:
Originally Posted by VinnyScript
Посмотреть сообщение
C:\Users\Vinny3D\Desktop\City Brasil Drift V1.a\gamemodes\CBD.pwn(8241) : error 010: invalid function or declaration
C:\Users\Vinny3D\Desktop\City Brasil Drift V1.a\gamemodes\CBD.pwn(17232) : warning 203: symbol is never used: "adminonline"
Posta as linhas do erro?
Reply
#8



olha
Код:
}
         if(pDados[playerid][Admin] < 1 ) {
         adminonline[playerid] = Create3DTextLabel("Admin", 0xFF0000FF, 20.0, 20.0, 20.0, 20.0, 0);
         Attach3DTextLabelToPlayer(adminonline[playerid], playerid, 0.0, 0.0, 0.4);
    }
Reply
#9

Troque < por >
Reply
#10

Pelo que entendi, tente usar isso:

pawn Код:
new Text3D:adminonline[MAX_PLAYERS];

if(pDados[playerid][Admin] > 0) {
    adminonline[playerid] = Create3DTextLabel("Admin", 0xFF0000FF, 20.0, 20.0, 20.0, 20.0, 0);
    Attach3DTextLabelToPlayer(adminonline[playerid], playerid, 0.0, 0.0, 0.4);
}
Reply


Forum Jump:


Users browsing this thread: 2 Guest(s)