How do i do this:
Code:
new name
new health
public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR)
register_event("ResetHUD", "resetModel", "b")
}
public resetModel(id, level, cid)
{
get_user_name(id, name)
get_user_health(id,health)
set_hudmessage(255, 255, 255, 0.5, -1.0, 0, 6.0, 12.0)
show_hudmessage(id, "%s Has %s HP",name,health)
}
Its totally messed up but i forgot how i do this,i had it once...
But i cant find it where i saved it