30.11.2018, 15:08
I created a command for my administrators to enter and exit the "duty" mode, I put a 3DTextLabel connected to the player, to appear "Admin" on top of his name, if he is in duty mode, but is giving error, does anyone know why?
My Command:
My 3D Label Definition, under of OnPlayerConnect
Errors
Line of error 1:
Line of error 2:
If Someone can help, i'll be very grateful.
My Command:
PHP код:
ACMD:admin[1](playerid, params[])
{
if(GetPlayerAdminLevel(playerid) < 2)
return Msg(playerid, RED, "[ > ] Vocк nгo tem permissгo para usar este comando.");
new name[MAX_PLAYER_NAME];
GetPlayerName(playerid, name, sizeof(name));
if(GetPlayerState(playerid) == PLAYER_STATE_SPECTATING)
{
Msg(playerid, RED, "[ > ] Vocк nгo pode fazer isso enquanto estб espiando!");
return 1;
}
if(!IsPlayerOnAdminDuty(playerid))
{
TogglePlayerAdminDuty(playerid, true);
MsgAdminsF(1, NovoA, "[ > ] O(a) Administrador(a){FFFFFF} %s {00c0ff}saiu do modo jogador!", name);
Attach3DTextLabelToPlayer(label, playerid, 0.0, 0.0, 0.2);
}
else
{
TogglePlayerAdminDuty(playerid, false);
MsgAdminsF(1, NovoA, "[ > ] O(a) Administrador(a){FFFFFF} %s {00c0ff}entrou no modo jogador!", name);
Delete3DTextLabel(label);
}
return 1;
}
PHP код:
hook OnPlayerConnect(playerid)
{
new Text3D:label = Create3DTextLabel("Admin", 0x33CCFFFF, 30.0, 40.0, 50.0, 10.0, 0);
}
Код:
SS/Core/Admin/Admin-1CMD.pwn(80) : error 017: undefined symbol "label" SS/Core/Admin/Admin-1CMD.pwn(86) : error 017: undefined symbol "label"
PHP код:
Attach3DTextLabelToPlayer(label, playerid, 0.0, 0.0, 0.2);
PHP код:
Delete3DTextLabel(label);