Hey, so im working on a plugin with xp and things like that, have the xp system working etc...
but im facing a problem, iwant a hud message that stays all the time and doesnt dissapear.
This is what i have tried:
Code:
public showallhud()
{
set_hudmessage(255, 255, 255, 0.02, 0.92, 0, 6.0, 12.0, 0.01, 0.01, 23)
new players[32], pnum, tempid;
get_players( players, pnum );
for ( new i; i < pnum; i++ )
{
tempid = players[i];
ShowSyncHudMsg(tempid, hud, "Suspect: #%d -- HP: %d^nXP: %i", tempid, get_user_health(tempid), PlayerXP[tempid])
}
}
set_task(5.0,"showallhud")
}
However, it does dissapear, appear again many times and i just want it to stay all the time but only XP to change. Any ideas?