HLMOD.HU Forrás Megtekintés - www.hlmod.hu
  1. #include <amxmodx>
  2. #include <fun>
  3.  
  4. public plugin_init()
  5. {
  6. register_plugin("Head Shot Healer" , "1.0" , "NeoFORT");
  7. register_event("DeathMsg" , "event_DeathMsg" , "a" , "1>0" , "2>0" , "3=1");
  8. }
  9.  
  10. public event_DeathMsg()
  11. {
  12. new id = read_data(1); // changed 2 -> 1
  13. if(is_user_alive(id))
  14. set_user_health(id , 100);
  15. }
  16.