-
Posts
3,435 -
Joined
-
Last visited
Content Type
Profiles
Downloads
Forums
Store
Support
DOWNLOADS EXTRA
Services
Everything posted by imthenewguy
-
Changed Status from Pending to Not a Bug
-
Do you get any messages in console when MovementSpeed is loaded/when you assign the permissions?
-
- 197 comments
-
How to change how often Survival Arena spawns?
imthenewguy replied to DangerKittie's Support Request in Support
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. -
have stray rock and trees spowning under the arena
imthenewguy replied to MrDuck14's Support Request in Support
Repeat the process again. -
have stray rock and trees spowning under the arena
imthenewguy replied to MrDuck14's Support Request in Support
I see it. Unload SurvivalArena. Delete the map file (oxide/data/survivalArena/World_2_0_Arena). Reload the plugin. Should fix the issue. -
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.
-
What entity are you near that it would trigger?
-
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).
-
can you have it after wipe it deletes palyer data
imthenewguy replied to MrDuck14's Support Request in Support
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(); } -
Changed Status from Pending to Closed
-
- 135 comments
-
- #items
- #enhancement
-
(and 6 more)
Tagged with:
-
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.
-
Usage: givexp <player> <amount> <optional: ignore modifiers [default: false]>
-
can you have it after wipe it deletes palyer data
imthenewguy replied to MrDuck14's Support Request in Support
"Allow for recycler credits to carry over across a map wipe?": false -
DOes it happen when they leave, or die?
-
What command?
-
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.
-
Changed Status from Pending to Closed