Kod php:
#include <amxmodx>
#include <engine>
new cvar_hpct
new cvar_hptt
#define PLUGIN "Start HP"
#define VERSION "1.0"
#define AUTHOR "Lelek"
public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR)
register_event("TeamInfo","start","a")
cvar_hpct = register_cvar("hp_ct", "20.0")
cvar_hptt = register_cvar("hp_tt", "100.0")
}
public start()
{
new id=read_data(1)
new team[16]
read_data(2, team, 15)
if(equal(team,"CT") && is_user_alive(id)) entity_set_float(id,EV_FL_health, get_pcvar_float(cvar_hpct));
if(equal(team,"TERRORIST") && is_user_alive(id)) entity_set_float(id,EV_FL_health, get_pcvar_float(cvar_hptt));
}
Do amxx.cfg dopisz hp_ct "1500".