How to make Hp & Armour show 3d
#1

Script I am Show but Hp not show Armour 3dtext help please

Quote:

//------------[Showhp]---------
new Text3D:ShowHp[MAX_PLAYERS];
new Text3D:ShowAr[MAX_PLAYERS];

ShowHp[playerid] = Create3DTextLabel(" ",0xFFFFFFAA,40.0,20.0,-40.0,10.0,0,0);
Attach3DTextLabelToPlayer(ShowHp[playerid], playerid, 0.5, 0.2, -0.6);
ShowAr[playerid] = Create3DTextLabel(" ",0xFFFFFFAA,0.0,0.0,-20.0,10.0,0,0);
Attach3DTextLabelToPlayer(ShowAr[playerid], playerid, 0.0, 0.0, -0.0);

Delete3DTextLabel(ShowHp[playerid]);
Delete3DTextLabel(ShowAr[playerid]);

forward UpdateHp();
public UpdateHp()
{
for(new playerid; playerid < MAX_PLAYERS; playerid++)
{
new Float:Health;
new HealthS[15];
GetPlayerHealth(playerid,Health);
format(HealthS, 15, "аЕЧНґ :%d",floatround(Health));
Update3DTextLabelText(ShowHp[playerid],0xFFFFFFAA,HealthS);
}
}

forward UpdateAr();
public UpdateAr()
{
for(new playerid; playerid < MAX_PLAYERS; playerid++)
{
new Float:Armour;
new ArmourS[15];
GetPlayerArmour(playerid,Armour);
format(ArmourS, 15, "аЎГТР : %d",floatround(Armour));
Update3DTextLabelText(ShowAr[playerid],0xFFFFFFAA,ArmourS);
}
}

Script Not Show Armour
Reply


Messages In This Thread
How to make Hp & Armour show 3d - by arititlez - 17.08.2013, 17:15
Re: How to make Hp & Armour show 3d - by arititlez - 17.08.2013, 17:17
Re: How to make Hp & Armour show 3d - by arititlez - 17.08.2013, 18:53
Re: How to make Hp & Armour show 3d - by arititlez - 15.10.2013, 05:23
Re: How to make Hp & Armour show 3d - by arititlez - 15.10.2013, 06:01
Re: How to make Hp & Armour show 3d - by rickisme - 15.10.2013, 09:24
Re: How to make Hp & Armour show 3d - by arititlez - 15.10.2013, 18:47
Re: How to make Hp & Armour show 3d - by arititlez - 15.10.2013, 19:21
Re: How to make Hp & Armour show 3d - by rickisme - 15.10.2013, 22:14

Forum Jump:


Users browsing this thread: 1 Guest(s)