how to make this ? Apr 24, 2015 16:41:22 GMT Quote Select PostDeselect PostLink to PostMemberGive GiftBack to Top Post by 🎃 🎃 🎃 🎃 on Apr 24, 2015 16:41:22 GMT Hi, i use ZPA 1.6.1 and how to make this:when start nemesis round, i want 7 seconds aftrer the start the screen of the humans is red
how to make this ? Apr 25, 2015 5:48:12 GMT Quote Select PostDeselect PostLink to PostMemberGive GiftBack to Top Post by zmd94 on Apr 25, 2015 5:48:12 GMT Just try below code:#include <amxmodx>#include <zombie_plague_advance>#include <screenfade_util>new g_iScreenColorpublic plugin_init(){ register_plugin("Red Screen", "0.1", "zmd94") g_iScreenColor = register_cvar("color_type1", "000000255")}public zp_round_started(gamemode, id){ if(zp_is_nemesis_round()) { new iPlayers[32], iPlayerCount, i, player get_players(iPlayers, iPlayerCount, "a") for(i = 0; i < iPlayerCount; i++) { player = iPlayers[i] if(!zp_get_user_zombie(player)) { UTIL_ScreenFade(player, ScreenColor(g_iScreenColor), 10.0, 10.0, 250) } } }}stock ScreenColor(g_pCvar){ new Color[3] new iTemp = get_pcvar_num(g_pCvar) Color[0] = clamp(iTemp / 1000000, 0, 255) iTemp %= 1000000 Color[1] = clamp(iTemp / 1000, 0, 255) Color[2] = clamp(iTemp % 1000, 0, 255) return Color}Yet, you need to donwload below include also:forums.alliedmods.net/showthread.php?t=87623
how to make this ? Apr 26, 2015 18:07:34 GMT Quote Select PostDeselect PostLink to PostMemberGive GiftBack to Top Post by 🎃 🎃 🎃 🎃 on Apr 26, 2015 18:07:34 GMT Thank you
how to make this ? Apr 27, 2015 0:27:22 GMT Quote Select PostDeselect PostLink to PostMemberGive GiftBack to Top Post by zmd94 on Apr 27, 2015 0:27:22 GMT Have you tested it?
how to make this ? Apr 27, 2015 15:21:00 GMT Quote Select PostDeselect PostLink to PostMemberGive GiftBack to Top Post by 🎃 🎃 🎃 🎃 on Apr 27, 2015 15:21:00 GMT yes, and work
how to make this ? Apr 27, 2015 23:49:55 GMT Quote Select PostDeselect PostLink to PostMemberGive GiftBack to Top Post by zmd94 on Apr 27, 2015 23:49:55 GMT Nice.