Hide players name? (Mask)
#1

Hello, I just want to ask how I can hide players names so they look like Single player people.

thanks a lot
Reply
#2

nvm found it
pawn Код:
public OnGameModeInit()
{
    // We're creating a sniper-based gamemode now, so we don't want players to
    // see any nametags. Fully disable them:
    ShowNameTags(0);
}
Reply
#3

This is if you want to be able to toggle names on and off for a player.

Add this at the top of your script:
Код:
new bool:Masked[MAX_PLAYERS] = false;
new OldName[MAX_PLAYER_NAME][MAX_PLAYERS];
Then we can start by adding the command. I'll be using Zcmd but it shoudn't be hard to convert it to the way you want.
Код:
CMD:mask(playerid, params[])
{
    if(IsPlayerConnected(playerid))
    {
        if(Masked[playerid] == false)
        {
            new pname[24];
            GetPlayerName(playerid, pname, sizeof(pname));
            Masked[playerid] = true;
            strmid(OldName[playerid], pname, 0, strlen(pname), 64);
            SetPlayerName(playerid, "The Stranger");
            SendClientMessage(playerid, COLOR_GREEN, "* You have put on your mask.");
            for(new i=0;i<MAX_PLAYERS;i++)
            {
                ShowPlayerNameTagForPlayer(i, playerid, 0);
            }
        }
        else
        {
            SetPlayerName(playerid, OldName[playerid]);
            Masked[playerid] = false;
            SendClientMessage(playerid, COLOR_GREEN, "* You have removed your mask.");
            for(new i=0;i<MAX_PLAYERS;i++)
            {
                ShowPlayerNameTagForPlayer(i, playerid, 1);
            }
        }
    }
    return 1;
}
Reply
#4

muste masket him pal masket .. why you muste so lazyl ffs
Reply
#5

Quote:
Originally Posted by Jay.
Посмотреть сообщение
muste masket him pal masket .. why you muste so lazyl ffs
Why are you spamming?
Reply
#6

Quote:
Originally Posted by Jay.
Посмотреть сообщение
muste masket him pal masket .. why you muste so lazyl ffs
FireCat he always posting that. This man is insane spammer.
Reply
#7

Thanks, Dude helped me - Respect +++/Rep +++
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)