diff --git a/stripper/ze_sisyphus_v1.cfg b/stripper/ze_sisyphus_v1.cfg index df81c74f..a27fa7d4 100644 --- a/stripper/ze_sisyphus_v1.cfg +++ b/stripper/ze_sisyphus_v1.cfg @@ -1,35 +1,75 @@ -;mapper script fixes -;############################## THIS CHANGE WILL NOT WORK WITHOUT HAVING ##################################### -;############################# csgo/scripts/vscripts/gfl/sisyphus_magic_v2.nut ############################### -;######################################## IN THE SERVER FILES ################################################ -;######### https://github.com/gflclan-cs-go-ze/ZE-Configs/blob/master/vscripts/sisyphus_magic_v2.nut ######### +;i packed a skybox in the map... might as well use it. make skybox_swapper +add: +{ + "origin" "0 0 0" + "classname" "skybox_swapper" + "targetname" "skybox" + "SkyboxName" "deadcore_sky_9" +} + +;kill weapons when dropped +add: +{ + "classname" "game_weapon_manager" + "targetname" "weaponmanager" + "ammomod" "0" + "weaponname" "weapon_hkp2000" + "OnUser1" "!selfAddOutputweaponname weapon_*0,-1" + "OnUser1" "!selfAddOutputweaponname weapon_hkp20000.5-1" + "OnUser1" "!selfFireUser11-1" +} + +;start the killing +add: +{ + "classname" "logic_relay" + "spawnflags" "1" + "OnSpawn" "weaponmanagerFireUser12-1" +} + +;replace vscript modify: { - match: - { - "classname" "logic_script" - "targetname" "sisyphus_magic" - } - replace: - { - "vscripts" "gfl/sisyphus_magic_v2.nut" - } + match: + { + "classname" "logic_script" + "targetname" "sisyphus_magic" + } + replace: + { + "vscripts" "gfl/sisyphus_magic_v2.nut" + } } -;disable +use on boulder +;make boulder roll through players - ignore debris flag modify: { - match: - { - "classname" "func_physbox" - "targetname" "boulder" - } - replace: - { - "spawnflags" "0" - } + match: + { + "classname" "func_physbox" + "targetname" "boulder" + } + replace: + { + "spawnflags" "16384" + } +} + +;ranomize the skybox +modify: +{ + match: + { + "classname" "logic_auto" + "hammerid" "5583" + } + insert: + { + "OnMultiNewRound" "sisyphus_magicRunScriptCoderandom_sky();0.25-1" + } } +;slightly adjust the boulder_force per stage modify: { match: @@ -39,6 +79,7 @@ modify: } delete: { + "OnCase01" "sisyphus_magicRunScriptCodeboulder_force=500;0-1" "OnCase02" "sisyphus_magicRunScriptCodeboulder_force=750;0-1" "OnCase03" "sisyphus_magicRunScriptCodeboulder_force=1000;0-1" "OnCase05" "sisyphus_magicRunScriptCodeboulder_force=800;0-1" @@ -48,11 +89,12 @@ modify: } insert: { - "OnCase02" "sisyphus_magicRunScriptCodeboulder_force=1000;0-1" - "OnCase03" "sisyphus_magicRunScriptCodeboulder_force=1350;0-1" - "OnCase05" "sisyphus_magicRunScriptCodeboulder_force=1400;0-1" - "OnCase06" "sisyphus_magicRunScriptCodeboulder_force=1300;0-1" - "OnCase07" "sisyphus_magicRunScriptCodeboulder_force=950;0-1" - "OnCase08" "sisyphus_magicRunScriptCodeboulder_force=1000;0-1" + "OnCase01" "sisyphus_magicRunScriptCodeboulder_force=510;0-1" + "OnCase02" "sisyphus_magicRunScriptCodeboulder_force=1010;0-1" + "OnCase03" "sisyphus_magicRunScriptCodeboulder_force=1360;0-1" + "OnCase05" "sisyphus_magicRunScriptCodeboulder_force=1410;0-1" + "OnCase06" "sisyphus_magicRunScriptCodeboulder_force=1310;0-1" + "OnCase07" "sisyphus_magicRunScriptCodeboulder_force=960;0-1" + "OnCase08" "sisyphus_magicRunScriptCodeboulder_force=1010;0-1" } }