Jump to content

imthenewguy

Creator
  • Posts

    3,842
  • Joined

  • Last visited

Everything posted by imthenewguy

  1. Recyclers are automatically given at the start of the wipe to all with the permission. If that setting is set to false, it wont give them an additional recycler to redeem. void OnNewSave(string filename) { List<ulong> delete_users = new List<ulong>(); foreach (KeyValuePair<ulong, PlayerInfo> kvp in pcdData.pentity) { kvp.Value.recycler_ids.Clear(); if (permission.UserHasPermission(kvp.Key.ToString(), "personalrecycler.use") || permission.UserHasPermission(kvp.Key.ToString(), "personalrecycler.admin")) { if (kvp.Value.available_recyclers < 0) kvp.Value.available_recyclers = 0; if (config.recycler_credits_persist) kvp.Value.available_recyclers = kvp.Value.available_recyclers + config.start_recyclers; else kvp.Value.available_recyclers = config.start_recyclers; } else if (kvp.Value.available_recyclers == 0) delete_users.Add(kvp.Key); } pcdData.private_recyclers.Clear(); if (delete_users.Count > 0) foreach (var id in delete_users) pcdData.pentity.Remove(id); SaveData(); }
  2. imthenewguy

    Error in harmony patch

    Changed Status from Pending to Closed
  3. You would need to create specific items or call the ipgive command to give them a random item Id say.
  4. imthenewguy

    Error in harmony patch

    Split won't throw an exception because even with 1 word, its only accessing the first word in the array [0]. The plugin this is mentioning is RMAutoLooter.
  5. imthenewguy

    Night time settings

    Ya
  6. imthenewguy

    Night time settings

    Usage: givexp <player> <amount> <optional: ignore modifiers [default: false]>
  7. "Allow for recycler credits to carry over across a map wipe?": false
  8. imthenewguy

    backpack

    DOes it happen when they leave, or die?
  9. imthenewguy

    Night time settings

    What command?
  10. imthenewguy

    Stacking

    All I can do (and have done) as a developer is add a config option to allow my plugin to correctly handle stacking and splitting of items that are natively stackable. "Allow the plugin to handle stacking of Item Perk items? [set to false if using StackModifier]" "Allow the plugin to handle splitting of Item Perk items? [set to false if using StackModifier]" If this conflicts with your stack plugin and needs to be disabled, or if clothing (which is generally not stackable, but made so by a stack plugin) is having issues where when split, it loses its buff, then you need to speak to the developer of whatever stack plugin you use and tell them to handle item splitting correctly by persisting the item.name and item.text fields when an item is split. Nothing I can do about it from my end unfortunately.
  11. Changed Status from Pending to Closed
  12. imthenewguy

    backpack

    What kind of backpack?
  13. Nothings changed from my end when it comes to API or hook calls. I simply updated old cliff paths, and added config options to disable items from being sold in shop.
  14. imthenewguy

    Awareness Skill

    Yeah not a bad idea.
  15. Changed Status from Pending to Closed Changed Fixed In to Next Version
  16. Will add it to the next version of skill tree.
  17. imthenewguy

    Awareness does not work

    Nope it should work as soon as its activated. The distance is dictated by the config, and the types are also part of the config in buff settings.
  18. Changed Status from Pending to Closed
  19. There is not. Redeemrecycler spawns a recycler using credits from the redeemable recyclers, so it wouldnt work the way you want it to. Why not just create an item in the shop that's the same as my recycler item? Would work fine.
  20. There's no difference between the way the scores initialize in 1.5.11 and 1.5.10. Both open, read and close all data files int he SkillTree folder and store the score data into a dictionary when the plugin initializes. Did you update the plugin after your server had already loaded? Ive made changes to the next version to update to a coroutine so that it loads x profiles every game tick, rather than all profiles immediately on start.
  21. Unload the plugin. Save a copy of your data file. Delete the data file from your server. Reload the plugin. Does the issue get resolved?
  22. Nah there isn't. The issue is the size of the scroll bar is calculated based on text size, so adjusting the size would throw out the scroll bar calculation entirely.
  23. You aren't updating it in the plugin (.cs file) are you? You need to update the value in the config (.json file).
1.8m

Downloads

Total number of downloads.

8.4k

Customers

Total customers served.

126.6k

Files Sold

Total number of files sold.

2.6m

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.