Left 4 Dead 2

Left 4 Dead 2

Special Infected Synchronization (Competitive)
正在显示第 121 - 130 项,共 135 项条目
< 1 ... 11  12  13  14 >
更新于:2023 年 8 月 23 日 下午 2:27

Changes
  • Renamed the main VScript to `scriptedmode_addon.nut` and moved the functions located in the `sisync-config.nut` vscript into the `sisync` table. This should reduce the risk of other add-ons breaking when running alongside this one.

更新于:2023 年 8 月 20 日 下午 2:35

Bug Fixes
  • Separated `cm_MaxSpecials > 6` into its own `if` statement. This fixes a bug where mutations such as `Hard Eight` would only spawn 6 special infected at once if the `MaxSpecials` variable was lower than 6.

更新于:2023 年 8 月 20 日 上午 3:58

Changes
  • Added an `or` operator in the `if` statement for `cm_MaxSpecials`. This should fix the issue where the spawn limits for each special infected would still be set to 1.

更新于:2023 年 8 月 20 日 上午 3:40

Additions
  • Implemented the ability for players to change the variables listed in the `settings.txt` file as well as modify or even add new command variables in the `convars.txt` file located in the `~/ems/sisync-comp/cfg/` directory.
Changes
  • Used "DirectorOptions.*" instead of "DirectorScript.GetDirectorOptions().*" to specify the variables to modify in-game. This limits each special infected to 1 in the `DirectorOptions` table as doing so with "DirectorScript.GetDirectorOptions().*" would've caused an index error.
  • Modified the `nb_saccade_speed` and `nb_saccade_time` command variables to make the special infected aim at the survivors more accurately.

更新于:2023 年 8 月 16 日 下午 2:57

Changes
  • Modified the `tongue_dropping_to_ground_time` command variable to match the variable used in Versus mode.

更新于:2023 年 8 月 15 日 上午 12:24

Additions
  • Added a few functions to make the Charger take normal damage while charging.
  • Added some functions to deal damage to survivors while they're being pulled by the Smoker.

更新于:2023 年 8 月 11 日 上午 7:01

Changes
  • Updated thumbnail image to make it distinct from my other add-ons.

更新于:2023 年 8 月 8 日 下午 2:20

Changes
  • Reworked the `surv_group_dist()` function to compare the highest and second-highest flow distance instead of averaging the flow distance of all survivors. This ensures the distance calculation between two players are consistent regardless of player count.

更新于:2023 年 8 月 6 日 下午 8:30

Additions
  • Added a function which forces the special infected to spawn near the survivor currently in the lead if they are a certain distance away from the other survivors. This encourages the survivors to stick together and avoid being separated from each other.
Bug Fixes
  • Reimplemented the try/catch statement and separated the `cm_MaxSpecials` and `MaxSpecials` variables into if/else statements. This fixes an issue where the special infected wouldn't be able to respawn after a set time had passed and improves the compatibility for mutations.

更新于:2023 年 8 月 5 日 下午 3:32

Bug Fixes
  • Removed the `SpecialInfectedAssault` variable from the `DirectorOptions` table as it was causing the Smoker to not move.