Code:
// In your plugin_init
new iEnt = create_entity( "info_target" );
set_pev( iEnt, pev_classname, "permanent_hud" );
register_think( "permanent_hud", "thinkPermanentHud" );
set_pev( iEnt, pev_nextthink, 30.0 );
// A new function
public thinkPermanentHud( iEnt )
{
set_pev( iEnt, pev_nextthink, 30.0 );
// your Hud message
}
__________________