Jump to content

Cargonia

Member
  • Posts

    19
  • Joined

Everything posted by Cargonia

  1. Cargonia

    Skins not Generated

    Okay, I see. Is it possible though, to make it so players can skin items with the skins they own? Otherwise this plugin might not be of much use anymore unfortunately.
  2. Cargonia

    Skins not Generated

    Is this Plugin not supposed to enable only the skins that the player owns now, as sort of a portable Repair Bench?
  3. It would be awesome if you could add an option like "Minimum Time after Wipe before schedule start" to set a time after wipe, where the event shouldn't take place until this time has passed. This would give us the option to start the Flying Cargo Event only on day 3 after wipe for example.
  4. Cargonia

    Quest System

    Use the command `/quest.saveposition.outpost` in Outpost at the location you want to have the building. This will write the coordinates in your config, where you can also adjust the rotation. Make sure `"Use custom position?":` is set to false, as this refers to the completely free position, not tied to Outpost. Reload the plugin to see the changes, it may take a few tries, before you get the positioning and rotation right.
  5. Cargonia

    Dynamic Monuments

    Thanks for your reply! I thought this would do it, but I still get multiple monuments of each type. Is there other settings that I need to change? Also it says "additionally" so additionally to what? "Ground Monuments": { "Allow automatic spawn? [true/false]": true, "The minimum number of locations": 0, "The maximum number of locations": 7, "List of locations": [ { "Preset Name": "mayanPyramid_1", "Name": "The Mayan Pyramid", [...] "Allow automatic spawn? [true/false]": false, "Probability ": 100.0, "Number of monuments that will spawn additionally (Does not depend on the previous two parameters)": 1, [...] Right now I have it set so minimum and maximum are the amount of different types that exist. I am aware that this would cause multiple monuments of the same type to spawn if one isn't able to so it fills to the maximum (that's what I assume). But like I said I want every monument to spawn just once (if it is able to depending on the map of course).
  6. Cargonia

    Dynamic Monuments

    The recent changelog states "Ability to precisely specify the number of locations to spawn for each preset". If I understand this correctly an option was added in the config to set the precise number of how many of a preset should be spawning? Where can I set this up? I can't seem to find the setting to do this, but I want every monument to be there exactly once.
  7. Cargonia

    Raidable Bases

    @Nivex Thank you, I just didn't realise those were different options, because what I was after is not what a "sphere" is. So I think titling that option might be a bit misleading (atleast to me), especially if the option for the dome also contains the word sphere: "Create Dome Around Event Using Spheres". But I don't want to be picky, that option was exactly what I was looking for. Perfect, I am quite sure the "Hogging" option is what it was. (I still think it is a good option to keep, I just wanted to understand). Thanks again for the great support!
  8. Cargonia

    Raidable Bases

    @nivex Thanks for the quick reply. Gotta say your support is top notch! So for the zones, that's just a possibility for the domes though, correct? So if I have them disabled (because I don't like the look of them, there's currently no way to have like the less intrusive zone like convoy has? "Player Lockouts (0 = ignore)": { "Apply Lockouts To PVE": true, "Apply Lockouts To PVP": true, "Apply All Lockouts Everytime": false, "Block Clans From Owning More Than One Raid": false, "Block Friends From Owning More Than One Raid": false, "Block Teams From Owning More Than One Raid": true, "Block Players From Joining A Clan/Team To Exploit Restrictions": false, "Time Between Raids In Minutes (Easy)": 30.0, "Time Between Raids In Minutes (Medium)": 30.0, "Time Between Raids In Minutes (Hard)": 30.0, "Time Between Raids In Minutes (Expert)": 30.0, "Time Between Raids In Minutes (Nightmare)": 30.0 } I'm guessing it's this part of the config, that controls all of the settings you mentioned? And then I'm guessing in my confif the "Block Teams" part is the one preventing also solo players from owning multiple raids?
  9. Cargonia

    Raidable Bases

    May I ask two questions: Is there an option to create a zone around a currently raided base like the Convoy plugin uses? I would like to have an indicator that a base is being actively raided. Afaik the lockout time settings only apply per difficulty. So if a player starts a raid on an easy base, he can't start another easy one before the set time is passed BUT he should be able to switch to a medium right away, is that correct? Because I just got a player report that he has done exactly that but couldn't enter the medium base. If that's intended behaviour I would understand because it probably prevents people to just run around and claim 5 bases without doing anything, I just didn't see this reflected in any settings to set the lockout time for example so I was wondering.
  10. Cargonia

    Skin Controller

    Would it be possible to implement a permission system, so admins with that permission can still use all the available Skins e.g. for testing purposes? It is clearly stated that this is still permitted, so it would be nice if I could use this plugin still for testing with all the skins.
  11. Cargonia

    Raidable Bases

    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.
  12. 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.
  13. 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.
  14. Cargonia

    Quest System

    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!
  15. The dropdown in the editor does not have the respective animals yet included, but you can simply write "tiger", "panther", etc. in that field yourself to target those animals.
  16. I have the same issue with the Halted Oil Tower. Also in the Building Sites plugin one of the sky bases is missing the same tower that's also missing on the Oil Tower monument so I'm guessing there's like a missing asset or a problem with that specific build element?
1.9m

Downloads

Total number of downloads.

8.9k

Customers

Total customers served.

131.3k

Files Sold

Total number of files sold.

2.7m

Payments Processed

Total payments processed.

×
×
  • Create New...

Important Information

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.