Jump to content

imthenewguy

Creator
  • Posts

    3,428
  • Joined

  • Last visited

Everything posted by imthenewguy

  1. Repeat the process again.
  2. I see it. Unload SurvivalArena. Delete the map file (oxide/data/survivalArena/World_2_0_Arena). Reload the plugin. Should fix the issue.
  3. imthenewguy

    Awareness does not work

    Any console errors when you unlock the skill? Are you close enough to the entity for it to appear? It adds a monobehaviour after you unlock the skill, so there shouldnt be an issue or conflict with other plugins.
  4. imthenewguy

    Awareness does not work

    What entity are you near that it would trigger?
  5. Yeah will just work automatically.
  6. imthenewguy

    backpack

    Just tested on my server. I loaded up a backpack with items, had items in my hotbar and main container. Joined the game. Waited for game to start. F1 killed myself. Respawned and was placed in my original location and reassigned all of my equipment (including my backpack).
  7. 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(); }
  8. imthenewguy

    Error in harmony patch

    Changed Status from Pending to Closed
  9. You would need to create specific items or call the ipgive command to give them a random item Id say.
  10. 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.
  11. imthenewguy

    Night time settings

    Ya
  12. imthenewguy

    Night time settings

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

    backpack

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

    Night time settings

    What command?
  16. 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.
  17. Changed Status from Pending to Closed
  18. imthenewguy

    backpack

    What kind of backpack?
  19. 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.
  20. imthenewguy

    Awareness Skill

    Yeah not a bad idea.
  21. Changed Status from Pending to Closed Changed Fixed In to Next Version
  22. Will add it to the next version of skill tree.
  23. 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.
  24. Changed Status from Pending to Closed
  25. 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.
1.6m

Downloads

Total number of downloads.

7.7k

Customers

Total customers served.

115.3k

Files Sold

Total number of files sold.

2.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.