It sounds like you want to display a different message for each client (depending on what level they are at), not displaying more than 6 messages to 1 client at the same time.
If so just do
Code:
ShowSyncHudText(client, HUDHandle, "You are at level: %d", g_ClientLevel[client]);
Where g_ClientLevel is a global variable that holds what level that client is currently at, which you manually set.
__________________