 |
|
BANNED
Join Date: Feb 2009
Location: Iwotadai Dorm
|

10-30-2011
, 06:15
Re: How to make permanent HUD message?
|
#5
|
Quote:
Originally Posted by .Dare Devil.
PHP Code:
#include <amxmodx> #include <amxmisc> new g_msgScreenFade_bh public plugin_init() { register_plugin( "PermHud", "1.0", "PermHud" ) set_task( 0.5 , "perm_hud") g_MsgSync_bh = CreateHudSyncObj() }
public perm_hud() { set_hudmessage(250, 0, 0, 0.75, -1.0, 1, 0.5, 0.5, 1.0, 1.0, -1) ShowSyncHudMsg(id, g_MsgSync_bh, "Perm Hud!" set_task( 0.5 , "perm_hud") }
|
this method will greatly consume server resources
Last edited by Backstabnoob; 10-30-2011 at 06:15.
|
|
|
|