←  Szukam pluginu

AMXX.pl: Support AMX Mod X i SourceMod

»

Za Heda 100HP

Locked

  • +
  • -
nea's Photo nea 05.08.2011

Za Heda w głowę
Czy się ma 2hp-16 obojętnie ile hp za Heda = 100hp

Znalazłem tylko Vampir

Ale nie zależnie jak to zmienie w amx.cfg

amx_vampire_hp 15 // ilość HP za zwykłe zabicie
amx_vampire_hp_hs 40 // ilość HP za zabicie HeadShotem   <<<<< i np. dam 100 to i tak dostaje 40 nie wiem czemu , i gdzie to jeszcze można zmienić ?
amx_vampire_max_hp 100 // maksymalna ilość HP gracza

Edited by nea, 05.08.2011 17:57.
Quote

  • +
  • -
AdRiAnxD's Photo AdRiAnxD 05.08.2011

Sprawdź to

Attached Files


Edited by AdRiAnxD, 05.08.2011 21:38.
Quote

  • +
  • -
speedkill's Photo speedkill 05.08.2011

cvary
health_add = register_cvar("amx_vip_hp", "10") // ile za normalne zabójstwo
        health_hs_add = register_cvar("amx_vip_hp_hs", "25") // ile za head
        health_max = register_cvar("amx_vip_max_hp", "220")// ile max hp

Cały kod
/* Plugin generated by AMXX-Studio */

#include <amxmodx>
#include <amxmisc>
#include <fun>

#define PLUGIN "New Plug-In"
#define VERSION "1.0"
#define AUTHOR "Administrator"

new health_add
new health_hs_add
new health_max
new nKiller
new nKiller_hp
new nHp_add
new nHp_max

public plugin_init() {
	register_plugin(PLUGIN, VERSION, AUTHOR)
	health_add = register_cvar("amx_vip_hp", "10")
        health_hs_add = register_cvar("amx_vip_hp_hs", "25")
        health_max = register_cvar("amx_vip_max_hp", "220")
        register_event("DeathMsg", "hook_death", "a", "1>0")
}
public hook_death()
{
   nKiller = read_data(1)
   
   if ( (read_data(3) == 1) && (read_data(5) == 0) )
   {
      nHp_add = get_pcvar_num (health_hs_add)
   }
   else
      nHp_add = get_pcvar_num (health_add)
   nHp_max = get_pcvar_num (health_max)
   if(!(get_user_flags(nKiller) & ADMIN_LEVEL_H))
   return;

   nKiller_hp = get_user_health(nKiller)
   nKiller_hp += nHp_add
   if (nKiller_hp > nHp_max) nKiller_hp = nHp_max
   set_user_health(nKiller, nKiller_hp)

}
Quote

  • +
  • -
nea's Photo nea 06.08.2011

Thx
Quote
Locked