Hello, me again...
Ive got a NATIVE ERROR on set_user_health.. I wish bot have 999999hp
PHP Code:
/* Plugin generated by AMXX-Studio */
#include <amxmodx>
#include <amxmisc>
#include <fun>
#define PLUGIN "Plugin"
#define VERSION "1.0"
#define AUTHOR "Author"
public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR)
register_event("HLTV", "RoundStart", "a", "1=0", "2=0")
}
public RoundStart() {
client_print(0, print_chat, "YOU HAVE MUCH HP!")
set_user_health(0, 999999)
return PLUGIN_CONTINUE;
}