BigCountry
Member-
Posts
8 -
Joined
-
Last visited
Content Type
Profiles
Warranty Claims
Downloads
Forums
Store
Services
Downloads Plus Support
DOWNLOADS EXTRA
Reels
Everything posted by BigCountry
-
I found what was killing me. If I set these values in the config- "Minimum time to event start(in seconds)": 300, "Maximum time to event start(in seconds)": 500, "Minimum event duration(in seconds)": 2000, "Maximum event duration(in seconds)": 3000, It wipes the event every 5 minutes, with no warning; it just ends, and you die, for example, regardless of an event duration of 33 minutes, even when I open the door and go inside ("starting" the event). So there must be a bug somewhere if those start values are lower than the event duration values Basically, I wanted to start/stop the event randomly all over the map in 5 min intervals, and when someone opens the door to trigger the event start, then it would freeze the event and start/last for 33 minutes, etc. At least, I was assuming how it would work configuration-wise?
-
Oh, if you wanted to add a config to "Reset Dungeon Timer Once the Door is FIRST opened" true or false that would help a lot. This would be the same c# method call that only lets the person or group in and out of the dungeon, I think, looking at the code. Sometimes it takes a while to actually get to the dungeon on the map and stuff. And when you get in there, you don't have any time to actually complete it, etc. I did add a GUI Announcement (a different mod) to the warning on the dungeon event end. So it flashes on the actual screen; that should help warn players that it's about to end, perhaps if (duration == Configuration.warningMessageTime) { foreach (BasePlayer player in dungeonPlayers) { SendMessage(player, GetMessage("WarningMessage", player.IPlayer)); GUIAnnouncements?.Call("CreateAnnouncement", "Warning! Dungeon closes in 5 minutes!", "Black", "Red", player); } } This is actually a really great mod for role play/pve, like really good
-
Basically, when the event ends and the player(s) are still in the dungeon, teleport the player(s) to a safe location (I suggested the coordinates of the entrance door since that is always above ground and safer cords). What's happening is the players are underground (under safe world coords) when the event ends, and the game itself kills them because the mod just destroys the base and the game does not know where to put them, and they cannot get back to their loot bags after they die (making it pretty bad). It's a server admin's nightmare
-
Yeah I must of missed it, did not see it. So if you die and lose all your stuff when the event ends (insta-pop!), I cannot put this on my server. The player wrath I would get would be insane. Is there not a way to just code in the cords of where the entrance door was and teleport the player there when it ends? Versus killing them with their bags underneath the ground?