W wolnej chwili postaram się podesłać jakiś plugin by to tak działało, i aktualizuje swój post 
podsyłam kod pluginu hp (zabicie HS-15hp normalne zabicie-10hp) plugin trzeba skompilowac.
Nie mogę dodać załącznika o takim rozszerzeniu.
Pzorawiam,
Tymek

podsyłam kod pluginu hp (zabicie HS-15hp normalne zabicie-10hp) plugin trzeba skompilowac.
#include <amxmodx>
#include <amxmisc>
#include <fun>
#include <cstrike>
#define PLUGIN "KillHP"
#define AUTHOR "Tymek"
#define VERSION "1.2"
#define MAX_HP 100
#define MAX_HP_VIP 108
#define VIP_FLAG ADMIN_LEVEL_H
public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR);
register_event("DeathMsg", "DeathMsg", "a")
}
public DeathMsg(id) {
new kid = read_data(1) //zabojca
new vid = read_data(2);
if(!is_user_alive(kid) || get_user_team(kid) == get_user_team(vid))
return PLUGIN_CONTINUE;
new hs = read_data(3) // HeadShot (1 == true)
new hp = get_user_health(kid)
new is_vip = get_user_flags(kid) & ADMIN_LEVEL_H
if(hp<MAX_HP || (is_vip && hp<MAX_HP_VIP)) {
new new_hp = min(
hp + (hs ? 15 : 10),
is_vip ? MAX_HP_VIP : MAX_HP
)
set_user_health(kid, new_hp)
set_hudmessage(255, 0, 0, 0.0, 0.0, 0, 6.0, 12.0)
show_hudmessage(kid, "+%dhp", new_hp-hp)
}
return PLUGIN_CONTINUE
}
Nie mogę dodać załącznika o takim rozszerzeniu.
Pzorawiam,
Tymek