Left 4 Dead 2

Left 4 Dead 2

Special Infected Synchronization (AI+)
Affichage des entrées 41-50 sur 57
< 1  2  3  4  5  6 >
Mis à jour le : 2 nov. 2023 à 16h01
par Thumos

Changes
  • Reworked the `LoadSettings` function in the `sisync` table to allow any value besides `true`, `false`, or `null`.

Mis à jour le : 28 oct. 2023 à 21h22
par Thumos

Bug Fixes
  • Removed `si_count.pop()` from the `OnGameEvent_player_death` function since `si_count.clear()` removes all the special infected from the array when their respawn timer is finished. This should prevent the special infected from being desynchronized.

Mis à jour le : 7 oct. 2023 à 17h00

Bug Fixes
  • Moved the `cm_AggressiveSpecials` variable into the `MapOptions` table. This allows the variable to be utilized when it intitially did nothing before.

Mis à jour le : 7 oct. 2023 à 11h45

Changes
  • Added the `ScriptMode_Init` function to `scriptedmode_addon.nut`. This allows the add-on to work without relying on other add-ons to activate Scripted Mode.

Mis à jour le : 23 sept. 2023 à 7h15

Changes
  • Changed the table for the DirectorScript variables to `MapOptions` and `MutationOptions`. This allows the variables set by each map to be overwritten as opposed to being delegated by whatever variables the map's `DirectorOptions` table imposed. Do note that crescendo and onslaught events will still overwrite the VScript's variables, but the variables will at least be reverted back to whatever was listed in the `MapOptions` table once the event is finished.
  • If the default variables listed in the `::CustomVars` table aren't in the `settings.txt` file, they'll now be added to the config file without overwriting existing ones on round start.

Mis à jour le : 15 sept. 2023 à 2h05

Additions
  • Added the ability to change the minimum and maximum values for the special infected's respawn timer by modifying the `RespawnIntervalMin` and `RespawnIntervalMax` variables in the `settings.txt` file.
  • Added a new variable in the `settings.txt` file named `DebugMode`. This simply prints out text in the console in case anything important happens in-game.
Bug Fixes
  • Made `CustomVars` a global variable again to fix a bug where modifying the `settings.txt` file wouldn't have any effect in-game.

Mis à jour le : 12 sept. 2023 à 14h01

Bug Fixes
  • Changed the VScript back to `scriptedmode_addon.nut` as using `director_base_addon.nut` would cause index errors when crescendo events were finished.

Mis à jour le : 10 sept. 2023 à 5h25

Changes
  • Used `director_base_addon.nut` instead of `scriptedmode_addon.nut` for executing vscripts. This should hopefully allow this add-on to run alongside other add-ons that utilize `scriptedmode_addon.nut` (ex. Left 4 Bots). Of course, this change could potentially cause issues with add-ons utilizing `director_base_addon.nut`, so it may be best to disable this add-on when playing with other mods that make use of the script.

Mis à jour le : 23 aout 2023 à 15h12

Bug Fixes
  • Made `CustomVars` a global table. This fixes a bug where the variables in the `settings.txt` file wouldn't load on round start.

Mis à jour le : 23 aout 2023 à 14h27

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.