[Pedido] Texto azul escuro no peito
#1

Galera queria um comando que ativa-se e desativa-se esse texto azul escuro no peito do player que usa-se

/policia

Ai no peito aparecia Policia Civil

Como nessa SS:


N sou de pedir as coisas assim, mas n sei como fazer entгo qm puder, ou da umas dicas
Reply
#2

usa isto:

https://sampwiki.blast.hk/wiki/CreatePlayer3DTextLabel
https://sampwiki.blast.hk/wiki/Attach3DTextLabelToPlay
Reply
#3

Tentei do jeito que vc falou, mas deu erro nas linhas que eu comentei com os erros
Erros:
pawn Код:
playertextid = CreatePlayer3DTextLabel(playerid,"Policia Civil",COLOR_BLUE,X,Y,Z,40.0); // warning 204: symbol is assigned a value that is never used: "playertextid"
pawn Код:
Delete3DTextLabel(playertextid); // warning 213: tag mismatch
Codigo:
pawn Код:
if(strcmp(cmd, "/distintivo", true) == 0)
    {
        if(PlayerInfo[playerid][pLider] != 16 && PlayerInfo[playerid][pMembro] != 16) return SendClientMessage(playerid, COLOR_RED, "Vocк nгo й um Policial Civil.");
        if(distintivo[playerid] == 0) {
            distintivo[playerid] = 1;
            new PlayerText3D:playertextid;
            new Float:X, Float:Y, Float:Z;
            GetPlayerPos( playerid, X, Y, Z );
            playertextid = CreatePlayer3DTextLabel(playerid,"Policia Civil",COLOR_BLUE,X,Y,Z,40.0); // warning 204: symbol is assigned a value that is never used: "playertextid"
            format(string, sizeof(string), "O policial civil %s colocou seu distintivo a mostra.", PlayerName(playerid));
            ProxDetector(30.0, playerid, string, COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE);
            return 1;
        }
        if(distintivo[playerid] == 1) {
            distintivo[playerid] = 0;
           
            new PlayerText3D:playertextid;
            new Float:X, Float:Y, Float:Z;
            GetPlayerPos( playerid, X, Y, Z );
            playertextid = CreatePlayer3DTextLabel(playerid,"Policia Civil",COLOR_BLUE,X,Y,Z,40.0);
           
            Delete3DTextLabel(playertextid); // warning 213: tag mismatch
            format(string, sizeof(string), "O policial civil %s guardou seu distintivo.", PlayerName(playerid));
            ProxDetector(30.0, playerid, string, COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE);
            return 1;
        }
    }
Reply
#4

https://sampwiki.blast.hk/wiki/Delete3DTextLabel
Reply
#5

Quote:
Originally Posted by Byted
Посмотреть сообщение

eu fiz olhando isso ai
Reply
#6

Pq n ta indo n oq eu fiz de errado!?
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)