AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Plugin/Gameplay Ideas and Requests (https://forums.alliedmods.net/forumdisplay.php?f=60)
-   -   [L4D2]Request plugin (https://forums.alliedmods.net/showthread.php?t=337147)

dahyun4220 04-03-2022 09:14

[L4D2]Request plugin
 
1. Is there a plugin that can survivors movement faster with adrenaline or pills?
2. is there tank and watch spawn percent plugins for Windows Server? (boss percent plugin)
3. Is there a plugin that can control the cooldown of special zombie ability?
plz help ㅠㅡㅠ

+There might be a lot of plugins or something that I can't find because I'm not good at English. If have the plugin, I would really appreciate it if could give me a link.

alasfourom 04-30-2022 21:51

Re: [L4D2]Request plugin
 
Quote:

1. Is there a plugin that can survivors movement faster with adrenaline or pills?
Its cvars
PHP Code:

/////////////////////////
//Survivos Items
/////////////////////////
sm_cvar adrenaline_duration "18"
sm_cvar adrenaline_revive_speedup "1.5"
sm_cvar adrenaline_run_speed "305" 

Quote:

2. is there tank and watch spawn percent plugins for Windows Server? (boss percent plugin)
Here is Non Tested Old Plugin - Not sure if working

Quote:

3. Is there a plugin that can control the cooldown of special zombie ability?
Here are lists of cvars

PHP Code:

/////////////////////////
//SI Spawner
////////////////////////
sm_cvar z_ghost_delay_max 22
sm_cvar z_ghost_delay_min 14
sm_cvar z_ghost_delay_minspawn 14
sm_cvar z_ghost_finale_spawn_interval 15

/////////////////////////
//Smoker
/////////////////////////

//Skill CD
//sm_cvar tongue_hit_delay 8
sm_cvar tongue_miss_delay 3

//Damage
//sm_cvar smoker_pz_claw_dmg 18
//sm_cvar tongue_choke_damage_amount 26

//Tongue speed 
sm_cvar tongue_fly_speed 1000

//Health
sm_cvar z_gas_health 290

//Speed
sm_cvar z_gas_speed 240
sm_cvar tongue_victim_max_speed 120

//Others
sm_cvar tongue_bend_point_deflection 5
sm_cvar tongue_range 1000
sm_cvar tongue_break_from_damage_amount 300
sm_cvar tongue_drag_damage_amount 3
sm_cvar tongue_dropping_to_ground_time 0.5
sm_cvar tongue_health 300

/////////////////////////
//Charger
/////////////////////////

//Skill CD
//sm_cvar z_charge_interval 8

//Charging duration
sm_cvar z_charge_duration 3

//Damage
//sm_cvar z_charge_max_damage 26
//sm_cvar z_charger_pound_dmg 22

//Charging speed 
sm_cvar z_charge_max_speed 700
sm_cvar z_charge_start_speed 350

//Health
sm_cvar z_charger_health 600

//Slow Karma Enable "1" Disable "0"
sm_cvar l4d2_karma_charge_slowmode "0"

/////////////////////////
//Boomer
/////////////////////////

//Skill CD
sm_cvar z_vomit_interval 15

//Move while vomiting
sm_cvar z_vomit_fatigue 0

//Speed
sm_cvar z_exploding_speed 280

//Health
sm_cvar z_exploding_health 190

/////////////////////////
//Hunter
/////////////////////////

//Skill CD
//No cool down

//Health
sm_cvar z_hunter_health 300

//Speed
sm_cvar z_hunter_speed 280

//Fly Distance
sm_cvar z_lunge_power 800
sm_cvar hunter_leap_away_give_up_range 3000
sm_cvar z_leap_max_distance 2000
sm_cvar hunter_pounce_ready_range 3000
sm_cvar z_hunter_lunge_distance 4000

//Damage
//sm_cvar z_pounce_stumble_force 14
//sm_cvar z_pounce_damage 14
//sm_cvar hunter_pz_claw_dmg 12
//sm_cvar z_hunter_lunge_pitch 14
//sm_cvar z_hunter_max_pounce_bonus_damage 34

/////////////////////////
//Jockey
/////////////////////////

//Skill CD
sm_cvar z_jockey_leap_again_timer 3
sm_cvar z_leap_interval_post_ride 8
sm_cvar z_jockey_leap_time 1
sm_cvar z_leap_interval_post_incap 3

//Health
sm_cvar z_jockey_health 310

//Jump Distance
sm_cvar z_jockey_leap_range 1500
sm_cvar z_leap_max_distance 750
sm_cvar z_leap_power 400

//Damage
//sm_cvar z_jockey_ride_damage 16

//Speed
sm_cvar z_jockey_speed 280

/////////////////////////
//Spitter
/////////////////////////

//Skill CD
sm_cvar z_spit_interval 8

//Spit Range
//sm_cvar z_spit_range 1500

//Health
sm_cvar z_spitter_health 200

//Speed
sm_cvar z_spitter_speed 280

/////////////////////////
//Tank
/////////////////////////

//Skill CD
sm_cvar z_tank_throw_interval 4

//Speed
sm_cvar z_tank_speed 210
sm_cvar z_tank_walk_speed 100

//Health
sm_cvar z_tank_health 8001

//Damage
sm_cvar vs_tank_damage 42

//You Don't Lose Control
sm_cvar z_frustration 1

/////////////////////////
//Witch
/////////////////////////

//Damage
//sm_cvar z_witch_damage 148

//Health
sm_cvar z_witch_health 1500

//Speed
sm_cvar z_witch_speed 280 

/////////////////////////
//SI Limits
/////////////////////////

sm_cvar z_boomer_limit "0"
sm_cvar z_charger_limit "0"
sm_cvar z_hunter_limit "1"
sm_cvar z_jockey_limit "1"
sm_cvar z_smoker_limit "1"
sm_cvar z_spitter_limit "1" 


Toranks 05-01-2022 00:23

Re: [L4D2]Request plugin
 
adrenaline_revive_speedup > This need to be setting with values less than zero, representing the percentage of original value. For example 0.5 means 50% of revive duration, or 100% of speedup

dahyun4220 05-01-2022 02:45

Re: [L4D2]Request plugin
 
Quote:

Originally Posted by alasfourom (Post 2778373)
Its cvars
PHP Code:

/////////////////////////
//Survivos Items
/////////////////////////
sm_cvar adrenaline_duration "18"
sm_cvar adrenaline_revive_speedup "1.5"
sm_cvar adrenaline_run_speed "305" 


Here is Non Tested Old Plugin - Not sure if working


Here are lists of cvars

PHP Code:

/////////////////////////
//SI Spawner
////////////////////////
sm_cvar z_ghost_delay_max 22
sm_cvar z_ghost_delay_min 14
sm_cvar z_ghost_delay_minspawn 14
sm_cvar z_ghost_finale_spawn_interval 15

/////////////////////////
//Smoker
/////////////////////////

//Skill CD
//sm_cvar tongue_hit_delay 8
sm_cvar tongue_miss_delay 3

//Damage
//sm_cvar smoker_pz_claw_dmg 18
//sm_cvar tongue_choke_damage_amount 26

//Tongue speed 
sm_cvar tongue_fly_speed 1000

//Health
sm_cvar z_gas_health 290

//Speed
sm_cvar z_gas_speed 240
sm_cvar tongue_victim_max_speed 120

//Others
sm_cvar tongue_bend_point_deflection 5
sm_cvar tongue_range 1000
sm_cvar tongue_break_from_damage_amount 300
sm_cvar tongue_drag_damage_amount 3
sm_cvar tongue_dropping_to_ground_time 0.5
sm_cvar tongue_health 300

/////////////////////////
//Charger
/////////////////////////

//Skill CD
//sm_cvar z_charge_interval 8

//Charging duration
sm_cvar z_charge_duration 3

//Damage
//sm_cvar z_charge_max_damage 26
//sm_cvar z_charger_pound_dmg 22

//Charging speed 
sm_cvar z_charge_max_speed 700
sm_cvar z_charge_start_speed 350

//Health
sm_cvar z_charger_health 600

//Slow Karma Enable "1" Disable "0"
sm_cvar l4d2_karma_charge_slowmode "0"

/////////////////////////
//Boomer
/////////////////////////

//Skill CD
sm_cvar z_vomit_interval 15

//Move while vomiting
sm_cvar z_vomit_fatigue 0

//Speed
sm_cvar z_exploding_speed 280

//Health
sm_cvar z_exploding_health 190

/////////////////////////
//Hunter
/////////////////////////

//Skill CD
//No cool down

//Health
sm_cvar z_hunter_health 300

//Speed
sm_cvar z_hunter_speed 280

//Fly Distance
sm_cvar z_lunge_power 800
sm_cvar hunter_leap_away_give_up_range 3000
sm_cvar z_leap_max_distance 2000
sm_cvar hunter_pounce_ready_range 3000
sm_cvar z_hunter_lunge_distance 4000

//Damage
//sm_cvar z_pounce_stumble_force 14
//sm_cvar z_pounce_damage 14
//sm_cvar hunter_pz_claw_dmg 12
//sm_cvar z_hunter_lunge_pitch 14
//sm_cvar z_hunter_max_pounce_bonus_damage 34

/////////////////////////
//Jockey
/////////////////////////

//Skill CD
sm_cvar z_jockey_leap_again_timer 3
sm_cvar z_leap_interval_post_ride 8
sm_cvar z_jockey_leap_time 1
sm_cvar z_leap_interval_post_incap 3

//Health
sm_cvar z_jockey_health 310

//Jump Distance
sm_cvar z_jockey_leap_range 1500
sm_cvar z_leap_max_distance 750
sm_cvar z_leap_power 400

//Damage
//sm_cvar z_jockey_ride_damage 16

//Speed
sm_cvar z_jockey_speed 280

/////////////////////////
//Spitter
/////////////////////////

//Skill CD
sm_cvar z_spit_interval 8

//Spit Range
//sm_cvar z_spit_range 1500

//Health
sm_cvar z_spitter_health 200

//Speed
sm_cvar z_spitter_speed 280

/////////////////////////
//Tank
/////////////////////////

//Skill CD
sm_cvar z_tank_throw_interval 4

//Speed
sm_cvar z_tank_speed 210
sm_cvar z_tank_walk_speed 100

//Health
sm_cvar z_tank_health 8001

//Damage
sm_cvar vs_tank_damage 42

//You Don't Lose Control
sm_cvar z_frustration 1

/////////////////////////
//Witch
/////////////////////////

//Damage
//sm_cvar z_witch_damage 148

//Health
sm_cvar z_witch_health 1500

//Speed
sm_cvar z_witch_speed 280 

/////////////////////////
//SI Limits
/////////////////////////

sm_cvar z_boomer_limit "0"
sm_cvar z_charger_limit "0"
sm_cvar z_hunter_limit "1"
sm_cvar z_jockey_limit "1"
sm_cvar z_smoker_limit "1"
sm_cvar z_spitter_limit "1" 


Is there a single boss percent plugin that is not related to other plugins? For local servers

alasfourom 05-01-2022 04:20

Re: [L4D2]Request plugin
 
You can try this one by xZk

Boss Spawn

You could edit the configs

PHP Code:

// Setting chance (0-100)% to spawn Tanks
// -
// Default: "50"
// Minimum: "0.000000"
// Maximum: "100.000000"
boss_spawn_tanks_chance "100"

// Setting chance (0-100)% to spawn Witches
// -
// Default: "50"
// Minimum: "0.000000"
// Maximum: "100.000000"
boss_spawn_witches_chance "100" 



All times are GMT -4. The time now is 23:39.

Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.