Quote:
Originally Posted by YamiKaitou
There is nothing you can do about that as there are only 4 HUD Message channels and amx_tsay and amx_psay cycle through all 4 of them.
|
Thats really bad...

Is there a way to make message to be shown on screen all the time even when admins writes on screen?
i know some plugins where scripters do that... In example: MeRcyLeZZ "
Zombie Plague mod" . In this plugin zombie class, ammo packs is showing all the time at the bottom of screen while player is alive (
foto).
PHP Code:
// Show name, health, class, and ammo packs
set_hudmessage(255, 255, 255, HUD_SPECT_X, HUD_SPECT_Y, 0, 6.0, 1.1, 0.0, 0.0, -1)
ShowSyncHudMsg(ID_SHOWHUD, g_MsgSync2, "%L %s^nHP: %d - %L %s - %L %d", ID_SHOWHUD, "SPECTATING", g_playername[id], pev(id, pev_health), ID_SHOWHUD, "CLASS_CLASS", class, ID_SHOWHUD, "AMMO_PACKS1", g_ammopacks[id])
I copied theese lines from Zombie Plague sma file, it seems to be the same "set_hudmessage". How do they did that then?