←  Poradniki oraz Łatki

AMXX.pl: Support AMX Mod X i SourceMod

»

Fix
[5.8d/5.9l] Przedmioty HE 1/X nie dodają d...

  • +
  • -
Vertricus - zdjęcie Vertricus 10.04.2010

Znajdź:
public add_grenade_bonus(id,attacker_id,weapon)
{
if (player_b_grenade[attacker_id] > 0 && weapon == CSW_HEGRENADE && player_b_fireshield[id] == 0) //Fireshield check
{
new roll = random_num(1,player_b_grenade[attacker_id])
if (roll == 1)
{
set_user_health(id, 0)
message_begin( MSG_ALL, gmsgDeathMsg,{0,0,0},0)
write_byte(attacker_id)
write_byte(id)
write_byte(0)
write_string("grenade")
message_end()
set_user_frags(attacker_id, get_user_frags(attacker_id)+1)
set_user_frags(id, get_user_frags(id)+1)
cs_set_user_money(attacker_id, cs_get_user_money(attacker_id)+150)
}
}
}

zamień na
public add_grenade_bonus(id,attacker_id,weapon)
{
if (player_b_grenade[attacker_id] > 0 && weapon == CSW_HEGRENADE && player_b_fireshield[id] == 0) //Fireshield check
{
new roll = random_num(1,player_b_grenade[attacker_id])
if (roll == 1)
{
UTIL_Kill(attacker_id,id, "weapon_hegrenade")
}
}
}
Odpowiedz

  • +
  • -
::Gogiel:: - zdjęcie ::Gogiel:: 07.02.2012

Pytanie odnośnie fix'a blokuje on dawanie expa ?? czy odblokowuje ?
Odpowiedz

  • +
  • -
ogieR8 - zdjęcie ogieR8 11.02.2012

Po wgraniu tego FIX'a będziesz otrzymywał doświadczenie za zabiciu z HE 1/x.

Pozdrawiam
Odpowiedz

  • +
  • -
::Gogiel:: - zdjęcie ::Gogiel:: 12.02.2012

Okey dzięki bo trochę nie ogarnąłem ;D ;)
Odpowiedz