Skip to content
This repository has been archived by the owner on Jul 11, 2024. It is now read-only.

Commit

Permalink
Update ze_sisyphus_v1.cfg
Browse files Browse the repository at this point in the history
minor qol fixes, use the skybox i packed on accident, kill dropped weapons, make boulder roll through humans,
  • Loading branch information
TheBigBadMemeMan authored Sep 7, 2023
1 parent a83ad00 commit 795ebfc
Showing 1 changed file with 72 additions and 30 deletions.
102 changes: 72 additions & 30 deletions stripper/ze_sisyphus_v1.cfg
Original file line number Diff line number Diff line change
@@ -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:
Expand All @@ -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"
Expand All @@ -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"
}
}

0 comments on commit 795ebfc

Please sign in to comment.