I Dont get it,its totally wrong....:
Code:
#include <amxmodx>
#include <amxmisc>
#define PLUGIN "New Plugin"
#define VERSION "1.0"
#define AUTHOR "Author"
public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR)
register_clcmd("say /myinfo", "sayInfo", 0, "- displays You're Info")
}
public sayInfo(id)
get_user_ammo(id)
get_user_health(id)
get_user_name(id)
set_hudmessage(255, 0, 0, -1.0, 0.00, 0, 6.0, 4.0)
show_hudmessage(id, "Name:%s , %d , %L")
}