Jump to content

imthenewguy

Creator
  • Posts

    3,435
  • Joined

  • Last visited

Everything posted by imthenewguy

  1. imthenewguy

    BUG

    Changed Status from Pending to Not a Bug
  2. imthenewguy

    Not working

    Do you get any messages in console when MovementSpeed is loaded/when you assign the permissions?
  3. Pop this into a support ticket for me please.
  4. That sounds like a feature that the crafting plugin should have. My plugin doesn't have any crafting features, so I wouldn't create a permission related to that.
  5. What permission did you give them?
  6. Auto spawning of the arena is only handled by EventHelper. Check the config option:"How often should we cycle through events" If you dont want EventHelper to handle it, you will need another plugin to handle it, or a schedule feature on your server to run the command to start the game.
  7. Repeat the process again.
  8. I see it. Unload SurvivalArena. Delete the map file (oxide/data/survivalArena/World_2_0_Arena). Reload the plugin. Should fix the issue.
  9. 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.
  10. imthenewguy

    Awareness does not work

    What entity are you near that it would trigger?
  11. Yeah will just work automatically.
  12. 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).
  13. 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(); }
  14. imthenewguy

    Error in harmony patch

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

    Night time settings

    Ya
  18. imthenewguy

    Night time settings

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

    backpack

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

    Night time settings

    What command?
  22. 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.
  23. Changed Status from Pending to Closed
  24. imthenewguy

    backpack

    What kind of backpack?
1.6m

Downloads

Total number of downloads.

7.7k

Customers

Total customers served.

115.4k

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.