Does this plugin have a spawn overlap command? It seems things won't spawn if the player or another event is on the tile, even if the existing event is on another layer or set to through. I would like this feature because I sometimes change the player to a cursor, and want to spawn something at the cursor's position.
Viewing post in Ritter Ultimate Event Spawner (RPG Maker MV) comments
Hello! I'll take a look into making this easier to do in the near future but the code which is blocking your events from spawning is located inside the Ritter.canSpawnOn() Function. I do have one method in place to allow for spawning on events which requires a script call to enable it.
If you use the script call
Ritter._spawnOnEvents = true;
this will allow you to spawn on top of events.
it can be disabled by using
Ritter._spawnOnEvents = false;
it's defaulted to false so if you want to spawn on top of events set it to true.
I'm considering adding this as an optional argument for the Ritter.spawnEvent command, that may be something that happens in an update soon.
Thank you and I hope this helps you out in the meantime!