Quote:
Originally Posted by Bugsy
Why print the same data 9 times in chat. Wouldn't a HUD be better?
PHP Code:
#include <amxmodx>
new g_pFreezeTime;
public plugin_init() { register_event( "HLTV" , "FreezeTimeStart" , "a" , "1=0" , "2=0" ); g_pFreezeTime = get_cvar_pointer( "mp_freezetime" ); }
public FreezeTimeStart() { set_task( 1.0 , "ShowInfo" , .flags="a" , .repeat=get_pcvar_num( g_pFreezeTime ) ); }
public ShowInfo() { client_print( 0 , print_chat , "freeze time data" ); }
|
I know this will sound stupid, but I don't like the HUD font.
I'm trying to keep my plugins in the background and have the server look as if it has not been tampered with.
Thank you for helping me out!
__________________