Is it possible that the Frontier Walls are not working currently? Stone and Adobe work without problem, but I can't seem to get Frontier if I enable those.
Really amazing work with these new monuments! I did an exploration run today and we had one occasion where a Panther was attacking us within the Mayan Pyramid. Pretty sure it leaped straight through the walls of the pyramid. I don't know if that's anything you can address or if that's an issue with the animals.
Absolutely love these new Jungle Monuments. They add a ton of variety and exploration value to our PVE server. Lovely details and really immersive builds. Would recommend to anyone who wants to improve their overall Jungle experience.
Are these bases still maintained or is there any update on the mentioned changes that need to happen? This pack looks really great, but I'm worried I will run into issues as it hasn't been updated for over a year now.
I needed to give multiple commands as a reward and for ease of use I changed the plugin code from this:
case PrizeType.Command:
Server.Command(check.PrizeCommand.Replace("%STEAMID%", player.UserIDString));
break;
to this:
case PrizeType.Command:
{
var parts = check.PrizeCommand
.Split(new[] { ';' }, StringSplitOptions.RemoveEmptyEntries);
foreach (var part in parts)
{
var cmd = part.Trim()
.Replace("%STEAMID%", player.UserIDString);
Server.Command(cmd);
}
break;
}
This enables me to place a string like this as one command reward:
"PrizeCommand": "c.grant user %STEAMID% permission.1;c.grant user %STEAMID% permission.2"
This change in the plugin code will strip the given command string at the semicolon (`;`) and execute each command after the other while replacing the placeholder with the users steam id.
WARNING: I don't recommend changing the plugins code yourself, unless you know what you're doing. You can achieve the same result by giving multiple command "items" with each a single command as a reward and if needed you can also hide them from the player so it doesn't clutter your quest.
I am only sharing this because I would love if a feature like this would make it into the next update. Love this plugin, great work!
Codefling is the largest marketplace for plugins, maps, tools, and more, making it easy for customers to discover new content and for creators to monetize their work.
We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.