View Single Post
xtinct
Senior Member
Join Date: Jan 2010
Location: http://tekxtinct.ning.com
Old 04-13-2010 , 04:16   Re: how to display this : how man kills in round
Reply With Quote #5

Try this (Nothing modified into the concept) Untested:
PHP Code:
#include <amxmodx>

#define PLUGIN "Show Player Custom HUDInfo"
#define VERSION "1.0"
#define AUTHOR "Styles"


public plugin_init() 
{
    
register_plugin(PLUGINVERSIONAUTHOR)
}

public 
client_connect(id)
{
    
set_task(1.0"hudDisplay"id""0"b")
}

public 
hudDisplay(id)
{
    
set_hudmessage(025500.0, -1.006.012.0)
    
show_hudmessage(id"Frags: %s"get_user_frags(id))
    
}

public 
client_disconnect(id)
{
    
remove_task(id)

__________________
Sorry If I Hurt! Orpheu

1 crab has been found and delivered my me.
xtinct is offline