How to make 3PlayerTextLabel NameTag System
#4

Then just remove hp/armour integers so only %s (string with name) will be left.
And i forgot to post the RemoveUnderScore stock, sorry. There you go:
Код:
stock RemoveUnderScore(playerid)
{
    new name[MAX_PLAYER_NAME];
    GetPlayerName(playerid,name,sizeof(name));
    for(new i = 0; i < MAX_PLAYER_NAME; i++)
    {
        if(name[i] == '_') name[i] = ' ';
    }
    return name;
}
Reply


Messages In This Thread
How to make 3PlayerTextLabel NameTag System - by Barnwell - 03.01.2016, 15:58
Re: How to make 3PlayerTextLabel NameTag System - by lucamsx - 03.01.2016, 16:20
Re: How to make 3PlayerTextLabel NameTag System - by Barnwell - 03.01.2016, 16:22
Re: How to make 3PlayerTextLabel NameTag System - by lucamsx - 03.01.2016, 16:25
Re: How to make 3PlayerTextLabel NameTag System - by HarrisonC - 03.01.2016, 17:10

Forum Jump:


Users browsing this thread: 3 Guest(s)