Jump to content

Mr01sam

Creator Pro
  • Posts

    1,560
  • Joined

  • Last visited

  • Days Won

    28

Everything posted by Mr01sam

  1. It is indeed still part of the config, its in there as "Move Items to Zombie". Set this to "false" if you do not want the items to move to the zombie (they will instead just stay in the backpack).
  2. As of v1.3.0 I added the entity that zombie hordes uses to the infliction entities list for Z13 Virus, I also added a new config option to specify that only melee damage will inflict it. So by default, it should be working with zombie hordes as of 1.3.0, if someone could confirm that though that would be awesome!
  3. Mr01sam

    Raid Protection

    I just tested this, and it looks like you are correct in that it is not showing up automatically when you reconnect. Its actually not asleep, if you were to walk out of the building priv and then walk back in, it should update correctly (without having to reload). Regardless, I think I have a fix for it, I'll DM it to you and you can try it out if you would like
  4. Mr01sam

    Simple Status

    If its a bug report or feature request, I recommend opening a support ticket. If you are a developer that needs help using the API, feel free to DM me on codefling here! Otherwise you can shoot a message in my plugin dev discord in the Simple Status help channel: https://discord.gg/APDvpUq4Qs
  5. Mr01sam

    Raid Protection

    I'll keep that in mind for sure!
  6. Mr01sam

    Raid Protection

    Fantastic man!
  7. Mr01sam

    Simple Status

    Injuries and Diseases will support Simple Status soon, that's next on my agenda!
  8. Mr01sam

    Raid Protection

    @Robis I added the Notify type config in v3.4.2 for you! Also, if you're interested, Simple Status (the rewrite of Custom Status Framework) is available for download now. You can find it here: https://codefling.com/plugins/simple-status
  9. Version 1.2.11

    7,916 downloads

    Overview Provides an API for adding custom status messages that fit in with those of vanilla Rust. This plugin requires another plugin to utilize it, it does not do anything on its own. Check out the "Works With" list above for some plugins that utilize this API. Commands /ts Toggles the visibility of statuses for a player. This command can be changed in the config settings. Custom Status Framework This plugin is a sequel to Custom Status Framework and features much better performance. They do the same thing, but are NOT compatible with each other. Do not load both on your server or you may run into issues. Plugins that require Custom Status Framework will need to be updated to support Simple Status, it is not backwards compatible. If you are a plugin developer and need help writing your plugin to use Simple Status, please reach out to me! Advanced Status As of 1.2.0, this plugin can integrate with Advanced Status so that the statuses no longer overlap with each other. This means that all Simple Status plugins will work alongside Advanced Status plugins without developers having to explicitly support both. This is a new feature, if you find issues with this integration please report them! API void CreateStatus(Plugin plugin, string statusId, Dictionary<string, object> properties) // Registers a new status, should be called during plugin init within the OnSimpleStatusReady() hook. // See the properties section for a list of properties to set. void SetStatus(string userId, string statusId, int duration = int.MaxValue, bool pauseOffline = true) // Assigns a player a status with a duration. Set duration to int.MaxValue for an infinite status. Set to 0 to clear a status. void SetStatusProperty(string userId, string statusId, Dictionary<string, object> properties) // Set multiple properties for a player status with a single API call. Will minimize the number of redraws, so its better than individually setting properties. // See the properties section for a list of properties to set. int GetDuration(string userId, string statusId) // Returns the duration in seconds of a status that a player has. Returns 0 if the player does not have that status. Hooks void OnStatusSet(string userId, string statusId, int duration) // Called when a status is initially set for a player. void OnStatusEnd(string userId, string statusId, int duration) // Called when a status is removed for a player. (When the duration reaches 0). void OnStatusUpdate(string userId, string statusId, string property, string value) // Called when a status property is updated. // See the properties section for a list of properties to set. Properties // The following are valid property keys that are used in multiple API methods var properties = { ["color"] = "1 1 1 1", // Background color of the status ["title"] = "hello", // Message for the left hand side of the status. If this string is found in the localization for your plugin, that localization message will be used. ["titleColor"] = "0 0 0 1", // Color of the title message ["text"] = "subtext", // Message for the right hand side of the status. If this string is found in the localization for your plugin, that localization message will be used. If set to null, then this will be replaced with a duration counter (if there is a duration). ["textColor"] = "0 0 0 1", // Color of the text message ["icon"] = "star", // Icon used in the status. If using a non-sprite path, then it is expected that this image is already loaded into ImageLibrary. See ImageTypes section. ["iconColor"] = "0 0 0 1", // Color of the icon ["progress"] = 0.0, // Used to denote a status as a progress status. This value should be from between 0.0 and 1.0. Set this to null if you dont want it to be a progress status (otherwise it will be styled like one). ["progressColor"] = "0 0 0 0.5", // Color of the progress status bar. ["rank"] = 0 // Order in which this status will be drawn in respect to others. Statuses will a lower rank will be before those with a higher rank. } Image Types Using the API you can specify different image types with a prefix. For raw images, prefix the image with "raw:" for item icon ids prefix it with "itemid:". If you want to use a sprite asset path, the plugin will be expecting "assets/". If you just want to use a simple recolorable image then no prefix is required. Here are examples: Asset paths can be found here and item ids can be found here. Code Example This is an example of a plugin that utilizes Simple Status to produce the image in the thumbnail. For plugin developer reference. Download link below: SimpleStatusDemo.cs
    Free
  10. Mr01sam

    Raid Protection

    I'll make a post in the support area for you so I don't forget
  11. Mr01sam

    Raid Protection

    I'm sorry, I'm confused what the question is. What middle one are you talking about?
    This is an awesome, an extensive solution to chest sorting. If you're like me, you want to just dump all of your inventory into a chest and be done with it... but at the same time have everything organized when you're looking for it. There are other plugins that do sorting, but this adds an extra layer of customization for players to configure not only what's in their chests but where exactly those items are in the chests as well, and it is done with a pretty intuitive UI. I hope to see this running on more servers, as clearly a lot of thought has gone into it.
  12. Mr01sam

    Raid Protection

    Good suggestion!
  13. Mr01sam

    Raid Protection

    I'm still working on it, I just wanted to add support for it in this update so its ready to go for the future. If you want, I can send you a copy of it to test out when I have it stable. Dm me!
  14. Mr01sam

    Raid Protection

    Hey dm me and maybe I can add something for you!
  15. Mr01sam

    Quality Crafting

    When does this occur?
  16. Do you mean like everytime you die, you lose 10 max health?
  17. Mr01sam

    Raid Protection

    It does collect the scrap up front, as in, it takes it out of the player's inventory and adds it to the protection balance. But players can always withdraw that protection balance by pressing "clear" (unless you disable that button in the config), so it hasn't spent that balance yet, just holds onto it. When the base is actively being protected it will then deduct the amount from the protection balance every few seconds until its depleted. But it will only do that when its actively protected. If you have offline only protection, the balance will not be deducted until all owners go offline, so they can withdraw that balance when theyre online if they choose to do so. Let me know if that makes sense!
  18. Mr01sam

    Raid Protection

    If you have offline only protection (as in while online you have 0% protection) then players should NOT be actively charged scrap until they go offline. If they are, that is a bug.
  19. Mr01sam

    Raid Protection

    Unfortunately you can't do it at a different price for online vs offline currently.
  20. Mr01sam

    Raid Protection

    1800ms is 1.8 seconds... so not perfect but certainly not as bad as 18!
  21. Mr01sam

    Raid Protection

    Cost per damage protected is a setting you can use that will charge protection balance for every point of damage protected. So if you have cost per damage protected set to 1, and your building has 100% protection, and a rocket does 100 damage to your building, then it will subtract 100 from the protection balance in order to protect the building. If the protection balance is depleted from this it will then be unprotected. So yes, if you have cost per damage protected set to 0 then raiders will not be able to deplete a protection balance from attacking it. Assuming that the protection for the building is set to 100% and the player has some protection balance, it should be protected as long as they have balance.
  22. Yes, a rewrite is in the works, but for now if you're having issues with the latest version I recommend v1.0.10
  23. Mr01sam

    Raid Protection

    Hey, my apologies, I did not add the feature of triangle costs yet. The update last night was to fix some console spam that was reported. I'm thinking through the triangle cost thing now, if you would like I could send you a version to test out when I have it ready. Is that something you would be interested in?
  24. Mr01sam

    Raid Protection

    if I were to do this, do you think there would be an issue if the costs affected triangle floors too?
2.3m

Downloads

Total number of downloads.

10.5k

Customers

Total customers served.

152.6k

Files Sold

Total number of files sold.

3.3m

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.