diff --git a/ze_ancient_wrath_v1_fix2.cfg b/ze_ancient_wrath_v1_fix2.cfg index edf25b0..11c2a0a 100644 --- a/ze_ancient_wrath_v1_fix2.cfg +++ b/ze_ancient_wrath_v1_fix2.cfg @@ -27,7 +27,7 @@ modify: insert: { "OnTrigger" "IFixAStupidMistake,Enable,,0,-1" - "OnTrigger" "IFixAStupidMistake,Kill,,30,-1" + "OnTrigger" "IFixAStupidMistake,Kill,,26.95,-1" } } @@ -100,3 +100,61 @@ modify: "OnTrigger" "command,Command,mp_restartgame 1,59,1" } } + +;------------------------------------- +;FIX ZOMBIE GLITCH AFTER STAGE 4 BOSS +;------------------------------------- + +add: +{ + "model" "*238" + "targetname" "zombie_prison_push_antiglitch_s4" + "origin" "-3475 -1917 -702" + "filtername" "Zombie_only" + "StartDisabled" "1" + "pushdir" "0 90 0" + "spawnflags" "1" + "speed" "500" + "classname" "trigger_push" +} +modify: +{ + match: + { + "targetname" "boss_3_knockback_1_counter" + "classname" "math_counter" + } + insert: + { + "OnHitMin" "zombie_prison_push_antiglitch_s4,Enable,,1,-1" + } +} + +modify: +{ + match: + { + "origin" "-3475 -1923 -702" + "classname" "trigger_once" + } + insert: + { + "OnStartTouch" "zombie_prison_push_antiglitch_s4,Disable,,8,-1" + } +} + +; Also better automatically kill the pushes in case the CT dont want to go out of the room +modify: +{ + match: + { + "targetname" "boss_3_knockback_1_counter" + "classname" "math_counter" + } + insert: + { + "OnHitMin" "Zombie_Prison_push1,Kill,,20,-1" + "OnHitMin" "Zombie_Prison_push2,Kill,,20,-1" + "OnHitMin" "zombie_prison_push_antiglitch_s4,Kill,,20,-1" + } +} diff --git a/ze_ancient_wrath_v2_test27.cfg b/ze_ancient_wrath_v2_test27.cfg index 7eb7d9f..121cfab 100644 --- a/ze_ancient_wrath_v2_test27.cfg +++ b/ze_ancient_wrath_v2_test27.cfg @@ -121,3 +121,61 @@ modify: "OnTrigger" "command,Command,mp_restartgame 1,59,1" } } + +;------------------------------------- +;FIX ZOMBIE GLITCH AFTER STAGE 4 BOSS +;------------------------------------- + +add: +{ + "model" "*202" + "targetname" "zombie_prison_push_antiglitch_s4" + "origin" "-3475 -1917 -702" + "filtername" "Zombie_only" + "StartDisabled" "1" + "pushdir" "0 90 0" + "spawnflags" "1" + "speed" "500" + "classname" "trigger_push" +} +modify: +{ + match: + { + "targetname" "boss_3_knockback_1_counter" + "classname" "math_counter" + } + insert: + { + "OnHitMin" "zombie_prison_push_antiglitch_s4,Enable,,1,-1" + } +} + +modify: +{ + match: + { + "origin" "-3475 -1923 -702" + "classname" "trigger_once" + } + insert: + { + "OnStartTouch" "zombie_prison_push_antiglitch_s4,Disable,,8,-1" + } +} + +; Also better automatically kill the pushes in case the CT dont want to go out of the room +modify: +{ + match: + { + "targetname" "boss_3_knockback_1_counter" + "classname" "math_counter" + } + insert: + { + "OnHitMin" "Zombie_Prison_push1,Kill,,20,-1" + "OnHitMin" "Zombie_Prison_push2,Kill,,20,-1" + "OnHitMin" "zombie_prison_push_antiglitch_s4,Kill,,20,-1" + } +} diff --git a/ze_ashen_keep_v0_3.cfg b/ze_ashen_keep_v0_3.cfg index 21052b4..b568dea 100644 --- a/ze_ashen_keep_v0_3.cfg +++ b/ze_ashen_keep_v0_3.cfg @@ -62,3 +62,30 @@ add: "classname" "trigger_multiple" "OnStartTouch" "!activator,AddOutput,health 9999999,0,-1" } + + +; ++++++++++++++++++++++++FIX TELEHOP++++++++++++++++++++++++ +modify: +{ + match: + { + "targetname" "tp_spawn" + "classname" "trigger_teleport" + } + insert: + { + "OnStartTouch" "!activator,AddOutput,absvelocity 0 0 0,0,-1" + } +} +modify: +{ + match: + { + "targetname" "tp_mainbridgearea" + "classname" "trigger_teleport" + } + insert: + { + "OnStartTouch" "!activator,AddOutput,absvelocity 0 0 0,0,-1" + } +} diff --git a/ze_avalanche_reboot_beta7.cfg b/ze_avalanche_reboot_beta7.cfg index efaeeca..d69439c 100644 --- a/ze_avalanche_reboot_beta7.cfg +++ b/ze_avalanche_reboot_beta7.cfg @@ -36,7 +36,7 @@ modify: match: { "classname" "logic_relay" - "targetname" "warmup_map_relay" + "targetname" "warmup_map_relay" } delete: { @@ -47,3 +47,89 @@ modify: "OnTrigger" "command,Command,mp_restartgame 1,41,1" } } + +;Add math_counter for stagedisplay + +add: +{ + "origin" "-4980 -13200 -480" + "targetname" "TheCurrentLevelPlugin" + "min" "0" + "max" "5" + "startvalue" "0" + "classname" "math_counter" +} + + +modify: +{ + match: + { + "targetname" "warmup_map_relay" + "classname" "logic_relay" + } + insert: + { + "OnTrigger" "TheCurrentLevelPlugin,SetValue,0,0,1" + } +} +modify: +{ + match: + { + "targetname" "lvl1_map_relay" + "classname" "logic_relay" + } + insert: + { + "OnTrigger" "TheCurrentLevelPlugin,SetValue,1,0,1" + } +} +modify: +{ + match: + { + "targetname" "lvl2_map_relay" + "classname" "logic_relay" + } + insert: + { + "OnTrigger" "TheCurrentLevelPlugin,SetValue,2,0,1" + } +} +modify: +{ + match: + { + "targetname" "lvl3_map_relay" + "classname" "logic_relay" + } + insert: + { + "OnTrigger" "TheCurrentLevelPlugin,SetValue,3,0,1" + } +} +modify: +{ + match: + { + "targetname" "lvl4_map_relay" + "classname" "logic_relay" + } + insert: + { + "OnTrigger" "TheCurrentLevelPlugin,SetValue,4,0,1" + } +} +modify: +{ + match: + { + "targetname" "lvl5_map_relay" + "classname" "logic_relay" + } + insert: + { + "OnTrigger" "TheCurrentLevelPlugin,SetValue,5,0,1" + } +} diff --git a/ze_biohazard_manor_v4a_004.cfg b/ze_biohazard_manor_v4a_004.cfg index 0641099..6b1363c 100644 --- a/ze_biohazard_manor_v4a_004.cfg +++ b/ze_biohazard_manor_v4a_004.cfg @@ -85,3 +85,35 @@ modify: "damage" "5000" } } + +; No early break fence + +modify: +{ + match: + { + "origin" "-2715 3232 111" + "classname" "func_breakable" + } + replace: + { + "spawnflags" "1" + } + insert: + { + "targetname" "last_breakable" + } +} +modify: +{ + match: + { + "targetname" "m_4" + "classname" "func_movelinear" + } + insert: + { + "OnFullyOpen" "last_breakable,Break,,0,1" + } +} + diff --git a/ze_bioshock_v7_1.cfg b/ze_bioshock_v7_1.cfg new file mode 100644 index 0000000..988d6f8 --- /dev/null +++ b/ze_bioshock_v7_1.cfg @@ -0,0 +1,99 @@ +;------------------------------------------------------------ +;Add a parentname to zm trigger detector on 1999 ending boat +;------------------------------------------------------------ + +modify: +{ + match: + { + "classname" "trigger_multiple" + "targetname" "columbia_boat_zm_detector" + } + insert: + { + "parentname" "columbia_boat_train" + } +} + +;------------- +;Extend Warmup +;------------- + +modify: +{ + match: + { + "classname" "logic_case" + "targetname" "level_case" + } + delete: + { + "OnCase05" "console,Command,say >>>Warmup ends in 60 seconds<<<,2,-1" + "OnCase05" "console,Command,say >>>Introduction Complete<<<,59,-1" + "OnCase05" "console,Command,mp_restartgame 1,62,-1" + } + insert: + { + "OnCase05" "console,Command,say >>>Warmup ends in 80 seconds<<<,2,-1" + "OnCase05" "console,Command,say >>>Introduction Complete<<<,79,-1" + "OnCase05" "console,Command,mp_restartgame 1,82,-1" + } +} + +;-------------------------------------------------------------------- +;STRIPPER CFG BY MOLTARD http://steamcommunity.com/id/0123456789ABC/ +;-------------------------------------------------------------------- +;CANT TAKE ZOMBIE ITEM AS CT (and vice-versa) +;--------------------------------------------- + +; CT Item Trigger push. Only Zombies and only CT not named plasmid_user get pushed + +add: +{ + "origin" "-11520 -192 9096" + "targetname" "filter_no_item_and_zombie" + "Filter01" "filter_only_t" + "Filter02" "filter_no_item" + "filtertype" "1" + "Negated" "0" + "classname" "filter_multi" +} +modify: +{ + match: + { + "origin" "-3080 -13088 9112" + "classname" "trigger_push" + "hammerid" "2227273" + } + replace: + { + "filtername" "filter_no_item_and_zombie" + } +} + +; Zombie Item Trigger push. Only CT and only Zombies not named plasmid_user get pushed + +add: +{ + "origin" "-11520 -192 9096" + "targetname" "filter_no_item_and_human" + "Filter01" "filter_only_ct" + "Filter02" "filter_no_item" + "filtertype" "1" + "Negated" "0" + "classname" "filter_multi" +} +modify: +{ + match: + { + "origin" -4248 -13088 9112" + "classname" "trigger_push" + "hammerid" "2230208" + } + replace: + { + "filtername" "filter_no_item_and_human" + } +} diff --git a/ze_bullyshmi_course_css_v4.cfg b/ze_bullyshmi_course_css_v4.cfg new file mode 100644 index 0000000..e078d8b --- /dev/null +++ b/ze_bullyshmi_course_css_v4.cfg @@ -0,0 +1,18 @@ +;-------------------------------------------------------------------- +;STRIPPER CFG BY MOLTARD http://steamcommunity.com/id/0123456789ABC/ +;-------------------------------------------------------------------- +;FIX +;---- + +modify: +{ + match: + { + "classname" "logic_auto" + "hammerid" "4194" + } + delete: + { + "OnMapSpawn" "point_servercommand,Command,zr_infect_mzombie_ratio 1,0,-1" + } +} diff --git a/ze_corrup_r1.cfg b/ze_corrup_r1.cfg new file mode 100644 index 0000000..6a3b62c --- /dev/null +++ b/ze_corrup_r1.cfg @@ -0,0 +1,170 @@ +;-------------------------------------------------------------------- +;STRIPPER CFG BY MOLTARD http://steamcommunity.com/id/0123456789ABC/ +;-------------------------------------------------------------------- +;CLEAN LEVEL SYSTEM + MAPADMIN +;------------------------------ + +; Delete old entities + +modify: +{ + match: + { + "origin" "-752 -544 269.86" + "classname" "logic_auto" + "hammerid" "13744" + } + delete: + { + "OnMapSpawn" "level_counter,GetValue,,0.02,1" + "OnMapSpawn" "level_stocker,FireUser1,,0,1" + } +} +modify: +{ + match: + { + "origin" "-672 -698.967 288" + "targetname" "server" + "classname" "point_servercommand" + "hammerid" "3033" + } +; insert: +; { +; "OnUser1" "!self,Command,say ** MAP MODIFIED **,1,1" +; } +} +filter: +{ + "origin" "-720 -544 270" + "targetname" "level_counter" + "classname" "math_counter" + "hammerid" "13746" +} +filter: +{ + "targetname" "level_stocker" + "origin" "-656 -560 254" + "classname" "func_brush" + "hammerid" "13750" +} + +; Add new entities + +add: +{ + "origin" "0 0 0" + "targetname" "Level_Counter" + "startvalue" "1" + "StartDisabled" "0" + "min" "1" + "max" "16" + "classname" "math_counter" + "hammerid" "123456789" + "OnGetValue" "level_case,InValue,,0,-1" + "OnUser1" "!self,SetValue,1,0,-1" + "OnUser2" "!self,SetValue,2,0,-1" +} +add: +{ + "origin" "0 0 0" + "spawnflags" "1" + "classname" "logic_auto" + "OnMapSpawn" "Map_InitPermEntities,FireUser1,,0,1" + "OnMapSpawn" "Level_Counter,GetValue,,0.02,1" +} + +add: +{ + "targetname" "Map_InitPermEntities" + "origin" "0 0 0" + "classname" "info_target" + "OnUser1" "Template_PermEntities,ForceSpawn,,0,1" + "OnUser1" "Level_Counter,AddOutput,classname info_target,0.03,1" + "OnUser1" "!self,Kill,,0.06,1" +} + +add: +{ + "targetname" "Template_PermEntities" + "origin" "0 0 0" + "Template01" "Level_Counter" + "spawnflags" "2" + "classname" "point_template" + "OnEntitySpawned" "!self,Kill,,0,-1" +} + +; Modify Level Change + + +modify: +{ + match: + { + "origin" "-688 -544 270" + "targetname" "level_case" + "classname" "logic_case" + "hammerid" "13748" + } + delete: + { + "OnCase01" "level_stocker,FireUser1,,0,1" + "OnCase01" "level_stocker,AddOutput,OnUser1 level_counter:setvalue:1:0:1,0.02,1" + "OnCase02" "level_stocker,AddOutput,OnUser1 level_counter:setvalue:2:0:1,0.02,1" + "OnCase02" "level_stocker,FireUser1,,0,1" + } + insert: + { + "OnCase01" "server,Command,say ** LEVEL 1 **,0,1" + "OnCase01" "skyblock,Disable,,0.00,1" + "OnCase02" "server,Command,say ...,0,-1" + "OnCase02" "skyblock,Enable,,0.00,1" + } +} + +modify: +{ + match: + { + "origin" "-672 -640 288" + "targetname" "themcounter" + "classname" "math_counter" + "hammerid" "17708" + } + delete: + { + "OnHitMax" "level_stocker,AddOutput,OnUser1 level_counter:setvalue:2:0:1,0.02,1" + "OnHitMax" "level_stocker,FireUser1,,0,1" + } + insert: + { + "OnHitMax" "Level_Counter,FireUser2,,0,1" + } +} + +;Add spawnflags to doors so they only break on trigger + +modify: +{ + match: + { + "targetname" "otherdoor24" + "classname" "func_breakable" + } + replace: + { + "spawnflags" "1" + } +} +modify: +{ + match: + { + "targetname" "otherdoor18" + "classname" "func_breakable" + } + replace: + { + "spawnflags" "1" + } +} diff --git a/ze_cyberderp_v1_4.cfg b/ze_cyberderp_v1_4.cfg index 36f0078..dfde2e7 100644 --- a/ze_cyberderp_v1_4.cfg +++ b/ze_cyberderp_v1_4.cfg @@ -141,4 +141,21 @@ modify: "disablereceiveshadows" "1" "disableshadows" "1" } -} \ No newline at end of file +} + +;Increase roundtime +modify: +{ + match: + { + "classname" "logic_auto" + } + delete: + { + "OnMapSpawn" "Console,Command,mp_roundtime 9,0,-1" + } + insert: + { + "OnMapSpawn" "Console,Command,mp_roundtime 20,0,-1" + } +} diff --git a/ze_dark_souls_ptd_v0_4.cfg b/ze_dark_souls_ptd_v0_4.cfg new file mode 100644 index 0000000..8f90cee --- /dev/null +++ b/ze_dark_souls_ptd_v0_4.cfg @@ -0,0 +1,25 @@ +;Fix nuke killing humans +modify: +{ + match: + { + "classname" "trigger_hurt" + "targetname" "Map_Hurt" + } + replace: + { + "damage" "50000" + } +} +modify: +{ + match: + { + "classname" "trigger_once" + "targetname" "Round_Win_Trigger" + } + insert: + { + "OnStartTouch" "!activator,AddOutput,health 999999,0,-1" + } +} diff --git a/ze_dreamin_v3_1_css.cfg b/ze_dreamin_v3_1_css.cfg new file mode 100644 index 0000000..1bf0afb --- /dev/null +++ b/ze_dreamin_v3_1_css.cfg @@ -0,0 +1,55 @@ +modify: +{ + match: + { + "targetname" "boss_teleport" + "classname" "trigger_teleport" + "hammerid" "22046" + } + delete: + { + "OnStartTouch" "HPCounter2,Add,80,0,-1" + } + insert: + { + "OnStartTouch" "HPCounter2,Add,70,0,-1" //v2 had 50 + } +} + +modify: +{ + match: + { + "targetname" "hp_counter_set" + "classname" "trigger_multiple" + "hammerid" "11290" + } + delete: + { + "OnStartTouch" "hpcounter2,Add,80,0,-1" + } + insert: + { + "OnStartTouch" "hpcounter2,Add,70,0,-1" //v2 had 50 + } +} + + + +modify: +{ + match: + { + "targetname" "st3_goto" + "classname" "trigger_multiple" + "hammerid" "386278" + } + delete: + { + "OnStartTouch" "st3_hp,Add,700,0,-1" + } + insert: + { + "OnStartTouch" "st3_hp,Add,600,0,-1" // v2 had 500 + } +} \ No newline at end of file diff --git a/ze_fapescape_rote_v1_3f.cfg b/ze_fapescape_rote_v1_3f.cfg index 83755e9..3c7cf2d 100644 --- a/ze_fapescape_rote_v1_3f.cfg +++ b/ze_fapescape_rote_v1_3f.cfg @@ -507,4 +507,90 @@ modify: { "damage" "40" } -} \ No newline at end of file +} + +;Add math_counter for stagedisplay + +add: +{ + "origin" "-300 14450 80" + "targetname" "TheCurrentLevelPlugin" + "min" "1" + "max" "6" + "startvalue" "1" + "classname" "math_counter" +} + + +modify: +{ + match: + { + "targetname" "stage_1_relay" + "classname" "logic_relay" + } + insert: + { + "OnTrigger" "TheCurrentLevelPlugin,SetValue,1,0,1" + } +} +modify: +{ + match: + { + "targetname" "stage_2_relay" + "classname" "logic_relay" + } + insert: + { + "OnTrigger" "TheCurrentLevelPlugin,SetValue,2,0,1" + } +} +modify: +{ + match: + { + "targetname" "stage_3_relay" + "classname" "logic_relay" + } + insert: + { + "OnTrigger" "TheCurrentLevelPlugin,SetValue,3,0,1" + } +} +modify: +{ + match: + { + "targetname" "stage_1_relay_ext" + "classname" "logic_relay" + } + insert: + { + "OnTrigger" "TheCurrentLevelPlugin,SetValue,4,0,1" + } +} +modify: +{ + match: + { + "targetname" "stage_2_relay_ext" + "classname" "logic_relay" + } + insert: + { + "OnTrigger" "TheCurrentLevelPlugin,SetValue,5,0,1" + } +} +modify: +{ + match: + { + "targetname" "stage_3_relay_ext" + "classname" "logic_relay" + } + insert: + { + "OnTrigger" "TheCurrentLevelPlugin,SetValue,6,0,1" + } +} diff --git a/ze_fapescape_v1_2.cfg b/ze_fapescape_v1_2.cfg index 788e531..cd8f2fa 100644 --- a/ze_fapescape_v1_2.cfg +++ b/ze_fapescape_v1_2.cfg @@ -2,7 +2,7 @@ ;STRIPPER CFG BY MOLTARD http://steamcommunity.com/id/0123456789ABC/ ;-------------------------------------------------------------------- ;FIX TP GLITCH + NUKE GLITCH -;------------------------------- +;----------------------------- ; Water Spawn @@ -44,3 +44,34 @@ modify: "origin" "-980 -13136 -1968" } } + +;------------------------------ +;FIX BOSS STAGE 2 FALLING DOWN +;------------------------------ + +add: +{ + "origin" "12256 -8960 -256" + "targetname" "FILTER_CY01Physic3" + "Negated" "Allow entities that match criteria" + "filtername" "CY01Physic3" + "classname" "filter_activator_name" +} +add: +{ + "origin" "12256 -8960 -256" + "targetname" "DESTINATION_CY01Physic3" + "angles" "0 0 0" + "classname" "info_teleport_destination" +} +add: +{ + "model" "*543" + "origin" "12256 -8960 -800" + "targetname" "TELEPORT_CY01Physic3" + "target" "DESTINATION_CY01Physic3" + "filtername" "FILTER_CY01Physic3" + "spawnflags" "1088" + "StartDisabled" "0" + "classname" "trigger_teleport" +} diff --git a/ze_ffxii_paramina_rift_v1_4.cfg b/ze_ffxii_paramina_rift_v1_4.cfg index 2f1c0ef..a069a1d 100644 --- a/ze_ffxii_paramina_rift_v1_4.cfg +++ b/ze_ffxii_paramina_rift_v1_4.cfg @@ -2,9 +2,9 @@ modify: { match: { - "classname" "logic_relay" - "targetname" "Mode_Normal" - "origin" "-14312 -11208 -1015" + "classname" "logic_relay" + "targetname" "Mode_Normal" + "origin" "-14312 -11208 -1015" } delete: { @@ -20,12 +20,12 @@ modify: match: { "classname" "logic_relay" - "targetname" "Mode_Insane" - "origin" "-14296 -11208 -1015" + "targetname" "Mode_Insane" + "origin" "-14296 -11208 -1015" } delete: { - "OnTrigger" "Cmd,Command,sv_enablebunnyhopping 0,0,1" + "OnTrigger" "Cmd,Command,sv_enablebunnyhopping 0,0,1" } insert: { @@ -36,13 +36,26 @@ modify: { match: { - "classname" "trigger_multiple" - "origin" "9600 -14048 -608" - "hammerid" "789784" + "classname" "trigger_multiple" + "origin" "9600 -14048 -608" + "hammerid" "789784" } insert: { - "OnStartTouch" "Cmd,Command,sv_enablebunnyhopping 0,0,1" + "OnStartTouch" "Cmd,Command,sv_enablebunnyhopping 0,0,1" + } +} +modify: +{ + match: + { + "classname" "trigger_multiple" + "origin" "8800 -8384 864" + "hammerid" "789805" + } + insert: + { + "OnStartTouch" "Cmd,Command,sv_enablebunnyhopping 1,5,1" } } modify: @@ -50,25 +63,12 @@ modify: match: { "classname" "trigger_multiple" - "origin" "8800 -8384 864" - "hammerid" "789805" + "targetname" "End_Gravity" + "origin" "6016 -11328 -928" } insert: { - "OnStartTouch" "Cmd,Command,sv_enablebunnyhopping 1,5,1" - } -} -modify: -{ - match: - { - "classname" "trigger_multiple" - "targetname" "End_Gravity" - "origin" "6016 -11328 -928" - } - insert: - { - "OnStartTouch" "Cmd,Command,sv_enablebunnyhopping 0,0,1" + "OnStartTouch" "Cmd,Command,sv_enablebunnyhopping 0,0,1" } } modify: @@ -76,10 +76,38 @@ modify: match: { "classname" "trigger_once" - "origin" "7552 -3200 -896" + "origin" "7552 -3200 -896" } insert: { - "OnStartTouch" "Cmd,Command,sv_enablebunnyhopping 1,0,1" + "OnStartTouch" "Cmd,Command,sv_enablebunnyhopping 1,0,1" } -} \ No newline at end of file +} + +;Event kicker +;Items level 1 +filter: +{ + "classname" "filter_activator_name" + "targetname" "Filter_Upgrade_0" +} +filter: +{ + "classname" "filter_activator_name" + "targetname" "Filter_Upgrade_1" +} +filter: +{ + "classname" "filter_activator_name" + "targetname" "Filter_Upgrade_2" +} +filter: +{ + "classname" "filter_activator_name" + "targetname" "Filter_Upgrade_3" +} +filter: +{ + "classname" "filter_activator_name" + "targetname" "Filter_Upgrade_4" +} diff --git a/ze_ffxii_westersand_v2d.cfg b/ze_ffxii_westersand_v2d.cfg new file mode 100644 index 0000000..58829e7 --- /dev/null +++ b/ze_ffxii_westersand_v2d.cfg @@ -0,0 +1,14 @@ +;Reset gravity on final room on Extreme +add: +{ + "model" "*267" + + "wait" "1" + "StartDisabled" "0" + "spawnflags" "1" + "origin" "-6640 -9712 -512" + "classname" "trigger_multiple" + "targetname" "extreme_gravity_reset" + + "OnTrigger" "!activator,AddOutput,gravity 1,0,-1" +} diff --git a/ze_ffxiv_pharos_sirius_css.cfg b/ze_ffxiv_pharos_sirius_css.cfg new file mode 100644 index 0000000..e79028f --- /dev/null +++ b/ze_ffxiv_pharos_sirius_css.cfg @@ -0,0 +1,7132 @@ +add: +{ + "origin" "-8964 -1672 776" + "UseRandomTime" "1" + "UpperRandomBound" "2" + "targetname" "color_correction_timer" + "StartDisabled" "0" + "spawnflags" "0" + "LowerRandomBound" "1" + "classname" "logic_timer" + "hammerid" "2466267" + "OnTimer" "cc,Enable,,0,-1" +} + +filter: +{ + "classname" "trigger_playermovement" +} + +modify: +{ + match: + { + "targetname" "lilith_teleport" + } + delete: + { + "OnPlayerOutZone" "!activator,AddOutput,origin 3336 -8584 4316,0,-1" + } + insert: + { + "OnPlayerOutZone" "!activator,AddOutput,origin 3336 -8592 4460,0,-1" + } +} + +modify: +{ + match: + { + "targetname" "bahamut_laser_hurt_high" + } + delete: + { + "OnStartTouch" "boss_hp_counter,Subtract,20,0,-1" + } +} + +modify: +{ + match: + { + "targetname" "lilith_hp_add_trigger" + } + delete: + { + "OnStartTouch" "boss_hp_counter,Add,350,0,-1" + } + insert: + { + "OnStartTouch" "boss_hp_counter,Add,300,0,-1" + } +} + +modify: +{ + match: + { + "targetname" "lilith_hp_add" + } + delete: + { + "OnStartTouch" "boss_hp_counter,Add,100,0,-1" + } + insert: + { + "OnStartTouch" "boss_hp_counter,Add,175,0,-1" + } +} + +modify: +{ + match: + { + "targetname" "boss_hp_add" + } + delete: + { + "OnStartTouch" "yojimbo_body,AddHealth,2500,0,-1" + } + insert: + { + "OnStartTouch" "yojimbo_body,AddHealth,1000,0,-1" + } +} + +modify: +{ + match: + { + "targetname" "tp_pharos_firstfloor" + } + delete: + { + "OnStartTouch" "stage_ultimate_yojimbo_body,AddHealth,1500,0,-1" + } + insert: + { + "OnStartTouch" "stage_ultimate_yojimbo_body,AddHealth,550,0,-1" + } +} + +modify: +{ + match: + { + "targetname" "stage_hard_trigger_1" + } + insert: + { + "OnUser3" "global_item_manager,InValue,lock,39,1" + } +} + +modify: +{ + match: + { + "targetname" "stage_hard_trigger_2" + } + insert: + { + "OnUser3" "global_item_manager,InValue,lock,34,1" + } +} + +; Comparing "ze_ffxiv_pharos_sirius_css.bsp" (792 entities) with "sirius_crab.bsp" (1242 entities) +; Removed 791 identical entities. + +; __ __ ____ _____ _____ ________ __ +; | \/ |/ __ \| __ \_ _| ____\ \ / / +; | \ / | | | | | | || | | |__ \ \_/ / +; | |\/| | | | | | | || | | __| \ / +; | | | | |__| | |__| || |_| | | | +; |_| |_|\____/|_____/_____|_| |_| +modify: +{ + match: + { + "classname" "worldspawn" + "hammerid" "1" + } + replace: + { + "mapversion" "11261" + } +} +; Generated 1 modify blocks. + +; ______ _____ _ _______ ______ _____ +; | ____|_ _| | |__ __| ____| __ \ +; | |__ | | | | | | | |__ | |__) | +; | __| | | | | | | | __| | _ / +; | | _| |_| |____| | | |____| | \ \ +; |_| |_____|______|_| |______|_| \_\ +; Generated 0 filter blocks. + +; _____ _____ +; /\ | __ \| __ \ +; / \ | | | | | | | +; / /\ \ | | | | | | | +; / ____ \| |__| | |__| | +; /_/ \_\_____/|_____/ +add: +{ + "origin" "648 7776 -4320" + "Template09" "zombie_electric_rotate" + "Template08" "zombie_electric_trigger" + "Template07" "zombie_electric_counter" + "Template06" "zombie_electric_button" + "Template05" "zombie_electric_strip" + "Template04" "zombie_electric_knife_effect" + "Template03" "zombie_electric_knife" + "Template02" "zombie_electric_maker" + "Template01" "filter_zombie_electric" + "targetname" "template_zombie_knife_electric" + "spawnflags" "2" + "classname" "point_template" + "hammerid" "2229827" + "OnEntitySpawned" "!self,Kill,,0.1,1" +} +add: +{ + "origin" "680 7776 -4328" + "targetname" "zombie_electric_knife_effect" + "start_active" "1" + "parentname" "zombie_electric_rotate" + "effect_name" "custom_particle_314" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 0 0" + "classname" "info_particle_system" + "hammerid" "2229837" +} +add: +{ + "origin" "648 7776 -4304" + "targetname" "filter_zombie_electric" + "Negated" "Allow entities that match criteria" + "filtername" "zombie_electric" + "classname" "filter_activator_name" + "hammerid" "2229902" + "OnPass" "zombie_electric_maker,ForceSpawn,,0,-1" +} +add: +{ + "origin" "680 7776 -4320" + "targetname" "zombie_electric_maker" + "spawnflags" "0" + "PostSpawnSpeed" "0" + "PostSpawnInheritAngles" "0" + "PostSpawnDirectionVariance" "0.15" + "PostSpawnDirection" "0 0 0" + "parentname" "zombie_electric_rotate" + "EntityTemplate" "template_zombie_electric_projectile" + "angles" "0 0 0" + "classname" "env_entity_maker" + "hammerid" "2230688" + "OnEntitySpawned" "zombie_electric_counter,Add,1,0,-1" +} +add: +{ + "origin" "648 7776 -4336" + "targetname" "zombie_electric_counter" + "startvalue" "0" + "StartDisabled" "0" + "min" "0" + "max" "10" + "classname" "math_counter" + "hammerid" "3507047" + "OnHitMax" "zombie_electric_button,Lock,,0,-1" + "OnHitMax" "zombie_electric_button,Unlock,,60,-1" + "OnHitMax" "zombie_electric_knife_effect,Stop,,0,-1" + "OnHitMax" "zombie_electric_knife_effect,Start,,60,-1" + "OnHitMax" "!self,SetValue,0,0,-1" +} +add: +{ + "origin" "1152 7128 -4328" + "targetname" "zombie_sword_knife_effect" + "start_active" "1" + "parentname" "zombie_sword_rotate" + "effect_name" "custom_particle_339" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 0 0" + "classname" "info_particle_system" + "hammerid" "2136905" +} +add: +{ + "origin" "1120 7128 -4304" + "targetname" "filter_zombie_sword" + "Negated" "Allow entities that match criteria" + "filtername" "zombie_sword" + "classname" "filter_activator_name" + "hammerid" "2136970" + "OnPass" "zombie_sword_maker,ForceSpawn,,0,-1" + "OnPass" "zombie_sword_knife_effect,Stop,,0,-1" + "OnPass" "zombie_sword_button,Lock,,0,-1" + "OnPass" "zombie_sword_knife_effect,Start,,30,-1" + "OnPass" "zombie_sword_button,Unlock,,30,-1" +} +add: +{ + "origin" "1120 7128 -4320" + "Template08" "zombie_sword_rotate" + "Template07" "filter_zombie_sword" + "Template06" "zombie_sword_button" + "Template05" "zombie_sword_strip" + "Template04" "zombie_sword_knife_effect" + "Template03" "zombie_sword_knife" + "Template02" "zombie_sword_trigger" + "Template01" "zombie_sword_maker" + "targetname" "template_zombie_knife_sword" + "spawnflags" "2" + "classname" "point_template" + "hammerid" "2136972" + "OnEntitySpawned" "!self,Kill,,0.1,1" +} +add: +{ + "origin" "1160 7128 -4312" + "targetname" "zombie_sword_maker" + "spawnflags" "0" + "PostSpawnSpeed" "0" + "PostSpawnInheritAngles" "0" + "PostSpawnDirectionVariance" "0.15" + "PostSpawnDirection" "0 0 0" + "parentname" "zombie_sword_rotate" + "EntityTemplate" "template_zombie_sword_move" + "angles" "0 0 0" + "classname" "env_entity_maker" + "hammerid" "2137526" + "OnEntitySpawned" "template_zombie_sword_push,ForceSpawn,,0.01,-1" +} +add: +{ + "origin" "1344 8000 -4375.97" + "targetname" "zombie_parasitic_infect_effect" + "start_active" "0" + "parentname" "zombie_parasitic_projectile_trigger" + "effect_name" "custom_particle_329" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 180 0" + "classname" "info_particle_system" + "hammerid" "2877141" +} +add: +{ + "origin" "1344 8000 -4375.97" + "targetname" "zombie_parasitic_projectile_explosion" + "spawnflags" "788" + "rendermode" "5" + "parentname" "zombie_parasitic_projectile_trigger" + "iRadiusOverride" "128" + "iMagnitude" "384" + "fireballsprite" "sprites/zerogxplode.spr" + "classname" "env_explosion" + "hammerid" "2852066" +} +add: +{ + "origin" "1344 8000 -4375.97" + "targetname" "zombie_parasitic_projectile_explosion_effect" + "start_active" "0" + "parentname" "zombie_parasitic_projectile_trigger" + "effect_name" "custom_particle_293" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 0 0" + "classname" "info_particle_system" + "hammerid" "2852087" +} +add: +{ + "origin" "1344 8000 -4320" + "Template08" "zombie_parasitic_trigger" + "Template07" "zombie_parasitic_rotate" + "Template06" "zombie_parasitic_button" + "Template05" "zombie_parasitic_strip" + "Template04" "zombie_parasitic_knife_effect" + "Template03" "zombie_parasitic_knife" + "Template02" "zombie_parasitic_maker" + "Template01" "filter_zombie_parasitic" + "targetname" "template_zombie_knife_parasitic" + "spawnflags" "2" + "classname" "point_template" + "hammerid" "2840837" + "OnEntitySpawned" "!self,Kill,,0.1,1" +} +add: +{ + "origin" "1376 8000 -4328" + "targetname" "zombie_parasitic_knife_effect" + "start_active" "1" + "parentname" "zombie_parasitic_rotate" + "effect_name" "custom_particle_331" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 0 0" + "classname" "info_particle_system" + "hammerid" "2840841" +} +add: +{ + "origin" "1344 8000 -4304" + "targetname" "filter_zombie_parasitic" + "Negated" "Allow entities that match criteria" + "filtername" "zombie_parasitic" + "classname" "filter_activator_name" + "hammerid" "2840906" + "OnPass" "zombie_parasitic_maker,ForceSpawn,,0,-1" + "OnPass" "zombie_parasitic_knife_effect,Stop,,0,-1" + "OnPass" "zombie_parasitic_button,Lock,,0,-1" + "OnPass" "zombie_parasitic_button,Unlock,,30,-1" + "OnPass" "zombie_parasitic_knife_effect,Start,,30,-1" +} +add: +{ + "origin" "1384 8000 -4312" + "targetname" "zombie_parasitic_maker" + "spawnflags" "0" + "PostSpawnSpeed" "0" + "PostSpawnInheritAngles" "0" + "PostSpawnDirectionVariance" "0.15" + "PostSpawnDirection" "0 0 0" + "parentname" "zombie_parasitic_rotate" + "EntityTemplate" "template_zombie_parasitic_projectile" + "angles" "0 0 0" + "classname" "env_entity_maker" + "hammerid" "2840911" +} +add: +{ + "origin" "1344 8000 -4375.97" + "targetname" "zombie_parasitic_projectile_effect" + "start_active" "1" + "parentname" "zombie_parasitic_projectile_move" + "effect_name" "custom_particle_335" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 90 0" + "classname" "info_particle_system" + "hammerid" "2840915" +} +add: +{ + "origin" "1344 8000 -4360" + "targetname" "zombie_parasitic_projectile_spawn" + "StartDisabled" "0" + "spawnflags" "0" + "classname" "logic_relay" + "hammerid" "2840984" + "OnSpawn" "!self,Kill,,0.1,1" + "OnSpawn" "zombie_parasitic_projectile_move,Open,,0.01,1" +} +add: +{ + "origin" "1344 8000 -4375.97" + "Template10" "zombie_parasitic_infect_effect" + "Template09" "zombie_parasitic_infect_body" + "Template08" "zombie_parasitic_projectile_explosion_effect" + "Template07" "zombie_parasitic_projectile_explosion" + "Template06" "zombie_parasitic_projectile_spawn" + "Template05" "zombie_parasitic_projectile_move" + "Template03" "zombie_parasitic_projectile_trigger" + "Template02" "zombie_parasitic_projectile_effect" + "Template01" "zombie_parasitic_projectile_camera" + "targetname" "template_zombie_parasitic_projectile" + "spawnflags" "0" + "classname" "point_template" + "hammerid" "2840986" +} +add: +{ + "origin" "-456 6976 -4376" + "Template06" "human_rock_upgrade_stuck_boss_trigger" + "Template05" "human_rock_upgrade_spawn" + "Template03" "human_rock_upgrade_model" + "Template02" "human_rock_upgrade_body" + "Template01" "human_rock_upgrade_effect" + "targetname" "template_human_rock_upgrade" + "spawnflags" "2" + "classname" "point_template" + "hammerid" "1875648" +} +add: +{ + "origin" "320 6976 -4376" + "targetname" "human_rock_upgrade_effect" + "start_active" "1" + "effect_name" "custom_particle_135" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 0 0" + "classname" "info_particle_system" + "hammerid" "1875653" +} +add: +{ + "origin" "-456 6976 -4360" + "targetname" "human_rock_upgrade_spawn" + "StartDisabled" "0" + "spawnflags" "0" + "classname" "logic_relay" + "hammerid" "2149322" + "OnSpawn" "!self,Kill,,0.1,1" + "OnSpawn" "human_rock_upgrade_model,SetDefaultAnimation,idle_before,0.01,1" + "OnSpawn" "human_rock_upgrade_stuck_boss_trigger,Kill,,0.5,1" +} +add: +{ + "origin" "320 8000 -4256" + "Template07" "filter_zombie_warp" + "Template06" "zombie_warp_button" + "Template05" "zombie_warp_strip" + "Template04" "zombie_warp_knife_effect" + "Template03" "zombie_warp_knife" + "Template02" "zombie_warp_effect" + "Template01" "zombie_warp_hurt" + "targetname" "template_zombie_knife_warp" + "spawnflags" "2" + "classname" "point_template" + "hammerid" "1870378" + "OnEntitySpawned" "!self,Kill,,0.1,1" +} +add: +{ + "origin" "352 8000 -4264" + "targetname" "zombie_warp_knife_effect" + "start_active" "1" + "parentname" "zombie_warp_knife" + "effect_name" "custom_particle_346" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 0 0" + "classname" "info_particle_system" + "hammerid" "1875735" +} +add: +{ + "origin" "320 8000 -4240" + "targetname" "filter_zombie_warp" + "Negated" "Allow entities that match criteria" + "filtername" "zombie_warp" + "classname" "filter_activator_name" + "hammerid" "1875865" + "OnPass" "zombie_warp_effect,Start,,0,-1" + "OnPass" "zombie_warp_hurt,Enable,,0,-1" + "OnPass" "zombie_warp_knife_effect,Stop,,0,-1" + "OnPass" "zombie_warp_button,Lock,,0,-1" + "OnPass" "zombie_warp_hurt,Disable,,1,-1" + "OnPass" "zombie_warp_knife_effect,Start,,60,-1" + "OnPass" "zombie_warp_button,Unlock,,60,-1" + "OnPass" "zombie_warp_effect,Stop,,1,-1" +} +add: +{ + "origin" "320 8000 -4232" + "targetname" "zombie_warp_effect" + "start_active" "0" + "parentname" "zombie_warp_knife" + "effect_name" "custom_particle_343" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 0 0" + "classname" "info_particle_system" + "hammerid" "1875800" +} +add: +{ + "origin" "1256 7128 -4320" + "Template04" "zombie_sword_push_side" + "Template03" "zombie_sword_spawn" + "Template02" "zombie_sword_measure" + "Template01" "zombie_sword_push" + "targetname" "template_zombie_sword_push" + "spawnflags" "2" + "classname" "point_template" + "hammerid" "2135596" +} +add: +{ + "origin" "1256 7128 -4304" + "Template04" "zombie_sword_effect" + "Template03" "zombie_sword_model" + "Template02" "zombie_sword_move" + "Template01" "zombie_sword_camera" + "targetname" "template_zombie_sword_move" + "spawnflags" "2" + "classname" "point_template" + "hammerid" "2135619" +} +add: +{ + "origin" "1240 7128 -4320" + "TargetScale" "1" + "TargetReference" "zombie_sword_model" + "targetname" "zombie_sword_measure" + "Target" "zombie_sword_push" + "MeasureType" "0" + "MeasureTarget" "zombie_sword_model" + "MeasureReference" "zombie_sword_model" + "classname" "logic_measure_movement" + "hammerid" "2135623" +} +add: +{ + "origin" "1320 7128 -4320" + "targetname" "zombie_sword_effect" + "start_active" "1" + "parentname" "zombie_sword_move" + "effect_name" "custom_particle_338" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 0 0" + "classname" "info_particle_system" + "hammerid" "2135630" +} +add: +{ + "origin" "1224 7128 -4320" + "targetname" "zombie_sword_spawn" + "StartDisabled" "0" + "spawnflags" "0" + "classname" "logic_relay" + "hammerid" "2136440" + "OnSpawn" "!self,Kill,,0.1,1" + "OnSpawn" "zombie_sword_move,Open,,0.05,1" + "OnSpawn" "template_zombie_sword_move,ForceSpawn,,0.01,1" + "OnSpawn" "zombie_sword_push,SetParent,zombie_sword_model,0.01,1" + "OnSpawn" "zombie_sword_measure,Kill,,0.05,1" +} +add: +{ + "origin" "-2015.92 10272 -4376" + "targetname" "human_item_upgrade_effect_gravity" + "start_active" "0" + "effect_name" "custom_particle_123" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 0 0" + "classname" "info_particle_system" + "hammerid" "2018726" +} +add: +{ + "origin" "-2016 10272 -4376" + "targetname" "human_item_upgrade_effect_rock" + "start_active" "0" + "effect_name" "custom_particle_129" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 0 0" + "classname" "info_particle_system" + "hammerid" "2019260" +} +add: +{ + "origin" "-2016 10272 -4376" + "targetname" "human_item_upgrade_effect_water" + "start_active" "0" + "effect_name" "custom_particle_132" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 0 0" + "classname" "info_particle_system" + "hammerid" "2019520" +} +add: +{ + "origin" "-2016 10272 -4376" + "targetname" "human_item_upgrade_effect_fire" + "start_active" "0" + "effect_name" "custom_particle_120" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 0 0" + "classname" "info_particle_system" + "hammerid" "2019845" +} +add: +{ + "origin" "-2016 10272 -4376" + "targetname" "human_item_upgrade_effect_heal" + "start_active" "0" + "effect_name" "custom_particle_126" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 0 0" + "classname" "info_particle_system" + "hammerid" "2020105" +} +add: +{ + "origin" "-2016 10272 -4376" + "targetname" "human_item_upgrade_effect" + "start_active" "1" + "effect_name" "custom_particle_117" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 0 0" + "classname" "info_particle_system" + "hammerid" "1875962" +} +add: +{ + "origin" "-2015.92 10272 -4376" + "Template09" "human_item_upgrade_effect_heal" + "Template08" "human_item_upgrade_effect_fire" + "Template07" "human_item_upgrade_effect_water" + "Template06" "human_item_upgrade_effect_rock" + "Template05" "human_item_upgrade_effect_gravity" + "Template04" "human_item_upgrade_sound" + "Template03" "human_item_upgrade_effect" + "Template02" "human_item_upgrade_hudhint" + "Template01" "human_item_upgrade_button" + "targetname" "template_human_item_upgrade" + "spawnflags" "2" + "classname" "point_template" + "hammerid" "1876042" + "OnEntitySpawned" "human_gravity_maker,AddOutput,OnUser1 !self:AddOutput:EntityTemplate template_human_gravity_upgrade:0:1,0,1" + "OnEntitySpawned" "human_gravity_maker,AddOutput,OnUser1 human_gravity_element_model:Kill::0:1,0,1" + "OnEntitySpawned" "human_gravity_maker,AddOutput,OnUser1 human_gravity_upgrade_pistol_effect:Start::0:1,0,1" + "OnEntitySpawned" "human_gravity_maker,AddOutput,OnUser1 human_item_upgrade_button:Kill::0:1,0,1" + "OnEntitySpawned" "human_gravity_maker,AddOutput,OnUser1 human_gravity:AddOutput:movetype 0:0:1,0,1" + "OnEntitySpawned" "human_gravity_maker,AddOutput,OnUser1 human_gravity:AddOutput:movetype 2:3:1,0,1" + "OnEntitySpawned" "human_gravity_maker,AddOutput,OnUser1 human_item_upgrade_hudhint:AddOutput:color 255 0 0:0:1,0,1" + "OnEntitySpawned" "human_gravity_maker,AddOutput,OnUser1 human_item_upgrade_hudhint:AddOutput:message < Gravity Element has been upgraded >:0:1,0,1" + "OnEntitySpawned" "human_gravity_maker,AddOutput,OnUser1 human_item_upgrade_hudhint:FireUser1::0.02:1,0,1" + "OnEntitySpawned" "human_gravity_maker,AddOutput,OnUser1 human_item_upgrade_effect_gravity:Start::0:1,0,1" + "OnEntitySpawned" "human_gravity_maker,AddOutput,OnUser1 human_item_upgrade_effect:Kill::0:1,0,1" + "OnEntitySpawned" "human_gravity_maker,AddOutput,OnUser1 human_item_upgrade_effect*:Kill::3:1,0,1" + "OnEntitySpawned" "human_gravity_maker,AddOutput,OnUser1 human_item_upgrade_sound:FireUser1::0:1,0,1" + "OnEntitySpawned" "human_gravity_maker,AddOutput,OnUser1 filter_human_gravity:FireUser1::0:1,0,1" + "OnEntitySpawned" "human_rock_maker,AddOutput,OnUser1 !self:AddOutput:EntityTemplate template_human_rock_upgrade:0:1,0,1" + "OnEntitySpawned" "human_rock_maker,AddOutput,OnUser1 human_rock_element_model:Kill::0:1,0,1" + "OnEntitySpawned" "human_rock_maker,AddOutput,OnUser1 human_rock_upgrade_pistol_effect:Start::0:1,0,1" + "OnEntitySpawned" "human_rock_maker,AddOutput,OnUser1 human_item_upgrade_button:Kill::0:1,0,1" + "OnEntitySpawned" "human_rock_maker,AddOutput,OnUser1 human_rock:AddOutput:movetype 0:0:1,0,1" + "OnEntitySpawned" "human_rock_maker,AddOutput,OnUser1 human_rock:AddOutput:movetype 2:3:1,0,1" + "OnEntitySpawned" "human_rock_maker,AddOutput,OnUser1 human_item_upgrade_hudhint:AddOutput:color 255 255 0:0:1,0,1" + "OnEntitySpawned" "human_rock_maker,AddOutput,OnUser1 human_item_upgrade_hudhint:AddOutput:message < Rock Element has been upgraded >:0:1,0,1" + "OnEntitySpawned" "human_rock_maker,AddOutput,OnUser1 human_item_upgrade_hudhint:FireUser1::0.02:1,0,1" + "OnEntitySpawned" "human_rock_maker,AddOutput,OnUser1 human_item_upgrade_effect_rock:Start::0:1,0,1" + "OnEntitySpawned" "human_rock_maker,AddOutput,OnUser1 human_item_upgrade_effect:Kill::0:1,0,1" + "OnEntitySpawned" "human_rock_maker,AddOutput,OnUser1 human_item_upgrade_effect*:Kill::3:1,0,1" + "OnEntitySpawned" "human_rock_maker,AddOutput,OnUser1 human_item_upgrade_sound:FireUser1::0:1,0,1" + "OnEntitySpawned" "human_rock_maker,AddOutput,OnUser1 filter_human_rock:FireUser1::0:1,0,1" + "OnEntitySpawned" "human_water_maker,AddOutput,OnUser1 !self:AddOutput:EntityTemplate template_human_water_upgrade_push_round:0:1,0,1" + "OnEntitySpawned" "human_water_maker,AddOutput,OnUser1 human_water_element_model:Kill::0:1,0,1" + "OnEntitySpawned" "human_water_maker,AddOutput,OnUser1 human_water_upgrade_pistol_effect:Start::0:1,0,1" + "OnEntitySpawned" "human_water_maker,AddOutput,OnUser1 human_item_upgrade_button:Kill::0:1,0,1" + "OnEntitySpawned" "human_water_maker,AddOutput,OnUser1 human_water:AddOutput:movetype 0:0:1,0,1" + "OnEntitySpawned" "human_water_maker,AddOutput,OnUser1 human_water:AddOutput:movetype 2:3:1,0,1" + "OnEntitySpawned" "human_water_maker,AddOutput,OnUser1 human_item_upgrade_hudhint:AddOutput:color 0 128 255:0:1,0,1" + "OnEntitySpawned" "human_water_maker,AddOutput,OnUser1 human_item_upgrade_hudhint:AddOutput:message < Water Element has been upgraded >:0:1,0,1" + "OnEntitySpawned" "human_water_maker,AddOutput,OnUser1 human_item_upgrade_hudhint:FireUser1::0.02:1,0,1" + "OnEntitySpawned" "human_water_maker,AddOutput,OnUser1 human_item_upgrade_effect_water:Start::0:1,0,1" + "OnEntitySpawned" "human_water_maker,AddOutput,OnUser1 human_item_upgrade_effect:Kill::0:1,0,1" + "OnEntitySpawned" "human_water_maker,AddOutput,OnUser1 human_item_upgrade_effect*:Kill::3:1,0,1" + "OnEntitySpawned" "human_water_maker,AddOutput,OnUser1 human_item_upgrade_sound:FireUser1::0:1,0,1" + "OnEntitySpawned" "human_water_maker,AddOutput,OnUser1 filter_human_water:FireUser1::0:1,0,1" + "OnEntitySpawned" "human_fire_maker,AddOutput,OnUser1 !self:AddOutput:EntityTemplate template_human_fire_upgrade:0:1,0,1" + "OnEntitySpawned" "human_fire_maker,AddOutput,OnUser1 human_fire_element_model:Kill::0:1,0,1" + "OnEntitySpawned" "human_fire_maker,AddOutput,OnUser1 human_fire_upgrade_pistol_effect:Start::0:1,0,1" + "OnEntitySpawned" "human_fire_maker,AddOutput,OnUser1 human_item_upgrade_button:Kill::0:1,0,1" + "OnEntitySpawned" "human_fire_maker,AddOutput,OnUser1 human_fire:AddOutput:movetype 0:0:1,0,1" + "OnEntitySpawned" "human_fire_maker,AddOutput,OnUser1 human_fire:AddOutput:movetype 2:3:1,0,1" + "OnEntitySpawned" "human_fire_maker,AddOutput,OnUser1 human_item_upgrade_hudhint:AddOutput:color 255 128 0:0:1,0,1" + "OnEntitySpawned" "human_fire_maker,AddOutput,OnUser1 human_item_upgrade_hudhint:AddOutput:message < Fire Element has been upgraded >:0:1,0,1" + "OnEntitySpawned" "human_fire_maker,AddOutput,OnUser1 human_item_upgrade_hudhint:FireUser1::0.02:1,0,1" + "OnEntitySpawned" "human_fire_maker,AddOutput,OnUser1 human_item_upgrade_effect_fire:Start::0:1,0,1" + "OnEntitySpawned" "human_fire_maker,AddOutput,OnUser1 human_item_upgrade_effect:Kill::0:1,0,1" + "OnEntitySpawned" "human_fire_maker,AddOutput,OnUser1 human_item_upgrade_effect*:Kill::3:1,0,1" + "OnEntitySpawned" "human_fire_maker,AddOutput,OnUser1 human_item_upgrade_sound:FireUser1::0:1,0,1" + "OnEntitySpawned" "human_fire_maker,AddOutput,OnUser1 filter_human_fire:FireUser1::0:1,0,1" + "OnEntitySpawned" "human_heal_maker,AddOutput,OnUser1 !self:AddOutput:EntityTemplate template_human_heal_upgrade:0:1,0,1" + "OnEntitySpawned" "human_heal_maker,AddOutput,OnUser1 human_heal_element_model:Kill::0:1,0,1" + "OnEntitySpawned" "human_heal_maker,AddOutput,OnUser1 human_heal_upgrade_pistol_effect:Start::0:1,0,1" + "OnEntitySpawned" "human_heal_maker,AddOutput,OnUser1 human_item_upgrade_button:Kill::0:1,0,1" + "OnEntitySpawned" "human_heal_maker,AddOutput,OnUser1 human_heal:AddOutput:movetype 0:0:1,0,1" + "OnEntitySpawned" "human_heal_maker,AddOutput,OnUser1 human_heal:AddOutput:movetype 2:3:1,0,1" + "OnEntitySpawned" "human_heal_maker,AddOutput,OnUser1 human_item_upgrade_hudhint:AddOutput:color 0 255 0:0:1,0,1" + "OnEntitySpawned" "human_heal_maker,AddOutput,OnUser1 human_item_upgrade_hudhint:AddOutput:message < Heal Element has been upgraded >:0:1,0,1" + "OnEntitySpawned" "human_heal_maker,AddOutput,OnUser1 human_item_upgrade_hudhint:FireUser1::0.02:1,0,1" + "OnEntitySpawned" "human_heal_maker,AddOutput,OnUser1 human_item_upgrade_effect_heal:Start::0:1,0,1" + "OnEntitySpawned" "human_heal_maker,AddOutput,OnUser1 human_item_upgrade_effect:Kill::0:1,0,1" + "OnEntitySpawned" "human_heal_maker,AddOutput,OnUser1 human_item_upgrade_effect*:Kill::3:1,0,1" + "OnEntitySpawned" "human_heal_maker,AddOutput,OnUser1 human_item_upgrade_sound:FireUser1::0:1,0,1" + "OnEntitySpawned" "human_heal_maker,AddOutput,OnUser1 filter_human_heal:FireUser1::0:1,0,1" + "OnEntitySpawned" "human_gravity_maker,AddOutput,OnUser1 server_command:Say:< Gravity Element has been upgraded >:0:1,0,1" + "OnEntitySpawned" "human_rock_maker,AddOutput,OnUser1 server_command:Say:< Rock Element has been upgraded >:0:1,0,1" + "OnEntitySpawned" "human_water_maker,AddOutput,OnUser1 server_command:Say:< Water Element has been upgraded >:0:1,0,1" + "OnEntitySpawned" "human_fire_maker,AddOutput,OnUser1 server_command:Say:< Fire Element has been upgraded >:0:1,0,1" + "OnEntitySpawned" "human_heal_maker,AddOutput,OnUser1 server_command:Say:< Heal Element has been upgraded >:0:1,0,1" +} +add: +{ + "origin" "-928 6688 -4288" + "targetname" "human_gravity_upgrade_effect" + "start_active" "1" + "effect_name" "custom_particle_081" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 0 0" + "classname" "info_particle_system" + "hammerid" "1870512" +} +add: +{ + "origin" "-928 6688 -4288" + "Template03" "human_gravity_upgrade_spawn" + "Template02" "human_gravity_upgrade_push" + "Template01" "human_gravity_upgrade_effect" + "targetname" "template_human_gravity_upgrade" + "spawnflags" "2" + "classname" "point_template" + "hammerid" "1870577" +} +add: +{ + "origin" "-928 6688 -4272" + "targetname" "human_gravity_upgrade_spawn" + "StartDisabled" "0" + "spawnflags" "0" + "classname" "logic_relay" + "hammerid" "2039741" + "OnSpawn" "!self,Kill,,0.1,1" + "OnSpawn" "human_gravity_upgrade_effect,Kill,,8,1" + "OnSpawn" "human_gravity_upgrade_push,Kill,,8,1" +} +add: +{ + "origin" "-1728 6528 -4320" + "targetname" "human_gravity_effect" + "start_active" "1" + "effect_name" "custom_particle_077" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 0 0" + "classname" "info_particle_system" + "hammerid" "1870445" +} +add: +{ + "origin" "-1728 6528 -4320" + "Template03" "human_gravity_spawn" + "Template02" "human_gravity_push" + "Template01" "human_gravity_effect" + "targetname" "template_human_gravity" + "spawnflags" "2" + "classname" "point_template" + "hammerid" "1870510" +} +add: +{ + "origin" "-1728 6528 -4304" + "targetname" "human_gravity_spawn" + "StartDisabled" "0" + "spawnflags" "0" + "classname" "logic_relay" + "hammerid" "2039592" + "OnSpawn" "!self,Kill,,0.1,1" + "OnSpawn" "human_gravity_effect,Kill,,5,1" + "OnSpawn" "human_gravity_push,Kill,,5,1" +} +add: +{ + "origin" "-1792 7616 -4376" + "Template04" "human_heal_upgrade_sound" + "Template03" "human_heal_upgrade_spawn" + "Template02" "human_heal_upgrade_trigger" + "Template01" "human_heal_upgrade_effect" + "targetname" "template_human_heal_upgrade" + "spawnflags" "2" + "classname" "point_template" + "hammerid" "2048297" +} +add: +{ + "origin" "-1792 7616 -4376" + "targetname" "human_heal_upgrade_effect" + "start_active" "1" + "effect_name" "custom_particle_099" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 0 0" + "classname" "info_particle_system" + "hammerid" "2048299" +} +add: +{ + "origin" "-1792 7616 -4360" + "targetname" "human_heal_upgrade_spawn" + "StartDisabled" "0" + "spawnflags" "0" + "classname" "logic_relay" + "hammerid" "2048364" + "OnSpawn" "!self,Kill,,0.1,1" + "OnSpawn" "human_heal_upgrade_effect,Kill,,7,1" + "OnSpawn" "human_heal_upgrade_trigger,Kill,,7,1" + "OnSpawn" "human_heal_upgrade_sound,FireUser1,,0.01,1" + "OnSpawn" "human_heal_upgrade_trigger,FireUser1,,0.01,1" +} +add: +{ + "origin" "-1448 9520 -4376" + "Template05" "human_rock_sound" + "Template04" "human_rock_spawn" + "Template03" "human_rock_model" + "Template02" "human_rock_body" + "targetname" "template_human_rock" + "spawnflags" "2" + "classname" "point_template" + "hammerid" "2311340" +} +add: +{ + "origin" "-1448 9520 -4360" + "targetname" "human_rock_spawn" + "StartDisabled" "0" + "spawnflags" "0" + "classname" "logic_relay" + "hammerid" "2311342" + "OnSpawn" "human_rock_sound,FireUser1,,0,1" + "OnSpawn" "!self,Kill,,0.1,1" + "OnSpawn" "human_rock_model,SetDefaultAnimation,idle_before,0.01,1" +} +add: +{ + "origin" "-1976 9424 -4376" + "targetname" "filter_human_rock" + "Negated" "Allow entities that match criteria" + "filtername" "human_rock" + "classname" "filter_activator_name" + "hammerid" "2010914" + "OnPass" "human_rock_maker,ForceSpawn,,0,-1" + "OnPass" "human_rock_sound_use,PlaySound,,0,-1" + "OnPass" "human_rock_button,Lock,,0,-1" + "OnPass" "human_rock_sound_recharge,PlaySound,,60,-1" + "OnPass" "human_rock_button,Unlock,,60,-1" + "OnPass" "human_rock_element_model,Disable,,0,-1" + "OnPass" "human_rock_element_model,Enable,,60,-1" + "OnUser1" "!self,AddOutput,OnPass human_rock_upgrade_pistol_effect:Stop::0:-1,0,1" + "OnUser1" "!self,AddOutput,OnPass human_rock_upgrade_pistol_effect:Start::60:-1,0,1" +} +add: +{ + "origin" "-1976 9424 -4320" + "Template09" "filter_human_rock" + "Template08" "human_rock_upgrade_pistol_effect" + "Template07" "human_rock_sound_use" + "Template06" "human_rock_sound_recharge" + "Template05" "human_rock_sound_lock" + "Template04" "human_rock_pistol" + "Template03" "human_rock_maker" + "Template02" "human_rock_element_model" + "Template01" "human_rock_button" + "targetname" "template_human_pistol_rock" + "spawnflags" "2" + "classname" "point_template" + "hammerid" "2010916" + "OnEntitySpawned" "!self,Kill,,0.1,1" +} +add: +{ + "origin" "-1936 9423 -4328" + "targetname" "human_rock_upgrade_pistol_effect" + "start_active" "0" + "parentname" "human_rock_pistol" + "effect_name" "custom_particle_138" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 0 0" + "classname" "info_particle_system" + "hammerid" "2010925" +} +add: +{ + "origin" "-1936 9423 -4312" + "targetname" "human_rock_maker" + "spawnflags" "0" + "PostSpawnSpeed" "0" + "PostSpawnInheritAngles" "0" + "PostSpawnDirectionVariance" "0.15" + "PostSpawnDirection" "0 0 0" + "parentname" "human_rock_pistol" + "EntityTemplate" "template_human_rock" + "angles" "0 0 0" + "classname" "env_entity_maker" + "hammerid" "2011287" +} +add: +{ + "origin" "-1936 9535 -4328" + "targetname" "human_gravity_upgrade_pistol_effect" + "start_active" "0" + "parentname" "human_gravity_pistol" + "effect_name" "custom_particle_088" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 0 0" + "classname" "info_particle_system" + "hammerid" "1870579" +} +add: +{ + "origin" "-1976 9536 -4376" + "targetname" "filter_human_gravity" + "Negated" "Allow entities that match criteria" + "filtername" "human_gravity" + "classname" "filter_activator_name" + "hammerid" "1870644" + "OnPass" "human_gravity_maker,ForceSpawn,,0.01,-1" + "OnPass" "human_gravity_sound_use,PlaySound,,0,-1" + "OnPass" "human_gravity_button,Lock,,0,-1" + "OnPass" "human_gravity_sound_recharge,PlaySound,,60,-1" + "OnPass" "human_gravity_button,Unlock,,60,-1" + "OnPass" "human_gravity_element_model,Disable,,0,-1" + "OnPass" "human_gravity_element_model,Enable,,60,-1" + "OnPass" "human_gravity_maker,AddOutput,angles 0 0 0,0,-1" + "OnUser1" "!self,AddOutput,OnPass human_gravity_upgrade_pistol_effect:Stop::0:-1,0,1" + "OnUser1" "!self,AddOutput,OnPass human_gravity_upgrade_pistol_effect:Start::60:-1,0,1" +} +add: +{ + "origin" "-1976 9536 -4320" + "Template09" "filter_human_gravity" + "Template08" "human_gravity_upgrade_pistol_effect" + "Template07" "human_gravity_sound_use" + "Template06" "human_gravity_sound_recharge" + "Template05" "human_gravity_sound_lock" + "Template04" "human_gravity_pistol" + "Template03" "human_gravity_maker" + "Template02" "human_gravity_element_model" + "Template01" "human_gravity_button" + "targetname" "template_human_pistol_gravity" + "spawnflags" "2" + "classname" "point_template" + "hammerid" "1870664" + "OnEntitySpawned" "!self,Kill,,0.1,1" +} +add: +{ + "origin" "-1768 9536 -4280" + "targetname" "human_gravity_maker" + "spawnflags" "0" + "PostSpawnSpeed" "0" + "PostSpawnInheritAngles" "0" + "PostSpawnDirectionVariance" "0.15" + "PostSpawnDirection" "0 0 0" + "parentname" "human_gravity_pistol" + "EntityTemplate" "template_human_gravity" + "angles" "0 0 0" + "classname" "env_entity_maker" + "hammerid" "1870655" +} +add: +{ + "origin" "-1976 9312 -4376" + "targetname" "filter_human_water" + "Negated" "Allow entities that match criteria" + "filtername" "human_water" + "classname" "filter_activator_name" + "hammerid" "2020646" + "OnPass" "human_water_maker,ForceSpawn,,0,-1" + "OnPass" "human_water_sound_use,PlaySound,,0,-1" + "OnPass" "human_water_button,Lock,,0,-1" + "OnPass" "human_water_sound_recharge,PlaySound,,60,-1" + "OnPass" "human_water_button,Unlock,,60,-1" + "OnPass" "human_water_element_model,Disable,,0,-1" + "OnPass" "human_water_element_model,Enable,,60,-1" + "OnUser1" "!self,AddOutput,OnPass human_water_upgrade_pistol_effect:Stop::0:-1,0,1" + "OnUser1" "!self,AddOutput,OnPass human_water_upgrade_pistol_effect:Start::60:-1,0,1" +} +add: +{ + "origin" "-1976 9312 -4320" + "Template09" "filter_human_water" + "Template08" "human_water_upgrade_pistol_effect" + "Template07" "human_water_sound_use" + "Template06" "human_water_sound_recharge" + "Template05" "human_water_sound_lock" + "Template04" "human_water_pistol" + "Template03" "human_water_maker" + "Template02" "human_water_element_model" + "Template01" "human_water_button" + "targetname" "template_human_pistol_water" + "spawnflags" "2" + "classname" "point_template" + "hammerid" "2020648" + "OnEntitySpawned" "!self,Kill,,0.1,1" +} +add: +{ + "origin" "-1936 9311 -4328" + "targetname" "human_water_upgrade_pistol_effect" + "start_active" "0" + "parentname" "human_water_pistol" + "effect_name" "custom_particle_150" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 0 0" + "classname" "info_particle_system" + "hammerid" "2020659" +} +add: +{ + "origin" "-1936 9311 -4312" + "targetname" "human_water_maker" + "spawnflags" "0" + "PostSpawnSpeed" "0" + "PostSpawnInheritAngles" "0" + "PostSpawnDirectionVariance" "0.15" + "PostSpawnDirection" "0 0 0" + "parentname" "human_water_pistol" + "EntityTemplate" "template_human_water_push_maker" + "angles" "0 0 0" + "classname" "env_entity_maker" + "hammerid" "2028371" +} +add: +{ + "origin" "-1976 9200 -4376" + "targetname" "filter_human_fire" + "Negated" "Allow entities that match criteria" + "filtername" "human_fire" + "classname" "filter_activator_name" + "hammerid" "2030907" + "OnPass" "human_fire_maker,ForceSpawn,,0,-1" + "OnPass" "human_fire_sound_use,PlaySound,,0,-1" + "OnPass" "human_fire_button,Lock,,0,-1" + "OnPass" "human_fire_sound_recharge,PlaySound,,60,-1" + "OnPass" "human_fire_button,Unlock,,60,-1" + "OnPass" "human_fire_element_model,Disable,,0,-1" + "OnPass" "human_fire_element_model,Enable,,60,-1" + "OnUser1" "!self,AddOutput,OnPass human_fire_upgrade_pistol_effect:Stop::0:-1,0,1" + "OnUser1" "!self,AddOutput,OnPass human_fire_upgrade_pistol_effect:Start::60:-1,0,1" +} +add: +{ + "origin" "-1976 9200 -4320" + "Template09" "filter_human_fire" + "Template08" "human_fire_upgrade_pistol_effect" + "Template07" "human_fire_sound_use" + "Template06" "human_fire_sound_recharge" + "Template05" "human_fire_sound_lock" + "Template04" "human_fire_pistol" + "Template03" "human_fire_maker" + "Template02" "human_fire_element_model" + "Template01" "human_fire_button" + "targetname" "template_human_pistol_fire" + "spawnflags" "2" + "classname" "point_template" + "hammerid" "2030909" + "OnEntitySpawned" "!self,Kill,,0.1,1" +} +add: +{ + "origin" "-1936 9199 -4328" + "targetname" "human_fire_upgrade_pistol_effect" + "start_active" "0" + "parentname" "human_fire_pistol" + "effect_name" "custom_particle_071" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 0 0" + "classname" "info_particle_system" + "hammerid" "2030920" +} +add: +{ + "origin" "-1768 9200 -4296" + "targetname" "human_fire_maker" + "spawnflags" "0" + "PostSpawnSpeed" "0" + "PostSpawnInheritAngles" "0" + "PostSpawnDirectionVariance" "0.15" + "PostSpawnDirection" "0 0 0" + "parentname" "human_fire_pistol" + "EntityTemplate" "template_human_fire" + "angles" "0 0 0" + "classname" "env_entity_maker" + "hammerid" "2031350" + "OnEntitySpawned" "human_rock_movelinear*,Open,,0.01,-1" +} +add: +{ + "origin" "-1976 9088 -4376" + "targetname" "filter_human_heal" + "Negated" "Allow entities that match criteria" + "filtername" "human_heal" + "classname" "filter_activator_name" + "hammerid" "2031373" + "OnPass" "human_heal_maker,ForceSpawn,,0,-1" + "OnPass" "human_heal_sound_use,PlaySound,,0,-1" + "OnPass" "human_heal_button,Lock,,0,-1" + "OnPass" "human_heal_sound_recharge,PlaySound,,60,-1" + "OnPass" "human_heal_button,Unlock,,60,-1" + "OnPass" "human_heal_element_model,Disable,,0,-1" + "OnPass" "human_heal_element_model,Enable,,60,-1" + "OnUser1" "!self,AddOutput,OnPass human_heal_upgrade_pistol_effect:Stop::0:-1,0,1" + "OnUser1" "!self,AddOutput,OnPass human_heal_upgrade_pistol_effect:Start::60:-1,0,1" +} +add: +{ + "origin" "-1976 9088 -4320" + "Template09" "filter_human_heal" + "Template08" "human_heal_upgrade_pistol_effect" + "Template07" "human_heal_sound_use" + "Template06" "human_heal_sound_recharge" + "Template05" "human_heal_sound_lock" + "Template04" "human_heal_pistol" + "Template03" "human_heal_maker" + "Template02" "human_heal_element_model" + "Template01" "human_heal_button" + "targetname" "template_human_pistol_heal" + "spawnflags" "2" + "classname" "point_template" + "hammerid" "2031375" + "OnEntitySpawned" "!self,Kill,,0.1,1" +} +add: +{ + "origin" "-1936 9087 -4328" + "targetname" "human_heal_upgrade_pistol_effect" + "start_active" "0" + "parentname" "human_heal_pistol" + "effect_name" "custom_particle_106" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 0 0" + "classname" "info_particle_system" + "hammerid" "2031386" +} +add: +{ + "origin" "-1976 9088 -4320" + "targetname" "human_heal_maker" + "spawnflags" "0" + "PostSpawnSpeed" "0" + "PostSpawnInheritAngles" "0" + "PostSpawnDirectionVariance" "0.15" + "PostSpawnDirection" "0 0 0" + "parentname" "human_heal_pistol" + "EntityTemplate" "template_human_heal" + "angles" "0 0 0" + "classname" "env_entity_maker" + "hammerid" "2039188" +} +add: +{ + "origin" "-192 9024 -4376" + "Template04" "human_fire_upgrade_spawn" + "Template03" "human_fire_upgrade_sound" + "Template02" "human_fire_upgrade_hurt_*" + "Template01" "human_fire_upgrade_effect_*" + "targetname" "template_human_fire_upgrade" + "spawnflags" "2" + "classname" "point_template" + "hammerid" "2410341" +} +add: +{ + "origin" "-192 9024 -4376" + "targetname" "human_fire_upgrade_effect_1" + "start_active" "0" + "effect_name" "custom_particle_066" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 0 0" + "classname" "info_particle_system" + "hammerid" "2410343" +} +add: +{ + "origin" "-192 9024 -4360" + "targetname" "human_fire_upgrade_spawn" + "StartDisabled" "0" + "spawnflags" "0" + "classname" "logic_relay" + "hammerid" "2410408" + "OnSpawn" "!self,Kill,,0.1,1" + "OnSpawn" "human_fire_upgrade_sound,FireUser1,,0,1" + "OnSpawn" "human_fire_upgrade_hurt_1,Enable,,1,1" + "OnSpawn" "human_fire_upgrade_effect_1,Start,,1,1" + "OnSpawn" "human_fire_upgrade_hurt_1,Kill,,1.5,1" + "OnSpawn" "human_fire_upgrade_hurt_2,Enable,,2,1" + "OnSpawn" "human_fire_upgrade_hurt_3,Enable,,3,1" + "OnSpawn" "human_fire_upgrade_hurt_2,Kill,,2.5,1" + "OnSpawn" "human_fire_upgrade_hurt_3,Kill,,3.5,1" + "OnSpawn" "human_fire_upgrade_effect_2,Start,,2,1" + "OnSpawn" "human_fire_upgrade_effect_3,Start,,3,1" + "OnSpawn" "human_fire_upgrade_effect_*,Kill,,4,1" +} +add: +{ + "origin" "-192 8512 -4376" + "Template04" "human_fire_spawn" + "Template03" "human_fire_sound" + "Template02" "human_fire_hurt" + "Template01" "human_fire_effect" + "targetname" "template_human_fire" + "spawnflags" "2" + "classname" "point_template" + "hammerid" "2291334" +} +add: +{ + "origin" "-192 8512 -4376" + "targetname" "human_fire_effect" + "start_active" "0" + "effect_name" "custom_particle_063" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 0 0" + "classname" "info_particle_system" + "hammerid" "2291336" +} +add: +{ + "origin" "-192 8512 -4360" + "targetname" "human_fire_spawn" + "StartDisabled" "0" + "spawnflags" "0" + "classname" "logic_relay" + "hammerid" "2291401" + "OnSpawn" "!self,Kill,,0.1,1" + "OnSpawn" "human_fire_effect,Kill,,1.5,1" + "OnSpawn" "human_fire_hurt,Kill,,1.5,1" + "OnSpawn" "human_fire_sound,FireUser1,,1,1" + "OnSpawn" "human_fire_hurt,Enable,,1,1" + "OnSpawn" "human_fire_effect,Start,,1,1" +} +add: +{ + "origin" "-1536 8384 -4376" + "Template05" "human_water_spawn" + "Template04" "human_water_push_effect" + "Template03" "human_water_push" + "Template02" "human_water_trigger_effect" + "Template01" "human_water_trigger" + "targetname" "template_human_water" + "spawnflags" "2" + "classname" "point_template" + "hammerid" "2049095" +} +add: +{ + "origin" "-1536 8384 -4376" + "targetname" "human_water_trigger_effect" + "start_active" "1" + "effect_name" "custom_particle_147" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 0 0" + "classname" "info_particle_system" + "hammerid" "2049097" +} +add: +{ + "origin" "-1536 8384 -4360" + "targetname" "human_water_spawn" + "StartDisabled" "0" + "spawnflags" "0" + "classname" "logic_relay" + "hammerid" "2049162" + "OnSpawn" "!self,Kill,,0.1,1" + "OnSpawn" "human_water_trigger,Kill,,10,1" + "OnSpawn" "human_water_trigger_effect,Kill,,10,1" + "OnSpawn" "human_water_push,Enable,,10,1" + "OnSpawn" "human_water_push_effect,Start,,10,1" + "OnSpawn" "human_water_push,Kill,,10.3,1" + "OnSpawn" "human_water_push_effect,Kill,,11,1" +} +add: +{ + "origin" "-1536 8384 -4320" + "targetname" "human_water_push_maker" + "spawnflags" "0" + "PostSpawnSpeed" "0" + "PostSpawnInheritAngles" "0" + "PostSpawnDirectionVariance" "0.15" + "PostSpawnDirection" "0 0 0" + "EntityTemplate" "template_human_water" + "angles" "0 0 0" + "classname" "env_entity_maker" + "hammerid" "2241394" +} +add: +{ + "origin" "-1536 8384 -4320" + "Template02" "human_water_push_maker_spawn" + "Template01" "human_water_push_maker" + "targetname" "template_human_water_push_maker" + "spawnflags" "2" + "classname" "point_template" + "hammerid" "2241427" +} +add: +{ + "origin" "-1536 8384 -4304" + "targetname" "human_water_push_maker_spawn" + "StartDisabled" "0" + "spawnflags" "0" + "classname" "logic_relay" + "hammerid" "2241436" + "OnSpawn" "!self,Kill,,0.1,1" + "OnSpawn" "human_water_push_maker,AddOutput,angles 0 0 0,0,1" + "OnSpawn" "human_water_push_maker,ForceSpawn,,0.01,1" + "OnSpawn" "human_water_push_maker,Kill,,0.02,1" +} +add: +{ + "origin" "-1536 8384 -4376" + "targetname" "human_water_push_effect" + "start_active" "0" + "effect_name" "custom_particle_144" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 180 0" + "classname" "info_particle_system" + "hammerid" "2049442" +} +add: +{ + "origin" "-1792 7104 -4360" + "targetname" "human_heal_spawn" + "StartDisabled" "0" + "spawnflags" "0" + "classname" "logic_relay" + "hammerid" "2047878" + "OnSpawn" "!self,Kill,,0.1,1" + "OnSpawn" "human_heal_effect,Kill,,7,1" + "OnSpawn" "human_heal_trigger,Kill,,7,1" + "OnSpawn" "human_heal_sound,FireUser1,,0.01,1" +} +add: +{ + "origin" "-1792 7104 -4376" + "Template04" "human_heal_sound" + "Template03" "human_heal_spawn" + "Template02" "human_heal_trigger" + "Template01" "human_heal_effect" + "targetname" "template_human_heal" + "spawnflags" "2" + "classname" "point_template" + "hammerid" "2039237" +} +add: +{ + "origin" "-1792 7104 -4376" + "targetname" "human_heal_effect" + "start_active" "1" + "effect_name" "custom_particle_096" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 0 0" + "classname" "info_particle_system" + "hammerid" "2039239" +} +add: +{ + "origin" "2824 -8936 1768" + "targetname" "garland_cyclone_thruster" + "spawnflags" "63" + "force" "860" + "attach1" "garland_cyclone_body" + "angles" "0 270 0" + "classname" "phys_thruster" + "hammerid" "1876360" +} +add: +{ + "origin" "2824 -8904 1768" + "targetname" "garland_cyclone_thruster" + "spawnflags" "63" + "force" "860" + "attach1" "garland_cyclone_body" + "angles" "0 90 0" + "classname" "phys_thruster" + "hammerid" "1876362" +} +add: +{ + "origin" "2824 -8920 1768" + "targetname" "garland_cyclone_thruster" + "spawnflags" "63" + "force" "860" + "attach1" "garland_cyclone_body" + "angles" "0 0 0" + "classname" "phys_thruster" + "hammerid" "1876364" +} +add: +{ + "origin" "2880 -8920 1768" + "targetname" "garland_cyclone_spawn" + "StartDisabled" "0" + "spawnflags" "0" + "classname" "logic_relay" + "hammerid" "1876370" + "OnSpawn" "!self,Kill,,0.1,1" + "OnSpawn" "garland_cyclone_shake,Kill,,7,1" + "OnSpawn" "garland_cyclone_timer,Kill,,7,1" + "OnSpawn" "garland_cyclone_body,Kill,,7,1" + "OnSpawn" "garland_cyclone_measure,Kill,,7,1" + "OnSpawn" "garland_cyclone_hurt,Kill,,7,1" + "OnSpawn" "garland_cyclone_push,Kill,,7,1" + "OnSpawn" "garland_cyclone_effect,Kill,,7,1" + "OnSpawn" "garland_cyclone_thruster,Kill,,7,1" + "OnSpawn" "garland_cyclone_keepupright,Kill,,7,1" +} +add: +{ + "origin" "2808 -8936 1768" + "TargetScale" "1" + "TargetReference" "garland_cyclone_body" + "targetname" "garland_cyclone_measure" + "Target" "garland_cyclone_hurt" + "MeasureType" "0" + "MeasureTarget" "garland_cyclone_body" + "MeasureReference" "garland_cyclone_body" + "classname" "logic_measure_movement" + "hammerid" "1876375" +} +add: +{ + "origin" "2808 -8904 1768" + "UseRandomTime" "1" + "UpperRandomBound" "0.15" + "targetname" "garland_cyclone_timer" + "StartDisabled" "0" + "spawnflags" "0" + "LowerRandomBound" "0.05" + "classname" "logic_timer" + "hammerid" "1876377" + "OnTimer" "garland_cyclone_shake,StartShake,,0,-1" +} +add: +{ + "origin" "2848 -8920 1768" + "targetname" "garland_cyclone_shake" + "spawnflags" "4" + "radius" "512" + "parentname" "garland_cyclone_body" + "frequency" "200" + "duration" "5" + "amplitude" "4" + "classname" "env_shake" + "hammerid" "1876379" +} +add: +{ + "origin" "2864 -8920 1768" + "targetname" "garland_cyclone_effect" + "start_active" "1" + "parentname" "garland_cyclone_hurt" + "effect_name" "custom_particle_036" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 270 0" + "classname" "info_particle_system" + "hammerid" "1876382" +} +add: +{ + "origin" "320 8512 -4256" + "Template07" "filter_zombie_gravity" + "Template06" "zombie_gravity_button" + "Template05" "zombie_gravity_strip" + "Template04" "zombie_gravity_knife_effect" + "Template03" "zombie_gravity_knife" + "Template02" "zombie_gravity_effect" + "Template01" "zombie_gravity_push" + "targetname" "template_zombie_knife_gravity" + "spawnflags" "2" + "classname" "point_template" + "hammerid" "2266532" + "OnEntitySpawned" "!self,Kill,,0.1,1" +} +add: +{ + "origin" "352 8512 -4264" + "targetname" "zombie_gravity_knife_effect" + "start_active" "1" + "parentname" "zombie_gravity_knife" + "effect_name" "custom_particle_325" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 0 0" + "classname" "info_particle_system" + "hammerid" "2266542" +} +add: +{ + "origin" "320 8512 -4240" + "targetname" "filter_zombie_gravity" + "Negated" "Allow entities that match criteria" + "filtername" "zombie_gravity" + "classname" "filter_activator_name" + "hammerid" "2266607" + "OnPass" "zombie_gravity_effect,Start,,0,-1" + "OnPass" "zombie_gravity_push,Enable,,0,-1" + "OnPass" "zombie_gravity_knife_effect,Stop,,0,-1" + "OnPass" "zombie_gravity_button,Lock,,0,-1" + "OnPass" "zombie_gravity_effect,Stop,,3,-1" + "OnPass" "zombie_gravity_push,Disable,,3,-1" + "OnPass" "zombie_gravity_knife_effect,Start,,60,-1" + "OnPass" "zombie_gravity_button,Unlock,,60,-1" +} +add: +{ + "origin" "320 8512 -4232" + "targetname" "zombie_gravity_effect" + "start_active" "0" + "parentname" "zombie_gravity_knife" + "effect_name" "custom_particle_321" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 0 0" + "classname" "info_particle_system" + "hammerid" "2266609" + "OnUser1" "!self,Start,,0,-1" + "OnUser1" "!self,Stop,,1,-1" +} +add: +{ + "origin" "-8992 -1608.31 774.425" + "targetname" "bahamut_laser_effect" + "start_active" "1" + "parentname" "bahamut_laser_movelinear" + "effect_name" "custom_particle_001" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 0 -90" + "classname" "info_particle_system" + "hammerid" "2450460" +} +add: +{ + "origin" "-8992 -1512.31 774.425" + "targetname" "bahamut_laser_effect" + "start_active" "1" + "parentname" "bahamut_laser_movelinear" + "effect_name" "custom_particle_001" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 0 -90" + "classname" "info_particle_system" + "hammerid" "2450525" +} +add: +{ + "origin" "-9028 -1376.31 774.425" + "targetname" "bahamut_laser_effect" + "start_active" "1" + "parentname" "bahamut_laser_movelinear" + "effect_name" "custom_particle_001" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 22.5 -90" + "classname" "info_particle_system" + "hammerid" "2450590" +} +add: +{ + "origin" "-9112 -1256.31 774.425" + "targetname" "bahamut_laser_effect" + "start_active" "1" + "parentname" "bahamut_laser_movelinear" + "effect_name" "custom_particle_001" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 45 -90" + "classname" "info_particle_system" + "hammerid" "2450655" +} +add: +{ + "origin" "-8992 -1735.69 775" + "targetname" "bahamut_laser_effect" + "start_active" "1" + "parentname" "bahamut_laser_movelinear" + "effect_name" "custom_particle_001" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 0 90" + "classname" "info_particle_system" + "hammerid" "2450720" +} +add: +{ + "origin" "-8992 -1831.69 775" + "targetname" "bahamut_laser_effect" + "start_active" "1" + "parentname" "bahamut_laser_movelinear" + "effect_name" "custom_particle_001" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 0 90" + "classname" "info_particle_system" + "hammerid" "2450785" +} +add: +{ + "origin" "-9028 -1967.69 775" + "targetname" "bahamut_laser_effect" + "start_active" "1" + "parentname" "bahamut_laser_movelinear" + "effect_name" "custom_particle_001" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 337.5 90" + "classname" "info_particle_system" + "hammerid" "2450850" +} +add: +{ + "origin" "-9112 -2087.69 775" + "targetname" "bahamut_laser_effect" + "start_active" "1" + "parentname" "bahamut_laser_movelinear" + "effect_name" "custom_particle_001" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 315 90" + "classname" "info_particle_system" + "hammerid" "2450915" +} +add: +{ + "origin" "-9632 -1672 744" + "Template05" "ladylilith_rock_burst_spawn" + "Template04" "ladylilith_rock_burst_movelinear" + "Template03" "ladylilith_rock_burst_model" + "Template02" "ladylilith_rock_burst_hurt" + "Template01" "ladylilith_rock_burst_effect" + "targetname" "template_ladylilith_rock_burst" + "spawnflags" "0" + "classname" "point_template" + "hammerid" "2346004" +} +add: +{ + "origin" "-9632 -1672 760" + "targetname" "ladylilith_rock_burst_spawn" + "StartDisabled" "0" + "spawnflags" "0" + "classname" "logic_relay" + "hammerid" "2346009" + "OnSpawn" "ladylilith_rock_burst_movelinear,Open,,0.01,1" + "OnSpawn" "!self,Kill,,0.1,-1" +} +add: +{ + "origin" "-9632 -1672 744" + "targetname" "ladylilith_rock_burst_effect" + "start_active" "0" + "effect_name" "custom_particle_164" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 0 0" + "classname" "info_particle_system" + "hammerid" "2346039" +} +add: +{ + "origin" "-1560 7616 -4320" + "Template05" "human_water_upgrade_push_round" + "Template04" "human_water_upgrade_trigger" + "Template03" "human_water_upgrade_push_round_spawn" + "Template02" "human_water_upgrade_push_forward_effect" + "Template01" "human_water_upgrade_push_round_effect" + "targetname" "template_human_water_upgrade_push_round" + "spawnflags" "2" + "classname" "point_template" + "hammerid" "2050140" +} +add: +{ + "origin" "-1544 7616 -4320" + "targetname" "human_water_upgrade_push_forward_effect" + "start_active" "1" + "effect_name" "custom_particle_156" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 0 0" + "classname" "info_particle_system" + "hammerid" "2050142" +} +add: +{ + "origin" "-1560 7616 -4304" + "targetname" "human_water_upgrade_push_round_spawn" + "StartDisabled" "0" + "spawnflags" "0" + "classname" "logic_relay" + "hammerid" "2050207" + "OnSpawn" "!self,Kill,,0.1,1" + "OnSpawn" "template_human_water_upgrade_push_forward,ForceSpawn,,0.01,1" +} +add: +{ + "origin" "-1544 7616 -4336" + "TargetScale" "1" + "TargetReference" "human_water_upgrade_push_forward_effect" + "targetname" "human_water_upgrade_push_forward_measure" + "Target" "human_water_upgrade_push_forward" + "MeasureType" "0" + "MeasureTarget" "human_water_upgrade_push_forward_effect" + "MeasureReference" "human_water_upgrade_push_forward_effect" + "classname" "logic_measure_movement" + "hammerid" "2050638" +} +add: +{ + "origin" "-1544 7616 -4320" + "Template03" "human_water_upgrade_push_forward_spawn" + "Template02" "human_water_upgrade_push_forward" + "Template01" "human_water_upgrade_push_forward_measure" + "targetname" "template_human_water_upgrade_push_forward" + "spawnflags" "2" + "classname" "point_template" + "hammerid" "2050657" +} +add: +{ + "origin" "-1544 7616 -4304" + "targetname" "human_water_upgrade_push_forward_spawn" + "StartDisabled" "0" + "spawnflags" "0" + "classname" "logic_relay" + "hammerid" "2050800" + "OnSpawn" "!self,Kill,,0.1,1" + "OnSpawn" "human_water_upgrade_push_forward_measure,Kill,,0.01,1" + "OnSpawn" "human_water_upgrade_push_round,SetParent,human_water_upgrade_push_forward,0.01,1" + "OnSpawn" "human_water_upgrade_push_forward_effect,Kill,,1.5,1" + "OnSpawn" "human_water_upgrade_push_round_effect,Start,,1.5,1" + "OnSpawn" "human_water_upgrade_push_forward,Kill,,2,1" + "OnSpawn" "human_water_upgrade_trigger,Enable,,2,1" + "OnSpawn" "human_water_upgrade_trigger,Disable,,7,1" + "OnSpawn" "human_water_upgrade_push_round_effect,Kill,,7,1" + "OnSpawn" "human_water_upgrade_trigger,Kill,,8,1" + "OnSpawn" "human_water_upgrade_push_round,Enable,,1.5,1" +} +add: +{ + "origin" "-512 7616 -4320" + "targetname" "human_water_upgrade_push_round_effect" + "start_active" "0" + "effect_name" "custom_particle_158" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 0 0" + "classname" "info_particle_system" + "hammerid" "2179304" +} +add: +{ + "origin" "2936 -8584 1823.69" + "targetname" "garland_flare_lazer_effect" + "start_active" "1" + "parentname" "garland_flare_lazer_move" + "effect_name" "custom_particle_039" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 0 0" + "classname" "info_particle_system" + "hammerid" "1909448" +} +add: +{ + "origin" "2936 -8584 1919.69" + "targetname" "garland_flare_lazer_effect" + "start_active" "1" + "parentname" "garland_flare_lazer_move" + "effect_name" "custom_particle_039" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 0 0" + "classname" "info_particle_system" + "hammerid" "1909513" +} +add: +{ + "origin" "2900 -8584 2055.69" + "targetname" "garland_flare_lazer_effect" + "start_active" "1" + "parentname" "garland_flare_lazer_move" + "effect_name" "custom_particle_039" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "-22.5 0 0" + "classname" "info_particle_system" + "hammerid" "1909578" +} +add: +{ + "origin" "2816 -8584 2175.69" + "targetname" "garland_flare_lazer_effect" + "start_active" "1" + "parentname" "garland_flare_lazer_move" + "effect_name" "custom_particle_039" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "-45 0 0" + "classname" "info_particle_system" + "hammerid" "1909643" +} +add: +{ + "origin" "2832 -8600 3896" + "targetname" "lilith_command" + "StartDisabled" "0" + "spawnflags" "0" + "classname" "logic_relay" + "hammerid" "3556291" + "OnTrigger" "server_command,Command,say Lilith -- < Pathetic humans... >,0,1" + "OnTrigger" "!self,Kill,,0.1,1" +} +add: +{ + "origin" "2832 -8552 3136" + "targetname" "tyrant_command" + "StartDisabled" "0" + "spawnflags" "0" + "classname" "logic_relay" + "hammerid" "3556351" + "OnTrigger" "!self,Kill,,0.1,1" + "OnTrigger" "server_command,Command,say < Tyrant is entering Berserk mode >,0,1" +} +add: +{ + "origin" "2920 -8584 1768" + "targetname" "garland_searing_implosion_effect_explosion" + "start_active" "0" + "parentname" "garland_searing_implosion_tracktrain" + "effect_name" "custom_particle_048" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 90 0" + "classname" "info_particle_system" + "hammerid" "3483392" + "OnUser1" "!self,Start,,0,1" + "OnUser1" "!self,Kill,,1,1" +} +add: +{ + "origin" "2848 -7848 3928" + "targetname" "lilith_extreme_ruin_aurora_effect" + "start_active" "0" + "effect_name" "custom_particle_204" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 270 0" + "classname" "info_particle_system" + "hammerid" "3204549" +} +add: +{ + "origin" "3368 -8064 3928" + "targetname" "lilith_extreme_ruin_aurora_effect" + "start_active" "0" + "effect_name" "custom_particle_204" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 225 0" + "classname" "info_particle_system" + "hammerid" "3205394" +} +add: +{ + "origin" "2112 -8584 3928" + "targetname" "lilith_extreme_ruin_aurora_effect" + "start_active" "0" + "effect_name" "custom_particle_204" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 0 0" + "classname" "info_particle_system" + "hammerid" "3206629" +} +add: +{ + "origin" "2328 -8064 3928" + "targetname" "lilith_extreme_ruin_aurora_effect" + "start_active" "0" + "effect_name" "custom_particle_204" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 315 0" + "classname" "info_particle_system" + "hammerid" "3206954" +} +add: +{ + "origin" "-440 3216 -248" + "UseRandomTime" "0" + "targetname" "zombie_detect_timer" + "StartDisabled" "1" + "spawnflags" "0" + "RefireTime" "1" + "classname" "logic_timer" + "hammerid" "3021086" + "OnTimer" "zombie_detect_counter,Subtract,1,0,-1" +} +add: +{ + "origin" "-6752 -1879.42 1880" + "targetname" "td_pharos_indoor_effect" + "start_active" "0" + "effect_name" "custom_particle_246" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 0 0" + "classname" "info_particle_system" + "hammerid" "2780966" +} +add: +{ + "origin" "-6176 952 1688" + "targetname" "td_bahamut_fall_modify_effect" + "start_active" "1" + "effect_name" "custom_particle_246" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 180 0" + "classname" "info_particle_system" + "hammerid" "2781607" +} +add: +{ + "origin" "7968 0 -4408" + "targetname" "golem_effect" + "start_active" "0" + "parentname" "golem_body" + "effect_name" "custom_particle_059" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 0 0" + "classname" "info_particle_system" + "hammerid" "2767738" +} +add: +{ + "origin" "-440 3328 -248" + "targetname" "stage_savage_or_ultimate_item_spawn" + "StartDisabled" "0" + "spawnflags" "0" + "classname" "logic_relay" + "hammerid" "2745035" + "OnTrigger" "template_maker,AddOutput,EntityTemplate template_human_pistol_gravity,0,1" + "OnTrigger" "stage_savage_or_ultimate_item_origin_case,PickRandomShuffle,,0.02,1" + "OnTrigger" "template_maker,ForceSpawn,,0.04,1" + "OnTrigger" "template_maker,AddOutput,EntityTemplate template_human_pistol_rock,0.06,1" + "OnTrigger" "stage_savage_or_ultimate_item_origin_case,PickRandomShuffle,,0.08,1" + "OnTrigger" "template_maker,ForceSpawn,,0.1,1" + "OnTrigger" "template_maker,AddOutput,EntityTemplate template_human_pistol_water,0.12,1" + "OnTrigger" "stage_savage_or_ultimate_item_origin_case,PickRandomShuffle,,0.14,1" + "OnTrigger" "template_maker,ForceSpawn,,0.22,1" + "OnTrigger" "template_maker,AddOutput,EntityTemplate template_human_pistol_fire,0.18,1" + "OnTrigger" "stage_savage_or_ultimate_item_origin_case,PickRandomShuffle,,0.2,1" + "OnTrigger" "template_maker,ForceSpawn,,0.16,1" + "OnTrigger" "template_maker,AddOutput,EntityTemplate template_human_pistol_heal,0.24,1" + "OnTrigger" "stage_savage_or_ultimate_item_origin_case,PickRandomShuffle,,0.26,1" + "OnTrigger" "template_maker,ForceSpawn,,0.28,1" + "OnTrigger" "template_maker,AddOutput,EntityTemplate template_zombie_knife_warp,0.3,1" + "OnTrigger" "stage_savage_or_ultimate_item_origin_case,PickRandomShuffle,,0.32,1" + "OnTrigger" "template_maker,ForceSpawn,,0.34,1" + "OnTrigger" "template_maker,AddOutput,EntityTemplate template_zombie_knife_gravity,0.36,1" + "OnTrigger" "stage_savage_or_ultimate_item_origin_case,PickRandomShuffle,,0.38,1" + "OnTrigger" "template_maker,ForceSpawn,,0.4,1" + "OnTrigger" "stage_savage_or_ultimate_item_origin_case,Kill,,1,1" + "OnTrigger" "!self,Kill,,1,1" + "OnTrigger" "template_maker,Kill,,1,1" + "OnTrigger" "template_human_pistol_*,Kill,,1,1" + "OnTrigger" "template_zombie_knife_*,Kill,,1,1" + "OnTrigger" "template_maker,AddOutput,EntityTemplate template_zombie_knife_sword,0.42,1" + "OnTrigger" "stage_savage_or_ultimate_item_origin_case,PickRandomShuffle,,0.44,1" + "OnTrigger" "template_maker,ForceSpawn,,0.46,1" + "OnTrigger" "template_maker,AddOutput,EntityTemplate template_zombie_knife_electric,0.48,1" + "OnTrigger" "stage_savage_or_ultimate_item_origin_case,PickRandomShuffle,,0.5,1" + "OnTrigger" "template_maker,ForceSpawn,,0.52,1" + "OnTrigger" "template_maker,AddOutput,EntityTemplate template_zombie_knife_parasitic,0.54,1" + "OnTrigger" "stage_savage_or_ultimate_item_origin_case,PickRandomShuffle,,0.56,1" + "OnTrigger" "template_maker,ForceSpawn,,0.58,1" + "OnTrigger" "zombie_gravity_knife_effect,Start,,5,1" + "OnTrigger" "zombie_warp_knife_effect,Start,,5,1" + "OnTrigger" "zombie_electric_knife_effect,Start,,5,1" + "OnTrigger" "zombie_parasitic_knife_effect,Start,,5,1" + "OnTrigger" "zombie_sword_knife_effect,Start,,5,1" +} +add: +{ + "origin" "-376 3136 -248" + "Template01" "event_stocker" + "targetname" "template_event_stocker" + "spawnflags" "2" + "classname" "point_template" + "hammerid" "2745590" + "OnEntitySpawned" "event_stocker,AddOutput,classname func_brush,0.01,-1" +} +add: +{ + "origin" "2848 -8584 3896" + "targetname" "lilith_extreme_dream_weaver_effect" + "start_active" "0" + "effect_name" "custom_particle_012" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 0 0" + "classname" "info_particle_system" + "hammerid" "2647091" + "OnUser1" "!self,Start,,0,-1" + "OnUser1" "!self,Stop,,10,-1" +} +add: +{ + "origin" "-456 3328 -248" + "targetname" "stage_savage_or_ultimate_item_origin_case" + "classname" "logic_case" + "hammerid" "2611466" + "OnCase01" "template_maker,AddOutput,origin -96 -2632 -1240,0,1" + "OnCase02" "template_maker,AddOutput,origin 1184 -2632 -1240,0,1" + "OnCase03" "template_maker,AddOutput,origin 168 -2632 -1624,0,1" + "OnCase04" "template_maker,AddOutput,origin 968 -2632 -1624,0,1" + "OnCase05" "template_maker,AddOutput,origin 568 -2288 -1624,0,1" + "OnCase06" "template_maker,AddOutput,origin 568 -3032 -1624,0,1" + "OnCase07" "template_maker,AddOutput,origin 1120 -3216 -1184,0,1" + "OnCase08" "template_maker,AddOutput,origin 1120 -3840 -1184,0,1" + "OnCase09" "template_maker,AddOutput,origin 2112 -7012 1224,0,1" + "OnCase10" "template_maker,AddOutput,origin 4580 -7404 1064,0,1" + "OnCase11" "template_maker,AddOutput,origin 2470 -7582 1252,0,1" + "OnCase12" "template_maker,AddOutput,origin 4044 -8615 1732,0,1" +} +add: +{ + "origin" "-6712 420.998 744" + "targetname" "td_pharos_effect" + "start_active" "1" + "effect_name" "custom_particle_246" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 180 0" + "classname" "info_particle_system" + "hammerid" "2573957" +} +add: +{ + "origin" "8000 0 -4392" + "targetname" "golem_spawn" + "StartDisabled" "0" + "spawnflags" "0" + "classname" "logic_relay" + "hammerid" "2552906" + "OnSpawn" "!self,Kill,,0.1,1" + "OnSpawn" "golem_physbox,FireUser1,,2,1" + "OnSpawn" "golem_model,SetAnimation,run,2,1" + "OnSpawn" "golem_model,SetDefaultAnimation,run,2,1" + "OnSpawn" "golem_body,SetDamageFilter,,2,1" + "OnSpawn" "golem_hurt,Enable,,2,1" + "OnSpawn" "golem_effect,Start,,2,1" +} +add: +{ + "origin" "-392 3184 -248" + "targetname" "filter_fall_ignore" + "Negated" "1" + "damagetype" "32" + "classname" "filter_damage_type" + "hammerid" "2542453" +} +add: +{ + "origin" "2816 -8584 3896" + "targetname" "lilith_extreme_rock_burst_maker" + "spawnflags" "0" + "PostSpawnSpeed" "0" + "PostSpawnInheritAngles" "0" + "PostSpawnDirectionVariance" "0.15" + "PostSpawnDirection" "0 0 0" + "parentname" "lilith_body" + "EntityTemplate" "template_human_rock" + "angles" "0 180 0" + "classname" "env_entity_maker" + "hammerid" "2532033" +} +add: +{ + "origin" "3794 -9250 672" + "Template02" "stage_savage_final_rock_model" + "Template01" "stage_savage_final_rock_body" + "targetname" "template_stage_savage_final_rock" + "spawnflags" "2" + "classname" "point_template" + "hammerid" "2518812" + "OnEntitySpawned" "!self,Kill,,0.1,1" +} +add: +{ + "origin" "-8916 -1672 776" + "targetname" "bahamut_mega_flare_spawn" + "StartDisabled" "0" + "spawnflags" "0" + "classname" "logic_relay" + "hammerid" "2519162" + "OnTrigger" "!self,Kill,,0.1,1" + "OnTrigger" "bahamut_mega_flare_hurt,FireUser1,,11,1" + "OnTrigger" "pharos_gate_door_4_*,Close,,13,1" + "OnTrigger" "bahamut_model,SetAnimation,final_attack_2,11,1" + "OnTrigger" "server_command,Command,say < Bahamut is casting Mega Flare! >,0,1" + "OnTrigger" "bahamut_laser_*,Kill,,11,1" + "OnTrigger" "bahamut_mega_flare_effect,FireUser1,,0,1" + "OnTrigger" "bahamut_mega_flare_cast_sound,FireUser1,,5,1" + "OnTrigger" "bahamut_mega_flare_explosion_sound,FireUser1,,11,1" + "OnTrigger" "bahamut_body,Kill,,12,1" + "OnTrigger" "bahamut_model,AddOutput,OnAnimationDone !self:AddOutput:renderfx 5:0:1,11.01,1" + "OnTrigger" "bahamut_model,SetDefaultAnimation,ragdoll,11.01,1" + "OnTrigger" "bahamut_model,AddOutput,OnAnimationDone !self:Kill::5:1,11.01,1" +} +add: +{ + "origin" "-9112 -1672 1024" + "targetname" "bahamut_mega_flare_effect" + "start_active" "0" + "effect_name" "custom_particle_002" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 0 0" + "classname" "info_particle_system" + "hammerid" "2519432" + "OnUser1" "!self,Start,,0,1" + "OnUser1" "!self,Kill,,13,1" +} +add: +{ + "origin" "-8932 -1672 776" + "targetname" "bahamut_laser_animation_case" + "classname" "logic_case" + "hammerid" "2476647" + "OnCase01" "bahamut_model,SetAnimation,attack,0,-1" + "OnCase02" "bahamut_model,SetAnimation,attack2,0,-1" + "OnCase03" "bahamut_model,SetAnimation,attack3,0,-1" + "OnCase04" "bahamut_model,SetAnimation,attack4,0,-1" + "OnCase05" "bahamut_model,SetAnimation,attack5,0,-1" +} +add: +{ + "origin" "-8996 -1672 776" + "Template04" "bahamut_laser_movelinear" + "Template03" "bahamut_laser_model" + "Template02" "bahamut_laser_hurt" + "Template01" "bahamut_laser_effect" + "targetname" "template_bahamut_laser" + "spawnflags" "0" + "classname" "point_template" + "hammerid" "2465757" + "OnEntitySpawned" "bahamut_laser_movelinear*,Open,,0.01,-1" +} +add: +{ + "origin" "-8980 -1672 776" + "targetname" "bahamut_laser_case" + "classname" "logic_case" + "hammerid" "2466200" + "OnCase01" "template_bahamut_laser_high,AddOutput,origin -8996 -1672 800,0,-1" + "OnCase01" "template_bahamut_laser_high,ForceSpawn,,0.05,-1" + "OnCase01" "bahamut_laser_tesla,DoSpark,,0.05,-1" + "OnCase01" "bahamut_laser_sound,PlaySound,,0.05,-1" + "OnCase01" "template_bahamut_laser,ForceSpawn,,0.05,-1" + "OnCase01" "template_bahamut_laser,AddOutput,origin -8996 -1672 800,0,-1" + "OnCase02" "template_bahamut_laser,AddOutput,origin -8996 -1672 776,0,-1" + "OnCase02" "template_bahamut_laser,ForceSpawn,,0.05,-1" + "OnCase02" "bahamut_laser_sound,PlaySound,,0.05,-1" + "OnCase02" "bahamut_laser_tesla,DoSpark,,0.05,-1" + "OnCase03" "template_bahamut_laser,AddOutput,origin -8996 -1672 768,0,-1" + "OnCase03" "template_bahamut_laser,ForceSpawn,,0.05,-1" + "OnCase03" "bahamut_laser_sound,PlaySound,,0.05,-1" + "OnCase03" "bahamut_laser_tesla,DoSpark,,0.05,-1" +} +add: +{ + "origin" "-8964 -1672 776" + "UseRandomTime" "1" + "UpperRandomBound" "1.3" + "targetname" "bahamut_laser_timer" + "StartDisabled" "1" + "spawnflags" "0" + "LowerRandomBound" "1.1" + "classname" "logic_timer" + "hammerid" "2466267" + "OnTimer" "bahamut_laser_case,PickRandom,,0,-1" + "OnTimer" "bahamut_laser_animation_case,PickRandomShuffle,,0,-1" + "OnTimer" "boss_attack_counter,Add,1,0,-1" +} +add: +{ + "origin" "320 9024 -4376" + "targetname" "human_fire_upgrade_effect_2" + "start_active" "0" + "effect_name" "custom_particle_066" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 0 0" + "classname" "info_particle_system" + "hammerid" "2410844" +} +add: +{ + "origin" "832 9024 -4376" + "targetname" "human_fire_upgrade_effect_3" + "start_active" "0" + "effect_name" "custom_particle_066" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 0 0" + "classname" "info_particle_system" + "hammerid" "2410909" +} +add: +{ + "origin" "2864 -8616 3136" + "targetname" "tyrant_attack_animation_case" + "classname" "logic_case" + "hammerid" "2281231" + "OnCase01" "tyrant_model,SetAnimation,attack,0,-1" + "OnCase02" "tyrant_model,SetAnimation,attack2,0,-1" + "OnCase04" "tyrant_model,SetAnimation,attack4,0,-1" + "OnCase03" "tyrant_model,SetAnimation,attack3,0,-1" +} +add: +{ + "origin" "2864 -8552 3136" + "TargetScale" "1" + "TargetReference" "tyrant_body" + "targetname" "tyrant_thunder_wing_measure" + "Target" "tyrant_thunder_wing_hurt" + "MeasureType" "0" + "MeasureTarget" "tyrant_body" + "MeasureReference" "tyrant_body" + "classname" "logic_measure_movement" + "hammerid" "2281339" +} +add: +{ + "origin" "648 7776 -4376" + "Template06" "zombie_electric_projectile_spawn" + "Template05" "zombie_electric_projectile_move" + "Template04" "zombie_electric_projectile_measure" + "Template03" "zombie_electric_projectile_hurt" + "Template02" "zombie_electric_projectile_effect" + "Template01" "zombie_electric_projectile_camera" + "targetname" "template_zombie_electric_projectile" + "spawnflags" "0" + "classname" "point_template" + "hammerid" "2240234" +} +add: +{ + "origin" "664 7776 -4376" + "TargetScale" "1" + "TargetReference" "zombie_electric_projectile_move" + "targetname" "zombie_electric_projectile_measure" + "Target" "zombie_electric_projectile_hurt" + "MeasureType" "0" + "MeasureTarget" "zombie_electric_projectile_move" + "MeasureReference" "zombie_electric_projectile_move" + "classname" "logic_measure_movement" + "hammerid" "2240305" +} +add: +{ + "origin" "648 7776 -4376" + "targetname" "zombie_electric_projectile_effect" + "start_active" "1" + "parentname" "zombie_electric_projectile_move" + "effect_name" "custom_particle_318" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 0 0" + "classname" "info_particle_system" + "hammerid" "2240387" +} +add: +{ + "origin" "632 7776 -4376" + "targetname" "zombie_electric_projectile_spawn" + "StartDisabled" "0" + "spawnflags" "0" + "classname" "logic_relay" + "hammerid" "2241049" + "OnSpawn" "!self,Kill,,0.1,1" + "OnSpawn" "zombie_electric_projectile_move,Open,,0.01,1" +} +add: +{ + "origin" "-360 3200 -248" + "targetname" "filter_physbox" + "Negated" "0" + "filterclass" "func_physbox" + "classname" "filter_activator_class" + "hammerid" "2242783" +} +add: +{ + "origin" "-408 3280 -248" + "targetname" "global_item_manager" + "Case02" "unlock" + "Case01" "lock" + "classname" "logic_case" + "hammerid" "2220458" + "OnCase01" "filter_zombie_electric,AddOutput,filtername zombie_electric_deactivate,0,-1" + "OnCase01" "filter_zombie_warp,AddOutput,filtername zombie_warp_deactivate,0,-1" + "OnCase01" "filter_zombie_gravity,AddOutput,filtername zombie_gravity_deactivate,0,-1" + "OnCase01" "filter_zombie_sword,AddOutput,filtername zombie_sword_deactivate,0,-1" + "OnCase01" "filter_zombie_parasitic,AddOutput,filtername zombie_parasitic_deactivate,0,-1" + "OnCase02" "filter_zombie_electric,AddOutput,filtername zombie_electric,0,-1" + "OnCase02" "filter_zombie_warp,AddOutput,filtername zombie_warp,0,-1" + "OnCase02" "filter_zombie_gravity,AddOutput,filtername zombie_gravity,0,-1" + "OnCase02" "filter_zombie_sword,AddOutput,filtername zombie_sword,0,-1" + "OnCase02" "filter_zombie_parasitic,AddOutput,filtername zombie_parasitic,0,-1" + "OnUser1" "!self,InValue,lock,0,-1" + "OnUser2" "!self,InValue,unlock,0,1" + "OnUser2" "!self,Kill,,0.1,1" +} +add: +{ + "origin" "3000 -8600 1768" + "targetname" "garland_sound_defeat_case" + "classname" "logic_case" + "hammerid" "2211027" + "OnCase01" "garland_sound_defeat_1,FireUser1,,0,1" + "OnCase01" "garland_sound_defeat_2,Kill,,0,1" + "OnCase01" "server_command,Command,say Garland -- < Impossible... I cannot be defeated >,0,1" + "OnCase02" "garland_sound_defeat_2,FireUser1,,0,1" + "OnCase02" "garland_sound_defeat_1,Kill,,0,1" + "OnCase02" "server_command,Command,say Garland -- < I have no regrets... The cycle continues >,0,1" + "OnUser1" "!self,PickRandom,,0,1" + "OnUser1" "!self,Kill,,0.1,1" +} +add: +{ + "origin" "3000 -8584 1768" + "targetname" "garland_sound_victory_case" + "classname" "logic_case" + "hammerid" "2211038" + "OnCase01" "garland_sound_victory_1,FireUser1,,0,1" + "OnCase01" "garland_sound_victory_2,Kill,,0,1" + "OnCase01" "server_command,Command,say Garland -- < The strong will always win. That is fate! >,0,1" + "OnCase01" "garland_wall,Kill,,0,1" + "OnCase02" "garland_sound_victory_2,FireUser1,,0,1" + "OnCase02" "garland_sound_victory_1,Kill,,0,1" + "OnCase02" "server_command,Command,say Garland -- < Is there no one who can defeat me? There is no limit to my strength! >,0,1" + "OnCase02" "boss_thrusterforward,AddOutput,force 3600,0,1" + "OnCase02" "garland_hurt,AddOutput,damage 99999999,0,1" + "OnUser1" "!self,PickRandom,,0,1" + "OnUser1" "!self,Kill,,0.1,1" +} +add: +{ + "origin" "2848 -8584 3224" + "targetname" "tyrant_thunder_wing_effect" + "start_active" "0" + "parentname" "tyrant_body" + "effect_name" "custom_particle_279" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 0 0" + "classname" "info_particle_system" + "hammerid" "2190779" + "OnUser1" "!self,Stop,,5,-1" + "OnUser1" "!self,Start,,0,-1" +} +add: +{ + "origin" "2848 -7488 3848" + "targetname" "td_lilith_effect" + "start_active" "0" + "effect_name" "custom_particle_246" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 270 0" + "classname" "info_particle_system" + "hammerid" "2103700" +} +add: +{ + "origin" "3780 -9532 724" + "targetname" "tp_pharos_firstfloor_effect" + "start_active" "0" + "effect_name" "custom_particle_251" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 90 0" + "classname" "info_particle_system" + "hammerid" "2106494" +} +add: +{ + "origin" "2864 -8568 3136" + "targetname" "relay_tyrant_thunder_wing" + "StartDisabled" "0" + "spawnflags" "0" + "classname" "logic_relay" + "hammerid" "2094531" + "OnTrigger" "boss_hudhint,AddOutput,message < Thunder Wing >< Tyrant Breath Switch -> Thunder >,0,-1" + "OnTrigger" "boss_hudhint,Display,,0.01,-1" + "OnTrigger" "tyrant_thunder_wing_effect,FireUser1,,0,-1" + "OnTrigger" "tyrant_breath_thunder_hurt,FireUser1,,0,-1" + "OnTrigger" "tyrant_thunder_wing_hurt,FireUser1,,0,-1" +} +add: +{ + "origin" "2896 -8584 1824" + "targetname" "garland_round_edge_effect" + "start_active" "0" + "parentname" "garland_round_edge_rotating" + "effect_name" "custom_particle_041" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 337.5 0" + "classname" "info_particle_system" + "hammerid" "2076150" + "OnUser1" "!self,Start,,1.3,-1" + "OnUser1" "!self,Stop,,2,-1" +} +add: +{ + "origin" "2848 -9288 3136" + "targetname" "td_tyrant_effect" + "start_active" "0" + "effect_name" "custom_particle_246" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 90 0" + "classname" "info_particle_system" + "hammerid" "2078501" +} +add: +{ + "origin" "2848 -7780 1865.03" + "targetname" "td_garland_effect" + "start_active" "0" + "effect_name" "custom_particle_246" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 270 0" + "classname" "info_particle_system" + "hammerid" "2079115" +} +add: +{ + "origin" "2848 -9390 1865.03" + "targetname" "td_garland_effect" + "start_active" "0" + "effect_name" "custom_particle_246" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 90 0" + "classname" "info_particle_system" + "hammerid" "2079701" +} +add: +{ + "origin" "-8744 -1232 792" + "targetname" "td_ladylilith_effect" + "start_active" "0" + "effect_name" "custom_particle_246" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 225 0" + "classname" "info_particle_system" + "hammerid" "2080038" +} +add: +{ + "origin" "-9808 -1672 792" + "targetname" "td_ladylilith_effect" + "start_active" "0" + "effect_name" "custom_particle_246" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 0 0" + "classname" "info_particle_system" + "hammerid" "2080690" +} +add: +{ + "origin" "-7328 -840 744" + "targetname" "td_pharos_staris_effect" + "start_active" "0" + "effect_name" "custom_particle_246" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 0 0" + "classname" "info_particle_system" + "hammerid" "2081160" +} +add: +{ + "origin" "3780 -9532 672" + "targetname" "td_pharos_firstfloor_effect" + "start_active" "1" + "effect_name" "custom_particle_246" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 90 0" + "classname" "info_particle_system" + "hammerid" "2081823" +} +add: +{ + "origin" "2476 -10198 1928" + "targetname" "td_pharos_secondfloor_effect" + "start_active" "0" + "effect_name" "custom_particle_246" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 180 0" + "classname" "info_particle_system" + "hammerid" "2082483" +} +add: +{ + "origin" "-8744 448 792" + "targetname" "td_shadowlord_effect" + "start_active" "0" + "effect_name" "custom_particle_246" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 135 0" + "classname" "info_particle_system" + "hammerid" "2083530" +} +add: +{ + "origin" "-9824 888 792" + "targetname" "td_shadowlord_effect" + "start_active" "0" + "effect_name" "custom_particle_246" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 0 0" + "classname" "info_particle_system" + "hammerid" "2084314" +} +add: +{ + "origin" "4128 -7126 2656" + "targetname" "td_pharos_thirdfloor_effect" + "start_active" "0" + "effect_name" "custom_particle_246" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 180 0" + "classname" "info_particle_system" + "hammerid" "2084781" +} +add: +{ + "origin" "2848 -8704 3208" + "targetname" "tyrant_breath_ice_effect" + "start_active" "0" + "parentname" "tyrant_body" + "effect_name" "custom_particle_268" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 270 0" + "classname" "info_particle_system" + "hammerid" "2085537" +} +add: +{ + "origin" "-456 3312 -248" + "targetname" "stage_hard_item_origin_case" + "classname" "logic_case" + "hammerid" "1996019" + "OnCase01" "template_maker,AddOutput,origin -96 -2632 -1240,0,1" + "OnCase02" "template_maker,AddOutput,origin 1184 -2632 -1240,0,1" + "OnCase03" "template_maker,AddOutput,origin 168 -2632 -1624,0,1" + "OnCase04" "template_maker,AddOutput,origin 968 -2632 -1624,0,1" + "OnCase05" "template_maker,AddOutput,origin 568 -2288 -1624,0,1" + "OnCase06" "template_maker,AddOutput,origin 568 -3032 -1624,0,1" + "OnCase07" "template_maker,AddOutput,origin 1120 -3216 -1184,0,1" + "OnCase08" "template_maker,AddOutput,origin 1120 -3840 -1184,0,1" + "OnCase09" "template_maker,AddOutput,origin -6112 -8 800,0,1" + "OnCase10" "template_maker,AddOutput,origin -8096 -8 800,0,1" + "OnCase11" "template_maker,AddOutput,origin -7552 888 800,0,1" + "OnCase12" "template_maker,AddOutput,origin -7136 -8 800,0,1" +} +add: +{ + "origin" "-440 3312 -248" + "targetname" "stage_hard_item_spawn" + "StartDisabled" "0" + "spawnflags" "0" + "classname" "logic_relay" + "hammerid" "1996042" + "OnTrigger" "template_maker,AddOutput,EntityTemplate template_human_pistol_gravity,0,1" + "OnTrigger" "stage_hard_item_origin_case,PickRandomShuffle,,0.02,1" + "OnTrigger" "template_maker,ForceSpawn,,0.04,1" + "OnTrigger" "template_maker,AddOutput,EntityTemplate template_human_pistol_rock,0.06,1" + "OnTrigger" "stage_hard_item_origin_case,PickRandomShuffle,,0.08,1" + "OnTrigger" "template_maker,ForceSpawn,,0.1,1" + "OnTrigger" "template_maker,AddOutput,EntityTemplate template_human_pistol_water,0.12,1" + "OnTrigger" "stage_hard_item_origin_case,PickRandomShuffle,,0.14,1" + "OnTrigger" "template_maker,ForceSpawn,,0.22,1" + "OnTrigger" "template_maker,AddOutput,EntityTemplate template_human_pistol_fire,0.18,1" + "OnTrigger" "stage_hard_item_origin_case,PickRandomShuffle,,0.2,1" + "OnTrigger" "template_maker,ForceSpawn,,0.16,1" + "OnTrigger" "template_maker,AddOutput,EntityTemplate template_human_pistol_heal,0.24,1" + "OnTrigger" "stage_hard_item_origin_case,PickRandomShuffle,,0.26,1" + "OnTrigger" "template_maker,ForceSpawn,,0.28,1" + "OnTrigger" "template_maker,AddOutput,EntityTemplate template_zombie_knife_warp,0.3,1" + "OnTrigger" "stage_hard_item_origin_case,PickRandomShuffle,,0.32,1" + "OnTrigger" "template_maker,ForceSpawn,,0.34,1" + "OnTrigger" "template_maker,AddOutput,EntityTemplate template_zombie_knife_gravity,0.36,1" + "OnTrigger" "stage_hard_item_origin_case,PickRandomShuffle,,0.38,1" + "OnTrigger" "template_maker,ForceSpawn,,0.4,1" + "OnTrigger" "stage_hard_item_origin_case,Kill,,1,1" + "OnTrigger" "!self,Kill,,1,1" + "OnTrigger" "template_maker,Kill,,1,1" + "OnTrigger" "template_human_pistol_*,Kill,,1,1" + "OnTrigger" "template_zombie_knife_*,Kill,,1,1" + "OnTrigger" "template_maker,AddOutput,EntityTemplate template_zombie_knife_electric,0.42,1" + "OnTrigger" "template_maker,ForceSpawn,,0.46,1" + "OnTrigger" "stage_hard_item_origin_case,PickRandomShuffle,,0.44,1" + "OnTrigger" "template_maker,AddOutput,EntityTemplate template_zombie_knife_parasitic,0.48,1" + "OnTrigger" "stage_hard_item_origin_case,PickRandomShuffle,,0.5,1" + "OnTrigger" "template_maker,ForceSpawn,,0.52,1" + "OnTrigger" "template_zombie_sword_*,Kill,,1,1" + "OnTrigger" "zombie_gravity_knife_effect,Start,,5,1" + "OnTrigger" "zombie_warp_knife_effect,Start,,5,1" + "OnTrigger" "zombie_electric_knife_effect,Start,,5,1" + "OnTrigger" "zombie_parasitic_knife_effect,Start,,5,1" +} +add: +{ + "origin" "2848 -8584 3968" + "targetname" "lilith_cast_effect" + "start_active" "0" + "parentname" "lilith_body" + "effect_name" "custom_particle_181" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 0 0" + "classname" "info_particle_system" + "hammerid" "1987549" + "OnUser1" "!self,Start,,0,1" + "OnUser1" "!self,Stop,,3,1" +} +add: +{ + "origin" "2896 -8584 3896" + "targetname" "lilith_fade" + "spawnflags" "0" + "ReverseFadeDuration" "2" + "rendercolor" "0 0 0" + "renderamt" "255" + "holdtime" "2" + "duration" "2" + "classname" "env_fade" + "hammerid" "1980490" +} +add: +{ + "origin" "2848 -8584 3896" + "Template16" "td_lilith*" + "Template15" "lilith_extreme_rock_burst_*" + "Template14" "lilith_command" + "Template13" "relay_lilith_*" + "Template12" "lilith_teleport" + "Template11" "lilith_extreme_ruin_aurora_*" + "Template10" "lilith_extreme_sun_strike_trigger" + "Template09" "lilith_nade_trigger" + "Template08" "lilith_hurt*" + "Template07" "lilith_hp_add*" + "Template06" "lilith_fade" + "Template05" "lilith_extreme_dream_weaver_*" + "Template04" "lilith_extreme_anima_ingest_*" + "Template03" "lilith_body" + "Template02" "lilith_attack_case" + "Template01" "lilith_cast_effect" + "targetname" "template_boss_lilith" + "spawnflags" "2" + "classname" "point_template" + "hammerid" "1956770" + "OnEntitySpawned" "global_boss_manager,InValue,lilith,0,-1" + "OnEntitySpawned" "!self,Kill,,0.1,-1" + "OnUser4" "!self,Kill,,0.1,1" + "OnUser4" "template_lilith_*,Kill,,0,1" + "OnUser4" "template_golem_moving,Kill,,0,1" +} +add: +{ + "origin" "2832 -8584 3896" + "targetname" "lilith_attack_case" + "classname" "logic_case" + "hammerid" "1956798" + "OnCase01" "relay_lilith_extermination_thunder,Trigger,,0,-1" + "OnCase02" "relay_lilith_extreme_anima_ingest,Trigger,,0,-1" + "OnCase03" "relay_lilith_extreme_dream_weaver,Trigger,,0,-1" + "OnCase04" "relay_lilith_golem_summon,Trigger,,0,-1" + "OnCase05" "relay_lilith_extreme_rock_burst,Trigger,,0,-1" + "OnCase06" "relay_lilith_extreme_ruin_aurora,Trigger,,0,-1" + "OnCase07" "relay_lilith_extreme_sun_strike,Trigger,,0,-1" +} +add: +{ + "origin" "2864 -8584 3896" + "TargetScale" "1" + "TargetReference" "lilith_body" + "targetname" "lilith_hurt_measure" + "Target" "lilith_hurt" + "MeasureType" "0" + "MeasureTarget" "lilith_body" + "MeasureReference" "lilith_body" + "classname" "logic_measure_movement" + "hammerid" "1956811" +} +add: +{ + "origin" "2848 -8568 3896" + "targetname" "relay_lilith_extreme_anima_ingest" + "StartDisabled" "0" + "spawnflags" "0" + "classname" "logic_relay" + "hammerid" "1956822" + "OnTrigger" "lilith_extreme_anima_ingest_hurt,FireUser1,,0,-1" + "OnTrigger" "lilith_extreme_anima_ingest_effect,FireUser1,,0,-1" + "OnTrigger" "boss_hudhint,AddOutput,message < Extreme -> Anima Ingest >,0,-1" + "OnTrigger" "boss_hudhint,Display,,0.01,-1" + "OnTrigger" "lilith_model,SetAnimation,magic_attack,0,-1" + "OnTrigger" "lilith_extreme_anima_ingest_trigger,FireUser1,,0,-1" +} +add: +{ + "origin" "2848 -8600 3896" + "targetname" "relay_lilith_golem_summon" + "StartDisabled" "0" + "spawnflags" "0" + "classname" "logic_relay" + "hammerid" "1956845" + "OnTrigger" "boss_detect_maker,AddOutput,EntityTemplate template_golem_moving,0,-1" + "OnTrigger" "boss_detect_trigger,Enable,,1,-1" + "OnTrigger" "boss_hudhint,AddOutput,message < Golem Summon >,0,-1" + "OnTrigger" "boss_hudhint,Display,,0.01,-1" + "OnTrigger" "golem_physbox*,FireUser1,,2,-1" + "OnTrigger" "lilith_model,SetAnimation,magic_attack,0,-1" + "OnTrigger" "boss_detect_compare,SetCompareValue,1,0,-1" +} +add: +{ + "origin" "2864 -8600 3896" + "targetname" "relay_lilith_extreme_ruin_aurora" + "StartDisabled" "0" + "spawnflags" "0" + "classname" "logic_relay" + "hammerid" "1956851" + "OnTrigger" "lilith_extreme_ruin_aurora_hurt,Enable,,7,-1" + "OnTrigger" "boss_hudhint,AddOutput,message < Extreme -> Ruin Aurora >,0,-1" + "OnTrigger" "boss_hudhint,Display,,0.01,-1" + "OnTrigger" "lilith_extreme_ruin_aurora_effect,Start,,0,-1" + "OnTrigger" "lilith_extreme_ruin_aurora_effect,Stop,,8,-1" + "OnTrigger" "lilith_extreme_ruin_aurora_hurt,Disable,,8,-1" + "OnTrigger" "lilith_model,SetAnimation,magic_attack,7,-1" +} +add: +{ + "origin" "2880 -8568 3896" + "targetname" "relay_lilith_extreme_rock_burst" + "StartDisabled" "0" + "spawnflags" "0" + "classname" "logic_relay" + "hammerid" "1956853" + "OnTrigger" "boss_hudhint,AddOutput,message < Extreme -> Rock Burst >,0,-1" + "OnTrigger" "boss_hudhint,Display,,0.01,-1" + "OnTrigger" "lilith_nade_trigger,Enable,,0,-1" + "OnTrigger" "lilith_model,SetAnimation,magic_attack,0,-1" + "OnTrigger" "lilith_extreme_rock_burst_maker,ForceSpawn,,1,-1" + "OnTrigger" "lilith_extreme_rock_burst_maker,ForceSpawn,,3,-1" + "OnTrigger" "lilith_extreme_rock_burst_maker,ForceSpawn,,5,-1" + "OnTrigger" "lilith_extreme_rock_burst_maker,ForceSpawn,,7,-1" +} +add: +{ + "origin" "2864 -8568 3896" + "targetname" "relay_lilith_extreme_dream_weaver" + "StartDisabled" "0" + "spawnflags" "0" + "classname" "logic_relay" + "hammerid" "1956865" + "OnTrigger" "boss_hudhint,AddOutput,message < Extreme -> Dream Weaver >,0,-1" + "OnTrigger" "boss_hudhint,Display,,0.01,-1" + "OnTrigger" "lilith_extreme_dream_weaver_trigger,FireUser1,,2,-1" + "OnTrigger" "lilith_model,SetAnimation,magic_attack,0,-1" + "OnTrigger" "lilith_extreme_dream_weaver_effect,FireUser1,,0,-1" +} +add: +{ + "origin" "2880 -8600 3896" + "targetname" "relay_lilith_extreme_sun_strike" + "StartDisabled" "0" + "spawnflags" "0" + "classname" "logic_relay" + "hammerid" "1956883" + "OnTrigger" "boss_hudhint,AddOutput,message < Extreme -> Sun Strike >,0,-1" + "OnTrigger" "boss_hudhint,Display,,0.01,-1" + "OnTrigger" "lilith_extreme_sun_strike_trigger,FireUser1,,0.01,-1" + "OnTrigger" "boss_detect_maker,AddOutput,EntityTemplate template_lilith_extreme_sun_strike,0,-1" + "OnTrigger" "lilith_model,SetAnimation,magic_attack,0,-1" +} +add: +{ + "origin" "2880 -8584 3896" + "targetname" "relay_lilith_extermination_thunder" + "StartDisabled" "0" + "spawnflags" "0" + "classname" "logic_relay" + "hammerid" "1956891" + "OnTrigger" "boss_detect_maker,AddOutput,EntityTemplate template_lilith_extermination_thunder,0,-1" + "OnTrigger" "boss_detect_trigger,Enable,,5,-1" + "OnTrigger" "boss_hudhint,AddOutput,message < Extermination thunder >,0,-1" + "OnTrigger" "boss_hudhint,Display,,0.01,-1" + "OnTrigger" "lilith_model,SetAnimation,magic_attack,5,-1" + "OnTrigger" "lilith_cast_effect,Start,,0,-1" + "OnTrigger" "lilith_cast_effect,Stop,,5,-1" + "OnTrigger" "boss_detect_compare,SetCompareValue,-1,0,-1" +} +add: +{ + "origin" "2896 -8568 3896" + "targetname" "lilith_extermination_thunder_effect" + "start_active" "1" + "effect_name" "custom_particle_186" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 180 0" + "classname" "info_particle_system" + "hammerid" "1956947" +} +add: +{ + "origin" "2896 -8568 3896" + "targetname" "lilith_extermination_thunder_shake" + "spawnflags" "4" + "radius" "2048" + "frequency" "255" + "duration" "1" + "amplitude" "16" + "classname" "env_shake" + "hammerid" "1957470" + "OnUser1" "!self,StartShake,,0,1" + "OnUser1" "!self,Kill,,1,1" +} +add: +{ + "origin" "2896 -8568 3896" + "Template04" "lilith_extermination_thunder_sound" + "Template03" "lilith_extermination_thunder_spawn" + "Template02" "lilith_extermination_thunder_shake" + "Template01" "lilith_extermination_thunder_effect" + "targetname" "template_lilith_extermination_thunder" + "spawnflags" "2" + "classname" "point_template" + "hammerid" "1957629" +} +add: +{ + "origin" "2896 -8568 3912" + "targetname" "lilith_extermination_thunder_spawn" + "StartDisabled" "0" + "spawnflags" "0" + "classname" "logic_relay" + "hammerid" "1957659" + "OnSpawn" "!self,Kill,,0.1,1" + "OnSpawn" "lilith_extermination_thunder_effect,Kill,,1,1" + "OnSpawn" "lilith_extermination_thunder_shake,FireUser1,,0.01,1" + "OnSpawn" "lilith_extermination_thunder_sound,FireUser1,,0.01,1" +} +add: +{ + "origin" "2848 -8584 3896" + "targetname" "lilith_extreme_anima_ingest_effect" + "start_active" "0" + "effect_name" "custom_particle_198" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 180 0" + "classname" "info_particle_system" + "hammerid" "1957840" + "OnUser1" "!self,Start,,0,-1" + "OnUser1" "!self,Stop,,5,-1" +} +add: +{ + "origin" "7936 0 -4392" + "targetname" "golem_targetfilter" + "ResponseContext" "golem_target" + "Negated" "0" + "classname" "filter_activator_context" + "hammerid" "1958983" +} +add: +{ + "origin" "7952 0 -4392" + "UseRandomTime" "0" + "targetname" "golem_triggertimer" + "StartDisabled" "1" + "spawnflags" "0" + "RefireTime" "1" + "classname" "logic_timer" + "hammerid" "1958985" + "OnTimer" "golem_triggerforward,Disable,,0,-1" + "OnTimer" "golem_triggerleft,Disable,,0,-1" + "OnTimer" "golem_triggerleft2,Disable,,0,-1" + "OnTimer" "golem_triggerright,Disable,,0,-1" + "OnTimer" "golem_triggerright2,Disable,,0,-1" + "OnTimer" "golem_triggerforward,Enable,,0.02,-1" + "OnTimer" "golem_triggerleft,Enable,,0.02,-1" + "OnTimer" "golem_triggerleft2,Enable,,0.02,-1" + "OnTimer" "golem_triggerright,Enable,,0.02,-1" + "OnTimer" "golem_triggerright2,Enable,,0.02,-1" +} +add: +{ + "origin" "7968 0 -4408" + "Template15" "golem_targettrigger" + "Template14" "golem_targetrotating" + "Template09" "golem_effect" + "Template08" "golem_hurt" + "Template07" "golem_body" + "Template06" "golem_trigger*" + "Template05" "golem_model" + "Template04" "golem_spawn" + "Template03" "golem_thruster*" + "Template02" "golem_keepupright" + "Template01" "golem_physbox" + "targetname" "template_golem_moving" + "spawnflags" "0" + "classname" "point_template" + "hammerid" "1958987" + "OnEntitySpawned" "!self,Kill,,0.1,1" +} +add: +{ + "origin" "7984 0 -4392" + "targetname" "golem_thrusterforward" + "spawnflags" "30" + "forcetime" "0" + "force" "1400" + "attach1" "golem_physbox" + "angles" "0 0 0" + "classname" "phys_thruster" + "hammerid" "1958997" +} +add: +{ + "origin" "7992 -24 -4392" + "targetname" "golem_thrusterright" + "spawnflags" "30" + "forcetime" "0.03" + "force" "2000" + "attach1" "golem_physbox" + "angles" "0 270 0" + "classname" "phys_thruster" + "hammerid" "1958999" +} +add: +{ + "origin" "8000 -32 -4392" + "targetname" "golem_thrusterright2" + "spawnflags" "30" + "forcetime" "0.03" + "force" "4000" + "attach1" "golem_physbox" + "angles" "0 270 0" + "classname" "phys_thruster" + "hammerid" "1959001" +} +add: +{ + "origin" "7992 24 -4392" + "targetname" "golem_thrusterleft" + "spawnflags" "30" + "forcetime" "0.03" + "force" "2000" + "attach1" "golem_physbox" + "angles" "0 90 0" + "classname" "phys_thruster" + "hammerid" "1959003" +} +add: +{ + "origin" "8000 32 -4392" + "targetname" "golem_thrusterleft2" + "spawnflags" "30" + "forcetime" "0.03" + "force" "4000" + "attach1" "golem_physbox" + "angles" "0 90 0" + "classname" "phys_thruster" + "hammerid" "1959005" +} +add: +{ + "origin" "2776 -8032 3896" + "Template03" "lilith_extreme_sun_strike_spawn" + "Template02" "lilith_extreme_sun_strike_hurt" + "Template01" "lilith_extreme_sun_strike_effect" + "targetname" "template_lilith_extreme_sun_strike" + "spawnflags" "0" + "classname" "point_template" + "hammerid" "1949141" +} +add: +{ + "origin" "2776 -8032 3952" + "targetname" "lilith_extreme_sun_strike_effect" + "start_active" "1" + "effect_name" "custom_particle_214" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 0 0" + "classname" "info_particle_system" + "hammerid" "1949150" +} +add: +{ + "origin" "2776 -8032 3912" + "targetname" "lilith_extreme_sun_strike_spawn" + "StartDisabled" "0" + "spawnflags" "0" + "classname" "logic_relay" + "hammerid" "1949285" + "OnSpawn" "lilith_extreme_sun_strike_hurt,Enable,,3,1" + "OnSpawn" "!self,Kill,,0.1,1" + "OnSpawn" "lilith_extreme_sun_strike_hurt,Kill,,3.5,1" + "OnSpawn" "lilith_extreme_sun_strike_effect,Kill,,3.5,1" +} +add: +{ + "origin" "2848 -8584 3136" + "targetname" "tyrant_round_ice_effect" + "start_active" "0" + "parentname" "tyrant_body" + "effect_name" "custom_particle_274" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 90 0" + "classname" "info_particle_system" + "hammerid" "1938973" + "OnUser1" "!self,Stop,,5,-1" + "OnUser1" "!self,Start,,0,-1" +} +add: +{ + "origin" "2848 -8584 3136" + "targetname" "tyrant_blood_shield_effect" + "start_active" "0" + "parentname" "tyrant_body" + "effect_name" "custom_particle_255" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 90 0" + "classname" "info_particle_system" + "hammerid" "1939233" + "OnUser1" "!self,Stop,,5,-1" + "OnUser1" "!self,Start,,0,-1" +} +add: +{ + "origin" "2848 -8600 3136" + "targetname" "tyrant_blood_shield_branch" + "InitialValue" "0" + "classname" "logic_branch" + "hammerid" "1916460" + "OnFalse" "nade_maker,ForceSpawnAtEntityOrigin,!activator,0,-1" + "OnFalse" "boss_hp_counter,Subtract,40,0,-1" + "OnFalse" "!activator,Kill,,0.01,-1" + "OnTrue" "!activator,Kill,,0.01,-1" + "OnTrue" "boss_hp_counter,Add,40,0,-1" +} +add: +{ + "origin" "2968 -8584 1768" + "TargetScale" "1" + "TargetReference" "garland_round_edge_rotating" + "targetname" "garland_round_edge_measure" + "Target" "garland_round_edge_hurt" + "MeasureType" "0" + "MeasureTarget" "garland_round_edge_rotating" + "MeasureReference" "garland_round_edge_rotating" + "classname" "logic_measure_movement" + "hammerid" "1866822" +} +add: +{ + "origin" "2464 -8584 3136" + "Template03" "tyrant_evil_fire_spawn" + "Template02" "tyrant_evil_fire_hurt" + "Template01" "tyrant_evil_fire_effect" + "targetname" "template_tyrant_evil_fire" + "spawnflags" "0" + "classname" "point_template" + "hammerid" "1866824" +} +add: +{ + "origin" "2464 -8584 3136" + "targetname" "tyrant_evil_fire_effect" + "start_active" "1" + "effect_name" "custom_particle_258" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 0 0" + "classname" "info_particle_system" + "hammerid" "1866826" +} +add: +{ + "origin" "2464 -8584 3152" + "targetname" "tyrant_evil_fire_spawn" + "StartDisabled" "0" + "spawnflags" "0" + "classname" "logic_relay" + "hammerid" "1866891" + "OnSpawn" "!self,Kill,,0.1,1" + "OnSpawn" "tyrant_evil_fire_hurt,Kill,,3,1" + "OnSpawn" "tyrant_evil_fire_effect,Kill,,3,1" +} +add: +{ + "origin" "3232 -8584 3136" + "Template04" "tyrant_ice_prison_sound" + "Template03" "tyrant_ice_prison_spawn" + "Template02" "tyrant_ice_prison_hurt" + "Template01" "tyrant_ice_prison_effect" + "targetname" "template_tyrant_ice_prison" + "spawnflags" "0" + "classname" "point_template" + "hammerid" "1866893" +} +add: +{ + "origin" "3232 -8584 3136" + "targetname" "tyrant_ice_prison_effect" + "start_active" "1" + "effect_name" "custom_particle_270" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 0 0" + "classname" "info_particle_system" + "hammerid" "1866895" +} +add: +{ + "origin" "3232 -8584 3152" + "targetname" "tyrant_ice_prison_spawn" + "StartDisabled" "0" + "spawnflags" "0" + "classname" "logic_relay" + "hammerid" "1866960" + "OnSpawn" "!self,Kill,,0.1,1" + "OnSpawn" "tyrant_ice_prison_hurt,Kill,,5,1" + "OnSpawn" "tyrant_ice_prison_effect,Kill,,5,1" + "OnSpawn" "tyrant_ice_prison_hurt,AddOutput,OnStartTouch speed:ModifySpeed:0:0:1,4,1" + "OnSpawn" "tyrant_ice_prison_hurt,AddOutput,damage 40,4,1" + "OnSpawn" "tyrant_ice_prison_sound,FireUser1,,4,1" +} +add: +{ + "origin" "2848 -8552 3136" + "TargetScale" "1" + "TargetReference" "tyrant_body" + "targetname" "tyrant_breath_thunder_measure" + "Target" "tyrant_breath_thunder_hurt" + "MeasureType" "0" + "MeasureTarget" "tyrant_body" + "MeasureReference" "tyrant_body" + "classname" "logic_measure_movement" + "hammerid" "1866962" +} +add: +{ + "origin" "2848 -8584 3136" + "targetname" "tyrant_maker" + "spawnflags" "0" + "PostSpawnSpeed" "0" + "PostSpawnInheritAngles" "0" + "PostSpawnDirectionVariance" "0.15" + "PostSpawnDirection" "0 0 0" + "parentname" "tyrant_body" + "EntityTemplate" "template_tyrant_evil_fire" + "angles" "0 0 0" + "classname" "env_entity_maker" + "hammerid" "1866966" +} +add: +{ + "origin" "-9152 888 744" + "TargetScale" "1" + "TargetReference" "shadowlord_body" + "targetname" "shadowlord_cross_smash_measure" + "Target" "shadowlord_cross_smash_hurt" + "MeasureType" "0" + "MeasureTarget" "shadowlord_body" + "MeasureReference" "shadowlord_body" + "classname" "logic_measure_movement" + "hammerid" "1866968" +} +add: +{ + "origin" "2936 -8583.92 1800" + "TargetScale" "1" + "TargetReference" "garland_flare_lazer_move" + "targetname" "garland_flare_lazer_measure" + "Target" "garland_flare_lazer_hurt" + "MeasureType" "0" + "MeasureTarget" "garland_flare_lazer_move" + "MeasureReference" "garland_flare_lazer_move" + "classname" "logic_measure_movement" + "hammerid" "1866970" +} +add: +{ + "origin" "2264 -8584 1768" + "targetname" "garland_wall_defeat_effect" + "start_active" "1" + "effect_name" "custom_particle_054" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 90 0" + "classname" "info_particle_system" + "hammerid" "1866972" +} +add: +{ + "origin" "3432 -8584 1768" + "targetname" "garland_wall_effect" + "start_active" "0" + "effect_name" "custom_particle_054" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 90 0" + "classname" "info_particle_system" + "hammerid" "1867037" +} +add: +{ + "origin" "2848 -8704 3208" + "targetname" "tyrant_breath_fire_effect" + "start_active" "0" + "parentname" "tyrant_body" + "effect_name" "custom_particle_261" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 270 0" + "classname" "info_particle_system" + "hammerid" "1867126" +} +add: +{ + "origin" "2848 -8704 3208" + "targetname" "tyrant_breath_thunder_effect" + "start_active" "0" + "parentname" "tyrant_body" + "effect_name" "custom_particle_277" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 270 0" + "classname" "info_particle_system" + "hammerid" "1867191" +} +add: +{ + "origin" "2848 -8584 3136" + "targetname" "tyrant_flame_rope_effect" + "start_active" "0" + "effect_name" "custom_particle_264" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 270 0" + "classname" "info_particle_system" + "hammerid" "1867324" + "OnUser1" "!self,Stop,,7,-1" + "OnUser1" "!self,Start,,2,-1" +} +add: +{ + "origin" "-1248 -264 -1304" + "enabled" "1" + "angles" "0 0 0" + "classname" "info_player_terrorist" + "hammerid" "1867959" +} +add: +{ + "origin" "2936 -8584 1768" + "Template06" "garland_flare_lazer_measure" + "Template05" "garland_flare_lazer_effect" + "Template04" "garland_flare_lazer_camera" + "Template03" "garland_flare_lazer_hurt" + "Template02" "garland_flare_lazer_model" + "Template01" "garland_flare_lazer_move" + "targetname" "template_garland_flare_lazer" + "spawnflags" "0" + "classname" "point_template" + "hammerid" "1870957" +} +add: +{ + "origin" "7968 0 -4696" + "Template03" "boss_detect_maker" + "Template02" "boss_detect_trigger" + "Template01" "boss_detect_rotating" + "targetname" "template_boss_detect" + "spawnflags" "2" + "classname" "point_template" + "hammerid" "1870959" +} +add: +{ + "origin" "7968 0 -4712" + "targetname" "boss_detect_maker" + "spawnflags" "0" + "PostSpawnSpeed" "0" + "PostSpawnInheritAngles" "0" + "PostSpawnDirectionVariance" "0.15" + "PostSpawnDirection" "0 0 0" + "EntityTemplate" "template_none" + "angles" "0 0 0" + "classname" "env_entity_maker" + "hammerid" "1870964" +} +add: +{ + "origin" "7968 0 -4664" + "targetname" "boss_detect_compare" + "InitialValue" "0" + "CompareValue" "1" + "classname" "logic_compare" + "hammerid" "1870970" + "OnLessThan" "boss_detect_maker,ForceSpawnAtEntityOrigin,!activator,0,-1" + "OnEqualTo" "garland_searing_implosion_target_body*,SetParent,!activator,0,-1" + "OnEqualTo" "garland_searing_implosion_target_body*,SetParentAttachment,primary,0.01,-1" + "OnEqualTo" "garland_searing_implosion_target_body*,ClearParent,,0.02,-1" + "OnEqualTo" "garland_searing_implosion_target_body*,Kill,,0.03,-1" + "OnGreaterThan" "global_point_hurt,Hurt,,0,-1" + "OnGreaterThan" "boss_detect_maker,ForceSpawnAtEntityOrigin,!activator,0,-1" +} +add: +{ + "origin" "7952 0 -5160" + "UseRandomTime" "0" + "targetname" "boss_triggertimer" + "StartDisabled" "1" + "spawnflags" "0" + "RefireTime" "1" + "classname" "logic_timer" + "hammerid" "1871012" + "OnTimer" "boss_triggerforward,Disable,,0,-1" + "OnTimer" "boss_triggerleft,Disable,,0,-1" + "OnTimer" "boss_triggerleft2,Disable,,0,-1" + "OnTimer" "boss_triggerright,Disable,,0,-1" + "OnTimer" "boss_triggerright2,Disable,,0,-1" + "OnTimer" "boss_triggerforward,Enable,,0.02,-1" + "OnTimer" "boss_triggerleft,Enable,,0.02,-1" + "OnTimer" "boss_triggerleft2,Enable,,0.02,-1" + "OnTimer" "boss_triggerright,Enable,,0.02,-1" + "OnTimer" "boss_triggerright2,Enable,,0.02,-1" +} +add: +{ + "origin" "7968 0 -5176" + "Template16" "boss_targetfilter" + "Template15" "boss_targettrigger" + "Template14" "boss_targetrotating" + "Template13" "boss_triggerright2" + "Template12" "boss_triggerright" + "Template11" "boss_triggerleft2" + "Template10" "boss_triggerleft" + "Template09" "boss_triggerforward" + "Template08" "boss_triggertimer" + "Template07" "boss_thrusterright2" + "Template06" "boss_thrusterright" + "Template05" "boss_thrusterleft2" + "Template04" "boss_thrusterleft" + "Template03" "boss_thrusterforward" + "Template02" "boss_keepupright" + "Template01" "boss_physbox" + "targetname" "template_boss_moving" + "spawnflags" "2" + "classname" "point_template" + "hammerid" "1871014" +} +add: +{ + "origin" "7984 0 -5160" + "targetname" "boss_thrusterforward" + "spawnflags" "30" + "forcetime" "0" + "force" "1400" + "attach1" "boss_physbox" + "angles" "0 0 0" + "classname" "phys_thruster" + "hammerid" "1871024" +} +add: +{ + "origin" "7992 -24 -5160" + "targetname" "boss_thrusterright" + "spawnflags" "30" + "forcetime" "0.03" + "force" "2000" + "attach1" "boss_physbox" + "angles" "2200" + "classname" "phys_thruster" + "hammerid" "1871026" +} +add: +{ + "origin" "8000 -32 -5160" + "targetname" "boss_thrusterright2" + "spawnflags" "30" + "forcetime" "0.03" + "force" "6000" + "attach1" "boss_physbox" + "angles" "0 270 0" + "classname" "phys_thruster" + "hammerid" "1871028" +} +add: +{ + "origin" "7992 24 -5160" + "targetname" "boss_thrusterleft" + "spawnflags" "30" + "forcetime" "0.03" + "force" "2000" + "attach1" "boss_physbox" + "angles" "2200" + "classname" "phys_thruster" + "hammerid" "1871030" +} +add: +{ + "origin" "8000 32 -5160" + "targetname" "boss_thrusterleft2" + "spawnflags" "30" + "forcetime" "0.03" + "force" "6000" + "attach1" "boss_physbox" + "angles" "0 90 0" + "classname" "phys_thruster" + "hammerid" "1871032" +} +add: +{ + "origin" "-8768 -1672 744" + "Template04" "ladylilith_sun_strike_sound" + "Template03" "ladylilith_sun_strike_spawn" + "Template02" "ladylilith_sun_strike_effect" + "Template01" "ladylilith_sun_strike_hurt" + "targetname" "template_ladylilith_sun_strike" + "spawnflags" "0" + "classname" "point_template" + "hammerid" "1871037" +} +add: +{ + "origin" "-8768 -1672 760" + "targetname" "ladylilith_sun_strike_spawn" + "StartDisabled" "0" + "spawnflags" "0" + "classname" "logic_relay" + "hammerid" "1871039" + "OnSpawn" "!self,Kill,,0.1,1" + "OnSpawn" "ladylilith_sun_strike_hurt,FireUser1,,0.5,1" + "OnSpawn" "ladylilith_sun_strike_effect,Kill,,1,1" + "OnSpawn" "ladylilith_sun_strike_sound,FireUser1,,0.01,1" +} +add: +{ + "origin" "-8768 -1672 744" + "targetname" "ladylilith_sun_strike_effect" + "start_active" "1" + "effect_name" "custom_particle_174" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 0 0" + "classname" "info_particle_system" + "hammerid" "1871041" +} +add: +{ + "origin" "-8800 888 744" + "Template03" "shadowlord_ice_nova_spawn" + "Template02" "shadowlord_ice_nova_hurt" + "Template01" "shadowlord_ice_nova_effect" + "targetname" "template_shadowlord_ice_nova" + "spawnflags" "0" + "classname" "point_template" + "hammerid" "1871109" +} +add: +{ + "origin" "-8800 888 744" + "targetname" "shadowlord_ice_nova_spawn" + "StartDisabled" "0" + "spawnflags" "0" + "classname" "logic_relay" + "hammerid" "1871111" + "OnSpawn" "!self,Kill,,0.1,1" + "OnSpawn" "shadowlord_ice_nova_hurt,Kill,,5,1" + "OnSpawn" "shadowlord_ice_nova_effect,Kill,,5,1" + "OnSpawn" "shadowlord_ice_nova_hurt,Enable,,2,1" +} +add: +{ + "origin" "-8800 888 760" + "targetname" "shadowlord_ice_nova_effect" + "start_active" "1" + "effect_name" "custom_particle_242" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 0 0" + "classname" "info_particle_system" + "hammerid" "1871113" +} +add: +{ + "origin" "-5392 -136 1880" + "targetname" "yojimbo_path_25" + "speed" "0" + "spawnflags" "0" + "radius" "0" + "orientationtype" "1" + "angles" "0 270 0" + "classname" "path_track" + "hammerid" "1873233" + "OnPass" "!activator,FireUser3,,0,1" + "OnPass" "yojimbo_body,SetDamageFilter,filter_no_zombies,0,1" + "OnPass" "yojimbo_model,SetAnimation,attack,5,1" + "OnPass" "yojimbo_body,FireUser1,,9,1" + "OnPass" "yojimbo_cast_effect_laser,FireUser1,,0,1" + "OnPass" "yojimbo_body,AddOutput,OnUser2 !self:Break::0:1,0,1" +} +add: +{ + "origin" "-6944 -1184 744" + "targetname" "yojimbo_path_5" + "target" "yojimbo_path_6" + "speed" "0" + "spawnflags" "0" + "radius" "0" + "orientationtype" "1" + "angles" "0 90 0" + "classname" "path_track" + "hammerid" "1873236" +} +add: +{ + "origin" "-6944 -1384 880" + "targetname" "yojimbo_path_4" + "target" "yojimbo_path_5" + "speed" "0" + "spawnflags" "0" + "radius" "0" + "orientationtype" "1" + "angles" "0 90 0" + "classname" "path_track" + "hammerid" "1873239" +} +add: +{ + "origin" "-6944 -1536 744" + "targetname" "yojimbo_path_3" + "target" "yojimbo_path_4" + "speed" "0" + "spawnflags" "0" + "radius" "0" + "orientationtype" "1" + "angles" "0 90 0" + "classname" "path_track" + "hammerid" "1873290" +} +add: +{ + "origin" "-5392 -8 1880" + "targetname" "yojimbo_path_24" + "target" "yojimbo_path_25" + "speed" "0" + "spawnflags" "0" + "radius" "0" + "orientationtype" "1" + "angles" "0 270 0" + "classname" "path_track" + "hammerid" "1873293" + "OnPass" "boss_hp_add,FireUser1,,0,1" +} +add: +{ + "origin" "-5576 -8 1880" + "targetname" "yojimbo_path_23" + "target" "yojimbo_path_24" + "speed" "0" + "spawnflags" "0" + "radius" "0" + "orientationtype" "1" + "angles" "0 0 0" + "classname" "path_track" + "hammerid" "1873296" +} +add: +{ + "origin" "-5624 -8 1912" + "targetname" "yojimbo_path_22" + "target" "yojimbo_path_23" + "speed" "0" + "spawnflags" "0" + "radius" "0" + "orientationtype" "1" + "angles" "0 0 0" + "classname" "path_track" + "hammerid" "1873299" +} +add: +{ + "origin" "-5944 -8 1912" + "targetname" "yojimbo_path_21" + "target" "yojimbo_path_22" + "speed" "0" + "spawnflags" "0" + "radius" "0" + "orientationtype" "1" + "angles" "0 0 0" + "classname" "path_track" + "hammerid" "1873366" +} +add: +{ + "origin" "-6112 -8 1880" + "targetname" "yojimbo_path_20" + "target" "yojimbo_path_21" + "speed" "0" + "spawnflags" "0" + "radius" "0" + "orientationtype" "1" + "angles" "0 0 0" + "classname" "path_track" + "hammerid" "1873369" +} +add: +{ + "origin" "-6208 120 1880" + "targetname" "yojimbo_path_19" + "target" "yojimbo_path_20" + "speed" "0" + "spawnflags" "0" + "radius" "0" + "orientationtype" "1" + "angles" "0 315 0" + "classname" "path_track" + "hammerid" "1873420" +} +add: +{ + "origin" "-6208 296 1880" + "targetname" "yojimbo_path_18" + "target" "yojimbo_path_19" + "speed" "0" + "spawnflags" "0" + "radius" "0" + "orientationtype" "1" + "angles" "0 270 0" + "classname" "path_track" + "hammerid" "1873423" +} +add: +{ + "origin" "-6208 696 1704" + "targetname" "yojimbo_path_17" + "target" "yojimbo_path_18" + "speed" "0" + "spawnflags" "0" + "radius" "0" + "orientationtype" "1" + "angles" "0 270 0" + "classname" "path_track" + "hammerid" "1873435" +} +add: +{ + "origin" "-6480 984 1704" + "targetname" "yojimbo_path_16" + "target" "yojimbo_path_17" + "speed" "0" + "spawnflags" "0" + "radius" "0" + "orientationtype" "1" + "angles" "0 0 0" + "classname" "path_track" + "hammerid" "1873438" +} +add: +{ + "origin" "-6880 984 1496" + "targetname" "yojimbo_path_15" + "target" "yojimbo_path_16" + "speed" "0" + "spawnflags" "0" + "radius" "0" + "orientationtype" "1" + "angles" "0 0 0" + "classname" "path_track" + "hammerid" "1873441" +} +add: +{ + "origin" "-7408 984 1496" + "targetname" "yojimbo_path_14" + "target" "yojimbo_path_15" + "speed" "0" + "spawnflags" "0" + "radius" "0" + "orientationtype" "1" + "angles" "0 0 0" + "classname" "path_track" + "hammerid" "1873444" +} +add: +{ + "origin" "-7832 984 1320" + "targetname" "yojimbo_path_13" + "target" "yojimbo_path_14" + "speed" "0" + "spawnflags" "0" + "radius" "0" + "orientationtype" "1" + "angles" "0 0 0" + "classname" "path_track" + "hammerid" "1873447" +} +add: +{ + "origin" "-8096 712 1320" + "targetname" "yojimbo_path_12" + "target" "yojimbo_path_13" + "speed" "0" + "spawnflags" "0" + "radius" "0" + "orientationtype" "1" + "angles" "0 90 0" + "classname" "path_track" + "hammerid" "1873450" +} +add: +{ + "origin" "-8096 312 1128" + "targetname" "yojimbo_path_11" + "target" "yojimbo_path_12" + "speed" "0" + "spawnflags" "0" + "radius" "0" + "orientationtype" "1" + "angles" "0 90 0" + "classname" "path_track" + "hammerid" "1873453" +} +add: +{ + "origin" "-8096 -192 1128" + "targetname" "yojimbo_path_10" + "target" "yojimbo_path_11" + "speed" "0" + "spawnflags" "0" + "radius" "0" + "orientationtype" "1" + "angles" "0 90 0" + "classname" "path_track" + "hammerid" "1873456" +} +add: +{ + "origin" "-8096 -648 936" + "targetname" "yojimbo_path_9" + "target" "yojimbo_path_10" + "speed" "0" + "spawnflags" "0" + "radius" "0" + "orientationtype" "1" + "angles" "0 90 0" + "classname" "path_track" + "hammerid" "1873639" +} +add: +{ + "origin" "-7776 -840 936" + "targetname" "yojimbo_path_8" + "target" "yojimbo_path_9" + "speed" "0" + "spawnflags" "0" + "radius" "0" + "orientationtype" "1" + "angles" "0 180 0" + "classname" "path_track" + "hammerid" "1873642" +} +add: +{ + "origin" "-7328 -840 744" + "targetname" "yojimbo_path_7" + "target" "yojimbo_path_8" + "speed" "0" + "spawnflags" "0" + "radius" "0" + "orientationtype" "1" + "angles" "0 180 0" + "classname" "path_track" + "hammerid" "1873645" +} +add: +{ + "origin" "-6944 -1104 744" + "targetname" "yojimbo_path_6" + "target" "yojimbo_path_7" + "speed" "0" + "spawnflags" "0" + "radius" "0" + "orientationtype" "1" + "angles" "0 135 0" + "classname" "path_track" + "hammerid" "1873648" +} +add: +{ + "origin" "-6944 -1672 744" + "targetname" "yojimbo_path_2" + "target" "yojimbo_path_3" + "speed" "0" + "spawnflags" "0" + "radius" "0" + "orientationtype" "1" + "angles" "0 180 0" + "classname" "path_track" + "hammerid" "1873651" + "OnPass" "!activator,FireUser2,,0,1" + "OnPass" "yojimbo_model,SetAnimation,magic_attack_03,0.01,1" + "OnPass" "yojimbo_push,FireUser1,,4.5,1" + "OnPass" "yojimbo_fade,FireUser1,,5,1" + "OnPass" "yojimbo_model,Disable,,6,1" + "OnPass" "yojimbo_cast_effect_push,FireUser1,,0.01,1" + "OnPass" "pharos_gate_door_5_*,Close,,0,1" + "OnPass" "server_command,Command,say < It's Yojimbo - Prepare yourself! >,0,1" + "OnPass" "server_command,Command,say < He disappeared... >,6,1" + "OnPass" "yojimbo_hurt,Disable,,0,1" + "OnPass" "radar_lower_brush,AddOutput,origin -8312 -602 932 ,11,1" +} +add: +{ + "origin" "-5856 -1672 744" + "targetname" "yojimbo_path_1" + "target" "yojimbo_path_2" + "speed" "0" + "spawnflags" "0" + "radius" "0" + "orientationtype" "1" + "angles" "0 180 0" + "classname" "path_track" + "hammerid" "1873654" +} +add: +{ + "origin" "2848 -8568 3136" + "TargetScale" "1" + "TargetReference" "tyrant_body" + "targetname" "tyrant_hurt_measure" + "Target" "tyrant_hurt" + "MeasureType" "0" + "MeasureTarget" "tyrant_body" + "MeasureReference" "tyrant_body" + "classname" "logic_measure_movement" + "hammerid" "1875447" +} +add: +{ + "origin" "2864 -8584 3136" + "targetname" "relay_tyrant_round_ice" + "StartDisabled" "0" + "spawnflags" "0" + "classname" "logic_relay" + "hammerid" "1875451" + "OnTrigger" "tyrant_round_ice_effect,FireUser1,,0,-1" + "OnTrigger" "tyrant_round_ice_hurt,FireUser1,,0,-1" + "OnTrigger" "tyrant_breath_ice_hurt,FireUser1,,0,-1" + "OnTrigger" "boss_hudhint,AddOutput,message < Round Ice >< Tyrant Breath Switch -> Ice >,0,-1" + "OnTrigger" "boss_hudhint,Display,,0.01,-1" +} +add: +{ + "origin" "2864 -8600 3136" + "targetname" "relay_tyrant_evil_fire" + "StartDisabled" "0" + "spawnflags" "0" + "classname" "logic_relay" + "hammerid" "1875453" + "OnTrigger" "tyrant_maker,AddOutput,EntityTemplate template_tyrant_evil_fire,0,-1" + "OnTrigger" "tyrant_maker,ForceSpawn,,1,-1" + "OnTrigger" "tyrant_maker,ForceSpawn,,3,-1" + "OnTrigger" "tyrant_maker,ForceSpawn,,5,-1" + "OnTrigger" "tyrant_breath_fire_hurt,FireUser1,,0,-1" + "OnTrigger" "boss_hudhint,AddOutput,message < Evil Fire >< Tyrant Breath Switch -> Fire >,0,-1" + "OnTrigger" "boss_hudhint,Display,,0.01,-1" +} +add: +{ + "origin" "2832 -8600 3136" + "targetname" "relay_tyrant_flame_rope" + "StartDisabled" "0" + "spawnflags" "0" + "classname" "logic_relay" + "hammerid" "1875455" + "OnTrigger" "tyrant_flame_rope_hurt,FireUser1,,0,-1" + "OnTrigger" "tyrant_flame_rope_effect,FireUser1,,0,-1" + "OnTrigger" "tyrant_breath_fire_hurt,FireUser1,,0,-1" + "OnTrigger" "boss_hudhint,AddOutput,message < Flame Rope >< Tyrant Breath Switch -> Fire >,0,-1" + "OnTrigger" "boss_hudhint,Display,,0.01,-1" +} +add: +{ + "origin" "2832 -8584 3136" + "targetname" "relay_tyrant_ice_prison" + "StartDisabled" "0" + "spawnflags" "0" + "classname" "logic_relay" + "hammerid" "1875457" + "OnTrigger" "boss_detect_maker,AddOutput,EntityTemplate template_tyrant_ice_prison,0,-1" + "OnTrigger" "boss_detect_trigger,Enable,,1,-1" + "OnTrigger" "boss_detect_trigger,Enable,,3,-1" + "OnTrigger" "boss_detect_trigger,Enable,,5,-1" + "OnTrigger" "tyrant_breath_ice_hurt,FireUser1,,0,-1" + "OnTrigger" "boss_hudhint,AddOutput,message < Ice Prison >< Tyrant Breath Switch -> Ice >,0,-1" + "OnTrigger" "boss_hudhint,Display,,0.01,-1" +} +add: +{ + "origin" "2832 -8568 3136" + "targetname" "relay_tyrant_blood_shield" + "StartDisabled" "0" + "spawnflags" "0" + "classname" "logic_relay" + "hammerid" "1875459" + "OnTrigger" "tyrant_blood_shield_branch,SetValue,1,0,-1" + "OnTrigger" "tyrant_blood_shield_branch,SetValue,0,5,-1" + "OnTrigger" "tyrant_body,SetDamageFilter,filter_nada,0,-1" + "OnTrigger" "tyrant_body,SetDamageFilter,filter_boss_damage,5,-1" + "OnTrigger" "tyrant_blood_shield_effect,FireUser1,,0,-1" + "OnTrigger" "boss_hudhint,AddOutput,message < Blood Shield >< Tyrant Breath Switch -> Thunder >,0,-1" + "OnTrigger" "boss_hudhint,Display,,0.01,-1" + "OnTrigger" "tyrant_breath_thunder_hurt,FireUser1,,0,-1" +} +add: +{ + "origin" "2848 -8616 3136" + "targetname" "tyrant_attack_case" + "classname" "logic_case" + "hammerid" "1875461" + "OnCase01" "relay_tyrant_flame_rope,Trigger,,0,-1" + "OnCase02" "relay_tyrant_evil_fire,Trigger,,0,-1" + "OnCase03" "relay_tyrant_ice_prison,Trigger,,0,-1" + "OnCase04" "relay_tyrant_round_ice,Trigger,,0,-1" + "OnCase05" "relay_tyrant_blood_shield,Trigger,,0,-1" + "OnCase06" "relay_tyrant_thunder_wing,Trigger,,0,-1" +} +add: +{ + "origin" "-424 3280 -248" + "targetname" "global_entity_clear" + "Case03" "Ultimate" + "Case02" "Savage" + "Case01" "Hard" + "classname" "logic_case" + "hammerid" "1875469" + "OnCase01" "template_boss_garland,FireUser4,,0,1" + "OnCase01" "template_boss_tyrant,FireUser4,,0,1" + "OnCase01" "template_stage_savage,Kill,,0,1" + "OnCase01" "template_stage_ultimate,Kill,,0,1" + "OnCase01" "!self,Kill,,0.1,1" + "OnCase01" "tp_afk_pharos_firstfloor,Kill,,0,1" + "OnCase01" "tp_afk_pharos_secondfloor,Kill,,0,1" + "OnCase01" "tp_pharos_thirdfloor_tyrant,Kill,,0,1" + "OnCase01" "tp_afk_pharos_fourthfloor,Kill,,0,1" + "OnCase01" "template_stage_savage_final_rock,Kill,,0,1" + "OnCase01" "template_boss_bahamut,FireUser4,,0,1" + "OnCase01" "template_stage_ultimate_yojimbo,Kill,,0,1" + "OnCase01" "template_boss_lilith,FireUser4,,0,1" + "OnCase01" "stage_savage_or_ultimate_item_spawn,Kill,,0,1" + "OnCase01" "stage_savage_or_ultimate_item_origin_case,FireUser4,,0,1" + "OnCase01" "template_music_stage_savage,Kill,,0,1" + "OnCase01" "template_music_stage_ultimate,Kill,,0,1" + "OnCase01" "pharos_thirdfloor_*,Kill,,0,1" + "OnCase01" "pharos_secondfloor_*,Kill,,0,1" + "OnCase01" "pharos_firstfloor_*,Kill,,0,1" + "OnCase01" "tp_pharos_*,Kill,,0,1" + "OnCase01" "stage_ultimate_thirdfloor_wall,Kill,,0,1" + "OnCase01" "td_pharos_firstfloor_effect,Kill,,0,1" + "OnCase01" "td_pharos_secondfloor_effect,Kill,,0,1" + "OnCase01" "td_pharos_thirdfloor_effect,Kill,,0,1" + "OnCase01" "tp_afk_pharos_thirdfloor,Kill,,0,1" + "OnCase01" "td_pharos_thirdfloor_stairs_effect,Kill,,0,1" + "OnCase02" "pharos_gate_door_*,Kill,,0,1" + "OnCase02" "!self,Kill,,0.1,1" + "OnCase02" "template_boss_shadowlord,FireUser4,,0,1" + "OnCase02" "template_boss_ladylilith,FireUser4,,0,1" + "OnCase02" "template_boss_yojimbo,FireUser4,,0,1" + "OnCase02" "stage_hard_final_door_*,Kill,,0,1" + "OnCase02" "stage_ultimate_final_door,Kill,,0,1" + "OnCase02" "template_boss_bahamut,FireUser4,,0,1" + "OnCase02" "template_stage_hard,Kill,,0,1" + "OnCase02" "template_stage_ultimate,Kill,,0,1" + "OnCase02" "template_stage_ultimate_yojimbo,Kill,,0,1" + "OnCase02" "template_boss_lilith,FireUser4,,0,1" + "OnCase02" "template_music_stage_hard,Kill,,0,1" + "OnCase02" "template_music_stage_ultimate,Kill,,0,1" + "OnCase02" "stage_ultimate_final_wall_model,Kill,,0,1" + "OnCase02" "boss_hp_add,Kill,,0,1" + "OnCase02" "td_pharos_staris_effect,Kill,,0,1" + "OnCase03" "!self,Kill,,0.1,1" + "OnCase03" "template_boss_shadowlord,FireUser4,,0,1" + "OnCase03" "template_boss_ladylilith,FireUser4,,0,1" + "OnCase03" "template_boss_yojimbo,FireUser4,,0,1" + "OnCase03" "template_boss_tyrant,FireUser4,,0,1" + "OnCase03" "template_boss_garland,FireUser4,,0,1" + "OnCase03" "template_stage_savage_final_rock,Kill,,0,1" + "OnCase03" "template_stage_savage,Kill,,0,1" + "OnCase03" "template_stage_hard,Kill,,0,1" + "OnCase03" "template_music_stage_hard,Kill,,0,1" + "OnCase03" "template_music_stage_savage,Kill,,0,1" +} +add: +{ + "origin" "-472 3360 -247.97" + "Template04" "music_stage_hard_end" + "Template03" "music_stage_hard_boss_2" + "Template02" "music_stage_hard_boss_1" + "Template01" "music_stage_hard_start" + "targetname" "template_music_stage_hard" + "spawnflags" "2" + "classname" "point_template" + "hammerid" "1875471" + "OnEntitySpawned" "!self,Kill,,0.1,1" + "OnEntitySpawned" "music_stage_hard_start,PlaySound,,5,1" +} +add: +{ + "origin" "-472 3376 -247.97" + "Template05" "music_stage_savage_process" + "Template04" "music_stage_savage_end" + "Template03" "music_stage_savage_boss_2" + "Template02" "music_stage_savage_boss_1" + "Template01" "music_stage_savage_start" + "targetname" "template_music_stage_savage" + "spawnflags" "2" + "classname" "point_template" + "hammerid" "1875473" + "OnEntitySpawned" "!self,Kill,,0.1,1" + "OnEntitySpawned" "music_stage_savage_start,PlaySound,,5,1" +} +add: +{ + "origin" "-472 3392 -247.97" + "Template03" "music_stage_ultimate_end" + "Template02" "music_stage_ultimate_boss" + "Template01" "music_stage_ultimate_start" + "targetname" "template_music_stage_ultimate" + "spawnflags" "2" + "classname" "point_template" + "hammerid" "1875478" + "OnEntitySpawned" "!self,Kill,,0.1,1" +} +add: +{ + "origin" "-5392 -136 1880" + "Template07" "stage_ultimate_yojimbo_push_side" + "Template06" "stage_ultimate_yojimbo_push_effect" + "Template05" "stage_ultimate_yojimbo_push" + "Template04" "stage_ultimate_yojimbo_model" + "Template03" "stage_ultimate_yojimbo_fade" + "Template02" "stage_ultimate_yojimbo_cast_effect" + "Template01" "stage_ultimate_yojimbo_body" + "targetname" "template_stage_ultimate_yojimbo" + "spawnflags" "2" + "classname" "point_template" + "hammerid" "1875486" + "OnEntitySpawned" "!self,Kill,,0.1,-1" +} +add: +{ + "origin" "-5392 -136 1880" + "targetname" "stage_ultimate_yojimbo_cast_effect" + "start_active" "0" + "effect_name" "custom_particle_306" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 180 0" + "classname" "info_particle_system" + "hammerid" "1875488" + "OnUser1" "!self,Start,,0,1" + "OnUser1" "!self,Kill,,5,1" +} +add: +{ + "origin" "-5392 -136 1972" + "targetname" "stage_ultimate_yojimbo_push_effect" + "start_active" "0" + "effect_name" "custom_particle_313" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 270 0" + "classname" "info_particle_system" + "hammerid" "1875565" +} +add: +{ + "origin" "2848 -8584 3136" + "Template16" "relay_tyrant_*" + "Template15" "tyrant_wall*" + "Template14" "tyrant_attack_animation_case" + "Template13" "tyrant_teleport" + "Template12" "tyrant_round_ice_*" + "Template11" "tyrant_nade_trigger" + "Template10" "tyrant_maker" + "Template09" "tyrant_blood_shield_*" + "Template08" "tyrant_breath_*" + "Template07" "tyrant_hurt*" + "Template06" "tyrant_command" + "Template05" "tyrant_hp_add*" + "Template04" "tyrant_flame_rope_*" + "Template03" "tyrant_thunder_wing_*" + "Template02" "tyrant_body" + "Template01" "tyrant_attack_case" + "targetname" "template_boss_tyrant" + "spawnflags" "2" + "classname" "point_template" + "hammerid" "1875885" + "OnEntitySpawned" "!self,Kill,,0.1,1" + "OnEntitySpawned" "global_boss_manager,InValue,tyrant,0,1" + "OnEntitySpawned" "boss_hp_counter,AddOutput,OnHitMin tyrant_body:Break::0:1,0,1" + "OnEntitySpawned" "boss_attack_counter,AddOutput,OnHitMax tyrant_body:FireUser4::0:1,0,1" + "OnUser4" "template_tyrant_*,Kill,,0,1" + "OnUser4" "!self,Kill,,0.1,1" +} +add: +{ + "origin" "-1248 -200 -1304" + "enabled" "1" + "angles" "0 0 0" + "classname" "info_player_counterterrorist" + "hammerid" "1875914" +} +add: +{ + "origin" "-1248 -328 -1304" + "enabled" "1" + "angles" "0 0 0" + "classname" "info_player_counterterrorist" + "hammerid" "1875916" +} +add: +{ + "origin" "-1248 -136 -1304" + "enabled" "1" + "angles" "0 0 0" + "classname" "info_player_terrorist" + "hammerid" "1875918" +} +add: +{ + "origin" "-9184 872 744" + "targetname" "shadowlord_attack_case" + "Case05" "dark shock" + "Case04" "implosion" + "Case03" "doom arc" + "Case02" "ice nova" + "Case01" "cross smash" + "classname" "logic_case" + "hammerid" "1875923" + "OnCase01" "relay_shadowlord_cross_smash,Trigger,,0,-1" + "OnCase02" "relay_shadowlord_ice_nova,Trigger,,0,-1" + "OnCase03" "relay_shadowlord_dark_shock,Trigger,,0,-1" + "OnCase04" "relay_shadowlord_doom_arc,Trigger,,0,-1" + "OnCase05" "relay_shadowlord_flame_field,Trigger,,0,-1" +} +add: +{ + "origin" "-9184 888 756" + "Template16" "shadowlord_hp_add_push" + "Template15" "shadowlord_hp_add" + "Template14" "shadowlord_hurt_measure" + "Template13" "td_shadowlord*" + "Template12" "shadowlord_wall" + "Template11" "shadowlord_start_movelinear" + "Template10" "shadowlord_doom_arc_*" + "Template09" "shadowlord_dark_shock_*" + "Template08" "shadowlord_flame_field_*" + "Template07" "relay_shadowlord_*" + "Template06" "shadowlord_cross_smash_*" + "Template05" "shadowlord_nade_trigger" + "Template04" "shadowlord_attack_case" + "Template03" "shadowlord_hurt" + "Template02" "shadowlord_body" + "Template01" "shadowlord_model" + "targetname" "template_boss_shadowlord" + "spawnflags" "2" + "classname" "point_template" + "hammerid" "1875925" + "OnEntitySpawned" "global_boss_manager,InValue,shadowlord,0,1" + "OnEntitySpawned" "!self,Kill,,0.1,1" + "OnEntitySpawned" "boss_fade_reverse,Fade,,0.05,1" + "OnUser4" "template_shadowlord_*,Kill,,0,1" + "OnUser4" "!self,Kill,,0.1,1" +} +add: +{ + "origin" "-9184 -1672 756" + "Template16" "ladylilith_hurt_measure" + "Template15" "ladylilith_wall" + "Template14" "ladylilith_start_movelinear" + "Template13" "td_ladylilith" + "Template12" "ladylilith_nade_trigger" + "Template11" "ladylilith_hp_add_push" + "Template10" "ladylilith_hp_add" + "Template09" "td_ladylilith_effect" + "Template08" "relay_ladylilith_*" + "Template07" "ladylilith_ruin_aurora_*" + "Template06" "ladylilith_anima_ingest_*" + "Template05" "ladylilith_dream_weaver_*" + "Template04" "ladylilith_attack_case" + "Template03" "ladylilith_hurt" + "Template02" "ladylilith_body" + "Template01" "ladylilith_model" + "targetname" "template_boss_ladylilith" + "spawnflags" "2" + "classname" "point_template" + "hammerid" "1875937" + "OnEntitySpawned" "global_boss_manager,InValue,ladylilith,0,1" + "OnEntitySpawned" "!self,Kill,,0.1,1" + "OnEntitySpawned" "boss_fade_reverse,Fade,,0.05,1" + "OnEntitySpawned" "boss_attack_counter,SetValueNoFire,0,0,1" + "OnUser4" "template_ladylilith_*,Kill,,0,1" + "OnUser4" "!self,Kill,,0.1,1" +} +add: +{ + "origin" "-9168 -1656 744" + "targetname" "ladylilith_attack_case" + "Case05" "golem" + "Case04" "ruin_aurora" + "Case03" "sun strike" + "Case02" "anima_ingest" + "Case01" "dream weaver" + "classname" "logic_case" + "hammerid" "1875939" + "OnCase01" "relay_ladylilith_anima_ingest,Trigger,,0,-1" + "OnCase02" "relay_ladylilith_dream_weaver,Trigger,,0,-1" + "OnCase04" "relay_ladylilith_ruin_aurora,Trigger,,0,-1" + "OnCase05" "relay_ladylilith_sun_strike,Trigger,,0,-1" + "OnCase03" "relay_ladylilith_rock_burst,Trigger,,0,-1" +} +add: +{ + "origin" "-9184 904 744" + "targetname" "shadowlord_cross_smash_case" + "Case04" "attack5" + "Case03" "attack4" + "Case02" "attack3" + "Case01" "attack2" + "classname" "logic_case" + "hammerid" "1875941" + "OnCase01" "shadowlord_model,SetAnimation,attack2,0,-1" + "OnCase02" "shadowlord_model,SetAnimation,attack3,0,-1" + "OnCase03" "shadowlord_model,SetAnimation,attack4,0,-1" + "OnCase04" "shadowlord_model,SetAnimation,attack5,0,-1" + "OnUser1" "!self,PickRandomShuffle,,0,-1" + "OnUser1" "!self,PickRandomShuffle,,1.2,-1" + "OnUser1" "!self,PickRandomShuffle,,2.4,-1" + "OnUser1" "!self,PickRandomShuffle,,3.6,-1" +} +add: +{ + "origin" "-1248 -72 -1304" + "enabled" "1" + "angles" "0 0 0" + "classname" "info_player_counterterrorist" + "hammerid" "1875952" +} +add: +{ + "origin" "-1248 -8 -1304" + "enabled" "1" + "angles" "0 0 0" + "classname" "info_player_terrorist" + "hammerid" "1875954" +} +add: +{ + "origin" "-1248 56 -1304" + "enabled" "1" + "angles" "0 0 0" + "classname" "info_player_counterterrorist" + "hammerid" "1876038" +} +add: +{ + "origin" "-1312 -328 -1304" + "enabled" "1" + "angles" "0 0 0" + "classname" "info_player_terrorist" + "hammerid" "1876040" +} +add: +{ + "origin" "4128 -7126 2708" + "targetname" "tp_pharos_thirdfloor_effect" + "start_active" "0" + "effect_name" "custom_particle_251" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 180 0" + "classname" "info_particle_system" + "hammerid" "1876081" +} +add: +{ + "origin" "2904 -8568 1768" + "TargetScale" "1" + "TargetReference" "garland_body" + "targetname" "garland_hurt_measure" + "Target" "garland_hurt" + "MeasureType" "0" + "MeasureTarget" "garland_body" + "MeasureReference" "garland_body" + "classname" "logic_measure_movement" + "hammerid" "1876164" +} +add: +{ + "origin" "2920 -8584 1768" + "targetname" "garland_searing_implosion_path_1" + "target" "garland_searing_implosion_path_2" + "speed" "0" + "spawnflags" "0" + "radius" "0" + "orientationtype" "1" + "angles" "0 0 0" + "classname" "path_track" + "hammerid" "1876172" +} +add: +{ + "origin" "3448 -8584 1768" + "targetname" "garland_searing_implosion_path_2" + "speed" "0" + "spawnflags" "0" + "radius" "0" + "orientationtype" "1" + "angles" "0 0 0" + "classname" "path_track" + "hammerid" "1876175" + "OnUser1" "garland_searing_implosion_env_explosion,Explode,,0,1" + "OnUser1" "!self,Kill,,0.3,1" + "OnUser1" "garland_searing_implosion_path_1,Kill,,0.3,1" + "OnUser1" "garland_searing_implosion_measure,Kill,,0.1,1" + "OnUser1" "garland_searing_implosion_tracktrain,Kill,,0.2,1" + "OnUser1" "garland_searing_implosion_effect_explosion,FireUser1,,0,1" + "OnPass" "!self,FireUser1,,0,1" +} +add: +{ + "origin" "2904 -8600 1768" + "TargetScale" "1" + "TargetReference" "garland_searing_implosion_path_1" + "targetname" "garland_searing_implosion_measure" + "Target" "garland_searing_implosion_path_2" + "MeasureType" "0" + "MeasureTarget" "garland_searing_implosion_target_body" + "MeasureReference" "garland_searing_implosion_path_1" + "classname" "logic_measure_movement" + "hammerid" "1876178" +} +add: +{ + "origin" "-1312 -264 -1304" + "enabled" "1" + "angles" "0 0 0" + "classname" "info_player_counterterrorist" + "hammerid" "1876180" +} +add: +{ + "origin" "2920 -8584 1768" + "Template10" "garland_searing_implosion_spawn" + "Template09" "garland_searing_implosion_tracktrain" + "Template08" "garland_searing_implosion_effect_explosion" + "Template07" "garland_searing_implosion_env_explosion" + "Template06" "garland_searing_implosion_trigger" + "Template05" "garland_searing_implosion_target_body" + "Template04" "garland_searing_implosion_path_2" + "Template03" "garland_searing_implosion_path_1" + "Template02" "garland_searing_implosion_measure" + "Template01" "garland_searing_implosion_effect_target" + "targetname" "template_garland_searing_implosion" + "spawnflags" "0" + "classname" "point_template" + "hammerid" "1876185" +} +add: +{ + "origin" "2904 -8584 1824" + "targetname" "garland_searing_implosion_maker" + "spawnflags" "0" + "PostSpawnSpeed" "0" + "PostSpawnInheritAngles" "0" + "PostSpawnDirectionVariance" "0.15" + "PostSpawnDirection" "0 0 0" + "parentname" "garland_body" + "EntityTemplate" "template_garland_searing_implosion" + "angles" "0 0 0" + "classname" "env_entity_maker" + "hammerid" "1876187" +} +add: +{ + "origin" "2920 -8584 1784" + "targetname" "garland_searing_implosion_spawn" + "StartDisabled" "0" + "spawnflags" "0" + "classname" "logic_relay" + "hammerid" "1876189" + "OnSpawn" "garland_searing_implosion_tracktrain,SetSpeed,250,0.05,1" + "OnSpawn" "!self,Kill,,0.1,1" + "OnSpawn" "boss_detect_trigger,Enable,,0,1" + "OnSpawn" "garland_searing_implosion_path_2,FireUser1,,5,1" +} +add: +{ + "origin" "-1312 -136 -1304" + "enabled" "1" + "angles" "0 0 0" + "classname" "info_player_counterterrorist" + "hammerid" "1876265" +} +add: +{ + "origin" "-1312 -72 -1304" + "enabled" "1" + "angles" "0 0 0" + "classname" "info_player_terrorist" + "hammerid" "1876267" +} +add: +{ + "origin" "-1312 -200 -1304" + "enabled" "1" + "angles" "0 0 0" + "classname" "info_player_terrorist" + "hammerid" "1876269" +} +add: +{ + "origin" "-1312 -8 -1304" + "enabled" "1" + "angles" "0 0 0" + "classname" "info_player_counterterrorist" + "hammerid" "1876271" +} +add: +{ + "origin" "2848 -8584 1824" + "targetname" "garland_bravery_effect" + "start_active" "0" + "parentname" "garland_model" + "effect_name" "custom_particle_033" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 0 0" + "classname" "info_particle_system" + "hammerid" "1876273" + "OnUser1" "!self,Start,,0,-1" + "OnUser1" "!self,Stop,,7,-1" +} +add: +{ + "origin" "2864 -8920 1768" + "Template10" "garland_cyclone_keepupright" + "Template09" "garland_cyclone_spawn" + "Template08" "garland_cyclone_timer" + "Template07" "garland_cyclone_thruster" + "Template06" "garland_cyclone_shake" + "Template05" "garland_cyclone_push" + "Template04" "garland_cyclone_measure" + "Template03" "garland_cyclone_hurt" + "Template02" "garland_cyclone_effect" + "Template01" "garland_cyclone_body" + "targetname" "template_garland_cyclone" + "spawnflags" "0" + "classname" "point_template" + "hammerid" "1876368" +} +add: +{ + "origin" "-1312 56 -1304" + "enabled" "1" + "angles" "0 0 0" + "classname" "info_player_terrorist" + "hammerid" "1876447" +} +add: +{ + "origin" "-1376 -328 -1304" + "enabled" "1" + "angles" "0 0 0" + "classname" "info_player_counterterrorist" + "hammerid" "1876449" +} +add: +{ + "origin" "2476 -10198 1980" + "targetname" "tp_pharos_secondfloor_effect" + "start_active" "0" + "effect_name" "custom_particle_251" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 180 0" + "classname" "info_particle_system" + "hammerid" "1876453" +} +add: +{ + "origin" "-360 3168 -248" + "targetname" "global_round_end_fade" + "spawnflags" "0" + "ReverseFadeDuration" "2" + "rendercolor" "255 255 255" + "renderamt" "255" + "holdtime" "4" + "duration" "2" + "classname" "env_fade" + "hammerid" "1876575" + "OnUser1" "!self,Fade,,0.01,1" + "OnUser1" "!self,AddOutput,rendercolor 255 255 255,0,1" + "OnUser1" "level_hudhint,FireUser1,,0,1" + "OnUser1" "global_nuke,FireUser1,,0,1" + "OnUser1" "global_round_victory,FireUser1,,0,1" + "OnUser1" "!self,Kill,,0.1,1" + "OnUser1" "global_round_fail,Kill,,0,1" + "OnUser1" "music_*,FireUser1,,0,1" + "OnUser1" "author_hudhint,FireUser1,,0,1" + "OnUser1" "stage_detect_*,Kill,,0,1" + "OnUser2" "!self,AddOutput,rendercolor 255 0 0,0,1" + "OnUser2" "!self,Fade,,0.01,1" + "OnUser2" "level_hudhint,FireUser2,,0,1" + "OnUser2" "global_nuke,FireUser2,,0,1" + "OnUser2" "global_round_victory,Kill,,0,1" + "OnUser2" "stage_detect_*,Kill,,0,1" + "OnUser2" "stage_victory_*,Kill,,0,1" + "OnUser2" "game_playerdie,Kill,,0,1" + "OnUser2" "!self,Kill,,0.1,1" + "OnUser2" "global_score,Kill,,0,1" + "OnUser2" "author_hudhint,Kill,,0,1" +} +add: +{ + "origin" "-472 3216 -248" + "targetname" "global_round_fail" + "StartDisabled" "0" + "spawnflags" "0" + "classname" "logic_relay" + "hammerid" "1876577" + "OnTrigger" "global_round_end_fade,FireUser2,,10,-1" +} +add: +{ + "origin" "-472 3312 -247.97" + "Template11" "stage_ultimate_final_wall" + "Template10" "stage_hard_item_origin_case" + "Template09" "stage_hard_item_spawn" + "Template08" "td_pharos_effect" + "Template07" "stage_ultimate_final_laser_shit_model" + "Template06" "td_pharos" + "Template05" "global_boss_case" + "Template04" "stage_victory_hard" + "Template03" "stage_detect_hard" + "Template02" "stage_hard_trigger_2" + "Template01" "stage_hard_trigger_1" + "targetname" "template_stage_hard" + "spawnflags" "2" + "classname" "point_template" + "hammerid" "1876589" + "OnUser1" "!self,ForceSpawn,,0,1" + "OnUser1" "server_command,Command,say < HARD MODE >,7,1" + "OnUser1" "global_boss_case,FireUser1,,0.05,1" + "OnUser1" "tp_spawn,AddOutput,target td_pharos,0,1" + "OnUser1" "global_entity_clear,InValue,Hard,0,1" + "OnUser1" "template_music_stage_hard,ForceSpawn,,0,1" + "OnUser1" "stage_hard_item_spawn,Trigger,,0.05,1" + "OnEntitySpawned" "!self,Kill,,0.1,1" +} +add: +{ + "origin" "-392 3168 -248" + "targetname" "level_case" + "Case03" "3" + "Case02" "2" + "Case01" "1" + "classname" "logic_case" + "hammerid" "1876591" + "OnCase01" "level_stocker,FireUser1,,0,1" + "OnCase01" "template_stage_hard,FireUser1,,0.01,1" + "OnCase01" "level_stocker,AddOutput,OnUser1 level_counter:SetValue:1:0:1,0.02,1" + "OnCase01" "level_stocker,FireUser2,,0,1" + "OnCase02" "level_stocker,FireUser1,,0,1" + "OnCase02" "template_stage_savage,FireUser1,,0.01,1" + "OnCase02" "level_stocker,AddOutput,OnUser1 level_counter:SetValue:2:0:1,0.02,1" + "OnCase03" "template_stage_ultimate,FireUser1,,0.01,1" + "OnCase03" "level_stocker,AddOutput,OnUser1 level_counter:SetValue:3:0:1,0.02,1" + "OnCase03" "level_stocker,FireUser1,,0,1" + "OnCase03" "event_stocker,FireUser1,,0,1" + "OnDefault" "server_command,Command,say < THIS IS AN ERROR IN THE LEVEL SYSTEM >,0,1" + "OnDefault" "level_hudhint,AddOutput,message < Map Stage Error >,0,1" +} +add: +{ + "origin" "-376 3168 -248" + "targetname" "level_counter" + "startvalue" "1" + "StartDisabled" "0" + "min" "1" + "max" "3" + "classname" "math_counter" + "hammerid" "1876593" + "OnGetValue" "level_case,InValue,,0,1" +} +add: +{ + "origin" "-472 3328 -247.97" + "Template06" "stage_victory_savage" + "Template05" "stage_detect_savage" + "Template04" "stage_savage_final_door_model" + "Template03" "stage_savage_final_door" + "Template02" "tyrant_model" + "Template01" "garland_model" + "targetname" "template_stage_savage" + "spawnflags" "2" + "classname" "point_template" + "hammerid" "1876595" + "OnUser1" "server_command,Command,say < SAVAGE MODE >,7,1" + "OnUser1" "!self,ForceSpawn,,0,1" + "OnUser1" "tp_spawn,AddOutput,target td_pharos_firstfloor,0,1" + "OnUser1" "global_entity_clear,InValue,Savage,0,1" + "OnUser1" "template_music_stage_savage,ForceSpawn,,0,1" + "OnUser1" "pharos_secondfloor_trigger_1,AddOutput,OnStartTouch server_command:Command:say Garland -- < Take that - go! Here I come. I'll crush you! >:25:1,0,1" + "OnUser1" "stage_savage_or_ultimate_item_spawn,Trigger,,0,1" + "OnEntitySpawned" "!self,Kill,,0.1,1" +} +add: +{ + "origin" "-472 3344 -247.97" + "Template15" "pharos_fourthfloor_rock_*" + "Template14" "pharos_fourthfloor_trigger" + "Template13" "lilith_wall" + "Template12" "tp_afk_lilith" + "Template11" "stage_detect_ultimate" + "Template10" "stage_victory_ultimate" + "Template09" "td_pharos_fourthfloor_stairs*" + "Template08" "tp_pharos_firstfloor*" + "Template07" "td_pharos_indoor*" + "Template06" "lilith_wall_shit" + "Template05" "pharos_firstfloor_ladylilith_*" + "Template04" "pharos_secondfloor_breakable" + "Template02" "lilith_model" + "Template01" "pharos_fourthfloor_ladylilith_model" + "targetname" "template_stage_ultimate" + "spawnflags" "2" + "classname" "point_template" + "hammerid" "1876597" + "OnEntitySpawned" "!self,Kill,,0.1,1" + "OnUser1" "!self,ForceSpawn,,0,1" + "OnUser1" "tp_spawn,AddOutput,target td_pharos_firstfloor,0,1" + "OnUser1" "server_command,Command,say < ULTIMATE MODE >,7,1" + "OnUser1" "global_entity_clear,InValue,Ultimate,0,1" + "OnUser1" "template_music_stage_ultimate,ForceSpawn,,0,1" + "OnUser1" "pharos_firstfloor_trigger,AddOutput,OnStartTouch server_command:Command:say < Lady Lilith? How is she here?! >:20:1,0,1" + "OnUser1" "stage_savage_or_ultimate_item_spawn,Trigger,,0,1" + "OnUser1" "template_human_item_upgrade,AddOutput,origin 724 -3772 -1248,1,1" + "OnUser1" "template_human_item_upgrade,ForceSpawn,,1.01,1" + "OnUser1" "pharos_firstfloor_trigger,AddOutput,OnStartTouch server_command:Command:say < She vanished... >:25:1,0,1" + "OnUser1" "td_pharos_stairs,AddOutput,angles 0 0 0,0,1" +} +add: +{ + "origin" "-440 3280 -248" + "targetname" "global_teleport_manager" + "Case13" "pharos_fourthfloor_stairs" + "Case12" "pharos_thirdfloor_stairs" + "Case11" "pharos_indoor" + "Case10" "pharos_secondfloor" + "Case09" "lilith" + "Case08" "tyrant" + "Case07" "pharos_thirdfloor" + "Case06" "garland" + "Case05" "pharos_firstfloor" + "Case04" "pharos_stairs" + "Case03" "ladylilith" + "Case02" "shadowlord" + "Case01" "pharos" + "classname" "logic_case" + "hammerid" "1876599" + "OnCase01" "tp_afk_*,AddOutput,target td_pharos,0,-1" + "OnCase02" "tp_afk_*,AddOutput,target td_shadowlord,0,-1" + "OnCase03" "tp_afk_*,AddOutput,target td_ladylilith,0,-1" + "OnCase04" "tp_afk_*,AddOutput,target td_pharos_stairs,0,-1" + "OnCase05" "tp_afk_*,AddOutput,target td_pharos_firstfloor,0,-1" + "OnCase06" "tp_afk_*,AddOutput,target td_garland,0,-1" + "OnCase07" "tp_afk_*,AddOutput,target td_pharos_thirdfloor,0,-1" + "OnCase08" "tp_afk_*,AddOutput,target td_tyrant,0,-1" + "OnCase09" "tp_afk_*,AddOutput,target td_lilith,0,-1" + "OnCase10" "tp_afk_*,AddOutput,target td_pharos_secondfloor,0,-1" + "OnCase11" "tp_afk_*,AddOutput,target td_pharos_indoor,0,-1" + "OnCase12" "tp_afk_*,AddOutput,target td_pharos_thirdfloor_stairs,0,-1" + "OnCase13" "tp_afk_*,AddOutput,target td_pharos_fourthfloor_stairs,0,-1" +} +add: +{ + "origin" "-5392 -136 1880" + "targetname" "yojimbo_cast_effect_laser" + "start_active" "0" + "effect_name" "custom_particle_306" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 90 0" + "classname" "info_particle_system" + "hammerid" "1876601" + "OnUser1" "!self,Start,,0,1" + "OnUser1" "!self,Kill,,5,1" +} +add: +{ + "origin" "-424 3168 -248" + "UseRandomTime" "0" + "targetname" "level_timer" + "StartDisabled" "0" + "spawnflags" "0" + "RefireTime" "1" + "classname" "logic_timer" + "hammerid" "1876670" + "OnTimer" "level_hudhint,Display,,0,-1" + "OnUser1" "!self,AddOutput,OnTimer global_nuke:CountPlayersInZone::0:-1,0,1" + "OnUser1" "!self,FireTimer,,0.1,1" +} +add: +{ + "origin" "-472 3264 -248" + "Template02" "nade_explosion" + "Template01" "nade_spawn" + "targetname" "template_nade" + "spawnflags" "0" + "classname" "point_template" + "hammerid" "1876677" + "OnUser4" "!self,Kill,,0.1,1" + "OnUser4" "nade_maker,Kill,,0,1" + "OnUser4" "nade_sound,Kill,,0,1" +} +add: +{ + "origin" "-456 3264 -248" + "targetname" "nade_spawn" + "StartDisabled" "0" + "spawnflags" "0" + "classname" "logic_relay" + "hammerid" "1876679" + "OnSpawn" "!self,Kill,,0.1,1" + "OnSpawn" "nade_explosion,Explode,,0,1" + "OnSpawn" "nade_sound,PlaySound,,0,1" +} +add: +{ + "origin" "-472 3264 -248" + "targetname" "nade_explosion" + "spawnflags" "73" + "rendermode" "5" + "iRadiusOverride" "0" + "iMagnitude" "0" + "fireballsprite" "sprites/zerogxplode.spr" + "classname" "env_explosion" + "hammerid" "1876683" +} +add: +{ + "origin" "-456 3264 -247.97" + "targetname" "nade_maker" + "spawnflags" "0" + "PostSpawnSpeed" "0" + "PostSpawnInheritAngles" "0" + "PostSpawnDirectionVariance" "0.15" + "PostSpawnDirection" "0 0 0" + "EntityTemplate" "template_nade" + "angles" "0 0 0" + "classname" "env_entity_maker" + "hammerid" "1876685" +} +add: +{ + "origin" "-376 3200 -248" + "targetname" "filter_nade" + "Negated" "0" + "filterclass" "hegrenade_projectile" + "classname" "filter_activator_class" + "hammerid" "1876687" +} +add: +{ + "origin" "-408 3184 -248" + "targetname" "filter_burn_ignore" + "Negated" "1" + "damagetype" "8" + "classname" "filter_damage_type" + "hammerid" "1876691" +} +add: +{ + "origin" "-392 3200 -248" + "targetname" "filter_boss_damage" + "Negated" "0" + "filtertype" "0" + "Filter02" "filter_burn_ignore" + "Filter01" "filter_humans" + "classname" "filter_multi" + "hammerid" "1876693" +} +add: +{ + "origin" "-472 3280 -248" + "targetname" "global_boss_case" + "classname" "logic_case" + "hammerid" "1876695" + "OnCase01" "stage_hard_trigger_1,FireUser1,,0,1" + "OnCase01" "stage_hard_trigger_2,FireUser2,,0,1" + "OnUser1" "!self,PickRandom,,0,1" + "OnUser1" "!self,Kill,,0.1,1" + "OnCase02" "stage_hard_trigger_1,FireUser2,,0,1" + "OnCase02" "stage_hard_trigger_2,FireUser1,,0,1" +} +add: +{ + "origin" "-456 3280 -248" + "targetname" "global_boss_manager" + "Case05" "lilith" + "Case04" "tyrant" + "Case03" "garland" + "Case02" "ladylilith" + "Case01" "shadowlord" + "classname" "logic_case" + "hammerid" "1876697" + "OnCase03" "!self,FireUser1,,0.05,1" + "OnCase03" "boss_attack_timer,RefireTime,9,0,1" + "OnCase03" "boss_attack_counter,SetHitMax,15,0,1" + "OnCase03" "boss_fade,AddOutput,rendercolor 0 255 255,0,1" + "OnCase03" "template_boss_moving,AddOutput,origin 2848 -8584 1768,0,1" + "OnCase03" "template_boss_moving,AddOutput,angles 0 0 0,0,1" + "OnCase03" "template_boss_detect,AddOutput,origin 2848 -8584 1768,0,1" + "OnCase03" "boss_thrusterforward,AddOutput,force 1600,0,1" + "OnCase03" "boss_hudhint,AddOutput,color 0 255 255,0,1" + "OnCase03" "boss_hudhint,AddOutput,message < Garland >,0,1" + "OnCase03" "boss_detect_compare,SetCompareValue,0,0,-1" + "OnCase03" "boss_fade_reverse,AddOutput,rendercolor 0 255 255,0,1" + "OnCase01" "boss_attack_timer,RefireTime,10,0,1" + "OnCase01" "boss_attack_counter,SetHitMax,16,0,1" + "OnCase01" "boss_fade,AddOutput,rendercolor 192 64 255,0,1" + "OnCase01" "template_boss_moving,AddOutput,origin -9184 888 752,0,1" + "OnCase01" "template_boss_moving,AddOutput,angles 0 0 0,0,1" + "OnCase01" "template_boss_detect,AddOutput,origin -9184 888 744,0,1" + "OnCase01" "!self,FireUser1,,0.05,1" + "OnCase01" "boss_hudhint,AddOutput,color 192 64 255,0,1" + "OnCase01" "boss_hudhint,AddOutput,message < Shadowlord >,0,1" + "OnCase01" "!self,Kill,,0.1,1" + "OnCase01" "template_boss_moving,Kill,,0.1,-1" + "OnCase01" "template_boss_detect,Kill,,0.1,-1" + "OnCase01" "boss_fade_reverse,AddOutput,rendercolor 192 64 255,0,1" + "OnCase02" "boss_attack_timer,RefireTime,10,0,1" + "OnCase02" "boss_attack_counter,SetHitMax,16,0,1" + "OnCase02" "boss_fade,AddOutput,rendercolor 255 128 255,0,1" + "OnCase02" "template_boss_moving,AddOutput,origin -9184 -1672 744,0,1" + "OnCase02" "template_boss_moving,AddOutput,angles 0 90 0,0,1" + "OnCase02" "template_boss_detect,AddOutput,origin -9184 -1672 744,0,1" + "OnCase02" "!self,FireUser1,,0.05,1" + "OnCase02" "boss_hudhint,AddOutput,color 255 128 255,0,1" + "OnCase02" "boss_hudhint,AddOutput,message < Lady Lilith >,0,1" + "OnCase02" "!self,Kill,,0.1,1" + "OnCase02" "template_boss_moving,Kill,,0.1,-1" + "OnCase02" "template_boss_detect,Kill,,0.1,-1" + "OnCase02" "boss_fade_reverse,AddOutput,rendercolor 255 128 255,0,1" + "OnCase04" "!self,FireUser1,,0.05,1" + "OnCase04" "boss_attack_timer,RefireTime,9,0,1" + "OnCase04" "boss_attack_counter,SetHitMax,14,0,1" + "OnCase04" "boss_fade,AddOutput,rendercolor 255 128 0,0,1" + "OnCase04" "template_boss_moving,AddOutput,origin 2848 -8584 3136,0,1" + "OnCase04" "template_boss_moving,AddOutput,angles 0 270 0,0,1" + "OnCase04" "template_boss_detect,AddOutput,origin 2848 -8584 3136,0,1" + "OnCase04" "boss_thrusterforward,AddOutput,force 1200,0,1" + "OnCase04" "boss_hudhint,AddOutput,color 255 128 0,0,1" + "OnCase04" "boss_hudhint,AddOutput,message < Tyrant >,0,1" + "OnCase04" "!self,Kill,,0.1,1" + "OnCase04" "template_boss_moving,Kill,,0.1,-1" + "OnCase04" "template_boss_detect,Kill,,0.1,-1" + "OnCase04" "boss_detect_compare,SetCompareValue,1,0,1" + "OnCase04" "boss_fade_reverse,AddOutput,rendercolor 255 128 0,0,1" + "OnCase05" "!self,FireUser1,,0.05,1" + "OnCase05" "template_boss_moving,AddOutput,origin 2848 -8584 3816,0,1" + "OnCase05" "template_boss_moving,AddOutput,angles 0 180 0,0,1" + "OnCase05" "template_boss_detect,AddOutput,origin 2848 -8584 3896,0,1" + "OnCase05" "boss_attack_timer,RefireTime,10,0,1" + "OnCase05" "boss_attack_counter,SetHitMax,12,0,1" + "OnCase05" "boss_hudhint,AddOutput,color 255 255 0,0,1" + "OnCase05" "boss_hudhint,AddOutput,message < Lilith >,0,1" + "OnCase05" "boss_fade,AddOutput,rendercolor 255 128 255,0,1" + "OnCase05" "!self,Kill,,0.1,1" + "OnCase05" "template_boss_moving,Kill,,0.1,-1" + "OnCase05" "template_boss_detect,Kill,,0.1,-1" + "OnCase05" "boss_detect_compare,SetCompareValue,-1,0,-1" + "OnCase05" "boss_fade_reverse,AddOutput,rendercolor 255 128 255,0,1" + "OnUser1" "template_boss_moving,ForceSpawn,,0,-1" + "OnUser1" "template_boss_detect,ForceSpawn,,0,-1" +} +add: +{ + "origin" "-440 3296 -248" + "targetname" "boss_attack_counter" + "startvalue" "0" + "StartDisabled" "0" + "min" "0" + "max" "16" + "classname" "math_counter" + "hammerid" "1876699" + "OnHitMax" "shadowlord_body,FireUser4,,0,1" + "OnHitMax" "ladylilith_body,FireUser4,,0,1" + "OnHitMax" "garland_body,FireUser4,,0,1" + "OnHitMax" "lilith_body,FireUser4,,0,1" +} +add: +{ + "origin" "-456 3296 -248" + "UseRandomTime" "0" + "targetname" "boss_attack_timer" + "StartDisabled" "1" + "spawnflags" "0" + "RefireTime" "10" + "classname" "logic_timer" + "hammerid" "1876701" + "OnTimer" "boss_attack_counter,Add,1,0,-1" + "OnTimer" "shadowlord_attack_case,PickRandom,,0,-1" + "OnTimer" "ladylilith_attack_case,PickRandom,,0,-1" + "OnTimer" "garland_attack_case,PickRandom,,0,-1" + "OnTimer" "tyrant_attack_case,PickRandom,,0,-1" + "OnTimer" "lilith_attack_case,PickRandom,,0,-1" +} +add: +{ + "origin" "-472 3296 -248" + "targetname" "boss_hp_counter" + "startvalue" "0" + "StartDisabled" "0" + "min" "0" + "max" "12500" + "classname" "math_counter" + "hammerid" "1876703" + "OnHitMin" "boss_fade_reverse,Fade,,0,-1" + "OnHitMin" "shadowlord_body,Break,,0,1" + "OnHitMin" "ladylilith_body,Break,,0,1" + "OnHitMin" "garland_body,Break,,0,1" + "OnHitMin" "global_speed_reset,CountPlayersInZone,,0,-1" + "OnHitMin" "pharos_fourthfloor_ladylilith_model,FireUser4,,0,1" + "OnUser4" "boss_attack_timer,Kill,,0,1" + "OnUser4" "boss_attack_counter,Kill,,0,1" + "OnUser4" "boss_detect_rotating,FireUser4,,0,1" + "OnUser4" "boss_fade,Kill,,0.1,1" + "OnUser4" "boss_physbox,FireUser4,,0,1" + "OnUser4" "!self,Kill,,0.1,1" + "OnUser4" "boss_hudhint,Kill,,0,1" + "OnUser4" "template_nade,FireUser4,,0,1" + "OnUser4" "filter_physbox,Kill,,0,1" + "OnUser4" "filter_nade,Kill,,0,1" + "OnUser4" "filter_boss_damage,Kill,,0,1" + "OnUser4" "global_speed_reset,Kill,,0,1" + "OnUser4" "filter_burn_ignore,Kill,,0,1" +} +add: +{ + "origin" "-424 3296 -248" + "targetname" "boss_fade" + "spawnflags" "0" + "ReverseFadeDuration" "2" + "rendercolor" "0 0 0" + "renderamt" "255" + "duration" "1.5" + "classname" "env_fade" + "hammerid" "1876705" +} +add: +{ + "origin" "-408 3200 -248" + "targetname" "filter_nada" + "Negated" "Allow entities that match criteria" + "filterclass" "light_dynamic" + "classname" "filter_activator_class" + "hammerid" "1876709" +} +add: +{ + "origin" "-472 3184 -248" + "targetname" "filter_humans" + "Negated" "0" + "filterteam" "3" + "classname" "filter_activator_team" + "hammerid" "1876711" +} +add: +{ + "origin" "-456 3184 -248" + "targetname" "filter_zombies" + "Negated" "Allow entities that match criteria" + "filterteam" "2" + "classname" "filter_activator_team" + "hammerid" "1876713" +} +add: +{ + "origin" "-440 3184 -248" + "targetname" "filter_no_humans" + "Negated" "1" + "filterteam" "3" + "classname" "filter_activator_team" + "hammerid" "1876715" +} +add: +{ + "origin" "-424 3184 -248" + "targetname" "filter_no_zombies" + "Negated" "1" + "filterteam" "2" + "classname" "filter_activator_team" + "hammerid" "1876717" +} +add: +{ + "origin" "-472 3200 -248" + "targetname" "filter_humans_none" + "Negated" "1" + "filtertype" "1" + "Filter02" "filter_humans_item" + "Filter01" "filter_zombies" + "classname" "filter_multi" + "hammerid" "1876719" +} +add: +{ + "origin" "-456 3200 -248" + "targetname" "filter_zombies_none" + "Negated" "1" + "filtertype" "1" + "Filter02" "filter_zombies_item" + "Filter01" "filter_humans" + "classname" "filter_multi" + "hammerid" "1876721" +} +add: +{ + "origin" "-440 3200 -248" + "targetname" "filter_humans_item" + "Negated" "Allow entities that match criteria" + "filtername" "human_*" + "classname" "filter_activator_name" + "hammerid" "1876725" +} +add: +{ + "origin" "-424 3200 -248" + "targetname" "filter_zombies_item" + "Negated" "Allow entities that match criteria" + "filtername" "zombie_*" + "classname" "filter_activator_name" + "hammerid" "1876727" +} +add: +{ + "origin" "-424 3232 -247.97" + "targetname" "c4_explosion_shake" + "spawnflags" "5" + "radius" "8192" + "frequency" "200" + "duration" "4" + "amplitude" "8" + "classname" "env_shake" + "hammerid" "1876738" +} +add: +{ + "origin" "-424 3248 -247.97" + "targetname" "explosion_shake" + "spawnflags" "4" + "radius" "4096" + "frequency" "200" + "duration" "4" + "amplitude" "8" + "classname" "env_shake" + "hammerid" "1876744" +} +add: +{ + "origin" "-456 3248 -247.97" + "targetname" "explosion_maker" + "spawnflags" "0" + "PostSpawnSpeed" "0" + "PostSpawnInheritAngles" "0" + "PostSpawnDirectionVariance" "0.15" + "PostSpawnDirection" "0 0 0" + "EntityTemplate" "template_explosion" + "angles" "0 0 0" + "classname" "env_entity_maker" + "hammerid" "1876747" + "OnEntitySpawned" "explosion_effect*,FireUser1,,0.01,-1" +} +add: +{ + "origin" "-472 3248 -247.97" + "Template03" "explosion_shake" + "Template02" "explosion_sound" + "Template01" "explosion_effect" + "targetname" "template_explosion" + "spawnflags" "0" + "classname" "point_template" + "hammerid" "1876749" + "OnUser4" "!self,Kill,,0.1,1" + "OnUser4" "explosion_maker,Kill,,0,1" +} +add: +{ + "origin" "-456 3232 -247.97" + "targetname" "c4_explosion_maker" + "spawnflags" "0" + "PostSpawnSpeed" "0" + "PostSpawnInheritAngles" "0" + "PostSpawnDirectionVariance" "0.15" + "PostSpawnDirection" "0 0 0" + "EntityTemplate" "template_c4_explosion" + "angles" "0 0 0" + "classname" "env_entity_maker" + "hammerid" "1876751" + "OnEntitySpawned" "c4_explosion_effect*,FireUser1,,0.01,-1" +} +add: +{ + "origin" "-472 3232 -247.97" + "Template03" "c4_explosion_shake" + "Template02" "c4_explosion_sound" + "Template01" "c4_explosion_effect" + "targetname" "template_c4_explosion" + "spawnflags" "0" + "classname" "point_template" + "hammerid" "1876753" + "OnUser4" "!self,Kill,,0.1,1" + "OnUser4" "c4_explosion_maker,Kill,,0,1" +} +add: +{ + "origin" "-472 3232 -246.97" + "targetname" "c4_explosion_effect" + "start_active" "1" + "effect_name" "bomb_explosion_huge" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 270 0" + "classname" "info_particle_system" + "hammerid" "1876824" + "OnUser1" "c4_explosion_sound,PlaySound,,0,1" + "OnUser1" "c4_explosion_shake,StartShake,,0,1" + "OnUser1" "c4_explosion_shake,Kill,,0.05,1" + "OnUser1" "c4_explosion_sound,Kill,,0.05,1" + "OnUser1" "!self,Kill,,3,1" +} +add: +{ + "origin" "-472 3248 -246.97" + "targetname" "explosion_effect" + "start_active" "1" + "effect_name" "custom_particle_021" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 270 0" + "classname" "info_particle_system" + "hammerid" "1876889" + "OnUser1" "explosion_sound,PlaySound,,0,1" + "OnUser1" "explosion_shake,StartShake,,0,1" + "OnUser1" "explosion_shake,Kill,,0.05,1" + "OnUser1" "explosion_sound,Kill,,0.05,1" + "OnUser1" "!self,Kill,,0.1,1" +} +add: +{ + "origin" "-440 3168 -248" + "targetname" "fade_start" + "spawnflags" "0" + "ReverseFadeDuration" "2" + "rendercolor" "0 0 0" + "renderamt" "255" + "holdtime" "4" + "duration" "2" + "classname" "env_fade" + "hammerid" "1876957" + "OnUser1" "fade_start_reverse,FireUser1,,0,1" + "OnUser1" "!self,Kill,,0.1,1" +} +add: +{ + "origin" "-376 3152 -248" + "targetname" "template_maker" + "spawnflags" "0" + "PostSpawnSpeed" "0" + "PostSpawnInheritAngles" "0" + "PostSpawnDirectionVariance" "0.15" + "PostSpawnDirection" "0 0 0" + "EntityTemplate" "template_none" + "angles" "0 0 0" + "classname" "env_entity_maker" + "hammerid" "1876982" +} +add: +{ + "origin" "-9184 -1672 800" + "targetname" "ladylilith_anima_ingest_effect" + "start_active" "0" + "parentname" "ladylilith_body" + "effect_name" "custom_particle_161" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 0 0" + "classname" "info_particle_system" + "hammerid" "1877001" + "OnUser1" "!self,Start,,0,-1" + "OnUser1" "!self,Stop,,7,-1" +} +add: +{ + "origin" "-1376 -264 -1304" + "enabled" "1" + "angles" "0 0 0" + "classname" "info_player_terrorist" + "hammerid" "1877066" +} +add: +{ + "origin" "-1376 -200 -1304" + "enabled" "1" + "angles" "0 0 0" + "classname" "info_player_counterterrorist" + "hammerid" "1877068" +} +add: +{ + "origin" "-1376 -136 -1304" + "enabled" "1" + "angles" "0 0 0" + "classname" "info_player_terrorist" + "hammerid" "1877070" +} +add: +{ + "origin" "-1376 -72 -1304" + "enabled" "1" + "angles" "0 0 0" + "classname" "info_player_counterterrorist" + "hammerid" "1877072" +} +add: +{ + "origin" "-1376 -8 -1304" + "enabled" "1" + "angles" "0 0 0" + "classname" "info_player_terrorist" + "hammerid" "1877074" +} +add: +{ + "origin" "-1376 56 -1304" + "enabled" "1" + "angles" "0 0 0" + "classname" "info_player_counterterrorist" + "hammerid" "1877076" +} +add: +{ + "origin" "-1440 56 -1304" + "enabled" "1" + "angles" "0 0 0" + "classname" "info_player_terrorist" + "hammerid" "1877078" +} +add: +{ + "origin" "-9184 -1672 744" + "targetname" "ladylilith_dream_weaver_effect" + "start_active" "0" + "effect_name" "custom_particle_012" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 0 0" + "classname" "info_particle_system" + "hammerid" "1877086" + "OnUser1" "!self,Start,,0,-1" + "OnUser1" "!self,Stop,,10,-1" +} +add: +{ + "origin" "-9184 -1704 744" + "targetname" "ladylilith_dream_weaver_fade" + "spawnflags" "0" + "ReverseFadeDuration" "2" + "rendercolor" "255 128 255" + "renderamt" "255" + "holdtime" "2" + "duration" "2" + "classname" "env_fade" + "hammerid" "1877151" +} +add: +{ + "origin" "-9184 -1672 744" + "Template16" "tp_bahamut*" + "Template15" "td_bahamut_fall_modify*" + "Template13" "bahamut_glow_sound" + "Template12" "bahamut_rock_model" + "Template11" "bahamut_rock_body" + "Template10" "bahamut_body" + "Template09" "bahamut_laser_tesla" + "Template08" "bahamut_laser_wall" + "Template07" "bahamut_mega_flare_*" + "Template06" "bahamut_trigger" + "Template05" "bahamut_laser_timer" + "Template04" "bahamut_laser_sound" + "Template03" "bahamut_laser_case" + "Template02" "bahamut_laser_animation_case" + "Template01" "bahamut_model" + "targetname" "template_boss_bahamut" + "spawnflags" "2" + "classname" "point_template" + "hammerid" "1877186" + "OnEntitySpawned" "!self,Kill,,0.1,1" + "OnEntitySpawned" "boss_hp_counter,AddOutput,OnHitMin bahamut_body:Break::0:1,0,1" + "OnEntitySpawned" "boss_attack_counter,AddOutput,OnHitMax bahamut_mega_flare_spawn:Trigger::0:1,0,1" + "OnUser4" "template_bahamut_laser,Kill,,0,1" + "OnUser4" "!self,Kill,,0.1,1" +} +add: +{ + "origin" "-1440 -8 -1304" + "enabled" "1" + "angles" "0 0 0" + "classname" "info_player_counterterrorist" + "hammerid" "1877188" +} +add: +{ + "origin" "-1440 -72 -1304" + "enabled" "1" + "angles" "0 0 0" + "classname" "info_player_terrorist" + "hammerid" "1877190" +} +add: +{ + "origin" "-1440 -136 -1304" + "enabled" "1" + "angles" "0 0 0" + "classname" "info_player_counterterrorist" + "hammerid" "1877192" +} +add: +{ + "origin" "-1440 -200 -1304" + "enabled" "1" + "angles" "0 0 0" + "classname" "info_player_terrorist" + "hammerid" "1877194" +} +add: +{ + "origin" "-9184 632 744" + "targetname" "shadowlord_flame_field_effect" + "start_active" "0" + "effect_name" "custom_particle_238" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 0 0" + "classname" "info_particle_system" + "hammerid" "1877199" + "OnUser1" "!self,Start,,0,-1" + "OnUser1" "!self,Stop,,5,-1" +} +add: +{ + "origin" "-9184 -392 816" + "targetname" "shadowlord_cross_smash_effect" + "start_active" "0" + "parentname" "shadowlord_model" + "effect_name" "custom_particle_229" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 0 0" + "classname" "info_particle_system" + "hammerid" "1877264" + "OnUser1" "!self,Start,,0,-1" + "OnUser1" "!self,Stop,,5,-1" +} +add: +{ + "origin" "-5856 -1672 744" + "targetname" "yojimbo_cast_effect_push" + "start_active" "0" + "parentname" "yojimbo_train" + "effect_name" "custom_particle_306" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 180 0" + "classname" "info_particle_system" + "hammerid" "1877340" + "OnUser1" "!self,Start,,0,1" + "OnUser1" "!self,Kill,,5,1" +} +add: +{ + "origin" "-9168 -1672 744" + "TargetScale" "1" + "TargetReference" "ladylilith_body" + "targetname" "ladylilith_hurt_measure" + "Target" "ladylilith_hurt" + "MeasureType" "0" + "MeasureTarget" "ladylilith_body" + "MeasureReference" "ladylilith_body" + "classname" "logic_measure_movement" + "hammerid" "1877411" +} +add: +{ + "origin" "-9200 -1656 744" + "targetname" "relay_ladylilith_anima_ingest" + "StartDisabled" "0" + "spawnflags" "0" + "classname" "logic_relay" + "hammerid" "1877413" + "OnTrigger" "ladylilith_model,SetAnimation,attack3,0,-1" + "OnTrigger" "ladylilith_anima_ingest_hurt,FireUser1,,0,-1" + "OnTrigger" "ladylilith_anima_ingest_effect,FireUser1,,0,-1" + "OnTrigger" "boss_hudhint,Display,,0.01,-1" + "OnTrigger" "boss_hudhint,AddOutput,message < Anima Ingest >,0,-1" +} +add: +{ + "origin" "-9200 -1688 744" + "targetname" "relay_ladylilith_ruin_aurora" + "StartDisabled" "0" + "spawnflags" "0" + "classname" "logic_relay" + "hammerid" "1877415" + "OnTrigger" "ladylilith_model,SetAnimation,magic_attack_pre,0,-1" + "OnTrigger" "ladylilith_model,SetDefaultAnimation,magic_attack_pre,0,-1" + "OnTrigger" "ladylilith_model,SetAnimation,attack2,2,-1" + "OnTrigger" "boss_physbox,DisableMotion,,0,-1" + "OnTrigger" "ladylilith_model,AddOutput,OnAnimationDone boss_physbox:EnableMotion::0:1,2.01,-1" + "OnTrigger" "ladylilith_model,AddOutput,OnAnimationDone ladylilith_model:SetAnimation:idle:0:1,2.01,-1" + "OnTrigger" "ladylilith_ruin_aurora_effect,Start,,2,-1" + "OnTrigger" "ladylilith_ruin_aurora_hurt,Enable,,2,-1" + "OnTrigger" "ladylilith_model,AddOutput,OnAnimationDone ladylilith_ruin_aurora_effect:Stop::0:1,2.01,-1" + "OnTrigger" "ladylilith_model,AddOutput,OnAnimationDone ladylilith_ruin_aurora_hurt:Disable::0:1,2.01,-1" + "OnTrigger" "ladylilith_model,AddOutput,OnAnimationDone ladylilith_model:SetDefaultAnimation:idle:0:1,2.01,-1" + "OnTrigger" "boss_hudhint,AddOutput,message < Ruin Aurora >,0,-1" + "OnTrigger" "boss_hudhint,Display,,0.01,-1" +} +add: +{ + "origin" "-9184 -1688 744" + "targetname" "relay_ladylilith_dream_weaver" + "StartDisabled" "0" + "spawnflags" "0" + "classname" "logic_relay" + "hammerid" "1877417" + "OnTrigger" "ladylilith_dream_weaver_trigger,FireUser1,,2,-1" + "OnTrigger" "ladylilith_model,SetAnimation,attack3,0,-1" + "OnTrigger" "ladylilith_dream_weaver_effect,FireUser1,,0,-1" + "OnTrigger" "boss_hudhint,Display,,0.01,-1" + "OnTrigger" "boss_hudhint,AddOutput,message < Dream Weaver >,0,-1" +} +add: +{ + "origin" "-9168 -1688 744" + "TargetScale" "1" + "TargetReference" "ladylilith_body" + "targetname" "ladylilith_anima_ingest_measure" + "Target" "ladylilith_anima_ingest_hurt" + "MeasureType" "0" + "MeasureTarget" "ladylilith_body" + "MeasureReference" "ladylilith_body" + "classname" "logic_measure_movement" + "hammerid" "1877419" +} +add: +{ + "origin" "-1440 -264 -1304" + "enabled" "1" + "angles" "0 0 0" + "classname" "info_player_counterterrorist" + "hammerid" "1877427" +} +add: +{ + "origin" "-9184 888 744" + "targetname" "shadowlord_dark_shock_effect" + "start_active" "0" + "effect_name" "custom_particle_232" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 0 0" + "classname" "info_particle_system" + "hammerid" "1877665" + "OnUser1" "!self,Start,,2,-1" + "OnUser1" "!self,Stop,,5,-1" +} +add: +{ + "origin" "-9184 -392 816" + "targetname" "shadowlord_doom_arc_effect" + "start_active" "0" + "parentname" "shadowlord_model" + "effect_name" "custom_particle_236" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 0 0" + "classname" "info_particle_system" + "hammerid" "1877730" + "OnUser1" "!self,Start,,2,-1" + "OnUser1" "!self,Stop,,4,-1" +} +add: +{ + "origin" "-9168 888 744" + "targetname" "relay_shadowlord_flame_field" + "StartDisabled" "0" + "spawnflags" "0" + "classname" "logic_relay" + "hammerid" "1877805" + "OnTrigger" "shadowlord_flame_field_hurt,FireUser1,,0,-1" + "OnTrigger" "shadowlord_flame_field_effect,FireUser1,,0,-1" + "OnTrigger" "shadowlord_model,SetAnimation,charge_attack,0,-1" + "OnTrigger" "boss_hudhint,Display,,0.01,-1" + "OnTrigger" "boss_hudhint,AddOutput,message < Flame Field >,0,-1" + "OnTrigger" "shadowlord_flame_field_sound,PlaySound,,0,-1" +} +add: +{ + "origin" "-9168 872 744" + "targetname" "relay_shadowlord_dark_shock" + "StartDisabled" "0" + "spawnflags" "0" + "classname" "logic_relay" + "hammerid" "1877807" + "OnTrigger" "shadowlord_dark_shock_push,Enable,,2,-1" + "OnTrigger" "shadowlord_dark_shock_effect,FireUser1,,0,-1" + "OnTrigger" "shadowlord_model,SetAnimation,charge_attack,0,-1" + "OnTrigger" "boss_hudhint,AddOutput,message < Dark Shock >,0,-1" + "OnTrigger" "boss_hudhint,Display,,0.01,-1" + "OnTrigger" "shadowlord_dark_shock_sound,PlaySound,,2,-1" + "OnTrigger" "shadowlord_dark_shock_push,Disable,,2.3,-1" +} +add: +{ + "origin" "-9168 904 744" + "targetname" "relay_shadowlord_cross_smash" + "StartDisabled" "0" + "spawnflags" "0" + "classname" "logic_relay" + "hammerid" "1877809" + "OnTrigger" "shadowlord_cross_smash_case,FireUser1,,0,-1" + "OnTrigger" "shadowlord_cross_smash_hurt,FireUser1,,0,-1" + "OnTrigger" "shadowlord_cross_smash_effect,FireUser1,,0,-1" + "OnTrigger" "boss_hudhint,Display,,0.01,-1" + "OnTrigger" "boss_hudhint,AddOutput,message < Cross Smash >,0,-1" +} +add: +{ + "origin" "-9184 1144 744" + "targetname" "shadowlord_flame_field_effect" + "start_active" "0" + "effect_name" "custom_particle_238" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 0 0" + "classname" "info_particle_system" + "hammerid" "1877811" + "OnUser1" "!self,Stop,,5,-1" + "OnUser1" "!self,Start,,0,-1" +} +add: +{ + "origin" "-9200 872 744" + "targetname" "relay_shadowlord_ice_nova" + "StartDisabled" "0" + "spawnflags" "0" + "classname" "logic_relay" + "hammerid" "1877876" + "OnTrigger" "boss_detect_maker,AddOutput,EntityTemplate template_shadowlord_ice_nova,0,-1" + "OnTrigger" "boss_detect_trigger,Enable,,1,-1" + "OnTrigger" "boss_detect_trigger,Enable,,2,-1" + "OnTrigger" "boss_detect_trigger,Enable,,3,-1" + "OnTrigger" "shadowlord_model,SetAnimation,charge_attack,0,-1" + "OnTrigger" "boss_hudhint,Display,,0.01,-1" + "OnTrigger" "boss_hudhint,AddOutput,message < Ice Nova >,0,-1" +} +add: +{ + "origin" "-9200 888 744" + "targetname" "relay_shadowlord_doom_arc" + "StartDisabled" "0" + "spawnflags" "0" + "classname" "logic_relay" + "hammerid" "1877878" + "OnTrigger" "shadowlord_doom_arc_hurt,FireUser1,,0,-1" + "OnTrigger" "shadowlord_doom_arc_effect,FireUser1,,0,-1" + "OnTrigger" "boss_physbox,DisableMotion,,0,-1" + "OnTrigger" "boss_physbox,EnableMotion,,2,-1" + "OnTrigger" "shadowlord_model,SetAnimation,appear,0,-1" + "OnTrigger" "boss_hudhint,Display,,0.01,-1" + "OnTrigger" "boss_hudhint,AddOutput,message < Doom Arc >,0,-1" +} +add: +{ + "origin" "-9200 904 744" + "TargetScale" "1" + "TargetReference" "shadowlord_body" + "targetname" "shadowlord_hurt_measure" + "Target" "shadowlord_hurt" + "MeasureType" "0" + "MeasureTarget" "shadowlord_body" + "MeasureReference" "shadowlord_body" + "classname" "logic_measure_movement" + "hammerid" "1877956" +} +add: +{ + "origin" "2048 -3528 -940" + "targetname" "tp_spawn_effect" + "start_active" "0" + "effect_name" "custom_particle_251" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 180 0" + "classname" "info_particle_system" + "hammerid" "1877958" +} +add: +{ + "origin" "-9184 -1656 744" + "targetname" "relay_ladylilith_rock_burst" + "StartDisabled" "0" + "spawnflags" "0" + "classname" "logic_relay" + "hammerid" "1879523" + "OnTrigger" "boss_detect_maker,AddOutput,EntityTemplate template_ladylilith_rock_burst,0,-1" + "OnTrigger" "ladylilith_model,SetAnimation,attack2,0,-1" + "OnTrigger" "boss_detect_trigger,Enable,,1,-1" + "OnTrigger" "boss_hudhint,Display,,0.01,-1" + "OnTrigger" "boss_hudhint,AddOutput,message < Rock Burst >,0,-1" + "OnTrigger" "ladylilith_model,SetAnimation,attack2,2,-1" + "OnTrigger" "boss_detect_trigger,Enable,,3,-1" + "OnTrigger" "boss_detect_trigger,Enable,,5,-1" + "OnTrigger" "ladylilith_model,SetAnimation,attack2,4,-1" +} +add: +{ + "origin" "-9200 -1672 744" + "targetname" "relay_ladylilith_sun_strike" + "StartDisabled" "0" + "spawnflags" "0" + "classname" "logic_relay" + "hammerid" "1879529" + "OnTrigger" "boss_detect_maker,AddOutput,EntityTemplate template_ladylilith_sun_strike,0,-1" + "OnTrigger" "ladylilith_model,SetAnimation,attack3,0,-1" + "OnTrigger" "boss_detect_trigger,Enable,,1,-1" + "OnTrigger" "boss_detect_trigger,Enable,,2,-1" + "OnTrigger" "boss_detect_trigger,Enable,,3,-1" + "OnTrigger" "boss_detect_trigger,Enable,,5,-1" + "OnTrigger" "boss_detect_trigger,Enable,,4,-1" + "OnTrigger" "boss_hudhint,Display,,0.01,-1" + "OnTrigger" "boss_hudhint,AddOutput,message < Sun Strike >,0,-1" +} +add: +{ + "origin" "-5224 -384 1880" + "targetname" "yojimbo_physexplosion" + "targetentityname" "stage_hard_final_door_physbox" + "spawnflags" "1" + "radius" "0" + "magnitude" "1800000" + "inner_radius" "0" + "classname" "env_physexplosion" + "hammerid" "1879824" + "OnUser1" "!self,Explode,,0,-1" + "OnUser1" "!self,FireUser1,,0.01,-1" +} +add: +{ + "origin" "-5560 -384 1880" + "targetname" "yojimbo_physexplosion" + "targetentityname" "stage_hard_final_door_physbox" + "spawnflags" "1" + "radius" "0" + "magnitude" "1800000" + "inner_radius" "0" + "classname" "env_physexplosion" + "hammerid" "1879828" + "OnUser1" "!self,Explode,,0,-1" + "OnUser1" "!self,FireUser1,,0.01,-1" +} +add: +{ + "origin" "-5872 -1672 744" + "targetname" "yojimbo_fade" + "spawnflags" "0" + "ReverseFadeDuration" "0.8" + "rendercolor" "0 0 0" + "renderamt" "255" + "holdtime" "0.5" + "duration" "0.8" + "classname" "env_fade" + "hammerid" "1880092" + "OnUser1" "!self,Fade,,0,1" + "OnUser1" "!self,FadeReverse,,1.2,1" + "OnUser1" "!self,Kill,,1.3,1" +} +add: +{ + "origin" "-5856 -1672 744" + "Template13" "yojimbo_cast_effect_laser" + "Template12" "yojimbo_physexplosion" + "Template11" "yojimbo_laser_case" + "Template10" "yojimbo_hurt" + "Template09" "stage_hard_trigger_yojimbo" + "Template08" "yojimbo_cast_effect_push" + "Template07" "yojimbo_push_side" + "Template06" "yojimbo_push" + "Template05" "yojimbo_fade" + "Template04" "yojimbo_path_*" + "Template03" "yojimbo_train" + "Template02" "yojimbo_model" + "Template01" "yojimbo_body" + "targetname" "template_boss_yojimbo" + "spawnflags" "2" + "classname" "point_template" + "hammerid" "1880094" + "OnEntitySpawned" "!self,Kill,,0.1,1" + "OnEntitySpawned" "pharos_gate_door_5_*,Open,,0,1" + "OnEntitySpawned" "yojimbo_train,FireUser1,,0.01,1" + "OnUser4" "template_yojimbo_laser,Kill,,0,1" + "OnUser4" "!self,Kill,,0.1,1" +} +add: +{ + "origin" "-5392 -264 1906" + "Template04" "yojimbo_laser_sound" + "Template03" "yojimbo_laser_hurt" + "Template02" "yojimbo_laser_light" + "Template01" "yojimbo_laser_movelinear" + "targetname" "template_yojimbo_laser" + "spawnflags" "2" + "classname" "point_template" + "hammerid" "1880128" + "OnEntitySpawned" "yojimbo_laser_movelinear,Open,,0.01,1" + "OnEntitySpawned" "yojimbo_laser_sound,PlaySound,,0.01,1" + "OnEntitySpawned" "!self,Kill,,0.1,1" + "OnEntitySpawned" "stage_hard_final_door_breakable,Break,,0.01,1" + "OnEntitySpawned" "event_stocker,AddOutput,OnUser1 stage_hard_final_door_breakable:Kill::0:-1,0,1" + "OnEntitySpawned" "event_stocker,AddOutput,OnUser1 stage_hard_final_door_physbox:Kill::0:-1,0,1" + "OnEntitySpawned" "event_stocker,AddOutput,OnUser1 stage_hard_final_door_1*:Kill::0:-1,0,1" +} +add: +{ + "origin" "-5392 -264 1922" + "targetname" "yojimbo_laser_case" + "classname" "logic_case" + "hammerid" "1880138" + "OnCase01" "template_yojimbo_laser,AddOutput,origin -5392 -264 1906,0,1" + "OnCase02" "template_yojimbo_laser,AddOutput,origin -5392 -264 1938,0,1" + "OnUser1" "!self,PickRandom,,0,1" + "OnUser1" "template_yojimbo_laser,ForceSpawn,,0.01,1" + "OnUser1" "!self,Kill,,0.1,1" + "OnCase03" "template_yojimbo_laser,AddOutput,origin -5392 -264 1970,0,1" +} +add: +{ + "origin" "2952 -8584 1768" + "targetname" "garland_attack_case" + "classname" "logic_case" + "hammerid" "1880169" + "OnCase03" "relay_garland_flare_lazer,Trigger,,0,-1" + "OnCase01" "relay_garland_bravery,Trigger,,0,-1" + "OnCase02" "relay_garland_cyclone,Trigger,,0,-1" + "OnCase04" "relay_garland_round_edge,Trigger,,0,-1" + "OnCase05" "relay_garland_searing_implosion,Trigger,,0,-1" + "OnCase06" "relay_garland_ultra_attack,Trigger,,0,-1" +} +add: +{ + "origin" "2848 -8584 1768" + "Template16" "garland_hp_add" + "Template15" "garland_sound_*" + "Template14" "garland_attack_case" + "Template13" "garland_searing_implosion_maker" + "Template12" "garland_wall*" + "Template11" "garland_nade_trigger" + "Template10" "garland_sound_*" + "Template09" "garland_hurt*" + "Template08" "garland_maker" + "Template07" "garland_ultra_attack_*" + "Template06" "garland_hp_add_push" + "Template05" "garland_round_edge_*" + "Template04" "relay_garland_*" + "Template03" "pharos_secondfloor_wall_garland" + "Template02" "garland_bravery_*" + "Template01" "garland_body" + "targetname" "template_boss_garland" + "spawnflags" "2" + "classname" "point_template" + "hammerid" "1880171" + "OnUser4" "!self,Kill,,0.1,1" + "OnUser4" "template_garland_*,Kill,,0,1" + "OnEntitySpawned" "global_boss_manager,InValue,garland,0,1" + "OnEntitySpawned" "!self,Kill,,0.1,1" +} +add: +{ + "origin" "-9200 -1648 832" + "targetname" "ladylilith_ruin_aurora_effect" + "start_active" "0" + "parentname" "ladylilith_body" + "effect_name" "custom_particle_167" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 90 0" + "classname" "info_particle_system" + "hammerid" "1880194" +} +add: +{ + "origin" "1004 -3528 -1248" + "targetname" "spawn_button_counter" + "startvalue" "0" + "StartDisabled" "0" + "min" "0" + "max" "3" + "classname" "math_counter" + "hammerid" "1880337" + "OnHitMax" "!self,Kill,,0.1,1" + "OnHitMax" "spawn_door,Open,,30,1" + "OnHitMax" "server_command,Command,say < Gate is opening -- A teleport has activated >,30,1" + "OnHitMax" "server_command,Command,say < Defend until the gate opens >,0,1" + "OnHitMax" "music_stage_ultimate_start,PlaySound,,30,1" +} +add: +{ + "origin" "2920 -8584 1768" + "targetname" "garland_searing_implosion_effect_target" + "start_active" "1" + "parentname" "garland_searing_implosion_tracktrain" + "effect_name" "custom_particle_051" + "drawinfastreflection" "0" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 180 0" + "classname" "info_particle_system" + "hammerid" "1880339" +} +add: +{ + "origin" "2920 -8584 1768" + "targetname" "garland_searing_implosion_env_explosion" + "spawnflags" "788" + "rendermode" "5" + "parentname" "garland_searing_implosion_tracktrain" + "iRadiusOverride" "256" + "iMagnitude" "100" + "fireballsprite" "sprites/zerogxplode.spr" + "classname" "env_explosion" + "hammerid" "1880404" +} +add: +{ + "origin" "2936 -8568 1768" + "targetname" "relay_garland_round_edge" + "StartDisabled" "0" + "spawnflags" "0" + "classname" "logic_relay" + "hammerid" "1880447" + "OnTrigger" "garland_model,SetAnimation,attack4,0,-1" + "OnTrigger" "garland_round_edge_rotating,Open,,1.3,-1" + "OnTrigger" "garland_round_edge_hurt,Enable,,1.3,-1" + "OnTrigger" "boss_hudhint,AddOutput,message < Round Edge >,0,-1" + "OnTrigger" "boss_hudhint,Display,,0.01,-1" + "OnTrigger" "garland_round_edge_effect,FireUser1,,0,-1" +} +add: +{ + "origin" "2920 -8568 1768" + "targetname" "relay_garland_flare_lazer" + "StartDisabled" "0" + "spawnflags" "0" + "classname" "logic_relay" + "hammerid" "1880449" + "OnTrigger" "garland_model,SetAnimation,attack4,0,-1" + "OnTrigger" "garland_maker,AddOutput,EntityTemplate template_garland_flare_lazer,0,-1" + "OnTrigger" "garland_maker,ForceSpawn,,0.01,-1" + "OnTrigger" "garland_maker,AddOutput,angles 0 45 0,0.02,-1" + "OnTrigger" "garland_maker,ForceSpawn,,0.03,-1" + "OnTrigger" "garland_maker,AddOutput,angles 0 90 0,0.04,-1" + "OnTrigger" "garland_maker,ForceSpawn,,0.05,-1" + "OnTrigger" "garland_maker,ForceSpawn,,0.07,-1" + "OnTrigger" "garland_maker,ForceSpawn,,0.09,-1" + "OnTrigger" "garland_maker,ForceSpawn,,0.11,-1" + "OnTrigger" "garland_maker,AddOutput,angles 0 135 0,0.06,-1" + "OnTrigger" "garland_maker,AddOutput,angles 0 180 0,0.08,-1" + "OnTrigger" "garland_maker,AddOutput,angles 0 225 0,0.1,-1" + "OnTrigger" "garland_maker,ForceSpawn,,0.13,-1" + "OnTrigger" "garland_maker,ForceSpawn,,0.15,-1" + "OnTrigger" "garland_maker,AddOutput,angles 0 270 0,0.12,-1" + "OnTrigger" "garland_maker,AddOutput,angles 0 315 0,0.14,-1" + "OnTrigger" "garland_flare_lazer_model*,Enable,,1,-1" + "OnTrigger" "garland_flare_lazer_move*,Open,,1,-1" + "OnTrigger" "garland_flare_lazer_hurt*,Enable,,1,-1" + "OnTrigger" "boss_hudhint,AddOutput,message < Flare Lazer >,0,-1" + "OnTrigger" "boss_hudhint,Display,,0.01,-1" +} +add: +{ + "origin" "2904 -8584 1776" + "targetname" "garland_maker" + "spawnflags" "0" + "PostSpawnSpeed" "0" + "PostSpawnInheritAngles" "0" + "PostSpawnDirectionVariance" "0.15" + "PostSpawnDirection" "0 0 0" + "parentname" "garland_body" + "EntityTemplate" "template_garland_cyclone" + "angles" "0 0 0" + "classname" "env_entity_maker" + "hammerid" "1880451" +} +add: +{ + "origin" "2952 -8600 1768" + "targetname" "relay_garland_searing_implosion" + "StartDisabled" "0" + "spawnflags" "0" + "classname" "logic_relay" + "hammerid" "1880453" + "OnTrigger" "garland_model,SetAnimation,charge,0,-1" + "OnTrigger" "boss_hudhint,AddOutput,message < Searing Implosion >,0,-1" + "OnTrigger" "boss_hudhint,Display,,0.01,-1" + "OnTrigger" "garland_searing_implosion_maker,ForceSpawn,,1,-1" + "OnTrigger" "garland_searing_implosion_maker,ForceSpawn,,2,-1" + "OnTrigger" "garland_searing_implosion_maker,ForceSpawn,,3,-1" + "OnTrigger" "garland_searing_implosion_maker,ForceSpawn,,4,-1" + "OnTrigger" "garland_searing_implosion_maker,ForceSpawn,,5,-1" +} +add: +{ + "origin" "2936 -8600 1768" + "targetname" "relay_garland_bravery" + "StartDisabled" "0" + "spawnflags" "0" + "classname" "logic_relay" + "hammerid" "1880455" + "OnTrigger" "garland_model,SetAnimation,charge,0,-1" + "OnTrigger" "garland_hurt,AddOutput,damage 200,0,-1" + "OnTrigger" "boss_thrusterforward,AddOutput,force 2000,0,-1" + "OnTrigger" "garland_hurt,AddOutput,damage 100,7,-1" + "OnTrigger" "boss_thrusterforward,AddOutput,force 1800,7,-1" + "OnTrigger" "garland_bravery_effect,FireUser1,,0,-1" + "OnTrigger" "boss_hudhint,AddOutput,message < Bravery >,0,-1" + "OnTrigger" "boss_hudhint,Display,,0.01,-1" +} +add: +{ + "origin" "2920 -8600 1768" + "targetname" "relay_garland_cyclone" + "StartDisabled" "0" + "spawnflags" "0" + "classname" "logic_relay" + "hammerid" "1880457" + "OnTrigger" "garland_model,SetAnimation,attack5,0,-1" + "OnTrigger" "boss_hudhint,AddOutput,message < Cyclone >,0,-1" + "OnTrigger" "boss_hudhint,Display,,0.01,-1" + "OnTrigger" "garland_maker,AddOutput,EntityTemplate template_garland_cyclone,0,-1" + "OnTrigger" "garland_maker,ForceSpawn,,1,-1" + "OnTrigger" "garland_maker,ForceSpawn,,1.01,-1" + "OnTrigger" "garland_maker,ForceSpawn,,1.02,-1" + "OnTrigger" "garland_maker,ForceSpawn,,1.03,-1" + "OnTrigger" "garland_maker,ForceSpawn,,1.04,-1" +} +add: +{ + "origin" "2952 -8568 1768" + "targetname" "relay_garland_ultra_attack" + "StartDisabled" "0" + "spawnflags" "0" + "classname" "logic_relay" + "hammerid" "1880466" + "OnTrigger" "garland_model,SetAnimation,attack6,0,-1" + "OnTrigger" "boss_physbox,DisableMotion,,0,-1" + "OnTrigger" "garland_model,AddOutput,OnAnimationDone boss_physbox:EnableMotion::0:1,0.01,-1" + "OnTrigger" "garland_ultra_attack_hurt,FireUser1,,0,-1" + "OnTrigger" "boss_hudhint,AddOutput,message < Ultra Attack >,0,-1" + "OnTrigger" "boss_hudhint,Display,,0.01,-1" + "OnTrigger" "garland_ultra_attack_sound,PlaySound,,0.8,-1" +} +add: +{ + "origin" "-1440 -328 -1304" + "enabled" "1" + "angles" "0 0 0" + "classname" "info_player_terrorist" + "hammerid" "1880468" +} +add: +{ + "origin" "-1504 -328 -1304" + "enabled" "1" + "angles" "0 0 0" + "classname" "info_player_counterterrorist" + "hammerid" "1880470" +} +add: +{ + "origin" "-1504 -264 -1304" + "enabled" "1" + "angles" "0 0 0" + "classname" "info_player_terrorist" + "hammerid" "1880472" +} +add: +{ + "origin" "-1504 -200 -1304" + "enabled" "1" + "angles" "0 0 0" + "classname" "info_player_counterterrorist" + "hammerid" "1880474" +} +add: +{ + "origin" "-1504 -136 -1304" + "enabled" "1" + "angles" "0 0 0" + "classname" "info_player_terrorist" + "hammerid" "1880476" +} +add: +{ + "origin" "-1504 -72 -1304" + "enabled" "1" + "angles" "0 0 0" + "classname" "info_player_counterterrorist" + "hammerid" "1880478" +} +add: +{ + "origin" "-1504 -8 -1304" + "enabled" "1" + "angles" "0 0 0" + "classname" "info_player_terrorist" + "hammerid" "1880520" +} +add: +{ + "origin" "-1504 56 -1304" + "enabled" "1" + "angles" "0 0 0" + "classname" "info_player_counterterrorist" + "hammerid" "1880522" +} +add: +{ + "origin" "-1568 56 -1304" + "enabled" "1" + "angles" "0 0 0" + "classname" "info_player_terrorist" + "hammerid" "1880524" +} +add: +{ + "origin" "-1568 -8 -1304" + "enabled" "1" + "angles" "0 0 0" + "classname" "info_player_counterterrorist" + "hammerid" "1880526" +} +add: +{ + "origin" "-1568 -72 -1304" + "enabled" "1" + "angles" "0 0 0" + "classname" "info_player_terrorist" + "hammerid" "1880528" +} +add: +{ + "origin" "-1568 -136 -1304" + "enabled" "1" + "angles" "0 0 0" + "classname" "info_player_counterterrorist" + "hammerid" "1880589" +} +add: +{ + "origin" "-1568 -200 -1304" + "enabled" "1" + "angles" "0 0 0" + "classname" "info_player_terrorist" + "hammerid" "1880591" +} +add: +{ + "origin" "-1568 -264 -1304" + "enabled" "1" + "angles" "0 0 0" + "classname" "info_player_counterterrorist" + "hammerid" "1880593" +} +add: +{ + "origin" "-1568 -328 -1304" + "enabled" "1" + "angles" "0 0 0" + "classname" "info_player_terrorist" + "hammerid" "1880611" +} +add: +{ + "origin" "-1632 56 -1304" + "enabled" "1" + "angles" "0 0 0" + "classname" "info_player_counterterrorist" + "hammerid" "1880613" +} +add: +{ + "origin" "-1632 -8 -1304" + "enabled" "1" + "angles" "0 0 0" + "classname" "info_player_terrorist" + "hammerid" "1880615" +} +add: +{ + "origin" "-1632 -72 -1304" + "enabled" "1" + "angles" "0 0 0" + "classname" "info_player_counterterrorist" + "hammerid" "1880617" +} +add: +{ + "origin" "-1632 -136 -1304" + "enabled" "1" + "angles" "0 0 0" + "classname" "info_player_terrorist" + "hammerid" "1880619" +} +add: +{ + "origin" "-1632 -200 -1304" + "enabled" "1" + "angles" "0 0 0" + "classname" "info_player_counterterrorist" + "hammerid" "1880621" +} +add: +{ + "origin" "-1632 -264 -1304" + "enabled" "1" + "angles" "0 0 0" + "classname" "info_player_terrorist" + "hammerid" "1880623" +} +add: +{ + "origin" "-1632 -328 -1304" + "enabled" "1" + "angles" "0 0 0" + "classname" "info_player_counterterrorist" + "hammerid" "1880625" +} +add: +{ + "origin" "-1176 56 -1304" + "enabled" "1" + "angles" "0 0 0" + "classname" "info_player_terrorist" + "hammerid" "1880627" +} +add: +{ + "origin" "-1176 -8 -1304" + "enabled" "1" + "angles" "0 0 0" + "classname" "info_player_counterterrorist" + "hammerid" "1880629" +} +add: +{ + "origin" "-1176 -72 -1304" + "enabled" "1" + "angles" "0 0 0" + "classname" "info_player_terrorist" + "hammerid" "1880631" +} +add: +{ + "origin" "-1112 -72 -1304" + "enabled" "1" + "angles" "0 0 0" + "classname" "info_player_counterterrorist" + "hammerid" "1880633" +} +add: +{ + "origin" "-1112 -8 -1304" + "enabled" "1" + "angles" "0 0 0" + "classname" "info_player_terrorist" + "hammerid" "1880635" +} +add: +{ + "origin" "-1112 56 -1304" + "enabled" "1" + "angles" "0 0 0" + "classname" "info_player_counterterrorist" + "hammerid" "1880637" +} +add: +{ + "origin" "-1176 -136 -1304" + "enabled" "1" + "angles" "0 0 0" + "classname" "info_player_counterterrorist" + "hammerid" "1880639" +} +add: +{ + "origin" "-1112 -136 -1304" + "enabled" "1" + "angles" "0 0 0" + "classname" "info_player_terrorist" + "hammerid" "1880641" +} +add: +{ + "origin" "-1176 -200 -1304" + "enabled" "1" + "angles" "0 0 0" + "classname" "info_player_terrorist" + "hammerid" "1880643" +} +add: +{ + "origin" "-1112 -200 -1304" + "enabled" "1" + "angles" "0 0 0" + "classname" "info_player_counterterrorist" + "hammerid" "1880645" +} +add: +{ + "origin" "-1176 -264 -1304" + "enabled" "1" + "angles" "0 0 0" + "classname" "info_player_counterterrorist" + "hammerid" "1880696" +} +add: +{ + "origin" "-1112 -264 -1304" + "enabled" "1" + "angles" "0 0 0" + "classname" "info_player_terrorist" + "hammerid" "1880698" +} +add: +{ + "origin" "-1176 -328 -1304" + "enabled" "1" + "angles" "0 0 0" + "classname" "info_player_terrorist" + "hammerid" "1880700" +} +add: +{ + "origin" "-1112 -328 -1304" + "enabled" "1" + "angles" "0 0 0" + "classname" "info_player_counterterrorist" + "hammerid" "1880702" +} +add: +{ + "origin" "-1056 -136 -1304" + "enabled" "1" + "angles" "0 0 0" + "classname" "info_player_terrorist" + "hammerid" "1880704" +} +add: +{ + "origin" "-9184 -1720 744" + "targetname" "ladylilith_dream_weaver_fade_reverse" + "spawnflags" "1" + "ReverseFadeDuration" "2" + "rendercolor" "255 128 255" + "renderamt" "255" + "holdtime" "2" + "duration" "2" + "classname" "env_fade" + "hammerid" "3673625" +} +add: +{ + "origin" "-424 3296 -232" + "targetname" "boss_fade_reverse" + "spawnflags" "1" + "ReverseFadeDuration" "2" + "rendercolor" "0 0 0" + "renderamt" "255" + "duration" "1.5" + "classname" "env_fade" + "hammerid" "3673671" +} +add: +{ + "origin" "-440 3168 -232" + "targetname" "fade_start_reverse" + "spawnflags" "1" + "ReverseFadeDuration" "2" + "rendercolor" "0 0 0" + "renderamt" "255" + "holdtime" "4" + "duration" "2" + "classname" "env_fade" + "hammerid" "3673818" + "OnUser1" "!self,Fade,,0,1" + "OnUser1" "!self,Kill,,0.1,1" +} +add: +{ + "origin" "2912 -8584 3896" + "targetname" "lilith_fade_reverse" + "spawnflags" "1" + "ReverseFadeDuration" "2" + "rendercolor" "0 0 0" + "renderamt" "255" + "holdtime" "2" + "duration" "2" + "classname" "env_fade" + "hammerid" "3673832" +} +add: +{ + "origin" "-8996 -1672 776" + "Template02" "bahamut_laser_hurt_high" + "Template01" "bahamut_laser_movelinear_high" + "targetname" "template_bahamut_laser_high" + "spawnflags" "0" + "classname" "point_template" + "hammerid" "3771543" + "OnEntitySpawned" "bahamut_laser_movelinear_high*,Open,,0.01,-1" +} +; Generated 450 add blocks. + +; File generated on Sat, 12 Dec 2020 20:28:04 +0000 in 0.13174939155578613 seconds. diff --git a/ze_ffxiv_wanderers_palace_v6css.cfg b/ze_ffxiv_wanderers_palace_v6css.cfg new file mode 100644 index 0000000..d0fd54f --- /dev/null +++ b/ze_ffxiv_wanderers_palace_v6css.cfg @@ -0,0 +1,201 @@ +;ze_ffxiv_wanderers_palace_v6css -- Stripper config needed to fix issues +;Last updated August 29th, 2020 + +;Enables bhop at the start of every round since Stage 3 disables and re-enables it at times + +modify: +{ + match: + { + "classname" "logic_auto" + } + insert: + { + "OnNewGame" "Server,FireUser4,,0,-1" + } +} + +;Edits a console message that I forgot to edit after the boss on Stage 1 + +modify: +{ + match: + { + "targetname" "KOH_Hitbox" + "classname" "func_physbox_multiplayer" + } + delete: + { + "OnBreak" "Server,Command,say < Boss has been defeated >,0,1" + } + insert: + { + "OnBreak" "Server,Command,say < The Keeper of Halidom has been defeated >,0,1" + } +} + +;Adds extra HP to Kain Highwind in Stage 2 as HP is too little and boss dies too fast + +modify: +{ + match: + { + "targetname" "Kain_Highwind_HP_Add" + "filtername" "Filter_Team_Human" + "classname" "trigger_multiple" + } + delete: + { + "OnStartTouch" "Boss_HP_Counter,Add,150,0,-1" + } + insert: + { + "OnStartTouch" "Boss_HP_Counter,Add,300,0,-1" + } +} + +;Adds an extra tp on Ultimate stage so that if you fall as a zombie you get teleported + +add: +{ + "origin" "-12668 11892 876" + "targetname" "TD_Castle_Extra" + "angles" "0 0 0" + "classname" "info_teleport_destination" +} + +add: +{ + "model" "*199" + "UseLandmarkAngles" "1" + "targetname" "TP_Castle_Fallen_Extra" + "target" "TD_Castle_Extra" + "StartDisabled" "0" + "spawnflags" "1" + "origin" "-11136 11888 -800" + "CheckDestIfClearForPlayer" "0" + "classname" "trigger_teleport" + "OnStartTouch" "Filter_Team_Zombie,TestActivator,,0,-1" +} + +;Adds a new hurt trigger in the middle of the bridge during lazers to discourage jumping all of them + +add: +{ + "model" "*160" + "targetname" "Garland_Laser_Hurt_Middle" + "StartDisabled" "1" + "spawnflags" "1" + "origin" "-13752 -68 -315" + "nodmgforce" "0" + "filtername" "Filter_Team_Human" + "damagetype" "1" + "damagemodel" "0" + "damagecap" "20" + "damage" "240" + "classname" "trigger_hurt" + + "OnUser2" "!self,Enable,,0,-1" + + "OnUser3" "!self,Disable,,0,-1" +} + +add: +{ + "origin" "-12200 -260 -346" + "targetname" "Garland_Laser_Hurt_Middle_Particle" + "start_active" "0" + "effect_name" "custom_particle_056" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 0 0" + "classname" "info_particle_system" +} + +add: +{ + "origin" "-12200 -330 -346" + "targetname" "Garland_Laser_Hurt_Middle_Particle" + "start_active" "0" + "effect_name" "custom_particle_056" + "cpoint7_parent" "0" + "cpoint6_parent" "0" + "cpoint5_parent" "0" + "cpoint4_parent" "0" + "cpoint3_parent" "0" + "cpoint2_parent" "0" + "cpoint1_parent" "0" + "angles" "0 0 0" + "classname" "info_particle_system" +} + +modify: +{ + match: + { + "targetname" "Trigger_Ultimate" + "origin" "-11016 -64 56" + "filtername" "Filter_Team_Human" + "classname" "trigger_once" + } + insert: + { + "OnStartTouch" "Garland_Laser_Hurt_Middle,FireUser2,,6,1" + "OnStartTouch" "Garland_Laser_Hurt_Middle_Particle,Start,,6,1" + } +} + +modify: +{ + match: + { + "targetname" "Garland_Hitbox" + "damagefilter" "Filter_Nada" + "classname" "func_physbox_multiplayer" + } + insert: + { + "OnBreak" "Garland_Laser_Hurt_Middle,FireUser3,,0,1" + "OnBreak" "Garland_Laser_Hurt_Middle_Particle,Stop,,0,1" + } +} + +;Reduces the height of some lazers to make it so that you can't stand up during them + +modify: +{ + match: + { + "targetname" "Garland_Laser_Case" + "classname" "logic_case" + } + delete: + { + "OnCase03" "Garland_Laser_Maker,AddOutput,origin -13132 -56 -260,0,-1" + "OnCase04" "Garland_Laser_Maker,AddOutput,origin -13132 -56 -275,0,-1" + "OnCase04" "Garland_Laser_Maker,AddOutput,angles 0 0 7,0,-1" + "OnCase05" "Garland_Laser_Maker,AddOutput,origin -13132 -56 -275,0,-1" + "OnCase05" "Garland_Laser_Maker,AddOutput,angles 0 0 -7,0,-1" + "OnCase06" "Garland_Laser_Maker,AddOutput,origin -13132 -56 -260,0,-1" + "OnCase06" "Garland_Laser_Maker,AddOutput,angles 0 0 7,0,-1" + "OnCase07" "Garland_Laser_Maker,AddOutput,origin -13132 -56 -260,0,-1" + "OnCase07" "Garland_Laser_Maker,AddOutput,angles 0 0 -7,0,-1" + } + insert: + { + "OnCase03" "Garland_Laser_Maker,AddOutput,origin -13132 -56 -262,0,-1" + "OnCase04" "Garland_Laser_Maker,AddOutput,origin -13132 -56 -273,0,-1" + "OnCase04" "Garland_Laser_Maker,AddOutput,angles 0 0 7,0,-1" + "OnCase05" "Garland_Laser_Maker,AddOutput,origin -13132 -56 -273,0,-1" + "OnCase05" "Garland_Laser_Maker,AddOutput,angles 0 0 -7,0,-1" + "OnCase06" "Garland_Laser_Maker,AddOutput,origin -13132 -56 -273,0,-1" + "OnCase06" "Garland_Laser_Maker,AddOutput,angles 0 0 7,0,-1" + "OnCase07" "Garland_Laser_Maker,AddOutput,origin -13132 -56 -273,0,-1" + "OnCase07" "Garland_Laser_Maker,AddOutput,angles 0 0 -7,0,-1" + } +} \ No newline at end of file diff --git a/ze_hell_escape_rc1.cfg b/ze_hell_escape_rc1.cfg index 656558d..02ae6f7 100644 --- a/ze_hell_escape_rc1.cfg +++ b/ze_hell_escape_rc1.cfg @@ -1,7 +1,6 @@ filter: { + ; "origin" "-5771.57 604.983 4545" "classname" "info_player_terrorist" - "origin" "-5772 605 4581" - "angles" "0 0 0" "hammerid" "173794" } \ No newline at end of file diff --git a/ze_isla_nublar_v2_1.cfg b/ze_isla_nublar_v2_1.cfg index 32e4a5d..2846a1c 100644 --- a/ze_isla_nublar_v2_1.cfg +++ b/ze_isla_nublar_v2_1.cfg @@ -44,3 +44,23 @@ modify: "OnTrigger" "TheCurrentLevelPlugin,SetValue,3,0,1" } } + +;-------------- +;FIX TREX HURT +;-------------- + + +modify: +{ + match: + { + "targetname" "trexhitbased1" + "classname" "math_counter" + } + insert: + { + "OnHitMin" "trexleghurter,Kill,,0,-1" + "OnHitMin" "trexheadbuttpushhurter,Kill,,0,-1" + "OnHitMin" "trexheadbuttpush,Kill,,0,-1" + } +} diff --git a/ze_isla_nublar_v3.cfg b/ze_isla_nublar_v3.cfg index 32e4a5d..2846a1c 100644 --- a/ze_isla_nublar_v3.cfg +++ b/ze_isla_nublar_v3.cfg @@ -44,3 +44,23 @@ modify: "OnTrigger" "TheCurrentLevelPlugin,SetValue,3,0,1" } } + +;-------------- +;FIX TREX HURT +;-------------- + + +modify: +{ + match: + { + "targetname" "trexhitbased1" + "classname" "math_counter" + } + insert: + { + "OnHitMin" "trexleghurter,Kill,,0,-1" + "OnHitMin" "trexheadbuttpushhurter,Kill,,0,-1" + "OnHitMin" "trexheadbuttpush,Kill,,0,-1" + } +} diff --git a/ze_kraznov_poopata.cfg b/ze_kraznov_poopata.cfg new file mode 100644 index 0000000..b72f32d --- /dev/null +++ b/ze_kraznov_poopata.cfg @@ -0,0 +1,67 @@ +;Increase roundtime +modify: +{ + match: + { + "classname" "logic_auto" + } + delete: + { + "OnMapSpawn" "Console,Command,mp_roundtime 9,2,-1" + } + insert: + { + "OnMapSpawn" "Console,Command,mp_roundtime 20,2,-1" + } +} + +;------------------ +; Random SMG +;------------------ + +add: +{ + "origin" "-1500 -500 -70" + "targetname" "Stripper_EventCasper_Case" + "classname" "logic_case" + "OnCase01" "point_servercommand,Command,zr_unrestrict mac10,0,1" + "OnCase02" "point_servercommand,Command,zr_unrestrict tmp,0,1" + "OnCase03" "point_servercommand,Command,zr_unrestrict mp5navy,0,1" + "OnCase04" "point_servercommand,Command,zr_unrestrict ump45,0,1" + "OnCase05" "point_servercommand,Command,zr_unrestrict p90,0,1" + "OnCase01" "point_servercommand,Command,sm_give @ct mac10,1,1" + "OnCase02" "point_servercommand,Command,sm_give @ct tmp,1,1" + "OnCase03" "point_servercommand,Command,sm_give @ct mp5navy,1,1" + "OnCase04" "point_servercommand,Command,sm_give @ct ump45,1,1" + "OnCase05" "point_servercommand,Command,sm_give @ct p90,1,1" + "OnCase01" "point_servercommand,Command,say ** The weapon this round is Mac10 **,0.05,1" + "OnCase01" "point_servercommand,Command,say ** The weapon this round is Mac10 **,1.05,1" + "OnCase01" "point_servercommand,Command,say ** The weapon this round is Mac10 **,2.05,1" + "OnCase02" "point_servercommand,Command,say ** The weapon this round is TMP **,0.05,1" + "OnCase02" "point_servercommand,Command,say ** The weapon this round is TMP **,1.05,1" + "OnCase02" "point_servercommand,Command,say ** The weapon this round is TMP **,2.05,1" + "OnCase03" "point_servercommand,Command,say ** The weapon this round is MP5 **,0.05,1" + "OnCase03" "point_servercommand,Command,say ** The weapon this round is MP5 **,0.05,1" + "OnCase03" "point_servercommand,Command,say ** The weapon this round is MP5 **,0.05,1" + "OnCase04" "point_servercommand,Command,say ** The weapon this round is UMP45 **,0.05,1" + "OnCase04" "point_servercommand,Command,say ** The weapon this round is UMP45 **,0.05,1" + "OnCase04" "point_servercommand,Command,say ** The weapon this round is UMP45 **,0.05,1" + "OnCase05" "point_servercommand,Command,say ** The weapon this round is P90 **,0.05,1" + "OnCase05" "point_servercommand,Command,say ** The weapon this round is P90 **,0.05,1" + "OnCase05" "point_servercommand,Command,say ** The weapon this round is P90 **,0.05,1" +} + +add: +{ + "origin" "-1500 -500 -200" + "targetname" "Stripper_EventCasper_Relay" + "spawnflags" "0" + "classname" "logic_relay" + "OnSpawn" "point_servercommand,Command,zr_restrict shotgun,0,1" + "OnSpawn" "point_servercommand,Command,zr_restrict smg,0,1" + "OnSpawn" "point_servercommand,Command,zr_restrict rifle,0,1" + "OnSpawn" "point_servercommand,Command,zr_restrict m249,0,1" + "OnSpawn" "point_servercommand,Command,zr_restrict sniper,0,1" + "OnSpawn" "point_servercommand,Command,say ** Selecting a random SMG this round... ***,0.5,1" + "OnSpawn" "Stripper_EventCasper_Case,PickRandom,,1.5,1" +} diff --git a/ze_l0v0l_v1_4.cfg b/ze_l0v0l_v1_4.cfg index 2534edb..2897811 100644 --- a/ze_l0v0l_v1_4.cfg +++ b/ze_l0v0l_v1_4.cfg @@ -157,3 +157,136 @@ add: "StartDisabled" "0" "origin" "-14392.8 -14289 -992" } + +;----------------------------------------------- +;*********************************************** +;********** STRIPPER BY KLIXUS ***************** +;*********************************************** +;----------------------------------------------- + + +;------------------------------------- +; S T A G E 3 +;------------------------------------- + +;Fixes BossHP multiple trigger glitch: +add: +{ + "model" "*231" + "targetname" "bosslvl3_harpy_trigger1" + "wait" "0.1" + "StartDisabled" "1" + "spawnflags" "1" + "origin" "9285.01 -1296.63 -7934.5" + "classname" "trigger_multiple" + "OnStartTouch" "bosslvl3_harpy_counter1,Add,26,0,-1" + "OnStartTouch" "bosslvl3_harpy_counter2,Add,26,0,-1" +} +add: +{ + "model" "*231" + "targetname" "BossHP_glitch" + "StartDisabled" "0" + "speed" "600" + "spawnflags" "1" + "pushdir" "0 180 0" + "filtername" "filter_human" + "origin" "9314.75 -1312.72 -7934.5" + "classname" "trigger_push" +} +add: +{ + "model" "*231" + "targetname" "BossHP_glitch2" + "StartDisabled" "0" + "speed" "600" + "spawnflags" "1" + "pushdir" "0 180 0" + "filtername" "filter_human" + "origin" "9210.71 -1254.63 -7934.5" + "classname" "trigger_push" +} +filter: +{ + "origin" "9856.5 -1392.5 -8482" + "targetname" "bosslvl3_harpy_trigger1" + "classname" "trigger_multiple" + "hammerid" "2659073" +} + +;------------------------------------- +; S T A G E 4 +;------------------------------------- + + +;Deleting the Stage 0 boss attack that crashes clients +modify: +{ + match: + { + "origin" "2621 -9057 8443" + "targetname" "bosslvl4_case" + "classname" "logic_case" + "hammerid" "2172637" + } + delete: + { + "OnCase06" "boss_command,Command,say >>> QUEEN USED FIRE BEAM <<<,3,-1" + "OnCase06" "bosslvl4_fire_case,PickRandom,,3,-1" + "OnCase06" "bosslvl4_fire2_eff,Start,,9.5,-1" + "OnCase06" "bosslvl4_fire2_hurt,Enable,,9.5,-1" + "OnCase06" "bosslvl4_fire2_rotate,Open,,10.5,-1" + "OnCase06" "beamsound,PlaySound,,9.5,-1" + } +} + +;Filters out all related entities to the boss attack +filter: +{ + "origin" "2541 -9057 8443" + "targetname" "bosslvl4_fire_case" + "classname" "logic_case" + "hammerid" "3047368" +} +filter: +{ + "origin" "2827 -7756 7893.5" + "targetname" "bosslvl4_fire_move" + "classname" "func_tanktrain" + "hammerid" "3047326" +} +filter: +{ + "origin" "2826 -7756 7892" + "targetname" "bosslvl4_fire_path2" + "classname" "path_track" + "hammerid" "3047395" +} +filter: +{ + "origin" "2826 -7356 7892" + "targetname" "bosslvl4_fire_path1" + "classname" "path_track" + "hammerid" "3047421 +} +filter: +{ + "origin" "2826 -8156 7892" + "targetname" "bosslvl4_fire_path3" + "classname" "path_track" + "hammerid" "3047454 +} +filter: +{ + "origin" "2670 -7764 7908" + "targetname" "bosslvl4_fire2_eff" + "classname" "info_particle_system" + "hammerid" "3049350" +} +filter: +{ + "origin" "2670 -7764 7948" + "targetname" "bosslvl4_fire2_hurt" + "classname" "trigger_hurt" + "hammerid" "3049415" +} diff --git a/ze_lotr_isengard_v2_3.cfg b/ze_lotr_isengard_v2_3.cfg index 5d82d51..8c9ffde 100644 --- a/ze_lotr_isengard_v2_3.cfg +++ b/ze_lotr_isengard_v2_3.cfg @@ -364,7 +364,7 @@ modify: insert: { "OnTrigger" "stripper_health_iterator,AddOutput,OutValue hp_seter_saruman:InValue::0:-1,3.97,1" - "OnTrigger" "stripper_zone_hp,AddOutput,OnStartTouch stripper_health_backup:Add:34:0:-1,3.97,1" + "OnTrigger" "stripper_zone_hp,AddOutput,OnStartTouch stripper_health_backup:Add:44:0:-1,3.97,1" "OnTrigger" "player,AddOutput,OnUser1 stripper_zone_hp:StartTouch::0:1,3.97,1" "OnTrigger" "player,FireUser1,,3.98,1" "OnTrigger" "stripper_health_backup,GetValue,,3.99,1" @@ -445,11 +445,9 @@ add: "OnTrigger" "fade_final_lvl1,Fade,,2,1" "OnStartTouch" "final_add_score_lvl1,ApplyScore,,0,-1" "OnTrigger" "hurt_spawn,Enable,,2,1" - "OnTrigger" "consola,Command,say ***Map by Limon / Fixed by Noctali / Thanks for playing***,3,1" + "OnTrigger" "consola,Command,say **Map by Limon / Fixed by Noctali / Thanks for playing**,3,1" "OnTrigger" "final_add_score_lvl1,Kill,,3,1" - "OnTrigger" "consola,Command,say ***You have completed Stage 1! Moving onto Stage 2...***,0,1" - "OnTrigger" "consola,Command,say ***Final nuke will explode in 2 seconds...***,1,1" - "OnTrigger" "consola,Command,say ***Final nuke will explode in 1 second...***,2,1" + "OnTrigger" "consola,Command,say **Stage 1 complete! Moving onto Stage 2...**,0,1" "OnUser2" "!self,Enable,,0,1" "OnTrigger" "worldspawn,FireUser1,,1.98,1" "OnTrigger" "worldspawn,AddOutput,OnUser1 Level_Counter:SetValue:3:0:1,2,1" @@ -635,8 +633,7 @@ modify: "OnTrigger" "Stripper_Stage_2_Middle_Teleport,Enable,,0,1" "OnTrigger" "br4,Break,,7,-1" "OnTrigger" "brush_teleport_ends_sides,ShowSprite,,10,1" - "OnTrigger" "consola,Command,say ***Teleporting all AFK players and Zombies in 10 seconds!***,60,1" - "OnTrigger" "consola,Command,say ***Get on top of the rocks!***,85,1" + "OnTrigger" "consola,Command,say **Get on top of the rocks!**,85,1" } } modify: @@ -1077,8 +1074,7 @@ modify: { "OnTrigger" "sprite_def_4,Kill,,60,1" "OnTrigger" "sprite_end_side_3,ShowSprite,,60,1" - "OnTrigger" "consola,Command,say ***Teleporting all AFK players and Zombies in 10 seconds!***,60,1" - "OnTrigger" "consola,Command,say ***Get on top of the rocks!***,85,1" + "OnTrigger" "consola,Command,say **Get on top of the rocks!**,85,1" } } modify: @@ -1482,8 +1478,8 @@ modify: "OnNewGame" "consola,Command,zr_classes_overlay_togglecmds none,0,1" "OnNewGame" "worldspawn,FireUser1,,0,1" "OnNewGame" "Level_Counter,GetValue,,0.02,1" - "OnNewGame" "consola,Command,say ***Map by Limon / Fixed by Noctali***,1,1" - "OnNewGame" "consola,Command,say ***Grammar errors fixed by Sombrero raper***,1.5,1" + "OnNewGame" "consola,Command,say **Map by Limon / Fixed by Noctali**,1,1" + "OnNewGame" "consola,Command,say **Grammar errors fixed by Vanya**,1.5,1" "OnNewGame" "thanks,Display,,3,1" "OnNewGame" "thanks2,Display,,6,1" "OnNewGame" "thanks3,Display,,9,1" @@ -1512,21 +1508,20 @@ add: "Case04" "4" "OnDefault" "consola,Command,say ** There is an error in the level system **,0,1" "OnCase01" "!self,Kill,,0,1" - "OnCase01" "consola,Command,say ***Warm up round - Waiting for players to join***,0,1" - "OnCase01" "consola,Command,say ***Warm up round on going - waiting for players to join!***,1,1" - "OnCase01" "consola,Command,say ***Stage 1 will start in 45 seconds!***,2,1" - "OnCase01" "consola,Command,say ***Zombies will be teleported out of the Spawn Zone in 7 seconds!***,3,1" - "OnCase01" "consola,Command,say ***Warm up round on going - waiting for players to join!***,,5,1" - "OnCase01" "consola,Command,say ***Warm up round on going - waiting for players to join!***,,6,1" - "OnCase01" "consola,Command,say ***Warm up round on going - waiting for players to join!***,,7,1" - "OnCase01" "consola,Command,say ***Stage 1 will start in 35 seconds!***,10,1" - "OnCase01" "consola,Command,say ***Warm up round on going - waiting for players to join!***,12,1" - "OnCase01" "consola,Command,say ***Stage 1 will start in 25 seconds!***,20,1" - "OnCase01" "consola,Command,say ***Warm up round on going - waiting for players to join!***,22,1" - "OnCase01" "consola,Command,say ***Stage 1 will start in 15 seconds!***,30,1" - "OnCase01" "consola,Command,say ***Warm up round on going - waiting for players to join!***,31,1" - "OnCase01" "consola,Command,say ***Stage 1 will start in 5 seconds!***,40,1" - "OnCase01" "consola,Command,say ***Warm up round is over. Game starting!***,44,1" + "OnCase01" "consola,Command,say **Warm up round - Waiting for players to join***,0,1" + "OnCase01" "consola,Command,say **Stage 1 will start in 45 seconds**,2,1" + "OnCase01" "consola,Command,say **Zombies will be teleported out of the Spawn Zone in 7 seconds**,3,1" + "OnCase01" "consola,Command,say **Warm up round on going - waiting for players to join!**,,5,1" + "OnCase01" "consola,Command,say **Warm up round on going - waiting for players to join!**,,6,1" + "OnCase01" "consola,Command,say **Warm up round on going - waiting for players to join!**,,7,1" + "OnCase01" "consola,Command,say **Stage 1 will start in 35 seconds**,10,1" + "OnCase01" "consola,Command,say **Warm up round on going - waiting for players to join!**,12,1" + "OnCase01" "consola,Command,say **Stage 1 will start in 25 seconds**,20,1" + "OnCase01" "consola,Command,say **Warm up round on going - waiting for players to join!**,22,1" + "OnCase01" "consola,Command,say **Stage 1 will start in 15 seconds**,30,1" + "OnCase01" "consola,Command,say **Warm up round on going - waiting for players to join!**,31,1" + "OnCase01" "consola,Command,say **Stage 1 will start in 5 seconds**,40,1" + "OnCase01" "consola,Command,say **Warm up round is over. Game starting**,44,1" "OnCase01" "sky_eff_smoke,Kill,,0,1" "OnCase01" "sky_eff_smoke2,Kill,,0,1" "OnCase01" "trigger_zombie_room,Disable,,0,1" @@ -1539,9 +1534,9 @@ add: "OnCase01" "worldspawn,FireUser1,,22.98,1" "OnCase01" "worldspawn,AddOutput,OnUser1 Level_Counter:SetValue:2:0:1,23,1" "OnCase02" "!self,Kill,,0,1" - "OnCase02" "consola,Command,say ***Current stage will begin in 15 seconds. Good luck and Have Fun!***,2,1" - "OnCase02" "consola,Command,say ***Zombies will be teleported out of the Spawn Zone in 7 seconds!***,3,1" - "OnCase02" "consola,Command,say ***Touch the Middle-Earth map in the middle to start playing!***,15,1" + "OnCase02" "consola,Command,say **Current stage will begin in 15 seconds. Good luck and Have Fun!**,2,1" + "OnCase02" "consola,Command,say **Zombies will be teleported out of the Spawn Zone in 7 seconds**,3,1" + "OnCase02" "consola,Command,say **Touch the Middle-Earth map in the middle to start playing**,15,1" "OnCase02" "kill_all_traps_stage3,Trigger,,0,1" "OnCase02" "teleport_zombie_white_room,Enable,,7,1" "OnCase02" "fade_spawn,Fade,,13,1" @@ -1556,15 +1551,15 @@ add: "OnCase02" "forest_sound_all,StopSound,,15,1" "OnCase02" "lvl2_music_3,PlaySound,,15,1" "OnCase02" "wall_spider_fix,Toggle,,16,1" - "OnCase02" "consola,Command,say ***Stage 1 - The Mountainpass***,16,1" - "OnCase02" "consola,Command,say ***Teleporting AFK players to the caverns in 30 seconds!***,17,1" + "OnCase02" "consola,Command,say **Stage 1 - The Mountainpass**,16,1" + "OnCase02" "consola,Command,say **Teleporting AFK players to the caves in 30 seconds**,17,1" "OnCase02" "afk_telp_1,Enable,,45,1" "OnCase02" "worldspawn,FireUser1,,0,1" "OnCase02" "worldspawn,AddOutput,OnUser1 Level_Counter:SetValue:2:0:1,0.02,1" "OnCase03" "!self,Kill,,0,1" - "OnCase03" "consola,Command,say ***Current stage will begin in 15 seconds. Good Luck and Have Fun!***,2,1" - "OnCase03" "consola,Command,say ***Zombies will be teleported out of the Spawn Zone in 7 seconds!***,3,1" - "OnCase03" "consola,Command,say ***Touch the Middle-Earth map in the middle to start playing!***,15,1" + "OnCase03" "consola,Command,say **Current stage will begin in 15 seconds. Good Luck and Have Fun!**,2,1" + "OnCase03" "consola,Command,say **Zombies will be teleported out of the Spawn Zone in 7 seconds**,3,1" + "OnCase03" "consola,Command,say **Touch the Middle-Earth map in the middle to start playing**,15,1" "OnCase03" "kill_all_traps_stage3,Trigger,,0,1" "OnCase03" "teleport_zombie_white_room,Enable,,7,1" "OnCase03" "fade_spawn,Fade,,13,1" @@ -1590,15 +1585,15 @@ add: "OnCase03" "lvl2_frodo_path8,Kill,,15,1" "OnCase03" "wall_stshe525,Kill,,15,1" "OnCase03" "sky_box_mountain_lvl1,Disable,,15,1" - "OnCase03" "consola,Command,say ***Stage 2 - The Trenches of Isengard***,16,1" - "OnCase03" "consola,Command,say ***Teleporting AFK players to the forest in 30 seconds***,17,1" + "OnCase03" "consola,Command,say **Stage 2 - The Trenches of Isengard**,16,1" + "OnCase03" "consola,Command,say **Teleporting AFK players to the forest in 30 seconds**,17,1" "OnCase03" "afk_telp_2,Enable,,45,1" "OnCase03" "worldspawn,FireUser1,,0,1" "OnCase03" "worldspawn,AddOutput,OnUser1 Level_Counter:SetValue:3:0:1,0.02,1" "OnCase04" "!self,Kill,,0,1" - "OnCase04" "consola,Command,say ***Current stage will begin in 15 seconds. Good luck and Have Fun!***,2,1" - "OnCase04" "consola,Command,say ***Zombies will be teleported out of the Spawn Zone in 7 seconds!***,3,1" - "OnCase04" "consola,Command,say ***Touch the Middle-Earth map in the middle to start playing!***,15,1" + "OnCase04" "consola,Command,say **Current stage will begin in 15 seconds. Good luck and Have Fun!**,2,1" + "OnCase04" "consola,Command,say **Zombies will be teleported out of the Spawn Zone in 7 seconds**,3,1" + "OnCase04" "consola,Command,say **Touch the Middle-Earth map in the middle to start playing**,15,1" "OnCase04" "water_lvl_izengard,Open,,0,1" "OnCase04" "skywater_2,Open,,0,1" "OnCase04" "skywater,Open,,0,1" @@ -1638,8 +1633,8 @@ add: "OnCase04" "sky_box_mountain_lvl1,Disable,,15,1" "OnCase04" "hummans_teleport_stage_3,Enable,,16,1" "OnCase04" "zombies_teleport_stage_3,Enable,,16,1" - "OnCase04" "consola,Command,say ***Stage 3 - Saruman's Tower***,16,1" - "OnCase04" "consola,Command,say ***Teleporting AFK players inside Saruman's Tower in 35 seconds!***,17,1" + "OnCase04" "consola,Command,say **Stage 3 - Saruman's Tower**,16,1" + "OnCase04" "consola,Command,say **Teleporting AFK players inside Saruman's Tower in 35 seconds**,17,1" "OnCase04" "telep_afk_lvl3_start,Enable,,50,1" "OnCase04" "afk_telp_3,Enable,,50,1" "OnCase04" "worldspawn,FireUser1,,0,1" @@ -2507,7 +2502,7 @@ add: "origin" "8602.91 1086.96 12933.8" "targetname" "dalf_attack_cooldown" "classname" "game_text" - "message" "Attack Ready !" + "message" "Attack Ready!" "channel" "1" "color" "0 255 255" "color2" "128 255 255" @@ -2669,7 +2664,7 @@ add: "OnUser1" "!self,Display,,73.01,-1" "OnUser1" "!self,AddOutput,message Attack Cooldown - 1s,74,-1" "OnUser1" "!self,Display,,74.01,-1" - "OnUser1" "!self,AddOutput,message Attack Ready !,75,-1" + "OnUser1" "!self,AddOutput,message Attack Ready!,75,-1" "OnUser1" "!self,Display,,75.01,-1" } modify: @@ -2762,8 +2757,8 @@ modify: } insert: { - "OnPressed" "consola,Command,say ***An admin has selected the next stage in the Admin Room!***,0,1" - "OnPressed" "consola,Command,say ***Changing stage to The Mountainpass (Stage 1)...***,1,1" + "OnPressed" "consola,Command,say **An admin has set the next stage in the Admin Room**,0,1" + "OnPressed" "consola,Command,say **Changing stage to The Mountainpass (Stage 1)...**,1,1" "OnPressed" "player,SetDamageFilter,,2.99,1" "OnPressed" "player,SetHealth,0,3,1" "OnPressed" "worldspawn,FireUser1,,0,1" @@ -2787,8 +2782,8 @@ modify: } insert: { - "OnPressed" "consola,Command,say ***An admin has selected the next stage in the Admin Room!***,0,1" - "OnPressed" "consola,Command,say ***Changing stage to The Trenches of Isengard (Stage 2)...***,1,1" + "OnPressed" "consola,Command,say **An admin has set the next stage in the Admin Room**,0,1" + "OnPressed" "consola,Command,say **Changing stage to The Trenches of Isengard (Stage 2)...**,1,1" "OnPressed" "player,SetDamageFilter,,2.99,1" "OnPressed" "player,SetHealth,0,3,1" "OnPressed" "worldspawn,FireUser1,,0,1" @@ -2812,8 +2807,8 @@ modify: } insert: { - "OnPressed" "consola,Command,say ***An admin has selected the next stage in the Admin Room!***,0,1" - "OnPressed" "consola,Command,say ***Changing stage to Saruman's Tower (Stage 3)...***,1,1" + "OnPressed" "consola,Command,say **An admin has set the next stage in the Admin Room**,0,1" + "OnPressed" "consola,Command,say **Changing stage to Saruman's Tower (Stage 3)...**,1,1" "OnPressed" "player,SetDamageFilter,,2.99,1" "OnPressed" "player,SetHealth,0,3,1" "OnPressed" "worldspawn,FireUser1,,0,1" @@ -2852,7 +2847,7 @@ modify: } insert: { - "OnTrigger" "consola,Command,say ***Map by Limon / Fixed by Noctali / Thanks for playing***,3,1" + "OnTrigger" "consola,Command,say **Map by Limon / Fixed by Noctali / Thanks for playing**,3,1" } } modify: @@ -2867,7 +2862,7 @@ modify: } insert: { - "OnTrigger" "consola,Command,say ***You have completed ze_LOTR_Isengard_v2_3!!! Congratulations!!! Map by Limon. / Fixed by Noctali***,6,1" + "OnTrigger" "consola,Command,say **Stage 3 complete! Congratulations! Map by Limon. / Fixed by Noctali**,6,1" } } modify: @@ -2882,7 +2877,7 @@ modify: } insert: { - "OnTrigger" "consola,Command,say ***Map by Limon / Fixed by Noctali / Thanks for playing***,102,1" + "OnTrigger" "consola,Command,say **Map by Limon / Fixed by Noctali / Thanks for playing**,102,1" } } ;------------ @@ -2902,9 +2897,9 @@ modify: } insert: { - "OnTrigger" "consola,Command,say ***Defend here for 25 seconds!***,0,1" - "OnTrigger" "consola,Command,say ***Move!***,25,1" - "OnTrigger" "consola,Command,say ***Second ladder is now enabled***,28,1" + "OnTrigger" "consola,Command,say **Defend here for 25 seconds**,0,1" + "OnTrigger" "consola,Command,say **Move!**,25,1" + "OnTrigger" "consola,Command,say **Second ladder is now enabled**,28,1" } } modify: @@ -2920,8 +2915,8 @@ modify: } insert: { - "OnTrigger" "consola,Command,say ***Zombie push will be disabled in 5 seconds!***,0,1" - "OnTrigger" "consola,Command,say ***Teleporting AFK players to Isengard in 20 seconds!***,1,1" + "OnTrigger" "consola,Command,say **Zombie push will be disabled in 5 seconds**,0,1" + "OnTrigger" "consola,Command,say **Teleporting AFK players to Isengard in 20 seconds**,1,1" } } modify: @@ -2937,8 +2932,8 @@ modify: } insert: { - "OnTrigger" "consola,Command,say ***Defend here for 30 seconds!***,0,1" - "OnTrigger" "consola,Command,say ***Move!***,30,1" + "OnTrigger" "consola,Command,say **Defend here for 30 seconds**,0,1" + "OnTrigger" "consola,Command,say **Move!**,30,1" } } modify: @@ -2953,7 +2948,7 @@ modify: } insert: { - "OnTrigger" "consola,Command,say ***Invisible walls have been disabled. Zombies can run across the side!***,0,1" + "OnTrigger" "consola,Command,say **Invisible walls have been disabled. Zombies can run across the side**,0,1" } } modify: @@ -2970,9 +2965,7 @@ modify: } insert: { - "OnTrigger" "consola,Command,say ***A random path will be selected in 10 seconds***,0,1" - "OnTrigger" "consola,Command,say ***A random path will be selected in 10 seconds***,1,1" - "OnTrigger" "consola,Command,say ***A random path will be selected in 10 seconds***,2,1" + "OnTrigger" "consola,Command,say **A random path will be opened in 10 seconds**,0,1" } } modify: @@ -2990,10 +2983,10 @@ modify: } insert: { - "OnTrigger" "consola,Command,say ***Stay and defend here!***,5,1" - "OnTrigger" "consola,Command,say ***Hold the zombies off for 90 seconds!***,6,1" - "OnTrigger" "consola,Command,say ***Wait for the water current to flood Isengard!***,7,1" - "OnTrigger" "consola,Command,say ***Get up on the ladder!***,95,1" + "OnTrigger" "consola,Command,say **Stay and defend here**,5,1" + "OnTrigger" "consola,Command,say **Hold the zombies off for 90 seconds**,6,1" + "OnTrigger" "consola,Command,say **Wait for the water current to flood Isengard!**,8,1" + "OnTrigger" "consola,Command,say **Get up the ladder!**,95,1" } } modify: @@ -3009,8 +3002,8 @@ modify: } insert: { - "OnTrigger" "consola,Command,say ***Hold your ground for 20 seconds!***,0,1" - "OnTrigger" "consola,Command,say ***Go!***,20,1" + "OnTrigger" "consola,Command,say **Hold your ground for 20 seconds**,0,1" + "OnTrigger" "consola,Command,say **Go!**,20,1" } } modify: @@ -3025,7 +3018,7 @@ modify: } insert: { - "OnPass" "consola,Command,say ***A random path has been opened!***,0,1" + "OnPass" "consola,Command,say **A random path has been opened**,0,1" } } modify: @@ -3041,8 +3034,8 @@ modify: } insert: { - "OnPass" "consola,Command,say ***Defend here for 20 seconds!***,0,1" - "OnPass" "consola,Command,say ***Go!***,20,1" + "OnPass" "consola,Command,say **Defend here for 20 seconds**,0,1" + "OnPass" "consola,Command,say **Go!**,20,1" } } modify: @@ -3058,8 +3051,8 @@ modify: } insert: { - "OnPass" "consola,Command,say ***Defend here for 30 seconds!***,0,1" - "OnPass" "consola,Command,say ***Go!***,30,1" + "OnPass" "consola,Command,say **Defend here for 30 seconds**,0,1" + "OnPass" "consola,Command,say **Go!**,30,1" } } modify: @@ -3075,8 +3068,8 @@ modify: } insert: { - "OnTrigger" "consola,Command,say ***Get ready to fight!***,0,1" - "OnTrigger" "consola,Command,say ***Kill the spider in 2 minutes or else the zombies will eat you***,0,1" + "OnTrigger" "consola,Command,say **Get ready to fight!***,0,1" + "OnTrigger" "consola,Command,say **Kill the spider in 120 seconds or the zombies will eat you***,0,1" } } modify: @@ -3092,8 +3085,8 @@ modify: } insert: { - "OnPass" "consola,Command,say ***Be on the lookout for traps!***,0,1" - "OnPass" "consola,Command,say ***The spiders are hungry...***,1,1" + "OnPass" "consola,Command,say **Be on the lookout for traps**,0,1" + "OnPass" "consola,Command,say **The spiders are hungry...**,1,1" } } modify: @@ -3109,8 +3102,8 @@ modify: } insert: { - "OnPass" "consola,Command,say ***Kill the spider!***,0,1" - "OnPass" "consola,Command,say ***Shoot its head!***,1,1" + "OnPass" "consola,Command,say **Kill the spider**,0,1" + "OnPass" "consola,Command,say **Shoot its head!**,1,1" } } modify: @@ -3126,8 +3119,8 @@ modify: } insert: { - "OnTrigger" "consola,Command,say ***Hold here for 15 seconds!***,0,1" - "OnTrigger" "consola,Command,say ***The web is gone! Move!***,15,1" + "OnTrigger" "consola,Command,say **Hold here for 15 seconds!**,0,1" + "OnTrigger" "consola,Command,say **The web is gone - Move!**,15,1" } } modify: @@ -3144,9 +3137,9 @@ modify: } insert: { - "OnBreak" "consola,Command,say ***You have killed the Spider***,0,1" - "OnBreak" "consola,Command,say ***Run! Go up the ladder!***,1,1" - "OnBreak" "consola,Command,say ***Zombie push is now disabled. Move Zombies!***,7,1" + "OnBreak" "consola,Command,say **You have killed the Spider**,0,1" + "OnBreak" "consola,Command,say **Run! Go up the ladder**,1,1" + "OnBreak" "consola,Command,say **Zombie push is now disabled - Move Zombies!**,7,1" } } modify: @@ -3162,8 +3155,8 @@ modify: } insert: { - "OnTrigger" "consola,Command,say ***Defend here for 20 seconds!***,0,1" - "OnTrigger" "consola,Command,say ***Go!***,20,1" + "OnTrigger" "consola,Command,say **Defend here for 20 seconds!**,0,1" + "OnTrigger" "consola,Command,say **Go!**,20,1" } } modify: @@ -3178,7 +3171,7 @@ modify: } insert: { - "OnTrigger" "consola,Command,say ***Go up the mountain and destroy the dam!***,0,1" + "OnTrigger" "consola,Command,say **Go up the mountain and destroy the dam!**,0,1" } } modify: @@ -3193,7 +3186,7 @@ modify: } insert: { - "OnBreak" "consola,Command,say ***First support has been broken!***,0,1" + "OnBreak" "consola,Command,say **Left support has been broken**,0,1" } } modify: @@ -3208,7 +3201,7 @@ modify: } insert: { - "OnBreak" "consola,Command,say ***Second support has been broken!***,0,1" + "OnBreak" "consola,Command,say **Right support has been broken**,0,1" } } modify: @@ -3224,8 +3217,8 @@ modify: } insert: { - "OnTrigger" "consola,Command,say ***Teleporting Humans to the dam in 5 seconds!***,0,1" - "OnTrigger" "consola,Command,say ***Teleporting Zombies and AFK players to the dam in 5 seconds!***,1,1" + "OnTrigger" "consola,Command,say **Teleporting Humans to the dam in 5 seconds**,0,1" + "OnTrigger" "consola,Command,say **Teleporting Zombies and AFK players to the dam in 5 seconds!**,5,1" } } modify: @@ -3240,7 +3233,7 @@ modify: } insert: { - "OnTrigger" "consola,Command,say ***Meanwhile back in Isengard...***,1,1" + "OnTrigger" "consola,Command,say **Meanwhile back in Isengard...**,1,1" } } modify: @@ -3255,7 +3248,7 @@ modify: } insert: { - "OnTrigger" "consola,Command,say ***Teleporting Zombies back to the Spawn area in 15 seconds!***,0,1" + "OnTrigger" "consola,Command,say **Teleporting Zombies back to the Spawn area in 15 seconds**,0,1" } } modify: @@ -3272,9 +3265,7 @@ modify: } insert: { - "OnPass" "consola,Command,say ***Shoot the Nazgul or else we will die!***,0,1" - "OnPass" "consola,Command,say ***Shoot the Nazgul or else we will die!***,1,1" - "OnPass" "consola,Command,say ***Shoot the Nazgul or else we will die!***,2,1" + "OnPass" "consola,Command,say **Shoot the Nazgul or else we will die!**,0,1" } } modify: @@ -3291,9 +3282,9 @@ modify: } insert: { - "OnTrigger" "consola,Command,say ***The platform is moving up***,0,1" - "OnTrigger" "consola,Command,say ***Zombie push will be disabled in 5 seconds!***,1,1" - "OnTrigger" "consola,Command,say ***Teleporting AFK players to Isengard in 20 seconds!***,2,1" + "OnTrigger" "consola,Command,say **The platform is moving up**,0,1" + "OnTrigger" "consola,Command,say **Zombie push will be disabled in 5 seconds!**,1,1" + "OnTrigger" "consola,Command,say **Teleporting AFK players to Isengard in 20 seconds!**,2,1" } } modify: @@ -3310,9 +3301,9 @@ modify: } insert: { - "OnTrigger" "consola,Command,say ***Defend here for 30 seconds***,0,1" - "OnTrigger" "consola,Command,say ***Teleporting Zombies and AFK players in 5 seconds!***,1,1" - "OnTrigger" "consola,Command,say ***Go!***,30,1" + "OnTrigger" "consola,Command,say **Defend here for 30 seconds**,0,1" + "OnTrigger" "consola,Command,say **Teleporting Zombies and AFK players in 5 seconds**,1,1" + "OnTrigger" "consola,Command,say **Go!**,30,1" } } modify: @@ -3327,7 +3318,7 @@ modify: } insert: { - "OnTrigger" "consola,Command,say ***Kill the boss before the music ends or else you will die...***,6,1" + "OnTrigger" "consola,Command,say **Kill Uruk-Hai before the music ends or else you will die**,6,1" } } modify: @@ -3342,7 +3333,7 @@ modify: } insert: { - "OnTrigger" "consola,Command,say ***Teleporting AFK players to the boss arena in 10 seconds!***,0,1" + "OnTrigger" "consola,Command,say **Teleporting AFK players to the boss arena in 10 seconds**,0,1" } } modify: @@ -3357,7 +3348,7 @@ modify: } insert: { - "OnTrigger" "consola,Command,say ***Get ready to fight!***,0,1" + "OnTrigger" "consola,Command,say **Get ready to fight!**,0,1" } } modify: @@ -3372,7 +3363,7 @@ modify: } insert: { - "OnPass" "consola,Command,say ***Go now! Move!***,0,1" + "OnPass" "consola,Command,say **Go now! Move!**,0,1" } } modify: @@ -3394,14 +3385,14 @@ modify: } insert: { - "OnTrigger" "consola,Command,say ***Elevator will move down in 30 seconds!***,0,1" - "OnTrigger" "consola,Command,say ***Zombie push will be disabled in 5 seconds***,1,1" - "OnTrigger" "consola,Command,say ***Teleporting AFK players to Isengard in 20 seconds!***,2,1" - "OnTrigger" "consola,Command,say ***Elevator will move down in 5 seconds!***,25,1" - "OnTrigger" "consola,Command,say ***Elevator will move down in 4 seconds!***,26,1" - "OnTrigger" "consola,Command,say ***Elevator will move down in 3 seconds!***,27,1" - "OnTrigger" "consola,Command,say ***Elevator will move down in 2 seconds!***,28,1" - "OnTrigger" "consola,Command,say ***Elevator will move down in 1 second!***,29,1" + "OnTrigger" "consola,Command,say **Elevator will move down in 30 seconds!**,0,1" + "OnTrigger" "consola,Command,say **Zombie push will be disabled in 5 seconds**,1,1" + "OnTrigger" "consola,Command,say **Teleporting AFK players to Isengard in 20 seconds**,2,1" + "OnTrigger" "consola,Command,say **Elevator will move down in 5 seconds**,25,1" + "OnTrigger" "consola,Command,say **Elevator will move down in 4 seconds**,26,1" + "OnTrigger" "consola,Command,say **Elevator will move down in 3 seconds**,27,1" + "OnTrigger" "consola,Command,say **Elevator will move down in 2 seconds**,28,1" + "OnTrigger" "consola,Command,say **Elevator will move down in 1 second**,29,1" } } modify: @@ -3417,8 +3408,8 @@ modify: } insert: { - "OnTrigger" "consola,Command,say ***Defend here for 20 seconds!***,0,1" - "OnTrigger" "consola,Command,say ***Get up on the ladder!***,21,1" + "OnTrigger" "consola,Command,say **Defend here for 20 seconds**,0,1" + "OnTrigger" "consola,Command,say **Go up the ladder**,21,1" } } modify: @@ -3429,11 +3420,11 @@ modify: } delete: { - "OnTrigger" "consola,Command,say ***Elevator will go up in 10 sec***,0,-1" + "OnTrigger" "consola,Command,say ***Elevator will go up in 10 sec**,0,-1" } insert: { - "OnTrigger" "consola,Command,say ***Elevator will move up in 10 seconds!***,0,1" + "OnTrigger" "consola,Command,say **Elevator will move up in 10 seconds**,0,1" } } modify: @@ -3449,8 +3440,8 @@ modify: } insert: { - "OnTrigger" "consola,Command,say ***Hold here for 15 seconds until this path opens***,0,1" - "OnTrigger" "consola,Command,say ***Path is open. Move down!***,16,1" + "OnTrigger" "consola,Command,say **Hold here for 15 seconds**,0,1" + "OnTrigger" "consola,Command,say **Path is open. Move down!**,16,1" } } modify: @@ -3468,10 +3459,10 @@ modify: } insert: { - "OnTrigger" "consola,Command,say ***Keep the zombies off the bridges for 30 seconds!***,0,1" - "OnTrigger" "consola,Command,say ***Enabling AFK teleport outside Isengard in 10 seconds!***,1,1" - "OnTrigger" "consola,Command,say ***Teleporting Humans to the dam in 5 seconds!***,30,1" - "OnTrigger" "consola,Command,say ***Teleporting Zombies and AFK players to the dam in 10 seconds!***,31,1" + "OnTrigger" "consola,Command,say **Keep the zombies off the bridges for 30 seconds**,0,1" + "OnTrigger" "consola,Command,say **Enabling AFK teleport outside Isengard in 10 seconds**,1,1" + "OnTrigger" "consola,Command,say **Teleporting Humans to the dam in 5 seconds**,30,1" + "OnTrigger" "consola,Command,say **Teleporting Zombies and AFK players to the dam in 5 seconds**,36,1" } } modify: @@ -3486,7 +3477,7 @@ modify: } insert: { - "OnTrigger" "consola,Command,say ***Middle path has been opened - everyone go through the middle!***,0,1" + "OnTrigger" "consola,Command,say **Middle path has been opened - go through the middle**,0,1" } } modify: @@ -3501,7 +3492,7 @@ modify: } insert: { - "OnTrigger" "consola,Command,say ***Left path has been opened - everyone go through the left!***,0,1" + "OnTrigger" "consola,Command,say **Left path has been opened - go through the left**,0,1" } } modify: @@ -3516,7 +3507,7 @@ modify: } insert: { - "OnTrigger" "consola,Command,say ***Right path has been opened - everyone go through the right!***,0,1" + "OnTrigger" "consola,Command,say **Right path has been opened - go through the right**,0,1" } } modify: @@ -3531,7 +3522,7 @@ modify: } insert: { - "OnTrigger" "consola,Command,say ***Activate the lever to raise the platform!***,0,1" + "OnTrigger" "consola,Command,say **Activate the lever to raise the platform!**,0,1" } } modify: @@ -3549,10 +3540,10 @@ modify: } insert: { - "OnTrigger" "consola,Command,say ***Stay and defend here!***,0,1" - "OnTrigger" "consola,Command,say ***Hold the zombies off for 90 seconds!***,1,1" - "OnTrigger" "consola,Command,say ***Wait for the water current to flood Isengard!***,2,1" - "OnTrigger" "consola,Command,say ***Get up on the ladder!***,95,1" + "OnTrigger" "consola,Command,say **Stay and defend here**,0,1" + "OnTrigger" "consola,Command,say **Hold the zombies off for 90 seconds**,1,1" + "OnTrigger" "consola,Command,say **Wait for the water current to flood Isengard**,4,1" + "OnTrigger" "consola,Command,say **Get up the ladder!**,95,1" } } modify: @@ -3567,7 +3558,7 @@ modify: } insert: { - "OnTrigger" "consola,Command,say ***Meanwhile back in Isengard...***,1,1" + "OnTrigger" "consola,Command,say **Meanwhile back in Isengard...**,1,1" } } modify: @@ -3582,7 +3573,7 @@ modify: } insert: { - "OnTrigger" "consola,Command,say ***Meanwhile back in Isengard...***,1,1" + "OnTrigger" "consola,Command,say **Meanwhile back in Isengard...**,1,1" } } modify: @@ -3598,8 +3589,7 @@ modify: } insert: { - "OnHitMax" "consola,Command,say ***Both supports have been broken! Hold your ground until the water takes you back to Isengard!***,1,1" - "OnHitMax" "consola,Command,say ***Go down! Let the water current push you forward!***,5,1" + "OnHitMax" "consola,Command,say **Both supports have been broken! Hold your ground until the water takes you back to Isengard!**,1,1" } } modify: @@ -3616,9 +3606,9 @@ modify: } insert: { - "OnBreak" "consola,Command,say ***Teleporting Humans to the dam in 5 seconds!***,0,1" - "OnBreak" "consola,Command,say ***You have killed Captain Uruk-Hai! Congratulations!***,0.5,1" - "OnBreak" "consola,Command,say ***Teleporting Zombies and AFK players to the dam in 10 seconds!***,1,1" + "OnBreak" "consola,Command,say **Teleporting Humans to the dam in 5 seconds!**,0,1" + "OnBreak" "consola,Command,say **You have defeated Captain Uruk-Hai**,0.5,1" + "OnBreak" "consola,Command,say **Teleporting Zombies and AFK players to the dam in 10 seconds!**,1,1" } } modify: @@ -3633,7 +3623,7 @@ modify: } insert: { - "OnTrigger" "consola,Command,say ***Setting humans HP back to 100...***,0,1" + "OnTrigger" "consola,Command,say **Setting humans HP back to 100...**,0,1" } } modify: @@ -3653,12 +3643,12 @@ modify: } insert: { - "OnTrigger" "consola,Command,say ***You have completed Stage 3!***,0,1" - "OnTrigger" "consola,Command,say ***Final nuke will explode in 5 seconds***,1,1" - "OnTrigger" "consola,Command,say ***Final nuke will explode in 4 seconds***,2,1" - "OnTrigger" "consola,Command,say ***Final nuke will explode in 3 seconds***,3,1" - "OnTrigger" "consola,Command,say ***Final nuke will explode in 2 seconds***,4,1" - "OnTrigger" "consola,Command,say ***Final nuke will explode in 1 second***,5,1" + "OnTrigger" "consola,Command,say **Final nuke will explode in...**,0,1" + "OnTrigger" "consola,Command,say **5**,1,1" + "OnTrigger" "consola,Command,say **4**,2,1" + "OnTrigger" "consola,Command,say **3**,3,1" + "OnTrigger" "consola,Command,say **2**,4,1" + "OnTrigger" "consola,Command,say **1**,5,1" } } modify: @@ -3674,8 +3664,8 @@ modify: } insert: { - "OnTrigger" "consola,Command,say ***Defend here for 25 seconds!***,0,1" - "OnTrigger" "consola,Command,say ***Move! Get out of here!***,25,1" + "OnTrigger" "consola,Command,say **Defend here for 25 seconds**,0,1" + "OnTrigger" "consola,Command,say **Move! Get out of here!**,25,1" } } modify: @@ -3690,7 +3680,7 @@ modify: } insert: { - "OnTrigger" "consola,Command,say ***Teleporting Zombies and AFK players to the mountain's summit in 6 seconds!***,26,1" + "OnTrigger" "consola,Command,say **Teleporting Zombies and AFK players to the mountain's summit in 6 seconds**,26,1" } } modify: @@ -3706,8 +3696,8 @@ modify: } insert: { - "OnTrigger" "consola,Command,say ***Defend here for 15 seconds!***,0,1" - "OnTrigger" "consola,Command,say ***Go go go!***,15,1" + "OnTrigger" "consola,Command,say **Defend here for 15 seconds!**,0,1" + "OnTrigger" "consola,Command,say **Go go go!**,15,1" } } modify: @@ -3726,11 +3716,11 @@ modify: } insert: { - "OnTrigger" "consola,Command,say ***Stay and defend here!***,0,1" - "OnTrigger" "consola,Command,say ***Hold the zombies off for 90 seconds!***,1,1" - "OnTrigger" "consola,Command,say ***Wait for the water current to flood Isengard!***,2,1" - "OnTrigger" "consola,Command,say ***Get on top of the rocks!***,80,1" - "OnTrigger" "consola,Command,say ***You have completed Stage 2! Well done!! Moving onto Stage 3... Good luck!***,100,1" + "OnTrigger" "consola,Command,say **Stay and defend here!**,0,1" + "OnTrigger" "consola,Command,say **Hold the zombies off for 90 seconds**,1,1" + "OnTrigger" "consola,Command,say **Wait for the water current to flood Isengard**,4,1" + "OnTrigger" "consola,Command,say **Get on top of the rocks!**,80,1" + "OnTrigger" "consola,Command,say **Stage 2 complete! Moving onto Stage 3...**,100,1" } } modify: @@ -3748,10 +3738,10 @@ modify: } insert: { - "OnPass" "consola,Command,say ***Go humans! Move down to the dam!***,0,1" - "OnPass" "consola,Command,say ***Destroy both dam supports to break the dam!***,1,1" - "OnPass" "consola,Command,say ***Hold the zombies off while humans break the dam!***,2,1" - "OnPass" "consola,Command,say ***Ladder for Zombies has been enabled!***,6,1" + "OnPass" "consola,Command,say **Move towards the dam**,0,1" + "OnPass" "consola,Command,say **Destroy both supports**,1,1" + "OnPass" "consola,Command,say **Hold the zombies off while the humans break the dam**,2,1" + "OnPass" "consola,Command,say **Ladder for Zombies has been enabled!**,6,1" } } modify: @@ -3768,9 +3758,9 @@ modify: } insert: { - "OnTrigger" "consola,Command,say ***Zombies teleport has been activated!***,0,1" - "OnTrigger" "consola,Command,say ***Elevator to the dam will move up in 20 seconds!***,1,1" - "OnTrigger" "consola,Command,say ***Elevator to the dam will move up in 5 seconds!***,15,1" + "OnTrigger" "consola,Command,say **Zombie teleport has been activated**,0,1" + "OnTrigger" "consola,Command,say **Elevator to the dam will move up in 20 seconds**,1,1" + "OnTrigger" "consola,Command,say **Elevator to the dam will move up in 5 seconds**,15,1" } } modify: @@ -3785,7 +3775,7 @@ modify: } insert: { - "OnBreak" "consola,Command,say ***Gandalf has passed away...***,0,1" + "OnBreak" "consola,Command,say **Gandalf has passed away...**,0,1" } } modify: @@ -3808,15 +3798,14 @@ modify: } insert: { - "OnTrigger" "consola,Command,say ***Keep the Zombies off this building for 50 seconds!***,0,1" - "OnTrigger" "consola,Command,say ***Staircase will break in 10 seconds!***,1,1" - "OnTrigger" "consola,Command,say ***Zombies will teleport in front of the building in 15 seconds!***,2,1" - "OnTrigger" "consola,Command,say ***Retreat!!! Get on the boats!!!***,40,1" - "OnTrigger" "consola,Command,say ***Boats leaving in 5 seconds***,45,1" - "OnTrigger" "consola,Command,say ***Boats leaving in 4 seconds***,46,1" - "OnTrigger" "consola,Command,say ***Boats leaving in 3 seconds***,47,1" - "OnTrigger" "consola,Command,say ***Boats leaving in 2 seconds***,48,1" - "OnTrigger" "consola,Command,say ***Boats leaving in 1 second***,49,1" + "OnTrigger" "consola,Command,say **Keep the Zombies off this building for 50 seconds**,0,1" + "OnTrigger" "consola,Command,say **Boats will be leaving soon!**,40,1" + "OnTrigger" "consola,Command,say **Boats leaving in...**,43,1" + "OnTrigger" "consola,Command,say **5**,45,1" + "OnTrigger" "consola,Command,say **4**,46,1" + "OnTrigger" "consola,Command,say **3**,47,1" + "OnTrigger" "consola,Command,say **2**,48,1" + "OnTrigger" "consola,Command,say **1**,49,1" } } modify: @@ -3831,7 +3820,7 @@ modify: } insert: { - "OnStartTouch" "consola,Command,say ***Zombies detected on the boats. Humans lose!***,0,1" + "OnStartTouch" "consola,Command,say **Zombies detected on the boats**,0,1" } } modify: @@ -3846,7 +3835,7 @@ modify: } insert: { - "OnStartTouch" "consola,Command,say ***Zombies detected on the boats. Humans lose!***,0,1" + "OnStartTouch" "consola,Command,say **Zombies detected on the boats. Humans lose**,0,1" } } modify: @@ -3861,7 +3850,7 @@ modify: } insert: { - "OnTrigger" "consola,Command,say ***You have completed Stage 2! Well done!! Moving onto Stage 3... Good luck!***,2,1" + "OnTrigger" "consola,Command,say **Stage 2 complete! Moving onto Stage 3...**,2,1" } } modify: @@ -3876,7 +3865,7 @@ modify: } insert: { - "OnTrigger" "consola,Command,say ***You have completed Stage 2! Well done!! Moving onto Stage 3... Good luck!***,2,1" + "OnTrigger" "consola,Command,say **Stage 2 complete! Moving onto Stage 3...**,2,1" } } modify: @@ -3891,7 +3880,7 @@ modify: } insert: { - "OnTrigger" "consola,Command,say ***You have completed Stage 2! Well done!! Moving onto Stage 3... Good luck!***,2,1" + "OnTrigger" "consola,Command,say **Stage 2 complete! Moving onto Stage 3...**,2,1" } } modify: @@ -3906,7 +3895,7 @@ modify: } insert: { - "OnBreak" "consola,Command,say ***Nazgul is dead!***,0,1" + "OnBreak" "consola,Command,say **Nazgul is dead**,0,1" } } modify: @@ -3923,9 +3912,8 @@ modify: } insert: { - "OnTrigger" "consola,Command,say ***Get ready for the final battle!***,0,1" - "OnTrigger" "consola,Command,say ***The hole to the top will close itself in 15 seconds!***,1,1" - "OnTrigger" "consola,Command,say ***Teleporting Zombies and AFK players to the top of Saruman's Tower in 20 seconds!***,2,1" + "OnTrigger" "consola,Command,say **Prepare for the final battle**,0,1" + "OnTrigger" "consola,Command,say **The hole to the top will close itself in 15 seconds**,1,1" } } modify: @@ -3940,7 +3928,7 @@ modify: } insert: { - "OnTrigger" "consola,Command,say ***Kill Saruman before the music ends or else...***,6,1" + "OnTrigger" "consola,Command,say **Defeat Saruman before the music ends**,6,1" } } modify: @@ -3956,8 +3944,8 @@ modify: } insert: { - "OnBreak" "consola,Command,say ***You have defeated Saruman!!!***,0,1" - "OnBreak" "consola,Command,say ***Congratulations!!!***,1,1" + "OnBreak" "consola,Command,say **Saruman is dead**,0,1" + "OnBreak" "consola,Command,say **Congratulations!**,1,1" } } modify: @@ -3972,7 +3960,7 @@ modify: } insert: { - "OnPlayerPickup" "consola,Command,say ***A player has picked up Heal (ONE USE ONLY!)***,0,1" + "OnPlayerPickup" "consola,Command,say **A player has picked up Heal (ONE USE ONLY!)**,0,1" } } modify: @@ -3987,7 +3975,7 @@ modify: } insert: { - "OnTrigger" "consola,Command,say ***Run back to the main entrance!***,2,1" + "OnTrigger" "consola,Command,say **Run back to the main entrance!**,2,1" } } modify: @@ -4003,8 +3991,8 @@ modify: } insert: { - "OnTrigger" "consola,Command,say ***Door to the boss room will open in 15 seconds***,0,1" - "OnTrigger" "consola,Command,say ***Go! Good luck!***,15,1" + "OnTrigger" "consola,Command,say **Door to the boss room will open in 15 seconds**,0,1" + "OnTrigger" "consola,Command,say **Door is open. Good luck...**,15,1" } } modify: @@ -4019,7 +4007,7 @@ modify: } insert: { - "OnTrigger" "consola,Command,say ***A player has found the key! The door will open in 5 seconds!***,0,1" + "OnTrigger" "consola,Command,say **A player has found the key! The door will open in 5 seconds**,0,1" } } modify: @@ -4035,8 +4023,8 @@ modify: } insert: { - "OnTrigger" "consola,Command,say ***This door needs a key to open...***,0,1" - "OnTrigger" "consola,Command,say ***Find and pick up the key! It should be somewhere in this room...***,1,1" + "OnTrigger" "consola,Command,say **This door needs a key to open...**,0,1" + "OnTrigger" "consola,Command,say **Find and pick up the key. It should be somewhere in this room...**,1,1" } } modify: @@ -4051,7 +4039,7 @@ modify: } insert: { - "OnTrigger" "consola,Command,say ***A player has found the key! The door will open in 10 seconds!***,0,1" + "OnTrigger" "consola,Command,say **A player has found the key! The door will open in 10 seconds**,0,1" } } modify: @@ -4067,8 +4055,8 @@ modify: } insert: { - "OnTrigger" "consola,Command,say ***Defend here for 20 seconds until the gates open!***,0,1" - "OnTrigger" "consola,Command,say ***Gates are open! Go!***,20,1" + "OnTrigger" "consola,Command,say **Defend here for 20 seconds until the gates open**,0,1" + "OnTrigger" "consola,Command,say **Gates are open**,20,1" } } modify: @@ -4083,7 +4071,7 @@ modify: } insert: { - "OnTrigger" "consola,Command,say ***Elevator will move up in 5 seconds!***,0,1" + "OnTrigger" "consola,Command,say **Elevator will move up in 5 seconds**,0,1" } } modify: @@ -4099,8 +4087,7 @@ modify: } insert: { - "OnTrigger" "consola,Command,say ***Defend here for 20 seconds before the elevator door opens!***,0,1" - "OnTrigger" "consola,Command,say ***Go go go! Get on the elevator!***,20,1" + "OnTrigger" "consola,Command,say **Defend here for 20 seconds before the elevator door opens!**,0,1" } } modify: @@ -4116,8 +4103,8 @@ modify: } insert: { - "OnTrigger" "consola,Command,say ***Defend here for 20 seconds before the staircases open!***,0,1" - "OnTrigger" "consola,Command,say ***Go go go! Move upstairs!***,21,1" + "OnTrigger" "consola,Command,say **Defend here for 20 seconds before the staircases open**,0,1" + "OnTrigger" "consola,Command,say **Go go go! Move upstairs**,21,1" } } modify: @@ -4134,9 +4121,9 @@ modify: } insert: { - "OnTrigger" "consola,Command,say ***Left door will open in 10 seconds!***,0,1" - "OnTrigger" "consola,Command,say ***Hold the hallways until someone finds the key to open the door!***,1,1" - "OnTrigger" "consola,Command,say ***Door on the left has been opened! Find the key to open the door on the right!***,10,1" + "OnTrigger" "consola,Command,say **Left door will open in 10 seconds**,0,1" + "OnTrigger" "consola,Command,say **Hold the hallways until someone finds the key to open the door**,1,1" + "OnTrigger" "consola,Command,say **Door on the left has been opened! Find the key to open the door on the right**,10,1" } } modify: @@ -4152,8 +4139,8 @@ modify: } insert: { - "OnBreak" "consola,Command,say ***Go go go!***,0,1" - "OnBreak" "consola,Command,say ***Zombies will teleport in 5 seconds!***,1,1" + "OnBreak" "consola,Command,say **Go go go!**,0,1" + "OnBreak" "consola,Command,say **Zombies will teleport in 5 seconds**,1,1" } } modify: @@ -4168,7 +4155,7 @@ modify: } insert: { - "OnBreak" "consola,Command,say ***Zombies will teleport in 5 seconds!***,0,1" + "OnBreak" "consola,Command,say **Zombies will teleport in 5 seconds**,0,1" } } modify: @@ -4184,8 +4171,8 @@ modify: } insert: { - "OnBreak" "consola,Command,say ***Go go go!***,0,1" - "OnBreak" "consola,Command,say ***Teleporting AFK players in 10 seconds!***,1,1" + "OnBreak" "consola,Command,say **Go go go!**,0,1" + "OnBreak" "consola,Command,say **Teleporting AFK players in 10 seconds**,1,1" } } modify: @@ -4201,8 +4188,8 @@ modify: } insert: { - "OnBreak" "consola,Command,say ***You killed Grima. Well done! Saruman is next...***,0,1" - "OnBreak" "consola,Command,say ***Defend here for 15 seconds!***,1,1" + "OnBreak" "consola,Command,say **You have defeated Grima. Well done! Saruman is next...**,0,1" + "OnBreak" "consola,Command,say **Defend here for 15 seconds**,1,1" } } modify: @@ -4217,7 +4204,7 @@ modify: } insert: { - "OnPass" "consola,Command,say ***Grima reached the bottom... You lose!***,0,1" + "OnPass" "consola,Command,say **Grima reached the bottom... You lose**,0,1" } } modify: @@ -4232,6 +4219,210 @@ modify: } insert: { - "OnTrigger" "consola,Command,say ***Shoot Grima before he reaches the bottom!***,0,1" + "OnTrigger" "consola,Command,say **Shoot Grima before he reaches the bottom**,0,1" + } +} + +modify: +{ + match: + { + "targetname" "sound_track_1_izengard1" + } + replace: + { + "message" "#isengard/ADNCompositionsUltimaOmega.mp3" + } +} + +modify: +{ + match: + { + "targetname" "lvl2_music_3" + } + replace: + { + "message" "#isengard/LOTROSTUNLEASHED123.mp3" + } +} + +modify: +{ + match: + { + "targetname" "final_lvl1_sound" + } + replace: + { + "message" "#isengard/Howard Shore - last fight.mp3" + } +} + +modify: +{ + match: + { + "targetname" "isengard_sound_plotina" + } + replace: + { + "message" "#isengard/ISENGARD UNLEASHED.mp3" + } +} + +modify: +{ + match: + { + "targetname" "lvl2_musci_4" + } + replace: + { + "message" "#isengard/Two Steps From Hell - sons of war.mp3" + } +} + +modify: +{ + match: + { + "targetname" "grimaa_sound_2" + } + replace: + { + "message" "#isengard/mix_yryk_hai.mp3" + } +} + +modify: +{ + match: + { + "targetname" "sound_side_2" + } + replace: + { + "message" "#isengard/MarkPetrie-Artemis(cut).mp3" + } +} + +modify: +{ + match: + { + "targetname" "sound_side_3" + } + replace: + { + "message" "#isengard/AudiomachineTerminus-Rex-Arcana(muzofon.com).mp3" + } +} + +modify: +{ + match: + { + "targetname" "sound_side_3_1" + } + replace: + { + "message" "#isengard/Audiomachine_-_Age_Of_Rebellion_(iPlayer.fm).mp3" + } +} + +modify: +{ + match: + { + "targetname" "sound_side_3_2" + } + replace: + { + "message" "#isengard/14_for_the_win.mp3" + } +} + +modify: +{ + match: + { + "targetname" "final_soundtrack" + } + replace: + { + "message" "#isengard/Mark Petrie - Virtus_cut2.mp3" + } +} + +modify: +{ + match: + { + "targetname" "music_level1_forest" + } + replace: + { + "message" "#isengard/LOTRForestsound.mp3" + } +} + +modify: +{ + match: + { + "targetname" "dam_soundbest" + } + replace: + { + "message" "#isengard/Howard Shore(cut).mp3" + } +} + +modify: +{ + match: + { + "targetname" "stage_3_music" + } + replace: + { + "message" "#isengard/Audiomachine-Uprising.mp3" + } +} + +modify: +{ + match: + { + "targetname" "boss3_saruman_final_song" + } + replace: + { + "message" "#isengard/EpicMusic_saruman33.mp3" + } +} + +modify: +{ + match: + { + "targetname" "end_stage3_music" + } + replace: + { + "message" "#isengard/final_song_3_level.mp3" + } +} + +modify: +{ + match: + { + "targetname" "stage_song2" + } + replace: + { + "message" "#isengard/Legend255.mp3" } } \ No newline at end of file diff --git a/ze_lotr_isengard_v2_3_old.cfg b/ze_lotr_isengard_v2_3_old.cfg new file mode 100644 index 0000000..5d82d51 --- /dev/null +++ b/ze_lotr_isengard_v2_3_old.cfg @@ -0,0 +1,4237 @@ +;------------------------------------------------------------ +;STRIPPER CFG BY NOCTALI http://steamcommunity.com/id/h4sard +;------------------------------------------------------------ +;FIX HEALTH SYSTEM - SETUP +;-------------------------- +filter: +{ + "targetname" "/max_p.*/" + "classname" "math_counter" +} +add: +{ + "model" "*422" + "targetname" "stripper_zone_hp" + "classname" "trigger_multiple" + "wait" "1" + "spawnflags" "1" + "filtername" "humanos" + "origin" "-8410.5 -6179 -11577.5" +} +add: +{ + "targetname" "stripper_health_backup" + "classname" "math_counter" + "origin" "3659 -648 -84" + "StartDisabled" "0" + "startvalue" "10" + "min" "0" + "max" "10000" + "OnGetValue" "stripper_health_counter,SetValue,,0,-1" +} +add: +{ + "targetname" "stripper_health_counter" + "classname" "math_counter" + "origin" "3659 -648 -84" + "StartDisabled" "0" + "startvalue" "10" + "min" "0" + "max" "10000" + "OnHitMin" "stripper_health_iterator,Add,1,0,-1" + "OnHitMin" "stripper_health_backup,GetValue,,0,-1" +} +add: +{ + "targetname" "stripper_health_iterator" + "classname" "math_counter" + "origin" "3659 -648 -84" + "StartDisabled" "0" + "startvalue" "0" + "min" "0" + "max" "10" + "OnHitMax" "!self,Kill,,0,1" +} +;------------------------------ +;FIX HEALTH SYSTEM - BREAKABLE +;------------------------------ +modify: +{ + match: + { + "origin" "2604 11948 7325.77" + "targetname" "case4" + "classname" "logic_case" + } + insert: + { + "Case01" "right" + "Case02" "middle" + "Case03" "left" + "OnCase01" "!self,Kill,,0,1" + "OnCase02" "!self,Kill,,0,1" + "OnCase03" "!self,Kill,,0,1" + } +} +modify: +{ + match: + { + "targetname" "lvl1_right_trigger1" + "classname" "trigger_once" + } + insert: + { + "OnTrigger" "stripper_zone_hp,AddOutput,OnStartTouch bkreak_Web_lvl1:AddHealth:40:0:-1,19.98,1" + "OnTrigger" "player,AddOutput,OnUser1 stripper_zone_hp:StartTouch::0:1,19.98,1" + "OnTrigger" "player,FireUser1,,19.99,1" + } +} +modify: +{ + match: + { + "targetname" "bkreak_Web_lvl1" + "classname" "func_breakable" + } + replace: + { + "health" "250" + } +} +;--------------------------- +;FIX HEALTH SYSTEM - SPIDER +;--------------------------- +filter: +{ + "targetname" "hp_controller_spider" +} +filter: +{ + "targetname" "hp_counter_spider" +} +modify: +{ + match: + { + "targetname" "logic_spider" + "classname" "logic_relay" + } + insert: + { + "OnTrigger" "stripper_health_iterator,AddOutput,OutValue hp_seter_spider:InValue::0:-1,4.97,1" + "OnTrigger" "stripper_zone_hp,AddOutput,OnStartTouch stripper_health_backup:Add:39:0:-1,4.97,1" + "OnTrigger" "stripper_zone_hp,AddOutput,OnStartTouch web2_env_mak:FireUser1::0:-1,4.97,1" + "OnTrigger" "player,AddOutput,OnUser1 stripper_zone_hp:StartTouch::0:1,4.97,1" + "OnTrigger" "player,FireUser1,,4.98,1" + "OnTrigger" "stripper_health_backup,GetValue,,4.99,1" + } +} +modify: +{ + match: + { + "targetname" "boss_break_head" + "classname" "func_physbox" + } + delete: + { + "OnDamaged" "hp_controller_spider,Add,8,0,-1" + "OnBreak" "web2,Break,,0,-1" + "OnBreak" "web3,Break,,0,-1" + } + insert: + { + "OnDamaged" "stripper_health_counter,Subtract,1,0,-1" + "OnBreak" "web*,Break,,0,1" + } +} +modify: +{ + match: + { + "targetname" "web2_env_mak" + "classname" "env_entity_maker" + } + insert: + { + "OnUser1" "!self,AddOutput,OnEntitySpawned web*:AddHealth:70:0:-1,0,-1" + } +} +modify: +{ + match: + { + "targetname" "point_web2" + "classname" "point_template" + } + replace: + { + "spawnflags" "0" + } +} +modify: +{ + match: + { + "targetname" "web2" + "classname" "func_physbox" + } + replace: + { + "health" "250" + } + insert: + { + "OnBreak" "web3,FireUser1,,0,1" + } +} +modify: +{ + match: + { + "targetname" "web3" + "classname" "func_physbox" + } + replace: + { + "health" "250" + } + insert: + { + "OnBreak" "web2,FireUser1,,0,1" + } +} +;--------------------------- +;FIX HEALTH SYSTEM - NAZGUL +;--------------------------- +filter: +{ + "targetname" "trigger_she4_humans_nazgul" +} +modify: +{ + match: + { + "targetname" "boat_1_path1" + "classname" "path_track" + } + insert: + { + "OnPass" "stripper_health_*,Kill,,0,1" + "OnPass" "stripper_zone_hp,AddOutput,OnStartTouch box_nazgryl:AddHealth:340:0:-1,0,1" + "OnPass" "player,AddOutput,OnUser1 stripper_zone_hp:StartTouch::0:1,0,1" + "OnPass" "player,FireUser1,,0.01,1" + "OnPass" "box_nazgryl,RemoveHealth,99749,0.02,1" + } +} +;----------------------------- +;FIX HEALTH SYSTEM - URUK-HAI +;----------------------------- +filter: +{ + "targetname" "hp_controller_yruk" +} +filter: +{ + "targetname" "hp_counter_yruk" +} +filter: +{ + "targetname" "trigger_boss_set_hp" +} +modify: +{ + match: + { + "targetname" "boss1_trigger_start" + "classname" "logic_relay" + } + insert: + { + "OnTrigger" "stripper_health_iterator,AddOutput,OutValue hp_seter_yruk:InValue::0:-1,3.97,1" + "OnTrigger" "stripper_zone_hp,AddOutput,OnStartTouch stripper_health_backup:Add:31:0:-1,3.97,1" + "OnTrigger" "player,AddOutput,OnUser1 stripper_zone_hp:StartTouch::0:1,3.97,1" + "OnTrigger" "player,FireUser1,,3.98,1" + "OnTrigger" "stripper_health_backup,GetValue,,3.99,1" + } +} +modify: +{ + match: + { + "targetname" "boss1_break" + "classname" "func_physbox" + } + delete: + { + "OnDamaged" "hp_controller_yruk,Add,10,0,-1" + } + insert: + { + "OnDamaged" "stripper_health_counter,Subtract,1,0,-1" + } +} +;---------------------------- +;FIX HEALTH SYSTEM - SUPPORT +;---------------------------- +modify: +{ + match: + { + "targetname" "trigger_set_damba_hp" + "classname" "trigger_multiple" + } + delete: + { + "OnStartTouch" "max_p50,Add,1,0,-1" + "OnStartTouch" "max_p32,Add,1,0,-1" + "OnStartTouch" "max_p16,Add,1,0,-1" + "OnStartTouch" "max_p8,Add,1,0,-1" + "OnStartTouch" "max_p4,Add,1,0,-1" + "OnStartTouch" "max_p1,Add,1,0,-1" + "OnStartTouch" "max_p2,Add,1,0,-1" + "OnStartTouch" "max_p3,Add,1,0,-1" + } + insert: + { + "OnStartTouch" "!self,Kill,,0,1" + "OnStartTouch" "stripper_health_*,Kill,,0,1" + "OnStartTouch" "stripper_zone_hp,AddOutput,OnStartTouch beam_*:AddHealth:404:0:-1,0,1" + "OnStartTouch" "player,AddOutput,OnUser1 stripper_zone_hp:StartTouch::0:1,0,1" + "OnStartTouch" "player,FireUser1,,0.01,1" + "OnStartTouch" "beam_*,RemoveHealth,999749,0.02,1" + } +} +;-------------------------- +;FIX HEALTH SYSTEM - GRIMA +;-------------------------- +filter: +{ + "targetname" "trigger_she4_humans" +} +modify: +{ + match: + { + "model" "*589" + "origin" "9328 1418.5 2112" + "classname" "trigger_once" + } + insert: + { + "targetname" "stripper_grima_trigger" + "OnTrigger" "stripper_zone_hp,AddOutput,OnStartTouch box_grima_helth:AddHealth:324:0:-1,0,1" + "OnTrigger" "player,AddOutput,OnUser1 stripper_zone_hp:StartTouch::0:1,0,1" + "OnTrigger" "player,FireUser1,,0.01,1" + "OnTrigger" "box_grima_helth,RemoveHealth,999749,0.02,1" + } +} +modify: +{ + match: + { + "targetname" "box_grima_helth" + "classname" "func_physbox" + } + replace: + { + "health" "999999" + } +} +;---------------------------- +;FIX HEALTH SYSTEM - SARUMAN +;---------------------------- +filter: +{ + "targetname" "hp_controller_saruman" +} +filter: +{ + "targetname" "hp_counter_saruman" +} +filter: +{ + "targetname" "trigger_se_hp_saruman" +} +modify: +{ + match: + { + "targetname" "boss3_trigger_start" + "classname" "logic_relay" + } + insert: + { + "OnTrigger" "stripper_health_iterator,AddOutput,OutValue hp_seter_saruman:InValue::0:-1,3.97,1" + "OnTrigger" "stripper_zone_hp,AddOutput,OnStartTouch stripper_health_backup:Add:34:0:-1,3.97,1" + "OnTrigger" "player,AddOutput,OnUser1 stripper_zone_hp:StartTouch::0:1,3.97,1" + "OnTrigger" "player,FireUser1,,3.98,1" + "OnTrigger" "stripper_health_backup,GetValue,,3.99,1" + } +} +modify: +{ + match: + { + "targetname" "boss3_break" + "classname" "func_physbox" + } + delete: + { + "OnDamaged" "hp_controller_saruman,Add,12,0,-1" + } + insert: + { + "OnDamaged" "stripper_health_counter,Subtract,1,0,-1" + } +} +;--------------------- +;INCREASE TORCH LIGHT +;--------------------- +modify: +{ + match: + { + "targetname" "nnew1_prop_torch3" + "classname" "light_dynamic" + } + replace: + { + "distance" "380" + } +} +------------------- +;FIX STAGE 1 SCORE +;------------------ +modify: +{ + match: + { + "model" "*455" + "targetname" "trigger_final_lvl1" + "classname" "trigger_multiple" + } + delete: + { + "OnTrigger" "hurt_lvl1_final,Enable,,2,1" + "OnTrigger" "consola,Command,say ***NUKE IN 1 SEC!!***,2,1" + "OnTrigger" "level_brush2,Disable,,2,1" + "OnTrigger" "consola,Command,say ***NUKE IN 2 SEC!!***,1,1" + "OnTrigger" "consola,Command,say ***LVL 1 COMPLETED***,0,1" + "OnTrigger" "fade_final_lvl1,Fade,,2,1" + "OnTrigger" "all_levels,Trigger,,0,1" + "OnStartTouch" "final_add_score_lvl1,ApplyScore,,0.01,-1" + "OnTrigger" "hurt_spawn,Enable,,2,1" + "OnTrigger" "consola,Command,say ***Map by Limon. Thanks for playing***,3,1" + "OnTrigger" "final_add_score_lvl1,Kill,,3,1" + } + insert: + { + "OnUser1" "!self,Enable,,0,1" + "OnTrigger" "trigger_final_lvl1,FireUser2,,0,1" + } +} +add: +{ + "model" "*456" + "targetname" "trigger_final_lvl1" + "StartDisabled" "1" + "spawnflags" "1" + "origin" "-13781 396.5 8123.5" + "filtername" "humanos" + "classname" "trigger_once" + "OnTrigger" "hurt_lvl1_final,Enable,,2,1" + "OnTrigger" "fade_final_lvl1,Fade,,2,1" + "OnStartTouch" "final_add_score_lvl1,ApplyScore,,0,-1" + "OnTrigger" "hurt_spawn,Enable,,2,1" + "OnTrigger" "consola,Command,say ***Map by Limon / Fixed by Noctali / Thanks for playing***,3,1" + "OnTrigger" "final_add_score_lvl1,Kill,,3,1" + "OnTrigger" "consola,Command,say ***You have completed Stage 1! Moving onto Stage 2...***,0,1" + "OnTrigger" "consola,Command,say ***Final nuke will explode in 2 seconds...***,1,1" + "OnTrigger" "consola,Command,say ***Final nuke will explode in 1 second...***,2,1" + "OnUser2" "!self,Enable,,0,1" + "OnTrigger" "worldspawn,FireUser1,,1.98,1" + "OnTrigger" "worldspawn,AddOutput,OnUser1 Level_Counter:SetValue:3:0:1,2,1" +} +modify: +{ + match: + { + "model" "*469" + "targetname" "box_nazgryl" + "classname" "func_physbox" + } + delete: + { + "OnBreak" "trigger_final_lvl1,Enable,,0,-1" + } + insert: + { + "OnBreak" "trigger_final_lvl1,FireUser1,,0,1" + } +} +;----------------------- +;FIX STAGE 2 LEFT SCORE +;----------------------- +modify: +{ + match: + { + "model" "*405" + "targetname" "trigger_end_side_2" + "classname" "trigger_once" + } + delete: + { + "OnStartTouch" "!activator,AddOutput,health 999999,101,-1" + "OnStartTouch" "score_final_water,ApplyScore,,100,-1" + "OnTrigger" "level_brush3,Disable,,100,-1" + } + insert: + { + "OnUser1" "!self,Enable,,0,1" + "OnTrigger" "trigger_end_side_2,FireUser2,,100,1" + "OnTrigger" "worldspawn,FireUser1,,99.98,1" + "OnTrigger" "worldspawn,AddOutput,OnUser1 Level_Counter:SetValue:4:0:1,100,1" + } +} +modify: +{ + match: + { + "origin" "-558 -343 -5408" + "targetname" "logic_relay_random_side2" + "classname" "logic_relay" + } + delete: + { + "OnTrigger" "trigger_end_side_2,Enable,,1,-1" + } + insert: + { + "OnTrigger" "trigger_end_side_2,FireUser1,,1,1" + } +} +add: +{ + "model" "*405" + "targetname" "trigger_end_side_2" + "StartDisabled" "1" + "spawnflags" "1" + "origin" "6769 2005.5 -5422.5" + "filtername" "humanos" + "classname" "trigger_once" + "OnUser2" "!self,Enable,,0,1" + "OnStartTouch" "!activator,AddOutput,health 999999,0,-1" + "OnStartTouch" "score_final_water,ApplyScore,,0,-1" +} +;------------------ +;FIX STAGE 3 SCORE +;------------------ +modify: +{ + match: + { + "model" "*364" + "targetname" "trigger_STAGE3_COMPI" + "classname" "trigger_once" + } + delete: + { + "OnStartTouch" "final_3_saruman,ApplyScore,,0,-1" + "OnStartTouch" "!activator,AddOutput,health 999999,4,-1" + "OnTrigger" "trigger_hurt_stage3_end,Enable,,5,-1" + "OnTrigger" "exP_FINAL_SARU,Start,,5,-1" + "OnTrigger" "nuke_ends_sound,PlaySound,,5,-1" + "OnTrigger" "hurt_spawn,Enable,,5,-1" + "OnTrigger" "level_brush1,Disable,,4,-1" + "OnTrigger" "all_levels,Trigger,,2,-1" + } + insert: + { + "OnTrigger" "trigger_hurt_stage3_end,Enable,,6,1" + "OnTrigger" "exP_FINAL_SARU,Start,,6,1" + "OnTrigger" "nuke_ends_sound,PlaySound,,6,1" + "OnTrigger" "hurt_spawn,Enable,,6,1" + "OnUser1" "!self,Enable,,0,1" + "OnTrigger" "trigger_STAGE3_COMPI,FireUser2,,7,1" + } +} +add: +{ + "model" "*409" + "targetname" "trigger_STAGE3_COMPI" + "StartDisabled" "1" + "spawnflags" "1" + "origin" "-494.5 -389 -5628.5" + "classname" "trigger_once" + "OnUser2" "!self,Enable,,0,1" + "OnStartTouch" "final_3_saruman,ApplyScore,,0,-1" +} +modify: +{ + match: + { + "origin" "9461.67 -335 5215" + "targetname" "end_logica_stage3" + "classname" "logic_relay" + } + delete: + { + "OnTrigger" "trigger_STAGE3_COMPI,Enable,,0,-1" + } + insert: + { + "OnTrigger" "trigger_STAGE3_COMPI,FireUser1,,0,1" + } +} +;------------ +;FIX STAGE 2 +;------------ +filter: +{ + "model" "*384" + "targetname" "brush_teleport_ends_sides" + "origin" "-2155.5 -545.48 -5382" + "classname" "func_brush" + "hammerid" "5758448" +} +add: +{ + "origin" "-2155.5 -545.48 -5382" + "targetname" "brush_teleport_ends_sides" + "spawnflags" "0" + "rendermode" "0" + "renderfx" "0" + "rendercolor" "255 255 255" + "renderamt" "255" + "model" "effects/citadel_sky_card_01.vmt" + "mindxlevel" "0" + "maxdxlevel" "0" + "HDRColorScale" "1.0" + "GlowProxySize" "2.0" + "framerate" "10.0" + "disablereceiveshadows" "1" + "classname" "env_sprite" + "scale" "0.7" +} +modify: +{ + match: + { + "model" "*60" + "targetname" "trigger_end_side_1" + "classname" "trigger_once" + } + delete: + { + "OnTrigger" "brush_teleport_ends_sides,Enable,,10,-1" + "OnTrigger" "consola,Command,say ***Jump on the rocks***,60,-1" + "OnTrigger" "consola,Command,say **Mass teleport Zombies and AFK's in 10 sec!!**,61,-1" + } + insert: + { + "OnTrigger" "Stripper_Stage_2_Middle_Teleport,Enable,,0,1" + "OnTrigger" "br4,Break,,7,-1" + "OnTrigger" "brush_teleport_ends_sides,ShowSprite,,10,1" + "OnTrigger" "consola,Command,say ***Teleporting all AFK players and Zombies in 10 seconds!***,60,1" + "OnTrigger" "consola,Command,say ***Get on top of the rocks!***,85,1" + } +} +modify: +{ + match: + { + "model" "*311" + "targetname" "trigger_end_side_3" + "classname" "trigger_once" + } + delete: + { + "OnTrigger" "brush_teleport_ends_sides,Enable,,10,-1" + } + insert: + { + "OnTrigger" "brush_teleport_ends_sides,ShowSprite,,10,1" + } +} +modify: +{ + match: + { + "origin" "-460 -592 -5321.57" + "targetname" "case_isengard_change" + } + delete: + { + "OnCase04" "logic_relay_random_side2,Trigger,,0,-1" + "OnCase04" "lvl_isengard_random_1,Enable,,0,-1" + } + insert: + { + "Case01" "left" + "Case02" "middle" + "Case03" "right" + "OnCase01" "Stripper_Less_Bride_Model_Temp,FireUser1,,0,1" + "OnCase02" "Stripper_Bridge_Temp,FireUser1,,0,1" + "OnCase01" "!self,Kill,,0,1" + "OnCase02" "!self,Kill,,0,1" + "OnCase03" "!self,Kill,,0,1" + "OnCase01" "Stripper_Bridge_Temp,Kill,,0,1" + "OnCase03" "Stripper_Bridge_Temp,Kill,,0,1" + "OnCase01" "Stripper_Stage_2_Block,Kill,,0,1" + "OnCase03" "Stripper_Stage_2_Block,Kill,,0,1" + "OnCase01" "Stripper_Stage_2_Middle_Teleport,Kill,,0,1" + "OnCase03" "Stripper_Stage_2_Middle_Teleport,Kill,,0,1" + "OnCase02" "Stripper_Stage_2_Left_Teleport,Kill,,0,1" + "OnCase03" "Stripper_Stage_2_Left_Teleport,Kill,,0,1" + "OnCase02" "Stripper_Stage_2_left_arrow,Kill,,0,1" + "OnCase03" "Stripper_Stage_2_left_arrow,Kill,,0,1" + "OnCase02" "Stripper_Less_Bride_Model_Temp,Kill,,0,1" + "OnCase03" "Stripper_Less_Bride_Model_Temp,Kill,,0,1" + } +} +modify: +{ + match: + { + "origin" "-3286.15 -539 -5412" + "targetname" "point_lvl2_start_templ" + "classname" "point_template" + } + insert: + { + "Template12" "Stripper_Stage_2_*" + } +} +modify: +{ + match: + { + "model" "*176" + "targetname" "push_dumba" + "classname" "trigger_push" + } + insert: + { + "OnStartTouch" "!activator,SetDamageFilter,Filter_Fall_Ignore,0,-1" + "OnStartTouch" "!activator,SetDamageFilter,,10,-1" + "OnStartTouch" "Stripper_Stage_2_Block,Kill,,10,1" + } +} +modify: +{ + match: + { + "model" "*315" + "targetname" "lvl_isengard_random_3" + "classname" "func_brush" + } + replace: + { + "origin" "-461.17 -534.4 -5250" + } + insert: + { + "angles" "0 0 180" + } +} +filter: +{ + "origin" "9740 -15022 -3703" + "targetname" "sprite_left_dam" + "classname" "env_sprite" +} +add: +{ + "model" "*313" + "classname" "func_physbox_multiplayer" + "targetname" "Stripper_Stage_2_Arrow" + "origin" "9740 -15022 -3703" + "spawnflags" "41985" + "angles" "0 90 0" +} +modify: +{ + match: + { + "origin" "9912 -15403 -2714" + "targetname" "lift_path_track_dam1" + "classname" "path_track" + } + insert: + { + "OnPass" "Stripper_Stage_2_Arrow,Kill,,5,1" + } +} +;------------------- +;FIX STAGE 2 MIDDLE +;------------------- +add: +{ + "origin" "6336 -334 -5505" + "classname" "point_template" + "spawnflags" "0" + "targetname" "Stripper_Bridge_Temp" + "Template01" "br1" + "Template02" "br4" + "Template03" "br2" + "Template04" "br5" + "Template05" "most" + "OnUser1" "!self,AddOutput,origin 6336 -334 -5509.5,0,1" + "OnUser1" "!self,ForceSpawn,,0.01,1" + "OnUser1" "br1*,FireUser1,,0.02,1" + "OnUser1" "!self,AddOutput,origin 6328 26 -5503.5,0.03,1" + "OnUser1" "!self,ForceSpawn,,0.04,1" + "OnUser1" "!self,AddOutput,origin 6768 -1064 -5520.5,0.05,1" + "OnUser1" "!self,ForceSpawn,,0.06,1" + "OnUser1" "!self,Kill,,0.07,1" +} +modify: +{ + match: + { + "targetname" "br1" + } + insert: + { + "OnUser1" "br1,AddOutput,targetname br1,0,1" + "OnUser1" "br2,AddOutput,targetname br2,0,1" + "OnUser1" "br4,AddOutput,targetname br4,0,1" + "OnUser1" "br5,AddOutput,targetname br5,0,1" + "OnUser1" "most,AddOutput,targetname most,0,1" + } +} +modify: +{ + match: + { + "model" "*400" + "targetname" "za_barikady_teleport" + "classname" "trigger_teleport" + } + replace: + { + "origin" "770.5 -446.5 -6222.5" + } +} +modify: +{ + match: + { + "targetname" "za_baricady" + "classname" "info_teleport_destination" + } + replace: + { + "origin" "4967 -349 -5453" + } +} +modify: +{ + match: + { + "targetname" "sprite_1_end" + "origin" "6109 -1542 -5339" + "classname" "env_sprite" + } + replace: + { + "origin" "5774 26 -5395" + } +} +modify: +{ + match: + { + "targetname" "sprite_1_end" + "origin" "5991 595 -5339" + "classname" "env_sprite" + } + replace: + { + "origin" "6214 -1064 -5412" + } +} +modify: +{ + match: + { + "model" "*62" + "origin" "5991 594.5 -5431.43" + "classname" "func_breakable" + } + replace: + { + "origin" "5991 588.5 -5407.43" + "health" "999999" + } +} +modify: +{ + match: + { + "model" "*63" + "origin" "6100 -1555.5 -5431.43" + "classname" "func_breakable" + } + replace: + { + "origin" "6100 -1550.5 -5402.43" + "health" "999999" + } +} +add: +{ + "model" "*17" + "classname" "func_physbox" + "targetname" "Stripper_Stage_2_Block" + "origin" "4998.5 -348.5 -5348" + "spawnflags" "41985" + "rendermode" "10" +} +add: +{ + "model" "*400" + "targetname" "Stripper_Stage_2_Middle_Teleport" + "target" "za_baricady" + "StartDisabled" "1" + "spawnflags" "1" + "origin" "6353.68 -372.5 -7000.5" + "classname" "trigger_teleport" +} +;----------------- +;FIX STAGE 2 LEFT +;----------------- +add: +{ + "model" "*359" + "targetname" "Stripper_Stage_2_Left_Teleport" + "target" "teleport_all_for_boss" + "StartDisabled" "0" + "spawnflags" "1" + "origin" "5097.5 2187 -5291" + "classname" "trigger_teleport" + "filtername" "zombis" +} +modify: +{ + match: + { + "origin" "5160 2271 -5253.5" + "targetname" "hp_seter_yruk" + "classname" "logic_case" + } + insert: + { + "OnCase10" "Stripper_Stage_2_Left_Teleport,Kill,,0,1" + } +} +add: +{ + "origin" "8923 -11 3790" + "classname" "point_template" + "spawnflags" "2" + "targetname" "Stripper_Less_Bride_Model_Temp" + "Template01" "Less_Bridge_Model" + "OnUser1" "!self,AddOutput,origin 6865 1648 -5530,0,1" + "OnUser1" "!self,AddOutput,angles 0 45 0,0,1" + "OnUser1" "!self,ForceSpawn,,0.01,1" + "OnUser1" "!self,AddOutput,origin 6515 1998 -5530,0.02,1" + "OnUser1" "!self,ForceSpawn,,0.03,1" + "OnUser1" "!self,AddOutput,origin 7077 1952 -5530,0.04,1" + "OnUser1" "!self,ForceSpawn,,0.05,1" + "OnUser1" "!self,AddOutput,origin 6727 2302 -5530,0.06,1" + "OnUser1" "!self,ForceSpawn,,0.07,1" + "OnUser1" "!self,Kill,,0.08,1" +} +add: +{ + "origin" "8923 -11 3790" + "targetname" "Less_Bridge_Model" + "spawnflags" "0" + "solid" "6" + "skin" "0" + "rendermode" "0" + "renderfx" "0" + "rendercolor" "255 255 255" + "renderamt" "255" + "RandomAnimation" "0" + "pressuredelay" "0" + "PerformanceMode" "0" + "model" "models/z-o-m-b-i-e/st/nastil/st_nastil_wood_03.mdl" + "mindxlevel" "0" + "MinAnimTime" "5" + "maxdxlevel" "0" + "MaxAnimTime" "10" + "fadescale" "1" + "fademindist" "5000" + "fademaxdist" "5200" + "ExplodeRadius" "0" + "ExplodeDamage" "0" + "disableshadows" "1" + "disablereceiveshadows" "1" + "DisableBoneFollowers" "1" + "modelscale" "1" + "body" "0" + "angles" "0 0 0" + "classname" "prop_dynamic" +} +filter: +{ + "origin" "3391 3075 -5427" + "targetname" "sprite_arrow_1" + "classname" "env_sprite" +} +add: +{ + "model" "*313" + "classname" "func_physbox_multiplayer" + "targetname" "Stripper_Stage_2_left_arrow" + "origin" "3391 3075 -5427" + "spawnflags" "41985" + "angles" "0 90 0" +} +;------------------ +;FIX STAGE 2 RIGHT +;------------------ +modify: +{ + match: + { + "origin" "5471 -1889.43 -5481" + "targetname" "info_teleport_hummans_side3" + "classname" "info_teleport_destination" + } + replace: + { + "angles" "0 315 0" + "origin" "4928 -2688 -5480" + } +} +modify: +{ + match: + { + "origin" "4627 -2164 -5481" + "targetname" "info_teleport_zombie_side3" + "classname" "info_teleport_destination" + } + replace: + { + "angles" "0 90 0" + "origin" "5760 -4288 -5480" + } +} +modify: +{ + match: + { + "origin" "6266 -1890.18 -5483" + "targetname" "teleport_za_barikady" + "classname" "info_teleport_destination" + } + replace: + { + "origin" "5440 -1920 -5480" + } +} +modify: +{ + match: + { + "model" "*401" + "targetname" "za_barikady_teleport2" + "classname" "trigger_teleport" + } + replace: + { + "origin" "1154.5 -3164.5 -5851" + } +} +add: +{ + "model" "*401" + "targetname" "za_barikady_teleport2" + "target" "teleport_za_barikady" + "StartDisabled" "1" + "spawnflags" "1" + "origin" "1879.5 -4146.5 -5851" + "classname" "trigger_teleport" +} +modify: +{ + match: + { + "model" "*322" + "targetname" "trigger_end2_side_3" + "classname" "trigger_once" + } + delete: + { + "OnTrigger" "consola,Command,say ***Jump on the rocks***,60,-1" + "OnTrigger" "consola,Command,say **Mass teleport Zombies and AFK's in 10 sec!!**,61,-1" + } + insert: + { + "OnTrigger" "sprite_def_4,Kill,,60,1" + "OnTrigger" "sprite_end_side_3,ShowSprite,,60,1" + "OnTrigger" "consola,Command,say ***Teleporting all AFK players and Zombies in 10 seconds!***,60,1" + "OnTrigger" "consola,Command,say ***Get on top of the rocks!***,85,1" + } +} +modify: +{ + match: + { + "model" "*326" + "targetname" "trigger_teleport_dumba_side3" + "classname" "trigger_once" + } + delete: + { + "OnTrigger" "sprite_end_side_3,ShowSprite,,0,-1" + } + insert: + { + "OnTrigger" "sprite_def_4,ShowSprite,,0,1" + } +} +;----------------- +;FIX STAGE 3 BOSS +;----------------- +modify: +{ + match: + { + "origin" "9400 -156.22 5157" + "targetname" "logika_attack_saruman" + "classname" "logic_case" + } + delete: + { + "OnCase05" "fire_attacK_sound,StopSound,,5,-1" + "OnCase05" "boss3,SetAnimation,batonangryidle1,5,-1" + "OnCase05" "case5_fire_attack,Stop,,5,-1" + "OnCase07" "boss3,SetAnimation,batonangryidle1,5,-1" + "OnCase07" "case5_fire_attack,Stop,,5,-1" + "OnCase07" "fire_attacK_sound,StopSound,,5,-1" + "OnCase06" "saruman_gravity_attack,Disable,,5,-1" + "OnCase06" "case6_gravity_partic4,Stop,,5,-1" + "OnCase06" "case6_gravity_partic3,Stop,,5,-1" + "OnCase06" "case6_gravity_partic2,Stop,,5,-1" + "OnCase06" "boss3,SetAnimation,batonangryidle1,5,-1" + "OnCase06" "case6_gravity_partic1,Stop,,5,-1" + "OnCase06" "spteampuff_attack_sound,StopSound,,5,-1" + } + insert: + { + "OnCase05" "fire_attacK_sound,StopSound,,4,-1" + "OnCase05" "boss3,SetAnimation,batonangryidle1,4,-1" + "OnCase05" "case5_fire_attack,Stop,,4,-1" + "OnCase07" "boss3,SetAnimation,batonangryidle1,4,-1" + "OnCase07" "case5_fire_attack,Stop,,4,-1" + "OnCase07" "fire_attacK_sound,StopSound,,4,-1" + "OnCase06" "saruman_gravity_attack,Disable,,4.9,-1" + "OnCase06" "case6_gravity_partic4,Stop,,4.9,-1" + "OnCase06" "case6_gravity_partic3,Stop,,4.9,-1" + "OnCase06" "case6_gravity_partic2,Stop,,4.9,-1" + "OnCase06" "boss3,SetAnimation,batonangryidle1,4.9,-1" + "OnCase06" "case6_gravity_partic1,Stop,,4.9,-1" + "OnCase06" "spteampuff_attack_sound,StopSound,,4.9,-1" + } +} +modify: +{ + match: + { + "model" "*513" + "origin" "9321 -72.5 4998.5" + "classname" "trigger_once" + } + replace: + { + "classname" "trigger_multiple" + } + delete: + { + "OnTrigger" "zombie_stay_stage3,Enable,,0,-1" + } + insert: + { + "wait" "1" + "OnStartTouch" "zombie_stay_stage3,Enable,,0,1" + "OnStartTouch" "!activator,AddOutput,origin 8923 -11 3842,0,-1" + } +} +add: +{ + "model" "*533" + "targetname" "stripper_fix_stuck" + "StartDisabled" "1" + "spawnflags" "1" + "origin" "9321 -72.5 4412" + "filtername" "humanos" + "classname" "trigger_multiple" + "wait" "1" + "OnStartTouch" "!activator,AddOutput,origin 9331 341 5104,0,-1" + "OnStartTouch" "!self,Kill,,0.05,1" +} +modify: +{ + match: + { + "targetname" "point_lvl3_templ" + "origin" "9129 1268.48 -1615" + "classname" "point_template" + } + insert: + { + "Template16" "stripper_fix_stuck" + } +} +modify: +{ + match: + { + "targetname" "trigger_lvl3_6" + "origin" "9321 -72.5 5043.5" + "classname" "trigger_once" + } + insert: + { + "OnTrigger" "stripper_fix_stuck,Enable,,15,1" + "OnTrigger" "stripper_fix_stuck,Kill,,15.1,1" + } +} +add: +{ + "model" "*529" + "targetname" "saruman_gravity_attack" + "StartDisabled" "1" + "spawnflags" "1" + "origin" "9351 -76 5227.5" + "filtername" "humanos" + "classname" "trigger_hurt" + "damagetype" "16384" + "damagemodel" "0" + "damagecap" "20" + "damage" "4" + "nodmgforce" "0" +} +modify: +{ + match: + { + "model" "*505" + "targetname" "final_end_tel_z_saruman" + "classname" "trigger_teleport" + } + insert: + { + "OnStartTouch" "speedmod,ModifySpeed,1.12,0,-1" + "OnStartTouch" "!activator,AddOutput,rendermode 0,0,-1" + } +} +modify: +{ + match: + { + "origin" "9461.67 -335 5215" + "targetname" "end_logica_stage3" + "classname" "logic_relay" + } + delete: + { + "OnTrigger" "final_end_tel_z_saruman,Enable,,3,-1" + } + insert: + { + "OnTrigger" "crow_maker,Kill,,0,1" + "OnTrigger" "crow_model*,Kill,,2,1" + "OnTrigger" "final_end_tel_z_saruman,Enable,,2,1" + } +} +modify: +{ + match: + { + "targetname" "end_stage3_t_z" + "classname" "info_teleport_destination" + } + replace: + { + "origin" "6976 -320 -5471" + } +} +modify: +{ + match: + { + "model" "*416" + "targetname" "newH_stage_1_cheap_6" + "classname" "trigger_hurt" + } + insert: + { + "filtername" "humanos" + } +} +;------------------------ +;FIX STAGE 3 OVERDEFENSE +;------------------------ +add: +{ + "origin" "9300 1635.49 843" + "Template01" "stripper_fix_defense" + "targetname" "stripper_temp_defense" + "spawnflags" "2" + "classname" "point_template" +} +add: +{ + "model" "*355" + "targetname" "stripper_fix_defense" + "classname" "func_physbox" + "origin" "9300 1635.49 843" + "spawnflags" "8715265" + "rendermode" "10" + "disablereceiveshadows" "1" + "disableshadows" "1" + "angles" "0 0 0" +} +modify: +{ + match: + { + "targetname" "trigger_to_start_lvl3_gate" + "origin" "8267.5 -436 -5165" + "classname" "trigger_teleport" + } + insert: + { + "OnStartTouch" "stripper_temp_defense,AddOutput,origin 8888.47 1001.54 -1348,0,1" + "OnStartTouch" "stripper_temp_defense,AddOutput,angles 0 225 0,0,1" + "OnStartTouch" "stripper_temp_defense,ForceSpawn,,0.01,1" + "OnStartTouch" "stripper_temp_defense,AddOutput,origin 8747.47 868.54 -1348,0.02,1" + "OnStartTouch" "stripper_temp_defense,ForceSpawn,,0.03,1" + } +} +modify: +{ + match: + { + "model" "*581" + "origin" "9166.16 1301.95 -775" + "classname" "trigger_once" + } + insert: + { + "OnTrigger" "stripper_fix_defense,Kill,,0,1" + } +} +modify: +{ + match: + { + "model" "*541" + "origin" "9345 1206.5 791.48" + "classname" "trigger_once" + } + insert: + { + "OnTrigger" "stripper_temp_defense,AddOutput,origin 9300 1635.49 843,19.99,1" + "OnTrigger" "stripper_temp_defense,AddOutput,angles 0 90 0,19.99,1" + "OnTrigger" "stripper_temp_defense,ForceSpawn,,20,1" + } +} +modify: +{ + match: + { + "model" "*564" + "origin" "9337.5 1883.5 1307.04" + "classname" "trigger_once" + } + insert: + { + "OnTrigger" "stripper_fix_defense,Kill,,0,1" + } +} +;----------------- +;FIX STAGE 3 GRID +;----------------- +add: +{ + "model" "*496" + "targetname" "stripper_fix_grid" + "classname" "func_physbox" + "origin" "9282 -277 3251.8" + "spawnflags" "41985" + "rendermode" "10" + "disablereceiveshadows" "1" + "disableshadows" "1" + "angles" "0 295.5 0" +} +;------------------- +;FIX STAGE 3 SAURON +;------------------- +modify: +{ + match: + { + "targetname" "trigger_oko_sauron" + "classname" "trigger_once" + } + insert: + { + "filtername" "zombis" + } +} +;----------- +;FIX GOLLUM +;----------- +filter: +{ + "model" "*610" + "origin" "4141.5 11960.5 7302.22" + "classname" "trigger_once" +} +;----------------- +;FIX STAGE SYSTEM +;----------------- +filter: +{ + "targetname" "all_levels" +} +filter: +{ + "model" "models/props/cs_italy/bananna.mdl" + "classname" "prop_physics_override" +} +filter: +{ + "targetname" "trigger_warmup" +} +filter: +{ + "targetname" "warmup_trigger_start" +} +filter: +{ + "targetname" "warmap_brush" +} +filter: +{ + "model" "*174" + "origin" "3339 -215 2442.26" + "classname" "trigger_once" +} +filter: +{ + "targetname" "level_1" +} +filter: +{ + "targetname" "level_brush1" +} +filter: +{ + "targetname" "level_brush2" +} +filter: +{ + "model" "*173" + "origin" "3403 -215 2442.26" + "classname" "trigger_once" +} +filter: +{ + "targetname" "level_2" +} +filter: +{ + "targetname" "level_brush3" +} +filter: +{ + "targetname" "level_3" +} +filter: +{ + "model" "*229" + "origin" "3467 -215 2442.26" + "classname" "trigger_once" +} +modify: +{ + match: + { + "origin" "2576.08 11928 7325.77" + "classname" "logic_auto" + } + delete: + { + "OnNewGame" "brush_teleport_ends_sides,Disable,,0,-1" + } + insert: + { + "OnNewGame" "player,AddOutput,max_health 100,0,1" + "OnNewGame" "consola,Command,zr_classes_overlay_toggle 0,0,1" + "OnNewGame" "consola,Command,zr_classes_overlay_togglecmds none,0,1" + "OnNewGame" "worldspawn,FireUser1,,0,1" + "OnNewGame" "Level_Counter,GetValue,,0.02,1" + "OnNewGame" "consola,Command,say ***Map by Limon / Fixed by Noctali***,1,1" + "OnNewGame" "consola,Command,say ***Grammar errors fixed by Sombrero raper***,1.5,1" + "OnNewGame" "thanks,Display,,3,1" + "OnNewGame" "thanks2,Display,,6,1" + "OnNewGame" "thanks3,Display,,9,1" + } +} +add: +{ + "classname" "math_counter" + "origin" "13400 -1941 12520" + "targetname" "Level_Counter" + "startvalue" "1" + "StartDisabled" "0" + "min" "1" + "max" "4" + "OnGetValue" "!self,Kill,,0,1" + "OnGetValue" "Level_Case,InValue,,0,1" +} +add: +{ + "classname" "logic_case" + "targetname" "Level_Case" + "origin" "13400 -1941 12520" + "Case01" "1" + "Case02" "2" + "Case03" "3" + "Case04" "4" + "OnDefault" "consola,Command,say ** There is an error in the level system **,0,1" + "OnCase01" "!self,Kill,,0,1" + "OnCase01" "consola,Command,say ***Warm up round - Waiting for players to join***,0,1" + "OnCase01" "consola,Command,say ***Warm up round on going - waiting for players to join!***,1,1" + "OnCase01" "consola,Command,say ***Stage 1 will start in 45 seconds!***,2,1" + "OnCase01" "consola,Command,say ***Zombies will be teleported out of the Spawn Zone in 7 seconds!***,3,1" + "OnCase01" "consola,Command,say ***Warm up round on going - waiting for players to join!***,,5,1" + "OnCase01" "consola,Command,say ***Warm up round on going - waiting for players to join!***,,6,1" + "OnCase01" "consola,Command,say ***Warm up round on going - waiting for players to join!***,,7,1" + "OnCase01" "consola,Command,say ***Stage 1 will start in 35 seconds!***,10,1" + "OnCase01" "consola,Command,say ***Warm up round on going - waiting for players to join!***,12,1" + "OnCase01" "consola,Command,say ***Stage 1 will start in 25 seconds!***,20,1" + "OnCase01" "consola,Command,say ***Warm up round on going - waiting for players to join!***,22,1" + "OnCase01" "consola,Command,say ***Stage 1 will start in 15 seconds!***,30,1" + "OnCase01" "consola,Command,say ***Warm up round on going - waiting for players to join!***,31,1" + "OnCase01" "consola,Command,say ***Stage 1 will start in 5 seconds!***,40,1" + "OnCase01" "consola,Command,say ***Warm up round is over. Game starting!***,44,1" + "OnCase01" "sky_eff_smoke,Kill,,0,1" + "OnCase01" "sky_eff_smoke2,Kill,,0,1" + "OnCase01" "trigger_zombie_room,Disable,,0,1" + "OnCase01" "kill_all_traps_stage3,Trigger,,0,1" + "OnCase01" "teleport_zombie_white_room,Enable,,7,1" + "OnCase01" "fade_spawn,Fade,,43,1" + "OnCase01" "consola,Command,mp_restartgame 1,44,1" + "OnCase01" "worldspawn,FireUser1,,0,1" + "OnCase01" "worldspawn,AddOutput,OnUser1 Level_Counter:SetValue:1:0:1,0.02,1" + "OnCase01" "worldspawn,FireUser1,,22.98,1" + "OnCase01" "worldspawn,AddOutput,OnUser1 Level_Counter:SetValue:2:0:1,23,1" + "OnCase02" "!self,Kill,,0,1" + "OnCase02" "consola,Command,say ***Current stage will begin in 15 seconds. Good luck and Have Fun!***,2,1" + "OnCase02" "consola,Command,say ***Zombies will be teleported out of the Spawn Zone in 7 seconds!***,3,1" + "OnCase02" "consola,Command,say ***Touch the Middle-Earth map in the middle to start playing!***,15,1" + "OnCase02" "kill_all_traps_stage3,Trigger,,0,1" + "OnCase02" "teleport_zombie_white_room,Enable,,7,1" + "OnCase02" "fade_spawn,Fade,,13,1" + "OnCase02" "env_lvl1_maker,ForceSpawn,,15,1" + "OnCase02" "spider_avatar,Enable,,15,1" + "OnCase02" "sky_eff_smoke2,Kill,,15,1" + "OnCase02" "sky_eff_smoke,Kill,,15,1" + "OnCase02" "lvl2_light,TurnOn,,15,1" + "OnCase02" "hummans_teleport_stage_1,Enable,,15,1" + "OnCase02" "zombies_teleport_stage_1,Enable,,15,1" + "OnCase02" "teleport_to_spider_char,Enable,,15,1" + "OnCase02" "forest_sound_all,StopSound,,15,1" + "OnCase02" "lvl2_music_3,PlaySound,,15,1" + "OnCase02" "wall_spider_fix,Toggle,,16,1" + "OnCase02" "consola,Command,say ***Stage 1 - The Mountainpass***,16,1" + "OnCase02" "consola,Command,say ***Teleporting AFK players to the caverns in 30 seconds!***,17,1" + "OnCase02" "afk_telp_1,Enable,,45,1" + "OnCase02" "worldspawn,FireUser1,,0,1" + "OnCase02" "worldspawn,AddOutput,OnUser1 Level_Counter:SetValue:2:0:1,0.02,1" + "OnCase03" "!self,Kill,,0,1" + "OnCase03" "consola,Command,say ***Current stage will begin in 15 seconds. Good Luck and Have Fun!***,2,1" + "OnCase03" "consola,Command,say ***Zombies will be teleported out of the Spawn Zone in 7 seconds!***,3,1" + "OnCase03" "consola,Command,say ***Touch the Middle-Earth map in the middle to start playing!***,15,1" + "OnCase03" "kill_all_traps_stage3,Trigger,,0,1" + "OnCase03" "teleport_zombie_white_room,Enable,,7,1" + "OnCase03" "fade_spawn,Fade,,13,1" + "OnCase03" "hummans_teleport_stage_2,Enable,,15,1" + "OnCase03" "zombies_teleport_stage_2,Enable,,15,1" + "OnCase03" "sky_brush,Disable,,15,1" + "OnCase03" "sky_sbrush_1,Disable,,15,1" + "OnCase03" "sky_stone_brush,Disable,,15,1" + "OnCase03" "sky_trees,Disable,,15,1" + "OnCase03" "sky_trees_1,Disable,,15,1" + "OnCase03" "saruman_tower_model,Enable,,15,1" + "OnCase03" "sky_stone_brush2,Disable,,15,1" + "OnCase03" "sky_towers_1223,Disable,,15,1" + "OnCase03" "teleport_to_ent_char,Enable,,15,1" + "OnCase03" "forest_sound_all,PlaySound,,15,1" + "OnCase03" "env_lvl2_start_maker,ForceSpawn,,15,1" + "OnCase03" "ent_avatar,Enable,,15,1" + "OnCase03" "lvl2_frodo_anim,Kill,,15,1" + "OnCase03" "lvl2_frodo,Kill,,15,1" + "OnCase03" "lvl2_frodo_path,Kill,,15,1" + "OnCase03" "lvl2_frodo_path525,Kill,,15,1" + "OnCase03" "lvl2_frodo_path6,Kill,,15,1" + "OnCase03" "lvl2_frodo_path8,Kill,,15,1" + "OnCase03" "wall_stshe525,Kill,,15,1" + "OnCase03" "sky_box_mountain_lvl1,Disable,,15,1" + "OnCase03" "consola,Command,say ***Stage 2 - The Trenches of Isengard***,16,1" + "OnCase03" "consola,Command,say ***Teleporting AFK players to the forest in 30 seconds***,17,1" + "OnCase03" "afk_telp_2,Enable,,45,1" + "OnCase03" "worldspawn,FireUser1,,0,1" + "OnCase03" "worldspawn,AddOutput,OnUser1 Level_Counter:SetValue:3:0:1,0.02,1" + "OnCase04" "!self,Kill,,0,1" + "OnCase04" "consola,Command,say ***Current stage will begin in 15 seconds. Good luck and Have Fun!***,2,1" + "OnCase04" "consola,Command,say ***Zombies will be teleported out of the Spawn Zone in 7 seconds!***,3,1" + "OnCase04" "consola,Command,say ***Touch the Middle-Earth map in the middle to start playing!***,15,1" + "OnCase04" "water_lvl_izengard,Open,,0,1" + "OnCase04" "skywater_2,Open,,0,1" + "OnCase04" "skywater,Open,,0,1" + "OnCase04" "sky_brush,Disable,,0,1" + "OnCase04" "sky_towers_1223,Disable,,0,1" + "OnCase04" "ents_3stage_start,Enable,,0,1" + "OnCase04" "trigger_off,Kill,,0,1" + "OnCase04" "most,Kill,,0,1" + "OnCase04" "br1,Kill,,0,1" + "OnCase04" "br5,Kill,,0,1" + "OnCase04" "teleport_to_gandalf,Enable,,0,1" + "OnCase04" "gandalf_stage3_start,Enable,,0,1" + "OnCase04" "env_maker_gandalf,ForceSpawn,,0,1" + "OnCase04" "teleport_zombie_white_room,Enable,,7,1" + "OnCase04" "fade_spawn,Fade,,13,1" + "OnCase04" "sky_sbrush_1,Enable,,15,1" + "OnCase04" "sky_stone_brush,Enable,,15,1" + "OnCase04" "sky_trees,Enable,,15,1" + "OnCase04" "sky_trees_1,Enable,,15,1" + "OnCase04" "sky_platina_break,Kill,,15,1" + "OnCase04" "sky_platina_motiv,Kill,,15,1" + "OnCase04" "sky_eff_smoke2,TurnOn,,15,1" + "OnCase04" "sky_stone_brush2,Enable,,15,1" + "OnCase04" "stage_3_music,PlaySound,,15,1" + "OnCase04" "sky_stone_break,Break,,15,1" + "OnCase04" "clound_stage3_2,Enable,,15,1" + "OnCase04" "clound_stage3_1,Enable,,15,1" + "OnCase04" "phys_stone_motiv,Kill,,15,1" + "OnCase04" "stone_break_isengard,Kill,,15,1" + "OnCase04" "clound_stage3_3,Disable,,15,1" + "OnCase04" "env_lvl3_maker,ForceSpawn,,15,1" + "OnCase04" "wall_start_3Level,Toggle,,15,1" + "OnCase04" "br1,Kill,,15,1" + "OnCase04" "br2,Kill,,15,1" + "OnCase04" "br4,Kill,,15,1" + "OnCase04" "W_Sprite,ShowSprite,,15,1" + "OnCase04" "sky_box_mountain_lvl1,Disable,,15,1" + "OnCase04" "hummans_teleport_stage_3,Enable,,16,1" + "OnCase04" "zombies_teleport_stage_3,Enable,,16,1" + "OnCase04" "consola,Command,say ***Stage 3 - Saruman's Tower***,16,1" + "OnCase04" "consola,Command,say ***Teleporting AFK players inside Saruman's Tower in 35 seconds!***,17,1" + "OnCase04" "telep_afk_lvl3_start,Enable,,50,1" + "OnCase04" "afk_telp_3,Enable,,50,1" + "OnCase04" "worldspawn,FireUser1,,0,1" + "OnCase04" "worldspawn,AddOutput,OnUser1 Level_Counter:SetValue:4:0:1,0.02,1" +} +modify: +{ + match: + { + "targetname" "trigger_end_stage2_tower3" + "classname" "trigger_once" + } + delete: + { + "OnTrigger" "level_brush3,Disable,,1,-1" + "OnTrigger" "all_levels,Trigger,,0,-1" + } + insert: + { + "OnTrigger" "worldspawn,FireUser1,,0.98,1" + "OnTrigger" "worldspawn,AddOutput,OnUser1 Level_Counter:SetValue:4:0:1,1,1" + } +} +modify: +{ + match: + { + "model" "*461" + "targetname" "trigger_end_stage2_tower" + "origin" "7097 233 -4910" + "classname" "trigger_once" + } + replace: + { + "classname" "trigger_multiple" + } + delete: + { + "OnTrigger" "level_brush3,Disable,,1,-1" + "OnTrigger" "all_levels,Trigger,,0,-1" + "OnTrigger" "final_hurt,Enable,,4,-1" + } + insert: + { + "wait" "1" + "OnStartTouch" "!self,Disable,,0,1" + "OnStartTouch" "!self,FireUser1,,0,1" + "OnUser1" "worldspawn,FireUser1,,0.98,1" + "OnUser1" "worldspawn,AddOutput,OnUser1 Level_Counter:SetValue:4:0:1,1,1" + "OnUser1" "final_hurt,Enable,,4,1" + } +} +modify: +{ + match: + { + "model" "*462" + "targetname" "trigger_end_stage2_tower" + "origin" "7233 -1128 -4910" + "classname" "trigger_once" + } + replace: + { + "classname" "trigger_multiple" + } + delete: + { + "OnTrigger" "level_brush3,Disable,,1,-1" + "OnTrigger" "all_levels,Trigger,,0,-1" + "OnTrigger" "final_hurt,Enable,,4,-1" + } + insert: + { + "wait" "1" + "OnStartTouch" "!self,Disable,,0,1" + "OnStartTouch" "trigger_end_stage2_tower,FireUser1,,0,1" + } +} +;------------ +;FIX CREDITS +;------------ +modify: +{ + match: + { + "targetname" "thanks" + } + replace: + { + "classname" "game_text" + } + insert: + { + "holdtime" "3.1" + "fxtime" "0" + "fadeout" "0.9" + "fadein" "0" + "effect" "2" + "color2" "128 255 255" + "color" "0 255 255" + "channel" "4" + "y" ".25" + "x" ".05" + } +} +modify: +{ + match: + { + "targetname" "thanks2" + } + replace: + { + "classname" "game_text" + } + insert: + { + "holdtime" "3.1" + "fxtime" "0" + "fadeout" "0.9" + "fadein" "0" + "effect" "2" + "color2" "128 255 255" + "color" "0 255 255" + "channel" "4" + "y" ".25" + "x" ".05" + } +} +modify: +{ + match: + { + "targetname" "thanks3" + } + replace: + { + "classname" "game_text" + } + insert: + { + "holdtime" "3.1" + "fxtime" "0" + "fadeout" "0.9" + "fadein" "0" + "effect" "2" + "color2" "128 255 255" + "color" "0 255 255" + "channel" "4" + "y" ".25" + "x" ".05" + } +} +;--------- +;FIX HEAL +;--------- +filter: +{ + "targetname" "heal_kit" + "origin" "8942.5 -11 3841.44" + "classname" "func_physbox_multiplayer" +} +modify: +{ + match: + { + "targetname" "healtrigger" + "origin" "8923 -11 3842" + "classname" "trigger_multiple" + } + replace: + { + "classname" "trigger_hurt" + } + delete: + { + "wait" "1" + "OnStartTouch" "!activator,AddOutput,health 150,0,-1" + } + insert: + { + "damage" "-500" + "damagecap" 20" + "damagemodel" "0" + "damagetype" "0" + "nodmgforce" "0" + "OnStartTouch" "!activator,AddOutput,max_health 150,0,-1" + } +} +modify: +{ + match: + { + "origin" "8917 -89 3812" + "targetname" "heal_filter" + "classname" "filter_activator_name" + } + delete: + { + "OnPass" "brushbast,Kill,,5,1" + "OnPass" "heal_part,Kill,,5,1" + "OnPass" "healtrigger,Kill,,5,1" + } + insert: + { + "OnPass" "!self,Kill,,0,1" + "OnPass" "brushbast,Kill,,6,1" + "OnPass" "heal_part,Kill,,6,1" + "OnPass" "healtrigger,Kill,,6,1" + } +} +modify: +{ + match: + { + "origin" "8925.27 15.57 3853.8" + "targetname" "brushbast" + "classname" "func_movelinear" + } + replace: + { + "origin" "8956.75 9.34 3853.8" + } + insert: + { + "angles" "0 90 0" + } +} +modify: +{ + match: + { + "origin" "8916 -13 3828" + "targetname" "elite_heal" + "classname" "weapon_elite" + } + insert: + { + "OnPlayerPickup" "heal_model,Kill,,0,1" + } +} +add: +{ + "origin" "8923 -11 3790" + "targetname" "heal_model" + "spawnflags" "0" + "solid" "0" + "skin" "0" + "rendermode" "0" + "renderfx" "0" + "rendercolor" "255 255 255" + "renderamt" "255" + "RandomAnimation" "0" + "pressuredelay" "0" + "PerformanceMode" "0" + "model" "models/effects/vol_light256x512.mdl" + "mindxlevel" "0" + "MinAnimTime" "5" + "maxdxlevel" "0" + "MaxAnimTime" "10" + "fadescale" "1" + "fademindist" "-1" + "fademaxdist" "0" + "ExplodeRadius" "0" + "ExplodeDamage" "0" + "disableshadows" "1" + "disablereceiveshadows" "1" + "DisableBoneFollowers" "1" + "modelscale" "0.3" + "body" "0" + "angles" "180 0 0" + "classname" "prop_dynamic" +} +modify: +{ + match: + { + "origin" "8923 -11 3831" + "targetname" "heal_tele" + "classname" "point_template" + } + replace: + { + "spawnflags" "0" + "Template01" "heal_filter" + "Template07" "heal_model" + } +} +;-------- +;FIX ENT +;-------- +modify: +{ + match: + { + "origin" "-8001.47 -6109 -11655" + "targetname" "ent_counter" + "classname" "math_counter" + } + delete: + { + "OnHitMax" "teleport_to_ent_char,Disable,,0,-1" + } + insert: + { + "OnHitMax" "!self,Kill,,0,1" + "OnHitMax" "teleport_to_ent_char,Kill,,0,1" + "OnHitMax" "ent_maker,Kill,,0,1" + "OnHitMax" "ent_template,Kill,,0,1" + } +} +modify: +{ + match: + { + "origin" "-9531.5 -493 -4973.5" + "targetname" "teleport_to_ent_char" + "classname" "trigger_teleport" + } + insert: + { + "OnStartTouch" "!activator,AddOutput,origin -8328.47 -5935 -11719,0,-1" + "OnStartTouch" "speedmod,ModifySpeed,0,0,-1" + "OnStartTouch" "speedmod,ModifySpeed,1,2,-1" + } +} +modify: +{ + match: + { + "origin" "-8328.47 -5935 -11719" + "targetname" "doh_knife" + "classname" "weapon_knife" + } + delete: + { + "OnPlayerPickup" "!activator,SetDamageFilter,filter_t_no,0,-1" + "OnPlayerPickup" "attack_help_ents,ShowHudHint,,1,-1" + "OnPlayerPickup" "attack_help_ents,HideHudHint,,15,-1" + } + insert: + { + "OnPlayerPickup" "!activator,SetDamageFilter,Filter_Zombies+Fall_Ignore,0,1" + "OnPlayerPickup" "doh_phbox,FireUser1,,0,1" + "OnPlayerPickup" "speedmod,ModifySpeed,1.02,3,1" + "OnPlayerPickup" "speedmod,ModifySpeed,1.02,3,1" + "OnPlayerPickup" "attack_help_ents,Kill,,5,1" + "OnPlayerPickup" "!self,FireUser1,,0,1" + "OnUser1" "attack_help_ents,ShowHudHint,,0,50" + "OnUser1" "!self,FireUser1,,0.1,50" + } +} +filter: +{ + "origin" "-8328.47 -5935 -11735" + "targetname" "ent_char" + "classname" "info_teleport_destination" +} +modify: +{ + match: + { + "model" "*418" + "targetname" "doh_phbox" + "classname" "func_physbox_multiplayer" + } + delete: + { + "OnBreak" "doh_ui,Deactivate,,0,-1" + "OnBreak" "ent_model,SetAnimation,dead,0,-1" + } + insert: + { + "OnBreak" "doh_ui,Kill,,0,1" + "OnBreak" "rocket_filter_rocket,Kill,,0,1" + "OnBreak" "ent_attack1_shake,Kill,,0,1" + "OnBreak" "turret_maker,Kill,,0,1" + "OnBreak" "turret_max_rocket,Kill,,0,1" + "OnBreak" "ent_ydar_partic,Kill,,0,1" + "OnBreak" "ent_sprite_button,Kill,,0,1" + "OnBreak" "fire_ent_trigger,Kill,,2,1" + "OnBreak" "fire_ent_partic,Kill,,2,1" + "OnBreak" "ent_animation_counter,Kill,,0,1" + "OnBreak" "ent_animation_relay,Kill,,0,1" + "OnBreak" "ent_animation_branch_1,Kill,,0,1" + "OnBreak" "ent_animation_branch_2,Kill,,0,1" + "OnBreak" "ent_animation_compare,Kill,,0,1" + "OnBreak" "ent_model,SetAnimation,dead,0.01,1" + "OnUser1" "doh_relay,CancelPending,,0,-1" + "OnUser1" "doh_relay,Trigger,,0.05,-1" + "OnUser1" "!self,FireUser1,,0.1,-1" + } +} +filter: +{ + "model" "*419" + "targetname" "doh_dead" + "classname" "trigger_hurt" +} +add: +{ + "classname" "logic_relay" + "targetname" "doh_relay" + "spawnflags" "0" + "StartDisabled" "0" + "OnTrigger" "!activator,SetDamageFilter,Filter_Zombies+Fall_Ignore,0,-1" + "OnTrigger" "!self,FireUser1,,0.1,-1" + "OnUser1" "!self,Kill,,0,1" + "OnUser1" "!activator,SetDamageFilter,,0,1" + "OnUser1" "!activator,SetHealth,0.01,0,1" + "OnUser1" "doh_ui,Kill,,0,1" + "OnUser1" "rocket_filter_rocket,Kill,,0,1" + "OnUser1" "ent_attack1_shake,Kill,,0,1" + "OnUser1" "turret_maker,Kill,,0,1" + "OnUser1" "turret_max_rocket,Kill,,0,1" + "OnUser1" "ent_ydar_partic,Kill,,0,1" + "OnUser1" "ent_sprite_button,Kill,,0,1" + "OnUser1" "fire_ent_trigger,Kill,,2,1" + "OnUser1" "fire_ent_partic,Kill,,2,1" + "OnUser1" "ent_animation_counter,Kill,,0,1" + "OnUser1" "ent_animation_relay,Kill,,0,1" + "OnUser1" "ent_animation_branch_1,Kill,,0,1" + "OnUser1" "ent_animation_branch_2,Kill,,0,1" + "OnUser1" "ent_animation_compare,Kill,,0,1" + "OnUser1" "ent_model,Kill,,0,1" + "OnUser1" "attack1,Kill,,0,1" + "OnUser1" "attack2,Kill,,0,1" + "OnUser1" "ent_push4,Kill,,0,1" + "OnUser1" "ent_counter,Subtract,1,0,1" + "OnUser1" "turret_button,Kill,,0,1" + "OnUser1" "turret_rocket_relay,Kill,,0,1" + "OnUser1" "sound_attacK_rock,Kill,,0,1" +} +modify: +{ + match: + { + "origin" "-8189.69 -5958 -11595" + "targetname" "turret_max_rocket" + "classname" "math_counter" + } + insert: + { + "OnHitMax" "!self,Kill,,0,1" + "OnHitMax" "turret_maker,Kill,,0,1" + } +} +modify: +{ + match: + { + "origin" "-8189.47 -6094 -11708" + "targetname" "doh_ui" + "classname" "game_ui" + } + delete: + { + "UnpressedBack" "ent_model,SetAnimation,idle,0,-1" + "UnpressedForward" "ent_model,SetAnimation,idle,0,-1" + "PressedForward" "ent_model,SetAnimation,run,0,-1" + "PressedMoveLeft" "ent_model,SetAnimation,run,0,-1" + "PressedMoveRight" "ent_model,SetAnimation,run,0,-1" + "PressedBack" "ent_model,SetAnimation,run,0,-1" + } + insert: + { + "PressedForward" "ent_animation_counter,Add,1,0,-1" + "PressedMoveLeft" "ent_animation_counter,Add,1,0,-1" + "PressedMoveRight" "ent_animation_counter,Add,1,0,-1" + "PressedBack" "ent_animation_counter,Add,1,0,-1" + "UnpressedForward" "ent_animation_counter,Subtract,1,0,-1" + "UnpressedMoveLeft" "ent_animation_counter,Subtract,1,0,-1" + "UnpressedMoveRight" "ent_animation_counter,Subtract,1,0,-1" + "UnpressedBack" "ent_animation_counter,Subtract,1,0,-1" + "PressedForward" "ent_animation_relay,Trigger,,0,-1" + "PressedMoveLeft" "ent_animation_relay,Trigger,,0,-1" + "PressedMoveRight" "ent_animation_relay,Trigger,,0,-1" + "PressedBack" "ent_animation_relay,Trigger,,0,-1" + } +} +add: +{ + "classname" "math_counter" + "targetname" "ent_animation_counter" + "min" "0" + "max" "4" + "StartDisabled" "0" + "startvalue" "0" + "OnGetValue" "ent_animation_compare,SetValueCompare,,0,-1" + "OnHitMin" "ent_animation_branch_1,Test,,0,-1" + "OnHitMin" "ent_animation_relay,Enable,,0,-1" +} +add: +{ + "classname" "logic_relay" + "targetname" "ent_animation_relay" + "spawnflags" "0" + "StartDisabled" "0" + "OnTrigger" "!self,Disable,,0,-1" + "OnTrigger" "ent_animation_branch_2,Test,,0,-1" +} +add: +{ + "classname" "logic_branch" + "InitialValue" "1" + "targetname" "ent_animation_branch_1" + "OnTrue" "ent_model,SetAnimation,idle,0,-1" + "OnTrue" "ent_model,SetDefaultAnimation,idle,0,-1" +} +add: +{ + "classname" "logic_branch" + "InitialValue" "1" + "targetname" "ent_animation_branch_2" + "OnTrue" "ent_model,SetAnimation,run,0,-1" + "OnTrue" "ent_model,SetDefaultAnimation,run,0,-1" +} +add: +{ + "classname" "logic_compare" + "InitialValue" "0" + "CompareValue" "0" + "targetname" "ent_animation_compare" + "OnEqualTo" "ent_model,SetAnimation,idle,0,-1" + "OnEqualTo" "ent_model,SetDefaultAnimation,idle,0,-1" + "OnNotEqualTo" "ent_model,SetAnimation,run,0,-1" + "OnNotEqualTo" "ent_model,SetDefaultAnimation,run,0,-1" +} +modify: +{ + match: + { + "origin" "-8212 -6094 -11738" + "targetname" "attack1" + "classname" "logic_relay" + } + delete: + { + "OnTrigger" "ent_model,SetAnimation,attack1,0,-1" + "OnTrigger" "!self,Disable,,0,-1" + "OnTrigger" "!self,Enable,,30,-1" + "OnTrigger" "ent_push4,Enable,,0.3,-1" + "OnTrigger" "ent_attack1_shake,StartShake,,0.55,-1" + "OnTrigger" "ent_ydar_partic,Start,,0.5,-1" + "OnTrigger" "ent_ydar_partic,Stop,,3.4,-1" + "OnTrigger" "ent_push4,Disable,,2.5,-1" + } + insert: + { + "OnTrigger" "!self,FireUser1,,0,1" + "OnUser1" "ent_model,SetAnimation,attack1,0,-1" + "OnUser1" "ent_push4,Enable,,0.3,-1" + "OnUser1" "ent_attack1_shake,StartShake,,0.55,-1" + "OnUser1" "ent_ydar_partic,Start,,0.5,-1" + "OnUser1" "ent_ydar_partic,Stop,,3.4,-1" + "OnUser1" "ent_push4,Disable,,2.5,-1" + "OnUser1" "turret_button,Lock,,0,-1" + "OnUser1" "ent_animation_branch_1,Toggle,,0,-1" + "OnUser1" "ent_animation_branch_2,Toggle,,0,-1" + "OnUser1" "ent_animation_branch_1,Toggle,,3.19,-1" + "OnUser1" "ent_animation_branch_2,Toggle,,3.19,-1" + "OnUser1" "ent_animation_counter,GetValue,,3.2,-1" + "OnUser1" "turret_button,Unlock,,3.5,-1" + "OnUser1" "!self,AddOutput,OnTrigger !self:FireUser1::0:1,30,-1" + } +} +modify: +{ + match: + { + "origin" "-8189.69 -5958 -11621" + "targetname" "turret_rocket_relay" + "classname" "logic_relay" + } + delete: + { + "OnTrigger" "ent_sprite_button,ShowSprite,,19.75,-1" + } + insert: + { + "OnTrigger" "attack1,Disable,,0,-1" + "OnTrigger" "ent_animation_branch_1,Toggle,,0,-1" + "OnTrigger" "ent_animation_branch_2,Toggle,,0,-1" + "OnTrigger" "ent_animation_branch_1,Toggle,,3.99,-1" + "OnTrigger" "ent_animation_branch_2,Toggle,,3.99,-1" + "OnTrigger" "ent_animation_counter,GetValue,,4,-1" + "OnTrigger" "attack1,Enable,,4.1,-1" + "OnTrigger" "ent_sprite_button,ShowSprite,,20,-1" + } +} +modify: +{ + match: + { + "model" "*445" + "targetname" "turret_button" + "classname" "func_button" + } + replace: + { + "wait" "20" + } + delete: + { + "OnPressed" "turret_rocket_relay,Trigger,,0,-1" + } + insert: + { + "OnPressed" "rocket_filter_rocket,TestActivator,,0,-1" + } +} +modify: +{ + match: + { + "origin" "-8275.69 -5842 -11688" + "targetname" "rocket_filter_rocket" + "classname" "filter_activator_name" + } + insert: + { + "OnPass" "turret_rocket_relay,Trigger,,0,-1" + } +} +modify: +{ + match: + { + "origin" "-7979.47 -6109 -11648" + "targetname" "ent_template" + "classname" "point_template" + } + replace: + { + "Template01" "doh_*" + "Template06" "rocket_filter_rocket" + "Template08" "attack_help_ents" + "Template09" "sound_attacK_rock" + "Template10" "fire_ent_*" + "Template11" "ent_animation_*" + } +} +;------------ +;FIX GANDALF +;------------ +modify: +{ + match: + { + "model" "*441" + "origin" "-8911 -8402 -10158" + "classname" "trigger_teleport" + } + insert: + { + "OnStartTouch" "knifemaker,Use,,2,-1" + } +} +modify: +{ + match: + { + "origin" "-8940.22 -8401.9 -9988" + "targetname" "item_gandalf_15" + "classname" "func_physbox_multiplayer" + } + replace: + { + "health" "100" + } + insert: + { + "OnBreak" "item_gandalf_5,Kill,,0,1" + "OnBreak" "attack1_gandalf,Kill,,0,1" + "OnBreak" "attack2_gandalf,Kill,,0,1" + "OnBreak" "case_random_gandalf,Kill,,0,1" + "OnBreak" "case_random_gandalf_hint,Kill,,0,1" + "OnBreak" "item_gandalf_die,Kill,,15,1" + } +} +modify: +{ + match: + { + "origin" "-8938.08 -8399.04 -9826" + "targetname" "template_gandalf" + "classname" "point_template" + } + replace: + { + "origin" "-8926.08 -8399.34 -9997.7" + "spawnflags" "0" + "Template04" "case_random_gandal*" + "Template11" "dalf_hint" + "Template16" "dalf_attack_cooldown" + } + delete: + { + "Template06" "item_gandalf_14" + } +} +modify: +{ + match: + { + "origin" "-8938.08 -8399.04 -9803" + "targetname" "env_maker_gandalf" + "classname" "env_entity_maker" + } + replace: + { + "origin" "-8926.08 -8399.34 -9997.7" + } +} +filter: +{ + "origin" "-9025 -8376 -9933" + "targetname" "case_random_gandalf" + "classname" "logic_case" +} +filter: +{ + "origin" "-9040 -8563.37 -10054" + "targetname" "hud_gandalf" + "classname" "env_hudhint" +} +filter: +{ + "origin" "-9051.08 -8333.04 -9946" + "targetname" "item_gandalf_encender_luz" + "classname" "logic_relay" +} +filter: +{ + "origin" "-8903.08 -8398.07 -9941.3" + "targetname" "item_gandalf_14" + "classname" "light_dynamic" +} +modify: +{ + match: + { + "origin" "-8921.33 -8316.44 -10025" + "targetname" "item_gandalf_5" + "classname" "game_ui" + } + delete: + { + "PressedAttack2" "case_random_gandalf,PickRandom,,0,-1" + } + insert: + { + "PressedAttack" "case_random_gandalf,Toggle,,0,-1" + "PressedAttack" "case_random_gandalf_hint,Toggle,,0,-1" + "PressedAttack" "case_random_gandalf_hint,Test,,0.01,-1" + "PressedAttack2" "case_random_gandalf,Test,,0,-1" + } +} +add: +{ + "classname" "logic_branch" + "InitialValue" "0" + "targetname" "case_random_gandalf" + "OnTrue" "attack2_gandalf,Trigger,,0,-1" + "OnFalse" "attack1_gandalf,Trigger,,0,-1" +} +add: +{ + "classname" "logic_branch" + "InitialValue" "0" + "targetname" "case_random_gandalf_hint" + "OnTrue" "dalf_hint,AddOutput,message Attack Selected > You Shall Not Pass,0,-1" + "OnTrue" "dalf_hint,Display,,0.01,-1" + "OnFalse" "dalf_hint,AddOutput,message Attack Selected > Light,0,-1" + "OnFalse" "dalf_hint,Display,,0.01,-1" +} +modify: +{ + match: + { + "origin" "-9031.08 -8323.04 -9946" + "targetname" "attack1_gandalf" + "classname" "logic_relay" + } + delete: + { + "OnTrigger" "!self,Enable,,60,-1" + } + insert: + { + "OnTrigger" "attack2_gandalf,Disable,,0,-1" + "OnTrigger" "dalf_attack_cooldown,FireUser1,,0,-1" + "OnTrigger" "attack2_gandalf,Enable,,75,-1" + "OnTrigger" "!self,Enable,,75,-1" + } +} +modify: +{ + match: + { + "origin" "-9031.08 -8346.04 -9946" + "targetname" "attack2_gandalf" + "classname" "logic_relay" + } + delete: + { + "OnTrigger" "!self,Enable,,90,-1" + } + insert: + { + "OnTrigger" "attack1_gandalf,Disable,,0,-1" + "OnTrigger" "dalf_attack_cooldown,FireUser1,,0,-1" + "OnTrigger" "attack1_gandalf,Enable,,75,-1" + "OnTrigger" "!self,Enable,,75,-1" + } +} +modify: +{ + match: + { + "targetname" "item_gandalf" + "classname" "weapon_knife" + } + delete: + { + "OnPlayerPickup" "item_gandalf_5,Activate,,0,-1" + "OnPlayerPickup" "hud_gandalf,ShowHudHint,,1,-1" + "OnPlayerPickup" "hud_gandalf,HideHudHint,,15,-1" + } + insert: + { + "OnPlayerPickup" "speedmod,ModifySpeed,1.05,0,1" + "OnPlayerPickup" "speedmod,ModifySpeed,1.05,2,1" + "OnPlayerPickup" "dalf_hint,Display,,0,1" + "OnPlayerPickup" "dalf_hint,AddOutput,message Attack Selected > Light,5.5,1" + "OnPlayerPickup" "dalf_hint,AddOutput,holdtime 3,5.5,1" + "OnPlayerPickup" "dalf_attack_cooldown,Display,,5.51,1" + "OnPlayerPickup" "item_gandalf_5,Activate,,5.51,1" + "OnPlayerPickup" "!self,FireUser1,,5.51,1" + "OnUser1" "dalf_hint,Display,,0,-1" + "OnUser1" "dalf_attack_cooldown,Display,,0,-1" + "OnUser1" "!self,FireUser1,,2,-1" + } +} +add: +{ + "origin" "8602.91 1086.96 12933.8" + "targetname" "dalf_hint" + "classname" "game_text" + "message" "LEFT CLICK = SELECT ATTACK & RIGHT CLICK = USE ATTACK" + "channel" "0" + "color" "0 255 255" + "color2" "128 255 255" + "effect" "0" + "fadein" "0" + "fadeout" "0" + "fxtime" "0.25" + "holdtime" "5" + "spawnflags" "0" + "x" "0.02" + "y" "0.25" +} +add: +{ + "origin" "8602.91 1086.96 12933.8" + "targetname" "dalf_attack_cooldown" + "classname" "game_text" + "message" "Attack Ready !" + "channel" "1" + "color" "0 255 255" + "color2" "128 255 255" + "effect" "0" + "fadein" "0" + "fadeout" "0" + "fxtime" "0.25" + "holdtime" "3" + "spawnflags" "0" + "x" "0.02" + "y" "0.28" + "OnUser1" "!self,AddOutput,message Attack Cooldown - 75s,0,-1" + "OnUser1" "!self,Display,,0.01,-1" + "OnUser1" "!self,AddOutput,message Attack Cooldown - 74s,1,-1" + "OnUser1" "!self,Display,,1.01,-1" + "OnUser1" "!self,AddOutput,message Attack Cooldown - 73s,2,-1" + "OnUser1" "!self,Display,,2.01,-1" + "OnUser1" "!self,AddOutput,message Attack Cooldown - 72s,3,-1" + "OnUser1" "!self,Display,,3.01,-1" + "OnUser1" "!self,AddOutput,message Attack Cooldown - 71s,4,-1" + "OnUser1" "!self,Display,,4.01,-1" + "OnUser1" "!self,AddOutput,message Attack Cooldown - 70s,5,-1" + "OnUser1" "!self,Display,,5.01,-1" + "OnUser1" "!self,AddOutput,message Attack Cooldown - 69s,6,-1" + "OnUser1" "!self,Display,,6.01,-1" + "OnUser1" "!self,AddOutput,message Attack Cooldown - 68s,7,-1" + "OnUser1" "!self,Display,,7.01,-1" + "OnUser1" "!self,AddOutput,message Attack Cooldown - 67s,8,-1" + "OnUser1" "!self,Display,,8.01,-1" + "OnUser1" "!self,AddOutput,message Attack Cooldown - 66s,9,-1" + "OnUser1" "!self,Display,,9.01,-1" + "OnUser1" "!self,AddOutput,message Attack Cooldown - 65s,10,-1" + "OnUser1" "!self,Display,,10.01,-1" + "OnUser1" "!self,AddOutput,message Attack Cooldown - 64s,11,-1" + "OnUser1" "!self,Display,,11.01,-1" + "OnUser1" "!self,AddOutput,message Attack Cooldown - 63s,12,-1" + "OnUser1" "!self,Display,,12.01,-1" + "OnUser1" "!self,AddOutput,message Attack Cooldown - 62s,13,-1" + "OnUser1" "!self,Display,,13.01,-1" + "OnUser1" "!self,AddOutput,message Attack Cooldown - 61s,14,-1" + "OnUser1" "!self,Display,,14.01,-1" + "OnUser1" "!self,AddOutput,message Attack Cooldown - 60s,15,-1" + "OnUser1" "!self,Display,,15.01,-1" + "OnUser1" "!self,AddOutput,message Attack Cooldown - 59s,16,-1" + "OnUser1" "!self,Display,,16.01,-1" + "OnUser1" "!self,AddOutput,message Attack Cooldown - 58s,17,-1" + "OnUser1" "!self,Display,,17.01,-1" + "OnUser1" "!self,AddOutput,message Attack Cooldown - 57s,18,-1" + "OnUser1" "!self,Display,,18.01,-1" + "OnUser1" "!self,AddOutput,message Attack Cooldown - 56s,19,-1" + "OnUser1" "!self,Display,,19.01,-1" + "OnUser1" "!self,AddOutput,message Attack Cooldown - 55s,20,-1" + "OnUser1" "!self,Display,,20.01,-1" + "OnUser1" "!self,AddOutput,message Attack Cooldown - 54s,21,-1" + "OnUser1" "!self,Display,,21.01,-1" + "OnUser1" "!self,AddOutput,message Attack Cooldown - 53s,22,-1" + "OnUser1" "!self,Display,,22.01,-1" + "OnUser1" "!self,AddOutput,message Attack Cooldown - 52s,23,-1" + "OnUser1" "!self,Display,,23.01,-1" + "OnUser1" "!self,AddOutput,message Attack Cooldown - 51s,24,-1" + "OnUser1" "!self,Display,,24.01,-1" + "OnUser1" "!self,AddOutput,message Attack Cooldown - 50s,25,-1" + "OnUser1" "!self,Display,,25.01,-1" + "OnUser1" "!self,AddOutput,message Attack Cooldown - 49s,26,-1" + "OnUser1" "!self,Display,,26.01,-1" + "OnUser1" "!self,AddOutput,message Attack Cooldown - 48s,27,-1" + "OnUser1" "!self,Display,,27.01,-1" + "OnUser1" "!self,AddOutput,message Attack Cooldown - 47s,28,-1" + "OnUser1" "!self,Display,,28.01,-1" + "OnUser1" "!self,AddOutput,message Attack Cooldown - 46s,29,-1" + "OnUser1" "!self,Display,,29.01,-1" + "OnUser1" "!self,AddOutput,message Attack Cooldown - 45s,30,-1" + "OnUser1" "!self,Display,,30.01,-1" + "OnUser1" "!self,AddOutput,message Attack Cooldown - 44s,31,-1" + "OnUser1" "!self,Display,,31.01,-1" + "OnUser1" "!self,AddOutput,message Attack Cooldown - 43s,32,-1" + "OnUser1" "!self,Display,,32.01,-1" + "OnUser1" "!self,AddOutput,message Attack Cooldown - 42s,33,-1" + "OnUser1" "!self,Display,,33.01,-1" + "OnUser1" "!self,AddOutput,message Attack Cooldown - 41s,34,-1" + "OnUser1" "!self,Display,,34.01,-1" + "OnUser1" "!self,AddOutput,message Attack Cooldown - 40s,35,-1" + "OnUser1" "!self,Display,,35.01,-1" + "OnUser1" "!self,AddOutput,message Attack Cooldown - 39s,36,-1" + "OnUser1" "!self,Display,,36.01,-1" + "OnUser1" "!self,AddOutput,message Attack Cooldown - 38s,37,-1" + "OnUser1" "!self,Display,,37.01,-1" + "OnUser1" "!self,AddOutput,message Attack Cooldown - 37s,38,-1" + "OnUser1" "!self,Display,,38.01,-1" + "OnUser1" "!self,AddOutput,message Attack Cooldown - 36s,39,-1" + "OnUser1" "!self,Display,,39.01,-1" + "OnUser1" "!self,AddOutput,message Attack Cooldown - 35s,40,-1" + "OnUser1" "!self,Display,,40.01,-1" + "OnUser1" "!self,AddOutput,message Attack Cooldown - 34s,41,-1" + "OnUser1" "!self,Display,,41.01,-1" + "OnUser1" "!self,AddOutput,message Attack Cooldown - 33s,42,-1" + "OnUser1" "!self,Display,,42.01,-1" + "OnUser1" "!self,AddOutput,message Attack Cooldown - 32s,43,-1" + "OnUser1" "!self,Display,,43.01,-1" + "OnUser1" "!self,AddOutput,message Attack Cooldown - 31s,44,-1" + "OnUser1" "!self,Display,,44.01,-1" + "OnUser1" "!self,AddOutput,message Attack Cooldown - 30s,45,-1" + "OnUser1" "!self,Display,,45.01,-1" + "OnUser1" "!self,AddOutput,message Attack Cooldown - 29s,46,-1" + "OnUser1" "!self,Display,,46.01,-1" + "OnUser1" "!self,AddOutput,message Attack Cooldown - 28s,47,-1" + "OnUser1" "!self,Display,,47.01,-1" + "OnUser1" "!self,AddOutput,message Attack Cooldown - 27s,48,-1" + "OnUser1" "!self,Display,,48.01,-1" + "OnUser1" "!self,AddOutput,message Attack Cooldown - 26s,49,-1" + "OnUser1" "!self,Display,,49.01,-1" + "OnUser1" "!self,AddOutput,message Attack Cooldown - 25s,50,-1" + "OnUser1" "!self,Display,,50.01,-1" + "OnUser1" "!self,AddOutput,message Attack Cooldown - 24s,51,-1" + "OnUser1" "!self,Display,,51.01,-1" + "OnUser1" "!self,AddOutput,message Attack Cooldown - 23s,52,-1" + "OnUser1" "!self,Display,,52.01,-1" + "OnUser1" "!self,AddOutput,message Attack Cooldown - 22s,53,-1" + "OnUser1" "!self,Display,,53.01,-1" + "OnUser1" "!self,AddOutput,message Attack Cooldown - 21s,54,-1" + "OnUser1" "!self,Display,,54.01,-1" + "OnUser1" "!self,AddOutput,message Attack Cooldown - 20s,55,-1" + "OnUser1" "!self,Display,,55.01,-1" + "OnUser1" "!self,AddOutput,message Attack Cooldown - 19s,56,-1" + "OnUser1" "!self,Display,,56.01,-1" + "OnUser1" "!self,AddOutput,message Attack Cooldown - 18s,57,-1" + "OnUser1" "!self,Display,,57.01,-1" + "OnUser1" "!self,AddOutput,message Attack Cooldown - 17s,58,-1" + "OnUser1" "!self,Display,,58.01,-1" + "OnUser1" "!self,AddOutput,message Attack Cooldown - 16s,59,-1" + "OnUser1" "!self,Display,,59.01,-1" + "OnUser1" "!self,AddOutput,message Attack Cooldown - 15s,60,-1" + "OnUser1" "!self,Display,,60.01,-1" + "OnUser1" "!self,AddOutput,message Attack Cooldown - 14s,61,-1" + "OnUser1" "!self,Display,,61.01,-1" + "OnUser1" "!self,AddOutput,message Attack Cooldown - 13s,62,-1" + "OnUser1" "!self,Display,,62.01,-1" + "OnUser1" "!self,AddOutput,message Attack Cooldown - 12s,63,-1" + "OnUser1" "!self,Display,,63.01,-1" + "OnUser1" "!self,AddOutput,message Attack Cooldown - 11s,64,-1" + "OnUser1" "!self,Display,,64.01,-1" + "OnUser1" "!self,AddOutput,message Attack Cooldown - 10s,65,-1" + "OnUser1" "!self,Display,,65.01,-1" + "OnUser1" "!self,AddOutput,message Attack Cooldown - 9s,66,-1" + "OnUser1" "!self,Display,,66.01,-1" + "OnUser1" "!self,AddOutput,message Attack Cooldown - 8s,67,-1" + "OnUser1" "!self,Display,,67.01,-1" + "OnUser1" "!self,AddOutput,message Attack Cooldown - 7s,68,-1" + "OnUser1" "!self,Display,,68.01,-1" + "OnUser1" "!self,AddOutput,message Attack Cooldown - 6s,69,-1" + "OnUser1" "!self,Display,,69.01,-1" + "OnUser1" "!self,AddOutput,message Attack Cooldown - 5s,70,-1" + "OnUser1" "!self,Display,,70.01,-1" + "OnUser1" "!self,AddOutput,message Attack Cooldown - 4s,71,-1" + "OnUser1" "!self,Display,,71.01,-1" + "OnUser1" "!self,AddOutput,message Attack Cooldown - 3s,72,-1" + "OnUser1" "!self,Display,,72.01,-1" + "OnUser1" "!self,AddOutput,message Attack Cooldown - 2s,73,-1" + "OnUser1" "!self,Display,,73.01,-1" + "OnUser1" "!self,AddOutput,message Attack Cooldown - 1s,74,-1" + "OnUser1" "!self,Display,,74.01,-1" + "OnUser1" "!self,AddOutput,message Attack Ready !,75,-1" + "OnUser1" "!self,Display,,75.01,-1" +} +modify: +{ + match: + { + "origin" "7364.5 -531.5 -5445.5" + "targetname" "teleport_to_gandalf" + "classname" "trigger_teleport" + } + delete: + { + "OnStartTouch" "teleport_to_gandalf,Kill,,0.02,1" + } + insert: + { + "OnStartTouch" "teleport_to_gandalf,Kill,,0,1" + "OnStartTouch" "speedmod,ModifySpeed,0,0,1" + "OnStartTouch" "speedmod,ModifySpeed,1,1,1" + } +} +;--------- +;FIX CROW +;--------- +modify: +{ + match: + { + "origin" "9447.68 -117 5939" + "targetname" "crow_template" + "classname" "point_template" + } + delete: + { + "Template01" "crow_ui" + "Template02" "crow_phbox" + "Template05" "crow_dead" + } +} +filter: +{ + "model" "*573" + "targetname" "crow_phbox" + "origin" "9322 -2.5 5904" + "classname" "func_physbox_multiplayer" +} +filter: +{ + "model" "*531" + "targetname" "crow_dead" + "origin" "9321.96 -3.5 5904" + "classname" "trigger_hurt" +} +filter: +{ + "origin" "9238 -102 5916" + "targetname" "crow_ui" + "classname" "game_ui" +} +modify: +{ + match: + { + "origin" "9323.46 -3 5898" + "targetname" "crow_model" + "classname" "prop_dynamic" + } + replace: + { + "DefaultAnim" "fly" + } +} +;----------------- +;FIX ADMIN BUTTON +;----------------- +modify: +{ + match: + { + "targetname" "button_level1" + "classname" "func_button" + "hammerid" "4028283" + } + delete: + { + "OnPressed" "consola,Command,say *PLEASE OFF NOCLIP IN ADMIN ROOM*,0,-1" + "OnPressed" "consola,Command,say ***ADMIN CHOOSES 1 LEVEL***,1,-1" + "OnPressed" "level_brush1,Disable,,2,-1" + "OnPressed" "all_levels,Trigger,,0,-1" + } + insert: + { + "OnPressed" "consola,Command,say ***An admin has selected the next stage in the Admin Room!***,0,1" + "OnPressed" "consola,Command,say ***Changing stage to The Mountainpass (Stage 1)...***,1,1" + "OnPressed" "player,SetDamageFilter,,2.99,1" + "OnPressed" "player,SetHealth,0,3,1" + "OnPressed" "worldspawn,FireUser1,,0,1" + "OnPressed" "worldspawn,AddOutput,OnUser1 Level_Counter:SetValue:2:0:1,0.02,1" + } +} +modify: +{ + match: + { + "targetname" "button_level2" + "classname" "func_button" + "hammerid" "4028292" + } + delete: + { + "OnPressed" "consola,Command,say *PLEASE OFF NOCLIP IN ADMIN ROOM*,0,-1" + "OnPressed" "consola,Command,say ***ADMIN CHOOSES 2 LEVEL***,1,-1" + "OnPressed" "level_brush2,Disable,,2,-1" + "OnPressed" "all_levels,Trigger,,0,-1" + } + insert: + { + "OnPressed" "consola,Command,say ***An admin has selected the next stage in the Admin Room!***,0,1" + "OnPressed" "consola,Command,say ***Changing stage to The Trenches of Isengard (Stage 2)...***,1,1" + "OnPressed" "player,SetDamageFilter,,2.99,1" + "OnPressed" "player,SetHealth,0,3,1" + "OnPressed" "worldspawn,FireUser1,,0,1" + "OnPressed" "worldspawn,AddOutput,OnUser1 Level_Counter:SetValue:3:0:1,0.02,1" + } +} +modify: +{ + match: + { + "targetname" "button_level3" + "classname" "func_button" + "hammerid" "4028300" + } + delete: + { + "OnPressed" "consola,Command,say *PLEASE OFF NOCLIP IN ADMIN ROOM*,0,-1" + "OnPressed" "consola,Command,say ***ADMIN CHOOSES 3 LEVEL***,1,-1" + "OnPressed" "level_brush3,Disable,,2,-1" + "OnPressed" "all_levels,Trigger,,0,-1" + } + insert: + { + "OnPressed" "consola,Command,say ***An admin has selected the next stage in the Admin Room!***,0,1" + "OnPressed" "consola,Command,say ***Changing stage to Saruman's Tower (Stage 3)...***,1,1" + "OnPressed" "player,SetDamageFilter,,2.99,1" + "OnPressed" "player,SetHealth,0,3,1" + "OnPressed" "worldspawn,FireUser1,,0,1" + "OnPressed" "worldspawn,AddOutput,OnUser1 Level_Counter:SetValue:4:0:1,0.02,1" + } +} +;------------- +;OPTIMIZATION +;------------- +add: +{ + "origin" "2576.08 11928 7325.77" + "classname" "filter_damage_type" + "damagetype" "32" + "Negated" "1" + "targetname" "Filter_Fall_Ignore" +} +add: +{ + "origin" "2576.08 11928 7325.77" + "classname" "filter_multi" + "Negated" "0" + "targetname" "Filter_Zombies+Fall_Ignore" + "Filter01" "filter_t_no" + "Filter02" "Filter_Fall_Ignore" +} +modify: +{ + match: + { + "OnTrigger" "consola,Command,say ***Map by Limon. Thanks for playing***,3,-1" + } + delete: + { + "OnTrigger" "consola,Command,say ***Map by Limon. Thanks for playing***,3,-1" + } + insert: + { + "OnTrigger" "consola,Command,say ***Map by Limon / Fixed by Noctali / Thanks for playing***,3,1" + } +} +modify: +{ + match: + { + "OnTrigger" "consola,Command,say ***Map by Limon. Thanks for playing***,6,-1" + } + delete: + { + "OnTrigger" "consola,Command,say ***Map by Limon. Thanks for playing***,6,-1" + } + insert: + { + "OnTrigger" "consola,Command,say ***You have completed ze_LOTR_Isengard_v2_3!!! Congratulations!!! Map by Limon. / Fixed by Noctali***,6,1" + } +} +modify: +{ + match: + { + "OnTrigger" "consola,Command,say ***Map by Limon. Thanks for playing***,102,-1" + } + delete: + { + "OnTrigger" "consola,Command,say ***Map by Limon. Thanks for playing***,102,-1" + } + insert: + { + "OnTrigger" "consola,Command,say ***Map by Limon / Fixed by Noctali / Thanks for playing***,102,1" + } +} +;------------ +;GRAMMAR FIX +;------------ +modify: +{ + match: + { + "hammerid" "1384" + } + delete: + { + "OnTrigger" "consola,Command,say **HOLD 25 SECONDS**,0,-1" + "OnTrigger" "consola,Command,say **RUN**,25,-1" + "OnTrigger" "consola,Command,say **Zombie ladder is enabled**,28,-1" + } + insert: + { + "OnTrigger" "consola,Command,say ***Defend here for 25 seconds!***,0,1" + "OnTrigger" "consola,Command,say ***Move!***,25,1" + "OnTrigger" "consola,Command,say ***Second ladder is now enabled***,28,1" + } +} +modify: +{ + match: + { + "hammerid" "1386" + } + delete: + { + "OnTrigger" "consola,Command,say **Zombie push will disable in 5 sec**,0,-1" + "OnTrigger" "consola,Command,say ***Teleporting AFK's to wall in 20s***,1,-1" + } + insert: + { + "OnTrigger" "consola,Command,say ***Zombie push will be disabled in 5 seconds!***,0,1" + "OnTrigger" "consola,Command,say ***Teleporting AFK players to Isengard in 20 seconds!***,1,1" + } +} +modify: +{ + match: + { + "hammerid" "1421" + } + delete: + { + "OnTrigger" "consola,Command,say **HOLD 30 SECONDS**,0,-1" + "OnTrigger" "consola,Command,say **GO GO**,30,-1" + } + insert: + { + "OnTrigger" "consola,Command,say ***Defend here for 30 seconds!***,0,1" + "OnTrigger" "consola,Command,say ***Move!***,30,1" + } +} +modify: +{ + match: + { + "hammerid" "1452" + } + delete: + { + "OnTrigger" "consola,Command,say *Zombie clip brush is disabled*,0,-1" + } + insert: + { + "OnTrigger" "consola,Command,say ***Invisible walls have been disabled. Zombies can run across the side!***,0,1" + } +} +modify: +{ + match: + { + "hammerid" "1494" + } + delete: + { + "OnTrigger" "consola,Command,say ***RANDOM SIDE IN 10 SEC***,0,-1" + "OnTrigger" "consola,Command,say ***RANDOM SIDE IN 10 SEC***,1,-1" + "OnTrigger" "consola,Command,say ***RANDOM SIDE IN 10 SEC***,2,-1" + } + insert: + { + "OnTrigger" "consola,Command,say ***A random path will be selected in 10 seconds***,0,1" + "OnTrigger" "consola,Command,say ***A random path will be selected in 10 seconds***,1,1" + "OnTrigger" "consola,Command,say ***A random path will be selected in 10 seconds***,2,1" + } +} +modify: +{ + match: + { + "hammerid" "1672" + } + delete: + { + "OnTrigger" "consola,Command,say **DEFEND HERE**,5,-1" + "OnTrigger" "consola,Command,say **HOLD 90 SEC**,6,-1" + "OnTrigger" "consola,Command,say **Wait for water flow**,7,-1" + "OnTrigger" "consola,Command,say ***GO UP ON LADDER***,95,-1" + } + insert: + { + "OnTrigger" "consola,Command,say ***Stay and defend here!***,5,1" + "OnTrigger" "consola,Command,say ***Hold the zombies off for 90 seconds!***,6,1" + "OnTrigger" "consola,Command,say ***Wait for the water current to flood Isengard!***,7,1" + "OnTrigger" "consola,Command,say ***Get up on the ladder!***,95,1" + } +} +modify: +{ + match: + { + "hammerid" "1866" + } + delete: + { + "OnTrigger" "consola,Command,say **Resist 20s!**,0,1" + "OnTrigger" "consola,Command,say **GO**,20,1" + } + insert: + { + "OnTrigger" "consola,Command,say ***Hold your ground for 20 seconds!***,0,1" + "OnTrigger" "consola,Command,say ***Go!***,20,1" + } +} +modify: +{ + match: + { + "hammerid" "1955" + } + delete: + { + "OnPass" "consola,Command,say **Random**,0,-1" + } + insert: + { + "OnPass" "consola,Command,say ***A random path has been opened!***,0,1" + } +} +modify: +{ + match: + { + "hammerid" "1957" + } + delete: + { + "OnPass" "consola,Command,say **Resist 20s!**,0,-1" + "OnPass" "consola,Command,say **GO**,20,-1" + } + insert: + { + "OnPass" "consola,Command,say ***Defend here for 20 seconds!***,0,1" + "OnPass" "consola,Command,say ***Go!***,20,1" + } +} +modify: +{ + match: + { + "hammerid" "1978" + } + delete: + { + "OnPass" "consola,Command,say **Resist 30s!**,0,-1" + "OnPass" "consola,Command,say **GO**,30,-1" + } + insert: + { + "OnPass" "consola,Command,say ***Defend here for 30 seconds!***,0,1" + "OnPass" "consola,Command,say ***Go!***,30,1" + } +} +modify: +{ + match: + { + "hammerid" "2037" + } + delete: + { + "OnTrigger" "consola,Command,say **Prepare to fight**,0,-1" + "OnTrigger" "consola,Command,say *If you wont kill spider in 2 min zombies will eat you*,0,-1" + } + insert: + { + "OnTrigger" "consola,Command,say ***Get ready to fight!***,0,1" + "OnTrigger" "consola,Command,say ***Kill the spider in 2 minutes or else the zombies will eat you***,0,1" + } +} +modify: +{ + match: + { + "hammerid" "2039" + } + delete: + { + "OnPass" "consola,Command,say ***LOOK OUT FOR SPIDER TRAPS!!***,0,1" + "OnPass" "consola,Command,say ***LOOK OUT FOR SPIDER TRAPS!!***,1,1" + } + insert: + { + "OnPass" "consola,Command,say ***Be on the lookout for traps!***,0,1" + "OnPass" "consola,Command,say ***The spiders are hungry...***,1,1" + } +} +modify: +{ + match: + { + "hammerid" "2062" + } + delete: + { + "OnPass" "consola,Command,say **KILL the SPIDER NOW***,0,1" + "OnPass" "consola,Command,say **Shoot in the head!**,1,1" + } + insert: + { + "OnPass" "consola,Command,say ***Kill the spider!***,0,1" + "OnPass" "consola,Command,say ***Shoot its head!***,1,1" + } +} +modify: +{ + match: + { + "hammerid" "2132" + } + delete: + { + "OnTrigger" "consola,Command,say **RESIST 15 SECONDS**,0,-1" + "OnTrigger" "consola,Command,say **GO**,15,-1" + } + insert: + { + "OnTrigger" "consola,Command,say ***Hold here for 15 seconds!***,0,1" + "OnTrigger" "consola,Command,say ***The web is gone! Move!***,15,1" + } +} +modify: +{ + match: + { + "hammerid" "2153" + } + delete: + { + "OnBreak" "consola,Command,say ***SPIDER is dead.***,0,1" + "OnBreak" "consola,Command,say ***GO UPSTAIRS***,1,1" + "OnBreak" "consola,Command,say ***ZOMBIE PUSH IS DISABLED***,7,1" + } + insert: + { + "OnBreak" "consola,Command,say ***You have killed the Spider***,0,1" + "OnBreak" "consola,Command,say ***Run! Go up the ladder!***,1,1" + "OnBreak" "consola,Command,say ***Zombie push is now disabled. Move Zombies!***,7,1" + } +} +modify: +{ + match: + { + "hammerid" "2185" + } + delete: + { + "OnTrigger" "consola,Command,say ***HOLD 20 SEC!!!***,0,-1" + "OnTrigger" "consola,Command,say **GO**,20,-1" + } + insert: + { + "OnTrigger" "consola,Command,say ***Defend here for 20 seconds!***,0,1" + "OnTrigger" "consola,Command,say ***Go!***,20,1" + } +} +modify: +{ + match: + { + "hammerid" "2416" + } + delete: + { + "OnTrigger" "consola,Command,say ***Destroy DAM***,0,-1" + } + insert: + { + "OnTrigger" "consola,Command,say ***Go up the mountain and destroy the dam!***,0,1" + } +} +modify: +{ + match: + { + "hammerid" "2420" + } + delete: + { + "OnBreak" "consola,Command,say ***Stanchion 1/2 was broken***,0,-1" + } + insert: + { + "OnBreak" "consola,Command,say ***First support has been broken!***,0,1" + } +} +modify: +{ + match: + { + "hammerid" "2426" + } + delete: + { + "OnBreak" "consola,Command,say ***Stanchion 2/2 was broken***,0,-1" + } + insert: + { + "OnBreak" "consola,Command,say ***Second support has been broken!***,0,1" + } +} +modify: +{ + match: + { + "hammerid" "2434" + } + delete: + { + "OnTrigger" "consola,Command,say ***Teleporting Humans to the Dam in 5 sec***,0,-1" + "OnTrigger" "consola,Command,say ***Teleporting Zombies and AFK's to the Dam in 10 sec***,1,-1" + } + insert: + { + "OnTrigger" "consola,Command,say ***Teleporting Humans to the dam in 5 seconds!***,0,1" + "OnTrigger" "consola,Command,say ***Teleporting Zombies and AFK players to the dam in 5 seconds!***,1,1" + } +} +modify: +{ + match: + { + "hammerid" "2457" + } + delete: + { + "OnTrigger" "consola,Command,say **Meanwhile.......**,1,-1" + } + insert: + { + "OnTrigger" "consola,Command,say ***Meanwhile back in Isengard...***,1,1" + } +} +modify: +{ + match: + { + "hammerid" "2710" + } + delete: + { + "OnTrigger" "consola,Command,say **Teleporting Zombies to spawn in 15 sec**,0,-1" + } + insert: + { + "OnTrigger" "consola,Command,say ***Teleporting Zombies back to the Spawn area in 15 seconds!***,0,1" + } +} +modify: +{ + match: + { + "hammerid" "105793" + } + delete: + { + "OnPass" "consola,Command,say ***KILL NAZGUL***,0,-1" + "OnPass" "consola,Command,say ***KILL NAZGUL***,1,-1" + "OnPass" "consola,Command,say ***KILL NAZGUL***,2,-1" + } + insert: + { + "OnPass" "consola,Command,say ***Shoot the Nazgul or else we will die!***,0,1" + "OnPass" "consola,Command,say ***Shoot the Nazgul or else we will die!***,1,1" + "OnPass" "consola,Command,say ***Shoot the Nazgul or else we will die!***,2,1" + } +} +modify: +{ + match: + { + "hammerid" "1479393" + } + delete: + { + "OnTrigger" "consola,Command,say ***Elevator is going up***,0,-1" + "OnTrigger" "consola,Command,say **Zombie push will disable in 5 sec**,1,-1" + "OnTrigger" "consola,Command,say **Teleporting AFK's to wall in 20 sec**,2,-1" + } + insert: + { + "OnTrigger" "consola,Command,say ***The platform is moving up***,0,1" + "OnTrigger" "consola,Command,say ***Zombie push will be disabled in 5 seconds!***,1,1" + "OnTrigger" "consola,Command,say ***Teleporting AFK players to Isengard in 20 seconds!***,2,1" + } +} +modify: +{ + match: + { + "hammerid" "1622125" + } + delete: + { + "OnTrigger" "consola,Command,say ***HOLD 30 SEC***,0,-1" + "OnTrigger" "consola,Command,say ***Teleporting Zombies and AFK's in 5 sec!!***,1,-1" + "OnTrigger" "consola,Command,say **GO**,30,-1" + } + insert: + { + "OnTrigger" "consola,Command,say ***Defend here for 30 seconds***,0,1" + "OnTrigger" "consola,Command,say ***Teleporting Zombies and AFK players in 5 seconds!***,1,1" + "OnTrigger" "consola,Command,say ***Go!***,30,1" + } +} +modify: +{ + match: + { + "hammerid" "1705816" + } + delete: + { + "OnTrigger" "consola,Command,say ***Humans will die when music ends***,6,-1" + } + insert: + { + "OnTrigger" "consola,Command,say ***Kill the boss before the music ends or else you will die...***,6,1" + } +} +modify: +{ + match: + { + "hammerid" "1706473" + } + delete: + { + "OnTrigger" "consola,Command,say ***Teleporting to boss in 10 sec!!!***,0,-1" + } + insert: + { + "OnTrigger" "consola,Command,say ***Teleporting AFK players to the boss arena in 10 seconds!***,0,1" + } +} +modify: +{ + match: + { + "hammerid" "1706485" + } + delete: + { + "OnTrigger" "consola,Command,say **Prepare to fight**,0,-1" + } + insert: + { + "OnTrigger" "consola,Command,say ***Get ready to fight!***,0,1" + } +} +modify: +{ + match: + { + "hammerid" "1772409" + } + delete: + { + "OnPass" "consola,Command,say ***GO GO***,0,-1" + } + insert: + { + "OnPass" "consola,Command,say ***Go now! Move!***,0,1" + } +} +modify: +{ + match: + { + "hammerid" "1994923" + } + delete: + { + "OnTrigger" "consola,Command,say ***Elevator in 30 sec***,0,-1" + "OnTrigger" "consola,Command,say **Zombie push will disable in 5 sec**,1,-1" + "OnTrigger" "consola,Command,say ***Teleporting AFK's to wall in 20s***,2,-1" + "OnTrigger" "consola,Command,say ***5***,25,-1" + "OnTrigger" "consola,Command,say ***4***,26,-1" + "OnTrigger" "consola,Command,say ***3***,27,-1" + "OnTrigger" "consola,Command,say ***2***,28,-1" + "OnTrigger" "consola,Command,say ***1***,29,-1" + } + insert: + { + "OnTrigger" "consola,Command,say ***Elevator will move down in 30 seconds!***,0,1" + "OnTrigger" "consola,Command,say ***Zombie push will be disabled in 5 seconds***,1,1" + "OnTrigger" "consola,Command,say ***Teleporting AFK players to Isengard in 20 seconds!***,2,1" + "OnTrigger" "consola,Command,say ***Elevator will move down in 5 seconds!***,25,1" + "OnTrigger" "consola,Command,say ***Elevator will move down in 4 seconds!***,26,1" + "OnTrigger" "consola,Command,say ***Elevator will move down in 3 seconds!***,27,1" + "OnTrigger" "consola,Command,say ***Elevator will move down in 2 seconds!***,28,1" + "OnTrigger" "consola,Command,say ***Elevator will move down in 1 second!***,29,1" + } +} +modify: +{ + match: + { + "hammerid" "2096135" + } + delete: + { + "OnTrigger" "consola,Command,say ***HOLD 20 sec***,0,-1" + "OnTrigger" "consola,Command,say **GO UP ON LADDER**,21,-1" + } + insert: + { + "OnTrigger" "consola,Command,say ***Defend here for 20 seconds!***,0,1" + "OnTrigger" "consola,Command,say ***Get up on the ladder!***,21,1" + } +} +modify: +{ + match: + { + "hammerid" "2096207" + } + delete: + { + "OnTrigger" "consola,Command,say ***Elevator will go up in 10 sec***,0,-1" + } + insert: + { + "OnTrigger" "consola,Command,say ***Elevator will move up in 10 seconds!***,0,1" + } +} +modify: +{ + match: + { + "hammerid" "2164116" + } + delete: + { + "OnTrigger" "consola,Command,say ***HOLD 15 SEC***,0,-1" + "OnTrigger" "consola,Command,say ***GO***,16,-1" + } + insert: + { + "OnTrigger" "consola,Command,say ***Hold here for 15 seconds until this path opens***,0,1" + "OnTrigger" "consola,Command,say ***Path is open. Move down!***,16,1" + } +} +modify: +{ + match: + { + "hammerid" "2208182" + } + delete: + { + "OnTrigger" "consola,Command,say ***HOLD 30 SEC***,0,-1" + "OnTrigger" "consola,Command,say ***Teleporting AFK's Portal Enable in 10 sec!!***,1,-1" + "OnTrigger" "consola,Command,say ***Teleporting Humans to the Dam in 5 sec***,30,-1" + "OnTrigger" "consola,Command,say ***Teleporting Zombies and AFK's to the Dam in 10 sec***,31,-1" + } + insert: + { + "OnTrigger" "consola,Command,say ***Keep the zombies off the bridges for 30 seconds!***,0,1" + "OnTrigger" "consola,Command,say ***Enabling AFK teleport outside Isengard in 10 seconds!***,1,1" + "OnTrigger" "consola,Command,say ***Teleporting Humans to the dam in 5 seconds!***,30,1" + "OnTrigger" "consola,Command,say ***Teleporting Zombies and AFK players to the dam in 10 seconds!***,31,1" + } +} +modify: +{ + match: + { + "hammerid" "2223035" + } + delete: + { + "OnTrigger" "consola,Command,say ***Everyone move forward***,0,-1" + } + insert: + { + "OnTrigger" "consola,Command,say ***Middle path has been opened - everyone go through the middle!***,0,1" + } +} +modify: +{ + match: + { + "hammerid" "2223048" + } + delete: + { + "OnTrigger" "consola,Command,say ***Everyone move left***,1,-1" + } + insert: + { + "OnTrigger" "consola,Command,say ***Left path has been opened - everyone go through the left!***,0,1" + } +} +modify: +{ + match: + { + "hammerid" "2223052" + } + delete: + { + "OnTrigger" "consola,Command,say ***Everyone move right***,1,-1" + } + insert: + { + "OnTrigger" "consola,Command,say ***Right path has been opened - everyone go through the right!***,0,1" + } +} +modify: +{ + match: + { + "hammerid" "2223257" + } + delete: + { + "OnTrigger" "consola,Command,say ***Activate the lever***,0,-1" + } + insert: + { + "OnTrigger" "consola,Command,say ***Activate the lever to raise the platform!***,0,1" + } +} +modify: +{ + match: + { + "hammerid" "2238109" + } + delete: + { + "OnTrigger" "consola,Command,say **DEFEND HERE**,0,-1" + "OnTrigger" "consola,Command,say **HOLD 90 SEC**,1,-1" + "OnTrigger" "consola,Command,say **Wait for water flow**,2,-1" + "OnTrigger" "consola,Command,say ***GO UP ON LADDER***,95,-1" + } + insert: + { + "OnTrigger" "consola,Command,say ***Stay and defend here!***,0,1" + "OnTrigger" "consola,Command,say ***Hold the zombies off for 90 seconds!***,1,1" + "OnTrigger" "consola,Command,say ***Wait for the water current to flood Isengard!***,2,1" + "OnTrigger" "consola,Command,say ***Get up on the ladder!***,95,1" + } +} +modify: +{ + match: + { + "hammerid" "2238201" + } + delete: + { + "OnTrigger" "consola,Command,say **Meanwhile.......**,1,-1" + } + insert: + { + "OnTrigger" "consola,Command,say ***Meanwhile back in Isengard...***,1,1" + } +} +modify: +{ + match: + { + "hammerid" "2238218" + } + delete: + { + "OnTrigger" "consola,Command,say **Meanwhile.......**,1,-1" + } + insert: + { + "OnTrigger" "consola,Command,say ***Meanwhile back in Isengard...***,1,1" + } +} +modify: +{ + match: + { + "hammerid" "2858988" + } + delete: + { + "OnHitMax" "consola,Command,say **Water is coming Run down**,1,-1" + "OnHitMax" "consola,Command,say ***RUN RUN FAST***,5,-1" + } + insert: + { + "OnHitMax" "consola,Command,say ***Both supports have been broken! Hold your ground until the water takes you back to Isengard!***,1,1" + "OnHitMax" "consola,Command,say ***Go down! Let the water current push you forward!***,5,1" + } +} +modify: +{ + match: + { + "hammerid" "3264698" + } + delete: + { + "OnBreak" "consola,Command,say ***Teleporting Humans to the Dam in 5 sec!***,0,-1" + "OnBreak" "consola,Command,say ***CAPTAIN Uruk-hai is dead.***,0.5,-1" + "OnBreak" "consola,Command,say ***Teleporting Zombies and AFK's to the Dam in 10 sec***,1,-1" + } + insert: + { + "OnBreak" "consola,Command,say ***Teleporting Humans to the dam in 5 seconds!***,0,1" + "OnBreak" "consola,Command,say ***You have killed Captain Uruk-Hai! Congratulations!***,0.5,1" + "OnBreak" "consola,Command,say ***Teleporting Zombies and AFK players to the dam in 10 seconds!***,1,1" + } +} +modify: +{ + match: + { + "hammerid" "3696706" + } + delete: + { + "OnTrigger" "consola,Command,say *** 100 HP restored ***,0,1" + } + insert: + { + "OnTrigger" "consola,Command,say ***Setting humans HP back to 100...***,0,1" + } +} +modify: +{ + match: + { + "hammerid" "4406663" + } + delete: + { + "OnTrigger" "consola,Command,say **LEVEL 3 COMPLETED**,0,-1" + "OnTrigger" "consola,Command,say **NUKE in 5**,1,-1" + "OnTrigger" "consola,Command,say **NUKE in 4**,2,-1" + "OnTrigger" "consola,Command,say **NUKE in 3**,3,-1" + "OnTrigger" "consola,Command,say **NUKE in 2**,4,-1" + "OnTrigger" "consola,Command,say **NUKE in 1**,5,-1" + } + insert: + { + "OnTrigger" "consola,Command,say ***You have completed Stage 3!***,0,1" + "OnTrigger" "consola,Command,say ***Final nuke will explode in 5 seconds***,1,1" + "OnTrigger" "consola,Command,say ***Final nuke will explode in 4 seconds***,2,1" + "OnTrigger" "consola,Command,say ***Final nuke will explode in 3 seconds***,3,1" + "OnTrigger" "consola,Command,say ***Final nuke will explode in 2 seconds***,4,1" + "OnTrigger" "consola,Command,say ***Final nuke will explode in 1 second***,5,1" + } +} +modify: +{ + match: + { + "hammerid" "5463460" + } + delete: + { + "OnTrigger" "consola,Command,say **HOLD 25 SEC**,0,-1" + "OnTrigger" "consola,Command,say **GO GO GO**,25,-1" + } + insert: + { + "OnTrigger" "consola,Command,say ***Defend here for 25 seconds!***,0,1" + "OnTrigger" "consola,Command,say ***Move! Get out of here!***,25,1" + } +} +modify: +{ + match: + { + "hammerid" "5463460" + } + delete: + { + "OnTrigger" "consola,Command,say ***Teleporting Zombies and AFK's in 6 sec!!***,26,-1" + } + insert: + { + "OnTrigger" "consola,Command,say ***Teleporting Zombies and AFK players to the mountain's summit in 6 seconds!***,26,1" + } +} +modify: +{ + match: + { + "hammerid" "8375413" + } + delete: + { + "OnTrigger" "consola,Command,say ***HOLD 15 sec!!!***,0,-1" + "OnTrigger" "consola,Command,say ***GO GO GO***,15,-1" + } + insert: + { + "OnTrigger" "consola,Command,say ***Defend here for 15 seconds!***,0,1" + "OnTrigger" "consola,Command,say ***Go go go!***,15,1" + } +} +modify: +{ + match: + { + "hammerid" "8415282" + } + delete: + { + "OnTrigger" "consola,Command,say **DEFEND HERE**,0,-1" + "OnTrigger" "consola,Command,say **HOLD 90 SEC**,1,-1" + "OnTrigger" "consola,Command,say **Wait for water flow**,2,-1" + "OnTrigger" "consola,Command,say ***Jump on the rocks***,80,-1" + "OnTrigger" "consola,Command,say ***LVL 2 COMPLETED***,100,-1" + } + insert: + { + "OnTrigger" "consola,Command,say ***Stay and defend here!***,0,1" + "OnTrigger" "consola,Command,say ***Hold the zombies off for 90 seconds!***,1,1" + "OnTrigger" "consola,Command,say ***Wait for the water current to flood Isengard!***,2,1" + "OnTrigger" "consola,Command,say ***Get on top of the rocks!***,80,1" + "OnTrigger" "consola,Command,say ***You have completed Stage 2! Well done!! Moving onto Stage 3... Good luck!***,100,1" + } +} +modify: +{ + match: + { + "hammerid" "8696935" + } + delete: + { + "OnPass" "consola,Command,say **GO HUMANS**,0,-1" + "OnPass" "consola,Command,say **DESTROY All STANCHIONS!**,1,-1" + "OnPass" "consola,Command,say **Defend people which destroy dam**,2,-1" + "OnPass" "consola,Command,say **Zombie ladder is enabled**,6,-1" + } + insert: + { + "OnPass" "consola,Command,say ***Go humans! Move down to the dam!***,0,1" + "OnPass" "consola,Command,say ***Destroy both dam supports to break the dam!***,1,1" + "OnPass" "consola,Command,say ***Hold the zombies off while humans break the dam!***,2,1" + "OnPass" "consola,Command,say ***Ladder for Zombies has been enabled!***,6,1" + } +} +modify: +{ + match: + { + "hammerid" "8744264" + } + delete: + { + "OnTrigger" "consola,Command,say *Mass zombie teleport after elevator activation*,0,-1" + "OnTrigger" "consola,Command,say ***Elevator will go up in 20 sec***,1,-1" + "OnTrigger" "consola,Command,say ***Elevator will go up in 5 sec***,15,-1" + } + insert: + { + "OnTrigger" "consola,Command,say ***Zombies teleport has been activated!***,0,1" + "OnTrigger" "consola,Command,say ***Elevator to the dam will move up in 20 seconds!***,1,1" + "OnTrigger" "consola,Command,say ***Elevator to the dam will move up in 5 seconds!***,15,1" + } +} +modify: +{ + match: + { + "hammerid" "9421292" + } + delete: + { + "OnBreak" "consola,Command,say ***GANDALF IS DEAD***,0,-1" + } + insert: + { + "OnBreak" "consola,Command,say ***Gandalf has passed away...***,0,1" + } +} +modify: +{ + match: + { + "hammerid" "2217" + } + delete: + { + "OnTrigger" "consola,Command,say **Defend this building for 50 sec**,0,-1" + "OnTrigger" "consola,Command,say ***Stairs will break in 10 sec***,1,-1" + "OnTrigger" "consola,Command,say **Mass teleport zombies in 15 seconds***,2,-1" + "OnTrigger" "consola,Command,say ***Get to the boats NOW***,40,-1" + "OnTrigger" "consola,Command,say ***5***,45,-1" + "OnTrigger" "consola,Command,say ***4***,46,-1" + "OnTrigger" "consola,Command,say ***3***,47,-1" + "OnTrigger" "consola,Command,say ***2***,48,-1" + "OnTrigger" "consola,Command,say ***1***,49,-1" + } + insert: + { + "OnTrigger" "consola,Command,say ***Keep the Zombies off this building for 50 seconds!***,0,1" + "OnTrigger" "consola,Command,say ***Staircase will break in 10 seconds!***,1,1" + "OnTrigger" "consola,Command,say ***Zombies will teleport in front of the building in 15 seconds!***,2,1" + "OnTrigger" "consola,Command,say ***Retreat!!! Get on the boats!!!***,40,1" + "OnTrigger" "consola,Command,say ***Boats leaving in 5 seconds***,45,1" + "OnTrigger" "consola,Command,say ***Boats leaving in 4 seconds***,46,1" + "OnTrigger" "consola,Command,say ***Boats leaving in 3 seconds***,47,1" + "OnTrigger" "consola,Command,say ***Boats leaving in 2 seconds***,48,1" + "OnTrigger" "consola,Command,say ***Boats leaving in 1 second***,49,1" + } +} +modify: +{ + match: + { + "hammerid" "10029980" + } + delete: + { + "OnStartTouch" "consola,Command,say ***Zombies on boat. Humans lose.***,0,1" + } + insert: + { + "OnStartTouch" "consola,Command,say ***Zombies detected on the boats. Humans lose!***,0,1" + } +} +modify: +{ + match: + { + "hammerid" "10124269" + } + delete: + { + "OnStartTouch" "consola,Command,say ***Zombies on boat. Humans lose.***,0,1" + } + insert: + { + "OnStartTouch" "consola,Command,say ***Zombies detected on the boats. Humans lose!***,0,1" + } +} +modify: +{ + match: + { + "hammerid" "10518536" + } + delete: + { + "OnTrigger" "consola,Command,say ***LVL 2 COMPLETED***,2,-1" + } + insert: + { + "OnTrigger" "consola,Command,say ***You have completed Stage 2! Well done!! Moving onto Stage 3... Good luck!***,2,1" + } +} +modify: +{ + match: + { + "hammerid" "10518544" + } + delete: + { + "OnTrigger" "consola,Command,say ***LVL 2 COMPLETED***,2,-1" + } + insert: + { + "OnTrigger" "consola,Command,say ***You have completed Stage 2! Well done!! Moving onto Stage 3... Good luck!***,2,1" + } +} +modify: +{ + match: + { + "hammerid" "10636498" + } + delete: + { + "OnTrigger" "consola,Command,say ***LVL 2 COMPLETED***,2,-1" + } + insert: + { + "OnTrigger" "consola,Command,say ***You have completed Stage 2! Well done!! Moving onto Stage 3... Good luck!***,2,1" + } +} +modify: +{ + match: + { + "hammerid" "10731316" + } + delete: + { + "OnBreak" "consola,Command,say ***NAZGUL IS DEAD***,0,-1" + } + insert: + { + "OnBreak" "consola,Command,say ***Nazgul is dead!***,0,1" + } +} +modify: +{ + match: + { + "hammerid" "11813556" + } + delete: + { + "OnTrigger" "consola,Command,say ***Get ready for the final battle***,0,-1" + "OnTrigger" "consola,Command,say ***Exit will close in 15 seconds***,1,-1" + "OnTrigger" "consola,Command,say *Teleporting Zombies and AFK's to Saruman tower in 20s*,2,-1" + } + insert: + { + "OnTrigger" "consola,Command,say ***Get ready for the final battle!***,0,1" + "OnTrigger" "consola,Command,say ***The hole to the top will close itself in 15 seconds!***,1,1" + "OnTrigger" "consola,Command,say ***Teleporting Zombies and AFK players to the top of Saruman's Tower in 20 seconds!***,2,1" + } +} +modify: +{ + match: + { + "hammerid" "11813650" + } + delete: + { + "OnTrigger" "consola,Command,say ***Humans will die when music ends***,6,-1" + } + insert: + { + "OnTrigger" "consola,Command,say ***Kill Saruman before the music ends or else...***,6,1" + } +} +modify: +{ + match: + { + "hammerid" "11813652" + } + delete: + { + "OnBreak" "consola,Command,say ***SARUMAN is dead.***,0,-1" + "OnBreak" "consola,Command,say **>>Congratulations<<**,1,-1" + } + insert: + { + "OnBreak" "consola,Command,say ***You have defeated Saruman!!!***,0,1" + "OnBreak" "consola,Command,say ***Congratulations!!!***,1,1" + } +} +modify: +{ + match: + { + "hammerid" "11815272" + } + delete: + { + "OnPlayerPickup" "consola,Command,say ***Player has picked up Heal***,0,1" + } + insert: + { + "OnPlayerPickup" "consola,Command,say ***A player has picked up Heal (ONE USE ONLY!)***,0,1" + } +} +modify: +{ + match: + { + "hammerid" "11815702" + } + delete: + { + "OnTrigger" "consola,Command,say ***RUN TO THE MAIN GATE***,2,-1" + } + insert: + { + "OnTrigger" "consola,Command,say ***Run back to the main entrance!***,2,1" + } +} +modify: +{ + match: + { + "hammerid" "11816062" + } + delete: + { + "OnTrigger" "consola,Command,say ***HOLD 15 SEC***,0,-1" + "OnTrigger" "consola,Command,say ***GO***,15,-1" + } + insert: + { + "OnTrigger" "consola,Command,say ***Door to the boss room will open in 15 seconds***,0,1" + "OnTrigger" "consola,Command,say ***Go! Good luck!***,15,1" + } +} +modify: +{ + match: + { + "hammerid" "11816319" + } + delete: + { + "OnTrigger" "consola,Command,say ***Key is found. Door open in 5 sec***,0,-1" + } + insert: + { + "OnTrigger" "consola,Command,say ***A player has found the key! The door will open in 5 seconds!***,0,1" + } +} +modify: +{ + match: + { + "hammerid" "11816507" + } + delete: + { + "OnTrigger" "consola,Command,say ***NEED KEY***,0,-1" + "OnTrigger" "consola,Command,say ***Find key in the room***,1,-1" + } + insert: + { + "OnTrigger" "consola,Command,say ***This door needs a key to open...***,0,1" + "OnTrigger" "consola,Command,say ***Find and pick up the key! It should be somewhere in this room...***,1,1" + } +} +modify: +{ + match: + { + "hammerid" "11816510" + } + delete: + { + "OnTrigger" "consola,Command,say ***Key is found. Door open in 10 sec***,0,-1" + } + insert: + { + "OnTrigger" "consola,Command,say ***A player has found the key! The door will open in 10 seconds!***,0,1" + } +} +modify: +{ + match: + { + "hammerid" "11816603" + } + delete: + { + "OnTrigger" "consola,Command,say ***HOLD 20 SEC!!!***,0,-1" + "OnTrigger" "consola,Command,say ***GO GO***,20,-1" + } + insert: + { + "OnTrigger" "consola,Command,say ***Defend here for 20 seconds until the gates open!***,0,1" + "OnTrigger" "consola,Command,say ***Gates are open! Go!***,20,1" + } +} +modify: +{ + match: + { + "hammerid" "11817231" + } + delete: + { + "OnTrigger" "consola,Command,say ***Elevator will go up in 5 sec***,0,-1" + } + insert: + { + "OnTrigger" "consola,Command,say ***Elevator will move up in 5 seconds!***,0,1" + } +} +modify: +{ + match: + { + "hammerid" "11817266" + } + delete: + { + "OnTrigger" "consola,Command,say ***HOLD 20 SEC***,0,-1" + "OnTrigger" "consola,Command,say ***GO GO GO***,20,-1" + } + insert: + { + "OnTrigger" "consola,Command,say ***Defend here for 20 seconds before the elevator door opens!***,0,1" + "OnTrigger" "consola,Command,say ***Go go go! Get on the elevator!***,20,1" + } +} +modify: +{ + match: + { + "hammerid" "11818372" + } + delete: + { + "OnTrigger" "consola,Command,say ***HOLD 20 SEC***,0,-1" + "OnTrigger" "consola,Command,say ***GO GO GO***,21,-1" + } + insert: + { + "OnTrigger" "consola,Command,say ***Defend here for 20 seconds before the staircases open!***,0,1" + "OnTrigger" "consola,Command,say ***Go go go! Move upstairs!***,21,1" + } +} +modify: +{ + match: + { + "hammerid" "11818378" + } + delete: + { + "OnTrigger" "consola,Command,say ***LEFT DOOR OPEN IN 10 SEC***,0,-1" + "OnTrigger" "consola,Command,say ***HOLD***,1,-1" + "OnTrigger" "consola,Command,say ***LEFT DOOR OPEN. NEED KEY FOR RIGHT DOOR***,10,-1" + } + insert: + { + "OnTrigger" "consola,Command,say ***Left door will open in 10 seconds!***,0,1" + "OnTrigger" "consola,Command,say ***Hold the hallways until someone finds the key to open the door!***,1,1" + "OnTrigger" "consola,Command,say ***Door on the left has been opened! Find the key to open the door on the right!***,10,1" + } +} +modify: +{ + match: + { + "hammerid" "11818384" + } + delete: + { + "OnBreak" "consola,Command,say ***GO GO GO***,0,-1" + "OnBreak" "consola,Command,say ***ZOMBIES TELEPORT IN 5 SEC!***,1,-1" + } + insert: + { + "OnBreak" "consola,Command,say ***Go go go!***,0,1" + "OnBreak" "consola,Command,say ***Zombies will teleport in 5 seconds!***,1,1" + } +} +modify: +{ + match: + { + "hammerid" "11818387" + } + delete: + { + "OnBreak" "consola,Command,say ***ZOMBIES TELEPORT IN 5 SEC!***,0,-1" + } + insert: + { + "OnBreak" "consola,Command,say ***Zombies will teleport in 5 seconds!***,0,1" + } +} +modify: +{ + match: + { + "hammerid" "11818390" + } + delete: + { + "OnBreak" "consola,Command,say ***GO GO GO***,0,-1" + "OnBreak" "consola,Command,say ***Teleporting AFK's in 10 sec!!***,1,-1" + } + insert: + { + "OnBreak" "consola,Command,say ***Go go go!***,0,1" + "OnBreak" "consola,Command,say ***Teleporting AFK players in 10 seconds!***,1,1" + } +} +modify: +{ + match: + { + "hammerid" "11818397" + } + delete: + { + "OnBreak" "consola,Command,say ***GRIMA IS DEAD***,0,-1" + "OnBreak" "consola,Command,say ***HOLD 15 SEC***,1,-1" + } + insert: + { + "OnBreak" "consola,Command,say ***You killed Grima. Well done! Saruman is next...***,0,1" + "OnBreak" "consola,Command,say ***Defend here for 15 seconds!***,1,1" + } +} +modify: +{ + match: + { + "hammerid" "11818415" + } + delete: + { + "OnPass" "consola,Command,say ***Humans didnt kill grima***,0,-1" + } + insert: + { + "OnPass" "consola,Command,say ***Grima reached the bottom... You lose!***,0,1" + } +} +modify: +{ + match: + { + "hammerid" "11818418" + } + delete: + { + "OnTrigger" "consola,Command,say **It is Grima!!! KILL HIM!**,0,-1" + } + insert: + { + "OnTrigger" "consola,Command,say ***Shoot Grima before he reaches the bottom!***,0,1" + } +} \ No newline at end of file diff --git a/ze_m0w0m_a4.cfg b/ze_m0w0m_a4.cfg index 264fd2c..4dd9411 100644 --- a/ze_m0w0m_a4.cfg +++ b/ze_m0w0m_a4.cfg @@ -28,3 +28,218 @@ filter: "classname" "trigger_multiple" } +;--------------------------------- +;Add math_counter for stagedisplay +;--------------------------------- + +add: +{ + "origin" "3800 -3000 -9734" + "targetname" "TheCurrentLevelPlugin" + "min" "1" + "max" "6" + "startvalue" "1" + "classname" "math_counter" +} + + +modify: +{ + match: + { + "targetname" "lvl1_map_relay" + "classname" "logic_relay" + } + insert: + { + "OnTrigger" "TheCurrentLevelPlugin,SetValue,1,0,1" + } +} +modify: +{ + match: + { + "targetname" "lvl2_map_relay" + "classname" "logic_relay" + } + insert: + { + "OnTrigger" "TheCurrentLevelPlugin,SetValue,2,0,1" + } +} +modify: +{ + match: + { + "targetname" "lvl3_map_relay" + "classname" "logic_relay" + } + insert: + { + "OnTrigger" "TheCurrentLevelPlugin,SetValue,3,0,1" + } +} +modify: +{ + match: + { + "targetname" "lvl4_map_relay" + "classname" "logic_relay" + } + insert: + { + "OnTrigger" "TheCurrentLevelPlugin,SetValue,4,0,1" + } +} +modify: +{ + match: + { + "targetname" "lvl5_map_relay" + "classname" "logic_relay" + } + insert: + { + "OnTrigger" "TheCurrentLevelPlugin,SetValue,5,0,1" + } +} +modify: +{ + match: + { + "targetname" "lvl6_map_relay" + "classname" "logic_relay" + } + insert: + { + "OnTrigger" "TheCurrentLevelPlugin,SetValue,6,0,1" + } +} + +;------------ +;Fix Ifrit HP +;------------ + +modify: +{ + match: + { + "classname" "trigger_multiple" + "targetname" "door27_2" + } + delete: + { + "OnStartTouch" "bosslvl3_1_counter1,Add,34,0,1" + "OnStartTouch" "bosslvl3_1_counter2,Add,34,0,1" + "OnStartTouch" "bosslvl3_2_counter1,Add,24,0,1" + "OnStartTouch" "bosslvl3_2_counter2,Add,24,0,1" + } + insert: + { + "OnStartTouch" "bosslvl3_1_counter1,Add,34,0,-1" + "OnStartTouch" "bosslvl3_1_counter2,Add,34,0,-1" + "OnStartTouch" "bosslvl3_2_counter1,Add,24,0,-1" + "OnStartTouch" "bosslvl3_2_counter2,Add,24,0,-1" + } +} + +modify: +{ + match: + { + "classname" "trigger_multiple" + "targetname" "door27_3" + } + delete: + { + "OnStartTouch" "bosslvl6_counter1,Add,48,0,1" + "OnStartTouch" "bosslvl6_counter2,Add,48,0,1" + } + insert: + { + "OnStartTouch" "bosslvl6_counter1,Add,48,0,-1" + "OnStartTouch" "bosslvl6_counter2,Add,48,0,-1" + } +} + +;------------ +;Fixes broken gravity on Stage 3 +;------------ + +add: +{ + "model" "*543" + + "wait" "1" + "StartDisabled" "0" + "spawnflags" "1" + "origin" "5569 -574 -8270" + "classname" "trigger_multiple" + "targetname" "afk_gravity_reset" + + "OnStartTouch" "!activator,AddOutput,gravity 1,0,-1" +} + +modify: +{ + match: + { + "targetname" "afktele24" + } + insert: + { + "OnStartTouch" "!activator,AddOutput,gravity 1,0.5,-1" + "OnStartTouch" "!activator,AddOutput,gravity 1,1,-1" + } +} + +;------------ +;Fixes a weird timer from Stage 6 in Stage 3 +;------------ + +modify: +{ + match: + { + "targetname" "door27_3" + "classname" "trigger_multiple" + "hammerid" "1012348" + } + delete: + { + "OnStartTouch" "command,Command,say >>> HOLD 25 SECONDS <<<,0,1" + } + insert: + { + "OnStartTouch" "command,Command,say >>> HOLD 20 SECONDS <<<,0,1" + } +} + +;------------ +;Lowers damage of the funny balls in Stage 6 and Stage 3 +;------------ + +modify: +{ + match: + { + "targetname" "bosslvl3_2_hurt" + } + replace: + { + "damage" "100" + } +} + +modify: +{ + match: + { + "targetname" "bosslvl3_cannon_trigger" + } + insert: + { + "OnStartTouch" "!self,Disable,,0.2,-1" + "OnStartTouch" "!self,Enable,,1,-1" + } +} diff --git a/ze_mirrors_edge_reborn_v4_3.cfg b/ze_mirrors_edge_reborn_v4_3.cfg index f526874..b60fe88 100644 --- a/ze_mirrors_edge_reborn_v4_3.cfg +++ b/ze_mirrors_edge_reborn_v4_3.cfg @@ -259,6 +259,84 @@ add: "classname" "trigger_teleport" } + +; Going around a building skip + +add: +{ + "model" "*58" + "targetname" "Skip_Fix_XYZ" + "spawnobject" "0" + "spawnflags" "1" + "rendermode" "10" + "renderfx" "0" + "rendercolor" "255 255 255" + "renderamt" "255" + "propdata" "0" + "pressuredelay" "0" + "physdamagescale" "1.0" + "PerformanceMode" "0" + "origin" "2386.4 -4864 -603.9" + "nodamageforces" "0" + "minhealthdmg" "0" + "material" "2" + "health" "0" + "gibdir" "0 0 0" + "explosion" "0" + "ExplodeRadius" "0" + "explodemagnitude" "0" + "ExplodeDamage" "0" + "disableshadows" "0" + "disablereceiveshadows" "0" + "_minlight" "0.0" + "classname" "func_breakable" +} + +; Going around building behind. dunno if the fix above was supposed to work + +add: +{ + "targetname" "IFixAStupidMistake" + "target" "teleportfail" + "StartDisabled" "0" + "spawnflags" "1" + "origin" "2848 1440 -128" + "classname" "trigger_teleport" + "OnUser1" "!self,AddOutput,solid 2,0,1" + "OnUser1" "!self,AddOutput,mins -32 -160 -1728,0.1,1" + "OnUser1" "!self,AddOutput,maxs 32 160 1728,0.1,1" +} + +modify: +{ + match: + { + "origin" "-2385 224 1622" + "classname" "logic_auto" + "hammerid" "837" + } + insert: + { + "OnMapSpawn" "IFixAStupidMistake,FireUser1,,1,1" + } +} + + +; Super skip by using the afk tp + ramp after gaining tons of speed at spawn + +modify: +{ + match: + { + "targetname" "ftp1" + "classname" "trigger_teleport" + } + insert: + { + "OnStartTouch" "!activator,AddOutput,absvelocity 0 0 0,0,-1" + } +} + ;------------------------ ;WORLDSPAWN LEVEL SYSTEM ;------------------------ diff --git a/ze_mountain_escape_v5_zy.cfg b/ze_mountain_escape_v5_zy.cfg index 6a84075..6479faa 100644 --- a/ze_mountain_escape_v5_zy.cfg +++ b/ze_mountain_escape_v5_zy.cfg @@ -1694,3 +1694,88 @@ modify: "spawnflags" "1073758208" } } + +;--------------------------------- +;FIX SPEED BALROG DEATH AND STUFF +;--------------------------------- + +add: +{ + "model" "*611" + "classname" "trigger_brush" + "targetname" "game_playerdie" + "origin" "9377 -11786 4200" + "InputFilter" "14" + "StartDisabled" "0" + "spawnflags" "0" + "OnUse" "speedo,ModifySpeed,1,0,-1" + "OnUse" "speedo,ModifySpeed,1,0.5,-1" +} + +;--------------------------- +;FIX PHYSICS CRASH VIP MODE +;--------------------------- + +modify: +{ + match: + { + "classname" "func_physbox_multiplayer" + "targetname" "physboxVIPHitbox" + } + replace: + { + "spawnflags" "312320" + } +} + +;---------------------------------------- +;NORMAL MODE - Add SuperMode Final Fight +;---------------------------------------- + +modify: +{ + match: + { + "targetname" "caseDoWeReallyWantToPlayNormalMode" + "classname" "logic_case" + } + insert: + { + "OnUser1" "caseSuperMode_ModeModes,InValue,FinalFight,2,1" + } +} + +;----------------------------------------- +;CLASSIC MODE - Add SuperMode Final Fight +;----------------------------------------- + +modify: +{ + match: + { + "targetname" "relayMode_Classic" + "classname" "logic_relay" + } + insert: + { + "OnTrigger" "caseSuperMode_ModeModes,InValue,FinalFight,2,1" + } +} + +;-------------------------------------------- +;DEPRESSION MODE - Add SuperMode Final Fight +;-------------------------------------------- + +modify: +{ + match: + { + "targetname" "relayMode_Depression" + "classname" "logic_relay" + } + insert: + { + "OnTrigger" "caseSuperMode_ModeModes,InValue,FinalFight,2,1" + } +} diff --git a/ze_nibui_a2_4.cfg b/ze_nibui_a2_4.cfg new file mode 100644 index 0000000..392ef8f --- /dev/null +++ b/ze_nibui_a2_4.cfg @@ -0,0 +1,36 @@ +modify: +{ + match: + { + "targetname" "ak3" + "classname" "trigger_teleport" + } + delete: + { + "filtername" "zmyes" + } +} +modify: +{ + match: + { + "targetname" "ak3" + "origin" "-512 2208 -1504" + } + replace: + { + "origin" "-512 2208 -1312" + } +} +modify: +{ + match: + { + "targetname" "ladder2" + "classname" "func_breakable" + } + replace: + { + "spawnflags" "3073" + } +} diff --git a/ze_nibui_a3_1a.cfg b/ze_nibui_a3_1a.cfg new file mode 100644 index 0000000..9b07700 --- /dev/null +++ b/ze_nibui_a3_1a.cfg @@ -0,0 +1,19 @@ +;--------------------------- +;Fix a wall not being killed +;--------------------------- +modify: +{ + match: + { + "classname" "trigger_once" + "targetname" "middlebutton3" + } + delete: + { + "OnTrigger" "middlewall3prt,Kill,,10,1" + } + insert: + { + "OnTrigger" "middlewall3,Kill,,10,1" + } +} diff --git a/ze_offliner_a1.cfg b/ze_offliner_a1.cfg new file mode 100644 index 0000000..fd6ce70 --- /dev/null +++ b/ze_offliner_a1.cfg @@ -0,0 +1,26 @@ +;-------------------------------------------------------------------- +;STRIPPER CFG BY MOLTARD http://steamcommunity.com/id/0123456789ABC/ +;-------------------------------------------------------------------- +;FIX +;---- + +modify: +{ + match: + { + "targetname" "obselete" + "classname" "trigger_once" + } + delete: + { + "OnStartTouch" "stage1_item_relay,Trigger,,0,-1" + "OnStartTouch" "start_music,PlaySound,,0,-1" + "OnStartTouch" "PT1_template,ForceSpawn,,0,-1" + } + insert: + { + "OnStartTouch" "stage1_item_relay,Trigger,,0,1" + "OnStartTouch" "start_music,PlaySound,,0,1" + "OnStartTouch" "PT1_template,ForceSpawn,,0,1" + } +} diff --git a/ze_offliner_v1.cfg b/ze_offliner_v1.cfg new file mode 100644 index 0000000..9e01d93 --- /dev/null +++ b/ze_offliner_v1.cfg @@ -0,0 +1,17 @@ +;Nerf boss hp +modify: +{ + match: + { + "classname" "trigger_once" + "targetname" "boss_hp_add_once" + } + delete: + { + "OnStartTouch" "boss_hp_counter,Add,445,1,-1" + } + insert: + { + "OnStartTouch" "boss_hp_counter,Add,350,1,-1" + } +} diff --git a/ze_otakuroom_v5_6fs.cfg b/ze_otakuroom_v5_6fs.cfg index e1dd96e..89fb185 100644 --- a/ze_otakuroom_v5_6fs.cfg +++ b/ze_otakuroom_v5_6fs.cfg @@ -106,10 +106,12 @@ modify: delete: { "OnStartTouch" "lv3_last_tele,Enable,,1,1" + "OnStartTouch" "lv3_spawn_tele_des,AddOutput,origin 2677 3720 190,0,1" } insert: { "OnStartTouch" "lv3_last_tele,Enable,,10,1" "OnStartTouch" "cmd,Command,say **Afk teleport in 10 seconds**,0,1" + "OnStartTouch" "lv3_spawn_tele_des,AddOutput,origin 2677 3720 190,10,1" } -} +} \ No newline at end of file diff --git a/ze_pidaras_v1_4fix3.cfg b/ze_pidaras_v1_4fix3.cfg index 667404d..91a55b6 100644 --- a/ze_pidaras_v1_4fix3.cfg +++ b/ze_pidaras_v1_4fix3.cfg @@ -425,3 +425,24 @@ modify: "OnHitMin" "bahatard_wall,Disable,,0,1" } } + +;--------------- +;BUFF MESHLEM HP +;--------------- + +modify: +{ + match: + { + "classname" "trigger_multiple" + "targetname" "Meshlem_Boss_Hp_To_Boss" + } + delete: + { + "OnStartTouch" "boss_health,Add,300,0,-1" + } + insert: + { + "OnStartTouch" "boss_health,Add,450,0,-1" + } +} diff --git a/ze_pirates_port_royal_v3_6.cfg b/ze_pirates_port_royal_v3_6.cfg index 392d456..ee38372 100644 --- a/ze_pirates_port_royal_v3_6.cfg +++ b/ze_pirates_port_royal_v3_6.cfg @@ -20,25 +20,69 @@ modify: } } +;------------------------- +;FIX STAGE 1 ENDING CRASH +;------------------------- + +modify: +{ + match: + { + "classname" "func_lod" + } + insert: + { + "disableshadows" "1" + "disablereceiveshadows" "1" + } +} + ;------------------------- ;FIX STAGE5 GLITCH KRAKEN ;------------------------- add: { - "targetname" "kraken_hurt" - "hammerid" "139092" - "classname" "trigger_hurt" "model" "*305" - "nodmgforce" "0" - "damagemodel" "0" - "spawnflags" "1" - "damagetype" "0" - "StartDisabled" "1" + "targetname" "kraken_hurt" "origin" "2395 -11801 -1171.5" + "StartDisabled" "1" + "spawnflags" "1" "damage" "450000" "damagecap" "20" + "nodmgforce" "0" + "damagemodel" "0" + "damagetype" "0" + "classname" "trigger_hurt" } +add: +{ + "targetname" "kraken_hurt" + "origin" "2592 -10272 -1120" + "StartDisabled" "1" + "spawnflags" "1" + "damage" "450000" + "damagecap" "20" + "nodmgforce" "0" + "damagemodel" "0" + "damagetype" "0" + "classname" "trigger_hurt" + "OnUser1" "!self,AddOutput,solid 2,0,1" + "OnUser1" "!self,AddOutput,mins -256 -256 -256,0.1,1" + "OnUser1" "!self,AddOutput,maxs 256 256 256,0.1,1" +} +modify: +{ + match: + { + "classname" "logic_auto" + } + insert: + { + "OnMapSpawn" "kraken_hurt,FireUser1,,10,1" + } +} + ;-------------------------------------------------------------- ;MAKE BARBOSSA ZOMBIE AFFECTED BY MEDAILLION WHEN BOSSES START diff --git a/ze_pkmn_adventure_v8_6s_fix2.cfg b/ze_pkmn_adventure_v8_6s_fix2.cfg index 8d493dc..bf03fc0 100644 --- a/ze_pkmn_adventure_v8_6s_fix2.cfg +++ b/ze_pkmn_adventure_v8_6s_fix2.cfg @@ -6,7 +6,7 @@ ;------------------------------------------- -;---------------|STAGE 2|------------------- +;---------------|STAGE 1|------------------- ;------------------------------------------- ;-----------|BOSS TP GLITCH|---------------- @@ -21,6 +21,39 @@ add: "classname" "trigger_teleport" } +;------------------------------------------- +;---------------|STAGE 2|------------------- +;------------------------------------------- + +;-----------|CAMP IN BOSS AREA|------------- + +add: +{ + "targetname" "VioletCity_ZCage_TP" + "target" "Route_32_Cage_Dest" + "StartDisabled" "1" + "spawnflags" "1" + "origin" "14016 -5632 13439" + "classname" "trigger_teleport" + "OnUser1" "!self,AddOutput,mins -704 -1664 -1420,0,1" + "OnUser1" "!self,AddOutput,maxs 704 1664 1420,0,1" + "OnUser1" "!self,AddOutput,solid 2,0.1,1" +} + +modify: +{ + match: + { + "classname" "logic_auto" + "hammerid" "1074650" + } + insert: + { + "OnMapSpawn" "VioletCity_ZCage_TP,FireUser1,,1,1" + } +} + + ;------------------------------------------- ;---------------|STAGE 3|------------------- ;------------------------------------------- diff --git a/ze_prototype_v2.cfg b/ze_prototype_v2.cfg index f36420d..cd73a23 100644 --- a/ze_prototype_v2.cfg +++ b/ze_prototype_v2.cfg @@ -1,3 +1,4 @@ +;StageDisplay add: { "origin" "-356 752 8" @@ -56,3 +57,47 @@ modify: "OnTrigger" "TheCurrentLevelPlugin,SetValue,4,0,1" } } + +;Buff Bosses Stage 3 +modify: +{ + match: + { + "classname" "trigger_multiple" + "targetname" "Proto_filter_health" + } + delete: + { + "OnStartTouch" "Prototype_health,Add,100,0,-1" + } + insert: + { + "OnStartTouch" "Prototype_health,Add,200,0,-1" + } +} + +;Make the last prototype HP scaling on number of humans +add: +{ + "model" "*269" + "classname" "trigger_multiple" + "targetname" "final_proto_addhealth" + "origin" "2688 10652 -832" + "spawnflags" "1" + "StartDisabled" "1" + "wait" "1" + "OnStartTouch" "stop_if_zombies_make_it,AddHealth,500,0,-1" +} + +modify: +{ + match: + { + "classname" "trigger_once" + "hammerid" "696047" + } + insert: + { + "OnStartTouch" "final_proto_addhealth,Enable,,0,1" + } +} diff --git a/ze_quiver_v1c.cfg b/ze_quiver_v1c.cfg new file mode 100644 index 0000000..e873954 --- /dev/null +++ b/ze_quiver_v1c.cfg @@ -0,0 +1,40 @@ +;Elevator top breaking later +modify: +{ + match: + { + "classname" "path_track" + "targetname" "cargoelevator_train_path3" + } + delete: + { + "OnPass" "cargoelevator_train_top,Kill,,1,-1" + } + insert: + { + "OnPass" "cargoelevator_train_top,Kill,,3,-1" + } +} + +;Fix a shortcut +add: +{ + "model" "*11" + "classname" "func_breakable" + "origin" "-3879 -13378 -868" + "angles" "0 0 0" + "health" "0" + "disablereceiveshadows" "1" + "disableshadows" "1" + "rendermode" "10" +} +add: +{ + "model" "*12" + "classname" "func_breakable" + "origin" "-3837 -13336 -868" + "health" "0" + "disablereceiveshadows" "1" + "disableshadows" "1" + "rendermode" "10" +} diff --git a/ze_radiance_v1_0.cfg b/ze_radiance_v1_0.cfg new file mode 100644 index 0000000..023bcce --- /dev/null +++ b/ze_radiance_v1_0.cfg @@ -0,0 +1,13 @@ +; Console Message for the dummies + +add: +{ + "model" "*68" + "wait" "1" + "StartDisabled" "0" + "spawnflags" "1" + "origin" "-3840 9984 14976" + "classname" "trigger_multiple" + "OnStartTouch" "server,Command,say *** Hint - Look down and press A / D to surf (Don't hold W) ***,2,3" + "OnStartTouch" "!self,Kill,,10,1" +} \ No newline at end of file diff --git a/ze_random_escape_b7_3.cfg b/ze_random_escape_b7_3.cfg index cdfb661..e24bca3 100644 --- a/ze_random_escape_b7_3.cfg +++ b/ze_random_escape_b7_3.cfg @@ -59,3 +59,21 @@ modify: } } +;-------------------------------- +;UNLOZE: Disable Fail Nade Spawn +;-------------------------------- + +modify: +{ + match: + { + "targetname" "Spawn_Trigger" + "classname" "trigger_multiple" + "hammerid" "1024673" + } + insert: + { + "OnStartTouch" "Server,Command,exec nadekboff,0,1" + "OnStartTouch" "Server,Command,exec nadekbon,35,1" + } +} diff --git a/ze_random_v10_fix.cfg b/ze_random_v10_fix.cfg index 20bd9eb..39857f3 100644 --- a/ze_random_v10_fix.cfg +++ b/ze_random_v10_fix.cfg @@ -821,3 +821,23 @@ modify: "OnStartTouch" "CoolSlender*,Kill,,90,1" } } + +;-------------------------------- +;UNLOZE: Disable Fail Nade Spawn +;-------------------------------- + +modify: +{ + match: + { + "origin" "15776 -15776 -15744" + "classname" "trigger_once" + "hammerid" "373456" + } + insert: + { + "OnStartTouch" "com,Command,exec nadekboff,0,1" + "OnStartTouch" "com,Command,zr_unrestrict awp,1,1" + "OnStartTouch" "com,Command,exec nadekbon,26,1" + } +} diff --git a/ze_random_v9.cfg b/ze_random_v9.cfg index f77a042..2cb0662 100644 --- a/ze_random_v9.cfg +++ b/ze_random_v9.cfg @@ -16,8 +16,6 @@ filter: "classname" "func_brush" } - - ;---------------------------------- ;ZombieMurder - Cant Delay on boss ;---------------------------------- @@ -1891,3 +1889,23 @@ modify: "OnBreak" "ElevatorZMDoor,Break,,3,1" } } + +;-------------------------------- +;UNLOZE: Disable Fail Nade Spawn +;-------------------------------- + +modify: +{ + match: + { + "origin" "15776 -15776 -15744" + "classname" "trigger_once" + "hammerid" "373456" + } + insert: + { + "OnStartTouch" "com,Command,exec nadekboff,0,1" + "OnStartTouch" "com,Command,zr_unrestrict awp,1,1" + "OnStartTouch" "com,Command,exec nadekbon,26,1" + } +} diff --git a/ze_rizomata_s1_3.cfg b/ze_rizomata_s1_3.cfg index ec3c3ba..fb9ed6e 100644 --- a/ze_rizomata_s1_3.cfg +++ b/ze_rizomata_s1_3.cfg @@ -289,3 +289,63 @@ filter: "classname" "trigger_multiple" "OnStartTouch" "!activator,AddOutput,origin 0 0 -2056,0,-1" } + + +;----------------------------------- +; Cant use zombie items during boss +;----------------------------------- + + +; Boss start +modify: +{ + match: + { + "targetname" "3_bosslift" + "classname" "func_door" + "hammerid" "2349298" + } + insert: + { + "OnFullyOpen" "ZOMBIE_ITEMS_DISABLE_USAGE,Trigger,,0,1" + } +} + +; Boss End +modify: +{ + match: + { + "targetname" "3_boss_hpmasscounter" + "classname" "math_counter" + } + insert: + { + "OnHitMax" "ZOMBIE_ITEMS_ENABLE_USAGE,Trigger,,0,1" + } +} + +; Items edit + +add: +{ + "origin" "-4704 11824 -5167" + "targetname" "ZOMBIE_ITEMS_DISABLE_USAGE" + "StartDisabled" "0" + "spawnflags" "0" + "classname" "logic_relay" + "OnTrigger" "haste_trigger_relay,Disable,,0,-1" + "OnTrigger" "death_trigger_relay,Disable,,0,-1" + "OnTrigger" "curse_trigger_relay,Disable,,0,-1" +} +add: +{ + "origin" "-4704 11824 -5167" + "targetname" "ZOMBIE_ITEMS_ENABLE_USAGE" + "StartDisabled" "0" + "spawnflags" "0" + "classname" "logic_relay" + "OnTrigger" "haste_trigger_relay,Enable,,0,-1" + "OnTrigger" "death_trigger_relay,Enable,,0,-1" + "OnTrigger" "curse_trigger_relay,Enable,,0,-1" +} diff --git a/ze_santassination_css2.cfg b/ze_santassination_css2.cfg index 4a9eb82..7cb0c7b 100644 --- a/ze_santassination_css2.cfg +++ b/ze_santassination_css2.cfg @@ -77,6 +77,54 @@ modify: } } +;------------------------- +; MAP: STAGE 2 > KNIFE BOOST BRIDGE +;------------------------- + +add: +{ + "origin" "3584 2080 2784" + "targetname" "FIXING_STUPID_MISTAKE" + "target" "teleport_destination" + "StartDisabled" "1" + "spawnflags" "1" + "classname" "trigger_teleport" + "OnUser1" "!self,AddOutput,mins -11776 -1504 -1312,0,1" + "OnUser1" "!self,AddOutput,maxs 11776 1504 1312,0,1" + "OnUser1" "!self,AddOutput,solid 2,0.1,1" + "OnUser1" "!self,Enable,,0.15,1" +} + +modify: +{ + match: + { + "targetname" "sf_event_triggers" + "origin" "-15007.7 -2205.74 1116" + "classname" "func_button" + "hammerid" "754287" + } + insert: + { + "OnPressed" "FIXING_STUPID_MISTAKE,Kill,,5,1" + } +} + +modify: +{ + match: + { + "targetname" "sf_event_triggers" + "origin" "-8376 192 304" + "classname" "trigger_multiple" + "hammerid" "690813" + } + insert: + { + "OnTrigger" "FIXING_STUPID_MISTAKE,FireUser1,,0,1" + } +} + ;------------------------- ; MAP: ADD MISSING BOSS MODEL ;------------------------- diff --git a/ze_saw_final.cfg b/ze_saw_final.cfg new file mode 100644 index 0000000..e63cab5 --- /dev/null +++ b/ze_saw_final.cfg @@ -0,0 +1,26 @@ +; +; ++++++++++++++++++++++++EXTEND SPAWN TP TO PREVENT VENT SAFESPOT++++++++++++++++++++++++ +; +add: +{ + "targetname" "spawn_hurt" + "StartDisabled" "1" + "spawnflags" "1" + "origin" "2656 -420 88" + "classname" "trigger_teleport" + "OnUser1" "!self,AddOutput,solid 2,0,1" + "OnUser1" "!self,AddOutput,mins -208 -292 -72,0.1,1" + "OnUser1" "!self,AddOutput,maxs 208 292 72,0.1,1" +} +modify: +{ + match: + { + "classname" "logic_auto" + "hammerid" "92596" + } + insert: + { + "OnMapSpawn" "spawn_hurt,FireUser1,,0,-1" + } +} \ No newline at end of file diff --git a/ze_scp_containment_breach_v1_b02.cfg b/ze_scp_containment_breach_v1_b02.cfg new file mode 100644 index 0000000..6b6405a --- /dev/null +++ b/ze_scp_containment_breach_v1_b02.cfg @@ -0,0 +1,13 @@ +;Fix miniboss bug +modify: +{ + match: + { + "classname" "func_breakable" + "targetname" "SCP1048A__break" + } + replace: + { + "health" "99999" + } +} diff --git a/ze_sewer_escape_2012_b1.cfg b/ze_sewer_escape_2012_b1.cfg index 2d0f26e..b705e31 100644 --- a/ze_sewer_escape_2012_b1.cfg +++ b/ze_sewer_escape_2012_b1.cfg @@ -1,6 +1,8 @@ -;----------------- -; Rocks dont fall -;----------------- +;-------------------------------------------------------------------- +;STRIPPER CFG BY MOLTARD http://steamcommunity.com/id/0123456789ABC/ +;-------------------------------------------------------------------- +;ROCKS DONT FALL +;---------------- filter: { @@ -17,4 +19,133 @@ filter: "targetname" "rock_drop_3_trigger" "classname" "trigger_once" } +filter: +{ + "targetname" "rock_drop_timer_start" + "classname" "trigger_once" +} +;------- +;AFK TP +;------- + +modify: +{ + match: + { + "classname" "logic_auto" + "hammerid" "3850" + } + insert: + { + "OnMapSpawn" "AFK_TP_*,FireUser1,,1,1" + } +} + +; Afk tp 1 + +filter: +{ + "targetname" "camper_hurt" + "classname" "trigger_hurt" +} +modify: +{ + match: + { + "targetname" "camper_hurt_trigger" + "origin" "5776 224 192" + "classname" "trigger_once" + } + delete: + { + "OnTrigger" "camper_hurt,Enable,,0,1" + "OnTrigger" "camper_hurt,Disable,,8,1" + } + insert: + { + "OnTrigger" "AFK_TP_1,Enable,,0,1" + } +} + +add: +{ + "targetname" "AFK_Dest_1" + "origin" "3264 224 40" + "angles" "0 0 0" + "classname" "info_teleport_destination" +} +add: +{ + "targetname" "AFK_TP_1" + "origin" "-1280 512 512" + "target" "AFK_Dest_1" + "StartDisabled" "1" + "spawnflags" "1" + "classname" "trigger_teleport" + "OnUser1" "!self,AddOutput,solid 2,0,1" + "OnUser1" "!self,AddOutput,mins -3840 -2560 -1024,0.1,1" + "OnUser1" "!self,AddOutput,maxs 3840 2560 1024,0.1,1" +} + +; Afk Tp 2 + +modify: +{ + match: + { + "targetname" "lift_ladder_block_trigger" + "origin" "9328 -2144 492" + "classname" "trigger_once" + } + insert: + { + "OnTrigger" "AFK_TP_2,Enable,,10,1" + } +} +add: +{ + "targetname" "AFK_Dest_2" + "origin" "9328 -2146 480" + "angles" "0 270 0" + "classname" "info_teleport_destination" +} +add: +{ + "targetname" "AFK_TP_2" + "origin" "6400 640 512" + "target" "AFK_Dest_2" + "StartDisabled" "1" + "spawnflags" "1" + "classname" "trigger_teleport" + "OnUser1" "!self,AddOutput,solid 2,0,1" + "OnUser1" "!self,AddOutput,mins -3840 -2560 -1024,0.1,1" + "OnUser1" "!self,AddOutput,maxs 3840 2560 1024,0.1,1" +} + +; Afk Tp 3 + +modify: +{ + match: + { + "targetname" "train_doors_timer" + "classname" "logic_timer" + } + insert: + { + "OnTimer" "AFK_TP_3,Enable,,15,1" + } +} +add: +{ + "targetname" "AFK_TP_3" + "origin" "9728 -4480 512" + "target" "fall_des" + "StartDisabled" "1" + "spawnflags" "1" + "classname" "trigger_teleport" + "OnUser1" "!self,AddOutput,solid 2,0,1" + "OnUser1" "!self,AddOutput,mins -3840 -2560 -1024,0.1,1" + "OnUser1" "!self,AddOutput,maxs 3840 2560 1024,0.1,1" +} diff --git a/ze_space_stationob_fix.cfg b/ze_space_stationob_fix.cfg new file mode 100644 index 0000000..a07050e --- /dev/null +++ b/ze_space_stationob_fix.cfg @@ -0,0 +1,18 @@ +;-------------------------------------------------------------------- +;STRIPPER CFG BY MOLTARD http://steamcommunity.com/id/0123456789ABC/ +;-------------------------------------------------------------------- +;NUKE FOREVER +;------------- + +modify: +{ + match: + { + "targetname" "destruct_sequence" + "classname" "logic_relay" + } + delete: + { + "OnTrigger" "nuke_hurt,Disable,,128,1" + } +} diff --git a/ze_stalker_ultimate_v2_3.cfg b/ze_stalker_ultimate_v2_3.cfg index 39a90d5..50d76ac 100644 --- a/ze_stalker_ultimate_v2_3.cfg +++ b/ze_stalker_ultimate_v2_3.cfg @@ -69,7 +69,7 @@ modify: } } -; some fix. dunno what +;Move trigger_teleport on boss stage 4/5 for phase 2 modify: { @@ -97,3 +97,17 @@ add: "spawnflags" "1" "origin" "-6361.94 -12672.1 -14495" } + +;Add trigger_hurt to avoid safe spot from nuke on stage 3 +add: +{ + "model" "*384" + "classname" "trigger_hurt" + "targetname" "global_hurt" + "origin" "5032.18 -7145.5 -1873" + "StartDisabled" "1" + "spawnflags" "1" + "damagetype" "0" + "damage" "999999" + "damagecap" "20000" +} diff --git a/ze_starwars_v2fix.cfg b/ze_starwars_v2fix.cfg index 09bfa7c..3e3f4c8 100644 --- a/ze_starwars_v2fix.cfg +++ b/ze_starwars_v2fix.cfg @@ -218,106 +218,106 @@ modify: } } -;STAGE 4 BOSS TP FIX -add: -{ - "model" "*297" - "targetname" "Trigger_Teleport_Lvl_4_1" - "StartDisabled" "1" - "spawnflags" "1" - "origin" "-5774 -6550 -1843.5" - "classname" "trigger_teleport" -} -add: -{ - "model" "*297" - "targetname" "Trigger_Teleport_Lvl_4_1" - "StartDisabled" "1" - "spawnflags" "1" - "origin" "-5774 -6250.01 -1843.5" - "classname" "trigger_teleport" -} -add: -{ - "model" "*297" - "targetname" "Trigger_Teleport_Lvl_4_1" - "StartDisabled" "1" - "spawnflags" "1" - "origin" "-5786.16 -6031.47 -1843.5" - "classname" "trigger_teleport" -} -add: -{ - "model" "*297" - "targetname" "Trigger_Teleport_Lvl_4_1" - "StartDisabled" "1" - "spawnflags" "1" - "origin" "-4658 -6570.01 -1843.5" - "classname" "trigger_teleport" -} -add: -{ - "model" "*297" - "targetname" "Trigger_Teleport_Lvl_4_1" - "StartDisabled" "1" - "spawnflags" "1" - "origin" "-4658 -6270.01 -1843.5" - "classname" "trigger_teleport" -} -add: -{ - "model" "*297" - "targetname" "Trigger_Teleport_Lvl_4_1" - "StartDisabled" "1" - "spawnflags" "1" - "origin" "-4670.16 -5987.47 -1843.5" - "classname" "trigger_teleport" -} -add: -{ - "model" "*297" - "targetname" "Trigger_Teleport_Lvl_4_1" - "StartDisabled" "1" - "spawnflags" "1" - "origin" "-3570 -6570.01 -1843.5" - "classname" "trigger_teleport" -} -add: -{ - "model" "*297" - "targetname" "Trigger_Teleport_Lvl_4_1" - "StartDisabled" "1" - "spawnflags" "1" - "origin" "-3570 -6270.01 -1843.5" - "classname" "trigger_teleport" -} -add: -{ - "model" "*297" - "targetname" "Trigger_Teleport_Lvl_4_1" - "StartDisabled" "1" - "spawnflags" "1" - "origin" "-3582.16 -5987.47 -1843.5" - "classname" "trigger_teleport" -} -add: -{ - "model" "*297" - "targetname" "Trigger_Teleport_Lvl_4_1" - "StartDisabled" "1" - "spawnflags" "1" - "origin" "-3570 -6570.01 -1724.5" - "classname" "trigger_teleport" -} -add: -{ - "model" "*297" - "targetname" "Trigger_Teleport_Lvl_4_1" - "StartDisabled" "1" - "spawnflags" "1" - "origin" "-3570 -6270.01 -1724.5" - "classname" "trigger_teleport" -} +//;STAGE 4 BOSS TP FIX (do not remove the comments, it makes stage 4 unplayable) +//add: +//{ +// "model" "*297" +// "targetname" "Trigger_Teleport_Lvl_4_1" +// "StartDisabled" "1" +// "spawnflags" "1" +// "origin" "-5774 -6550 -1843.5" +// "classname" "trigger_teleport" +//} +//add: +//{ +// "model" "*297" +// "targetname" "Trigger_Teleport_Lvl_4_1" +// "StartDisabled" "1" +// "spawnflags" "1" +// "origin" "-5774 -6250.01 -1843.5" +// "classname" "trigger_teleport" +//} +//add: +//{ +// "model" "*297" +// "targetname" "Trigger_Teleport_Lvl_4_1" +// "StartDisabled" "1" +// "spawnflags" "1" +// "origin" "-5786.16 -6031.47 -1843.5" +// "classname" "trigger_teleport" +//} +//add: +//{ +// "model" "*297" +// "targetname" "Trigger_Teleport_Lvl_4_1" +// "StartDisabled" "1" +// "spawnflags" "1" +// "origin" "-4658 -6570.01 -1843.5" +// "classname" "trigger_teleport" +//} +//add: +//{ +// "model" "*297" +// "targetname" "Trigger_Teleport_Lvl_4_1" +// "StartDisabled" "1" +// "spawnflags" "1" +// "origin" "-4658 -6270.01 -1843.5" +// "classname" "trigger_teleport" +//} +//add: +//{ +// "model" "*297" +// "targetname" "Trigger_Teleport_Lvl_4_1" +// "StartDisabled" "1" +// "spawnflags" "1" +// "origin" "-4670.16 -5987.47 -1843.5" +// "classname" "trigger_teleport" +//} +//add: +//{ +// "model" "*297" +// "targetname" "Trigger_Teleport_Lvl_4_1" +// "StartDisabled" "1" +// "spawnflags" "1" +// "origin" "-3570 -6570.01 -1843.5" +// "classname" "trigger_teleport" +//} +//add: +//{ +// "model" "*297" +// "targetname" "Trigger_Teleport_Lvl_4_1" +// "StartDisabled" "1" +// "spawnflags" "1" +// "origin" "-3570 -6270.01 -1843.5" +// "classname" "trigger_teleport" +//} +//add: +//{ +// "model" "*297" +// "targetname" "Trigger_Teleport_Lvl_4_1" +// "StartDisabled" "1" +// "spawnflags" "1" +// "origin" "-3582.16 -5987.47 -1843.5" +// "classname" "trigger_teleport" +//} +//add: +//{ +// "model" "*297" +// "targetname" "Trigger_Teleport_Lvl_4_1" +// "StartDisabled" "1" +// "spawnflags" "1" +// "origin" "-3570 -6570.01 -1724.5" +// "classname" "trigger_teleport" +//} +//add: +//{ +// "model" "*297" +// "targetname" "Trigger_Teleport_Lvl_4_1" +// "StartDisabled" "1" +// "spawnflags" "1" +// "origin" "-3570 -6270.01 -1724.5" +// "classname" "trigger_teleport" +//} ;STAGE 6 NUKE FIX add: diff --git a/ze_super_mario_64_v2_b9.cfg b/ze_super_mario_64_v2_b9.cfg index 8e564b4..7eba77c 100644 --- a/ze_super_mario_64_v2_b9.cfg +++ b/ze_super_mario_64_v2_b9.cfg @@ -7,6 +7,34 @@ ; | |\/| | | | | | | || | | __| \ / ; | | | | |__| | |__| || |_| | | | ; |_| |_|\____/|_____/_____|_| |_| + +modify: +{ + match: + { + "targetname" "four_zombiechecker" + "classname" "trigger_multiple" + } + + replace: + { + "origin" "7505.5 1069.5 8878" + } +} + +modify: +{ + match: + { + "classname" "trigger_hurt" + "targetname" "water_hrt" + } + replace: + { + "damage" "9999999" + } +} + modify: { match: @@ -85,7 +113,7 @@ modify: { match: { - "targetname" "toad_char_hbox" + "targetname" "toad_far_hbox" "classname" "func_physbox_multiplayer" } diff --git a/ze_survivors_b5.cfg b/ze_survivors_b5.cfg index 8e91671..29428b5 100644 --- a/ze_survivors_b5.cfg +++ b/ze_survivors_b5.cfg @@ -133,3 +133,20 @@ modify: "OnStartTouch" "TheCurrentLevelPlugin,SetValue,9,0,1" } } + +;Increase roundtime +modify: +{ + match: + { + "classname" "logic_auto" + } + delete: + { + "OnMapSpawn" "roundtime,Command,mp_roundtime 9,1,-1" + } + insert: + { + "OnMapSpawn" "roundtime,Command,mp_roundtime 12,1,-1" + } +} diff --git a/ze_tloz_celestia_a4.cfg b/ze_tloz_celestia_a4.cfg new file mode 100644 index 0000000..4b60395 --- /dev/null +++ b/ze_tloz_celestia_a4.cfg @@ -0,0 +1,41 @@ +;Fix dumb shortcut at spawn on stage 4 +modify: +{ + match: + { + "classname" "trigger_push" + "hammerid" "94435" + } + replace: + { + "pushdir" "0 90 0" + } +} + +;Fix dumb teleport bug at spawn on stage 4 +modify: +{ + match: + { + "classname" "trigger_teleport" + "hammerid" "94364" + } + replace: + { + "spawnflags" "1" + } +} + +;Fix dumb infinite afk tp at spawn on stage 4 +modify: +{ + match: + { + "classname" "func_button" + "hammerid" "94524" + } + insert: + { + "OnPressed" "s4_afk0,Disable,,50.5,-1" + } +} diff --git a/ze_v0u0v_b2.cfg b/ze_v0u0v_b2.cfg index 98a7f0e..da95a4f 100644 --- a/ze_v0u0v_b2.cfg +++ b/ze_v0u0v_b2.cfg @@ -4,11 +4,29 @@ modify: { match: { - "classname" "trigger_multiple" - "targetname" "s14boss_trigger" + "classname" "trigger_multiple" + "targetname" s14boss_trigger" } delete: { - "OnStartTouch" "s1tele_2_1,AddOutput,origin 3415 -4168 -1195,20.5,1" + "OnStartTouch" "s1tele_2_1,AddOutput,origin 3415 -4168 -1195,20.5,1" + } +} + +; Another fix + +modify: +{ + match: + { + "targetname" "s36hurt" + } + replace: + { + "damage" "1000" + } + insert: + { + "OnStartTouch" "!activator,AddOutput,origin -128 -14464 3392,0,-1" } } diff --git a/ze_vile_sewers_a3.cfg b/ze_vile_sewers_a3.cfg new file mode 100644 index 0000000..195694c --- /dev/null +++ b/ze_vile_sewers_a3.cfg @@ -0,0 +1,44 @@ +;+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +;change boss damage so its not that dumb +;damage type is slash so it only deals fourth of the damage through kevlar +;miniboss deals 15dmg big wolf 50dmg hp set to 100 to try to balance it +;+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +modify: +{ + match: + { + "targetname" "Boss1_Trig_Damage" + "classname" "trigger_hurt" + } + replace: + { + "damage" "60" + "damagecap" "90" + } +} +modify: +{ + match: + { + "targetname" "Boss1_Werewolf_Trig_Damage" + "classname" "trigger_hurt" + } + replace: + { + "damage" "100" + "damagecap" "150" + "damagetype" "4" + } +} +modify: +{ + match: + { + "targetname" "Health_Trig_Boss1" + "classname" "trigger_multiple" + } + insert: + { + "OnStartTouch" "!activator,AddOutput,health 100,0,-1" + } +} \ No newline at end of file diff --git a/ze_volcano_escape_v4.cfg b/ze_volcano_escape_v4.cfg index d620392..585ccfb 100644 --- a/ze_volcano_escape_v4.cfg +++ b/ze_volcano_escape_v4.cfg @@ -23,4 +23,39 @@ add: "origin" "0 -7632 752" "angles" "0 90 0" "classname" "info_player_start" -} \ No newline at end of file +} + + +;----------------------- +; FIX VERTICAL AREA BUG +;----------------------- + +add: +{ + "targetname" "Glitch1" + "StartDisabled" "1" + "spawnflags" "1" + "origin" "-4352 -3328 -2688" + "nodmgforce" "0" + "damagetype" "0" + "damagemodel" "0" + "damagecap" "200000" + "damage" "100000" + "classname" "trigger_hurt" + "OnUser1" "!self,AddOutput,solid 2,0,1" + "OnUser1" "!self,AddOutput,mins -512 -512 -3712,0.1,1" + "OnUser1" "!self,AddOutput,maxs 512 512 3712,0.1,1" +} + +modify: +{ + match: + { + "classname" "logic_auto" + "hammerid" "286832" + } + insert: + { + "OnMapSpawn" "Glitch1,FireUser1,,5,1" + } +}