How to make a infection bomb for First Zombie ? May 21, 2017 12:11:36 GMT via mobile Quote Select PostDeselect PostLink to PostMemberGive GiftBack to Top Post by RaDNoX on May 21, 2017 12:11:36 GMT This is very helpful thanks Also thanks Abed
How to make a infection bomb for First Zombie ? May 22, 2017 1:24:17 GMT Quote Select PostDeselect PostLink to PostMemberGive GiftBack to Top Post by Deleted on May 22, 2017 1:24:17 GMT Nice <3 YouR Best bro Abed
How to make a infection bomb for First Zombie ? May 24, 2017 3:49:09 GMT Quote Select PostDeselect PostLink to PostMemberGive GiftBack to Top Post by educja on May 24, 2017 3:49:09 GMT How do I give extra_madness to the first zombie?
How to make a infection bomb for First Zombie ? May 24, 2017 9:22:22 GMT Quote Select PostDeselect PostLink to PostMemberGive GiftBack to Top Post by Abed on May 24, 2017 9:22:22 GMT For ZP50, Open your zp50_item_zombie_madness.smaAdd#include <zombieplague>and this alsopublic zp_user_infected_post(id){ if (zp_class_nemesis_get(id) || zp_class_assassin_get(id)) return; if (zp_get_user_first_zombie(id)) { flag_set(g_MadnessBlockDamage, id) set_task(0.1, "madness_aura", id+TASK_AURA, _, _, "b") new sound[SOUND_MAX_LENGTH] ArrayGetString(g_sound_zombie_madness, random_num(0, ArraySize(g_sound_zombie_madness) - 1), sound, charsmax(sound)) emit_sound(id, CHAN_VOICE, sound, 1.0, ATTN_NORM, 0, PITCH_NORM) set_task(get_pcvar_float(cvar_zombie_madness_time), "remove_zombie_madness", id+TASK_MADNESS) }}
How to make a infection bomb for First Zombie ? May 24, 2017 9:37:51 GMT educja and RaDNoX like this Quote Select PostDeselect PostLink to PostMemberGive GiftBack to Top Post by Abed on May 24, 2017 9:37:51 GMT For zp40, open zombie_plague40.smasearch for zombieme(id, infector, nemesis, silentmode, rewards)change else if (fnGetZombies() == 1) { // First zombie g_firstzombie[id] = true // Set health and gravity, unless frozen fm_set_user_health(id, floatround(float(ArrayGetCell(g_zclass_hp, g_zombieclass[id])) * get_pcvar_float(cvar_zombiefirsthp))) if (!g_frozen[id]) set_pev(id, pev_gravity, Float:ArrayGetCell(g_zclass_grav, g_zombieclass[id])) // Infection sound ArrayGetString(zombie_infect, random_num(0, ArraySize(zombie_infect) - 1), sound, charsmax(sound)) emit_sound(id, CHAN_VOICE, sound, 1.0, ATTN_NORM, 0, PITCH_NORM) }to else if (fnGetZombies() == 1) { // First zombie g_firstzombie[id] = true // Set health and gravity, unless frozen fm_set_user_health(id, floatround(float(ArrayGetCell(g_zclass_hp, g_zombieclass[id])) * get_pcvar_float(cvar_zombiefirsthp))) if (!g_frozen[id]) set_pev(id, pev_gravity, Float:ArrayGetCell(g_zclass_grav, g_zombieclass[id])) // Infection sound ArrayGetString(zombie_infect, random_num(0, ArraySize(zombie_infect) - 1), sound, charsmax(sound)) // emit_sound(id, CHAN_VOICE, sound, 1.0, ATTN_NORM, 0, PITCH_NORM) g_nodamage[id] = true set_task(0.1, "zombie_aura", id+TASK_AURA, _, _, "b") set_task(get_pcvar_float(cvar_madnessduration), "madness_over", id+TASK_BLOOD) ArrayGetString(zombie_madness, random_num(0, ArraySize(zombie_madness) - 1), sound, charsmax(sound)) emit_sound(id, CHAN_VOICE, sound, 1.0, ATTN_NORM, 0, PITCH_NORM) }
How to make a infection bomb for First Zombie ? May 24, 2017 21:12:10 GMT Quote Select PostDeselect PostLink to PostMemberGive GiftBack to Top Post by educja on May 24, 2017 21:12:10 GMT There is a problem with the extra madness, when finishing the extra items does not receive damage the first zombie
How to make a infection bomb for First Zombie ? May 25, 2017 16:41:23 GMT Quote Select PostDeselect PostLink to PostMemberGive GiftBack to Top Post by Abed on May 25, 2017 16:41:23 GMT explain
How to make a infection bomb for First Zombie ? May 25, 2017 17:22:33 GMT Quote Select PostDeselect PostLink to PostMemberGive GiftBack to Top Post by educja on May 25, 2017 17:22:33 GMT The problem is that when you finish the extra items: madness does not receive damage by attacking it
How to make a infection bomb for First Zombie ? May 26, 2017 1:52:12 GMT Quote Select PostDeselect PostLink to PostMemberGive GiftBack to Top Post by RaDNoX on May 26, 2017 1:52:12 GMT Do you mean to say that the zombie doesn't recive damage ?
How to make a infection bomb for First Zombie ? May 26, 2017 17:39:35 GMT Quote Select PostDeselect PostLink to PostMemberGive GiftBack to Top Post by educja on May 26, 2017 17:39:35 GMT yes
How to make a infection bomb for First Zombie ? May 29, 2017 15:02:25 GMT Quote Select PostDeselect PostLink to PostMemberGive GiftBack to Top Post by zmd94 on May 29, 2017 15:02:25 GMT Need to reset the madness bool.
How to make a infection bomb for First Zombie ? May 29, 2017 20:14:52 GMT Quote Select PostDeselect PostLink to PostMemberGive GiftBack to Top Post by educja on May 29, 2017 20:14:52 GMT how would it be?? can you help me
How to make a infection bomb for First Zombie ? May 31, 2017 2:39:01 GMT Quote Select PostDeselect PostLink to PostMemberGive GiftBack to Top Post by zmd94 on May 31, 2017 2:39:01 GMT Which ZP you used?
How to make a infection bomb for First Zombie ? May 31, 2017 3:33:48 GMT via mobile Quote Select PostDeselect PostLink to PostMemberGive GiftBack to Top Post by RaDNoX on May 31, 2017 3:33:48 GMT He uses 4.3
How to make a infection bomb for First Zombie ? May 31, 2017 3:54:08 GMT Quote Select PostDeselect PostLink to PostMemberGive GiftBack to Top Post by zmd94 on May 31, 2017 3:54:08 GMT Show the code for the extra item madness here.