Skip to content

Commit 6758a68

Browse files
committed
initial release
1 parent f4e99bf commit 6758a68

File tree

14 files changed

+2466
-0
lines changed

14 files changed

+2466
-0
lines changed

README.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,37 @@
11
# ZoneMod Practice
22
Practice feature for L4D2 confogl matchmode ZoneMod
3+
except some changes for easier practice experience, it is nothing but usual **ZoneMod 1.9.8**
4+
5+
### Features?
6+
7+
* ReadyUp disabled (This was reqired for one of config's specific feature: No 4v4, 1v1, etc. restriction)
8+
9+
* Near instant spawn time for special infected.
10+
11+
* Change your infected class with M2 (Right mouse button) while infected ghost including Tank! _(Thanks devilesk for his plugin which includes tank selection)_
12+
13+
* **!git <name>** command to teleport to the player you define. _(Example: !git ashes)_
14+
15+
* **!give** command for survivors. Lists T1 weapons appear in zonemod and melee weapons defined in the current map. _(Also included with shortcuts like !give smg)_
16+
17+
* Survivor bots (if any) don't shoot but can move, shove and try to dodge attacks.
18+
19+
* **!heal** command for survivors to restore health. (Consider it is like !buy heal but with no cost)
20+
21+
* Disabled commons and hordes (except some director-forced, scripted ones in custom campaigns)
22+
23+
* Flow tank disabled (As players can become tank at any time they wish by simply choosing tank for their infected class)
24+
25+
26+
### Plugin Sources?
27+
Pratice specific plugins' sources can be found in my [Dasogl repo](https://github.com/AshesBeneath/Dasogl)
28+
29+
[Direct link to the initial commit of mentioned sources](https://github.com/AshesBeneath/Dasogl/commit/6d45dcfb3cbd5c3c896e3091dc00abfc65e93201)
30+
31+
## Thanks to
32+
33+
**Sir** the original developer of [ZoneMod](https://github.com/SirPlease/ZoneMod)
34+
35+
**devilesk** for [RL4D2L Practice config](https://github.com/devilesk/ZoneMod/tree/master/cfg/cfgogl/practice) and some codes found on his repos (where this idea is based on)
36+
37+
**epilimic** for Practiceogl and Witch Party configs
8.11 KB
Binary file not shown.
5.52 KB
Binary file not shown.
3.84 KB
Binary file not shown.
8.53 KB
Binary file not shown.
7.59 KB
Binary file not shown.

cfg/cfgogl/zmpratik/confogl.cfg

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
// =======================================================================================
2+
// Practice feature for ZoneMod - Competitive L4D2 Configuration
3+
// Author: Sir
4+
// Contributions: Visor, Jahze, ProdigySim, Vintik, CanadaRox, Blade, Tabun, Jacob
5+
// License CC-BY-SA 3.0 (http://creativecommons.org/licenses/by-sa/3.0/legalcode)
6+
// Version 1.9.8
7+
// http://github.com/SirPlease/ZoneMod
8+
// =======================================================================================
9+
10+
// ReadyUp Cvars
11+
l4d_ready_cfg_name "ZoneMod 1.9.8 Practice"
12+
13+
// Confogl Cvars
14+
confogl_addcvar confogl_pills_limit 0 // Limits the number of pain pills on each map outside of saferooms. -1: no limit; >=0: limit to cvar value
15+
16+
// ZoneMod 4v4 Cvars
17+
confogl_addcvar z_common_limit 0
18+
confogl_addcvar z_frustration 0
19+
confogl_addcvar z_ghost_delay_min 1
20+
confogl_addcvar z_ghost_delay_max 3
21+
confogl_addcvar director_no_bosses 1 // Yüzdeli Tank/cadı olmasın
22+
confogl_addcvar director_no_mobs 1 // Horde olmasın
23+
confogl_addcvar sb_dont_shoot 1 //Botlar sıkmaz (ama m2 atabilirler.)
24+
confogl_addcvar z_mega_mob_size 50
25+
confogl_addcvar z_mob_spawn_min_size 15
26+
confogl_addcvar z_mob_spawn_max_size 15
27+
confogl_addcvar z_mob_spawn_min_interval_normal 3600
28+
confogl_addcvar z_mob_spawn_max_interval_normal 3600
29+
confogl_addcvar z_jockey_ride_damage 1
30+
confogl_addcvar z_jockey_ride_damage_interval 0.25
31+
confogl_addcvar z_pounce_damage 1
32+
confogl_addcvar z_pounce_damage_interval 0.2
33+
confogl_addcvar hunter_pz_claw_dmg 0
34+
confogl_addcvar jockey_pz_claw_dmg 0
35+
confogl_addcvar smoker_pz_claw_dmg 0
36+
confogl_addcvar spitter_pz_claw_dmg 0
37+
confogl_addcvar boomer_pz_claw_dmg 0
38+
confogl_addcvar tongue_drag_damage_amount 1
39+
confogl_addcvar tongue_choke_damage_amount 1
40+
confogl_addcvar survivor_max_incapacitated_count 20 // 20 kere incap sonrası bw
41+
confogl_addcvar tongue_drag_first_damage_interval 1.0
42+
confogl_addcvar tongue_drag_first_damage 1.0
43+
confogl_addcvar tongue_drag_damage_interval 0.23 // 3 dps (same as vanilla) [l4d2_smoker_drag_damage_interval.smx]
44+
confogl_addcvar tongue_choke_damage_interval 0.2
45+
46+
// ZoneMod Shared Cvars
47+
exec cfgogl/zmpratik/shared_cvars.cfg
48+
49+
// Config Cvars
50+
exec cfgogl/zmpratik/zmpratik.cfg
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
// =======================================================================================
2+
// Practice feature for ZoneMod - Competitive L4D2 Configuration
3+
// Author: Sir
4+
// Contributions: Visor, Jahze, ProdigySim, Vintik, CanadaRox, Blade, Tabun, Jacob
5+
// License CC-BY-SA 3.0 (http://creativecommons.org/licenses/by-sa/3.0/legalcode)
6+
// Version 1.9.8
7+
// http://github.com/SirPlease/ZoneMod
8+
// =======================================================================================
9+
10+
// Disable ReadyUp
11+
l4d_ready_enabled 0
12+
13+
// Reset Default Common Limit, Static Spawns, and String Count
14+
reset_static_maps
15+
sm_resetstringcount
16+
17+
// Unlock Plugins and reload defaults
18+
confogl_resetclientcvars
19+
confogl_resetcvars
20+
21+
sm plugins load_unlock
22+
sm plugins unload_all
23+
sm plugins refresh
24+
25+
sm_cvar z_common_limit 30
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
// =======================================================================================
2+
// Practice feature for ZoneMod - Competitive L4D2 Configuration
3+
// Author: Sir
4+
// Contributions: Visor, Jahze, ProdigySim, Vintik, CanadaRox, Blade, Tabun, Jacob
5+
// License CC-BY-SA 3.0 (http://creativecommons.org/licenses/by-sa/3.0/legalcode)
6+
// Version 1.9.8
7+
// http://github.com/SirPlease/ZoneMod
8+
// =======================================================================================
9+
10+
//-------------------------------------------
11+
// ZoneMod Shared Plugins
12+
//-------------------------------------------
13+
exec cfgogl/zmpratik/shared_plugins.cfg
14+
15+
//-------------------------------------------
16+
// ZoneMod 4v4
17+
//-------------------------------------------
18+
sm plugins load optional/zonemod/l4d2_antibaiter.smx
19+
sm plugins load optional/zonemod/l4d2_playstats.smx
20+
sm plugins load optional/zonemod/l4d2_skill_detect.smx
21+
sm plugins load optional/zonemod/autopause.smx
22+
//sm plugins load optional/zonemod/l4d2_tank_rock_glow.smx //Uncomment if you are using the rock glow plugin from Dasogl repo (or edit for wherever you have)
23+
24+
//-------------------------------------------
25+
// ZoneMod Practice
26+
//-------------------------------------------
27+
sm plugins load optional/pratik/1v1helth.smx
28+
sm plugins load optional/pratik/l4d2_practice.smx
29+
sm plugins load optional/pratik/sm_give_givemenu.smx
30+
sm plugins load optional/pratik/flying_ghosts.smx
31+
sm plugins load optional/pratik/kill.smx

0 commit comments

Comments
 (0)