06.04.2015, 11:58
I do not look correct health
I did a timer to run every second ..
SetTimer("System", 1000, true);

I did a timer to run every second ..
SetTimer("System", 1000, true);

PHP код:
forward System( );
public System( )
{
for(new i = 0; i < MAX_PLAYERS; i++) {
new Float: health, Float: armour;
GetPlayerHealth( i, health );
GetPlayerArmour( i, armour );
new hpstr[ 50 ], apstr[ 50 ];
format( hpstr, 50, "%d", health );
format( apstr, 50, "%d", armour );
TextDrawSetString( Health[ i ], hpstr );
TextDrawSetString( Armour[ i ], apstr ); }
return 1;
}

