PHP Code:
for (i=0; i<playerCount; i++)
player = Players[i]
set_hudmessage(30, 100, 255, -1.0, 0.87, 0, _, 2.0, _, _, -1)
ShowSyncHudMsg(player, g_hudmsg8, "^n^n[Points] %i [XP] %i",Cash[player],XP[player])
->
PHP Code:
set_hudmessage(30, 100, 255, -1.0, 0.87, 0, _, 2.0, _, _, -1)
for (i=0; i<playerCount; i++)
{
player = Players[i]
ShowSyncHudMsg(player, g_hudmsg8, "^n^n[Points] %i [XP] %i",Cash[player],XP[player])
}
Translated :
Set the parameters for the HUD message, then for each player show him the message with his Cash and XP.
__________________