0 of 0

File information

Last updated

Original upload

Created by

bitterbeer

Uploaded by

bitterbeer

Virus scan

Safe to use

Tags for this mod

About this mod

A BepInEx / HarmonyX plugin to allow the configuration of the spawning of Ghosts and Spiders. You can disable spawning entirely if desired.
Will add more enemies as time goes on.

Requirements
Permissions and credits
Changelogs
Donations
This is a BepInEx mod to enable the console.
This was developed using BepInEx v5.4.23.2 x64.

All code used in my mods is located on GitHub, publicly accessible, here!

This works by patching the CaveDungeonController for spiders and the GhostAreaSpawner for ghosts.
I have provided individual files (for each enemy) and a combination file.
I will add more enemies over time (basically when I eventually encounter them).

  • Install BepInEx, follow their install guide.
  • Place the (GhostSpawn, SpiderSpawn, or EnemyCombo).dll in the BepInEx/plugins directory.
  • Launch the game, on first launch configuration files will be generated within the BepInEx/config folder for the respective files chosen.
  • Quit game.
  • Adjust the configurations as desired. Save the file(s) and launch the game again.

Here is an example of the EnemyCombo.cfg## Settings file was created by plugin Ghost and Spider Control v1.0.0
## Plugin GUID: EnemyCombo

[General]

## Enable or disable ghosts spawning.
# Setting type: Boolean
# Default value: true
EnableGhostSpawning = true

## Maximum number of ghosts.
# Setting type: Int32
# Default value: 2
# Acceptable value range: From 0 to 100
MaxGhosts = 2

[SpawnTiming]

## Minimum time between ghost spawns (in seconds).
# Setting type: Single
# Default value: 5
# Acceptable value range: From 1 to 600
SpawnTimingMin = 5

## Maximum time between ghost spawns (in seconds).
# Setting type: Single
# Default value: 10
# Acceptable value range: From 1 to 600
SpawnTimingMax = 10

[Spiders]

## Enable or disable spider spawning every X seconds.
# Setting type: Boolean
# Default value: true
SpawnSpiderEveryXSeconds = true

## Time between spider spawns in seconds.
# Setting type: Single
# Default value: 60
TimeBetweenSpiderSpawns = 60