(it's very rare that I ask for help in here :p)
Code:
#include <amxmodx>
public plugin_init()
register_plugin("HUD Score","0.1","v3x")
#define TASK_ID 2934
public client_connect(id) set_task(1.0,"show_message",TASK_ID+id)
public client_disconnect(id) remove_task(TASK_ID+id)
public show_message(id) {
new frags = get_user_frags(id)
new deaths = get_user_deaths(id)
new msgstr[64]
format(msgstr,63,"Kills: %i / Deaths: %i",frags,deaths)
set_hudmessage(255,255,255,-1.0,0.35,2,0.1,1.0,0.02,0.02,10)
show_hudmessage(id,msgstr)
return PLUGIN_HANDLED
}
It's so simple.. :p
Maybe I just have the coords off of the screen, haha.
__________________