im trying to get a Constant HUD Message Display..
using same code from my other plugins but it doesnt seem to work...
and now showing any errors in logs..
in my plugin_init()
PHP Code:
set_task(1.0, "ShowHud", _, _, _, "b")
and then the ShowHud(id)
PHP Code:
public ShowHud(id)
{
if(!is_user_alive(id))
return;
set_hudmessage(255, 255, 255, 0.01, 0.18, 0, 0.0, 1.0, _, _, -1 )
show_hudmessage(id, "%s^n%s: %i", SKINS[sz_ModelName[id]], Currency, Shop_XP[id])
}
any ideas?