Posts: 167
Threads: 23
Joined: May 2017
Reputation:
0
Can you give me that name tag and health bar please?
Posts: 83
Threads: 44
Joined: Apr 2016
Quote:
CMD:nametags(playerid)
{
if(GetPVarInt(playerid, "nameTagOFF") == 0)
{
foreach(Player, ii) ShowPlayerNameTagForPlayer(ii, playerid, false);
SetPVarInt(playerid, "nameTagOFF", 1);
SendClientMessage(playerid, COLOR_WHITE, You have disabled your nametag, other players will not be able to see your name/health/armour.);
}
else
{
foreach(Player, ii) ShowPlayerNameTagForPlayer(ii, playerid, true);
DeletePVar(playerid, "nameTagOFF");
SendClientMessage(playerid, COLOR_WHITE, You have enabled your nametag, other players will now to able to see your name.);
}
return 1;
}
|
here
Posts: 167
Threads: 23
Joined: May 2017
Reputation:
0
I want like that health bar and Name below please?