-
Posts
3,842 -
Joined
-
Last visited
Content Type
Profiles
Downloads
Forums
Store
Support
DOWNLOADS EXTRA
Services
Everything posted by imthenewguy
-
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
-
- 151 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
-
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.
-
Yeah not a bad idea.
-
Suggestion: Change XP Notifier Text Color For Event
imthenewguy replied to ChardaZAR's Support Request in Support
Changed Status from Pending to Closed Changed Fixed In to Next Version -
Suggestion: Change XP Notifier Text Color For Event
imthenewguy replied to ChardaZAR's Support Request in Support
Will add it to the next version of skill tree. -
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.
-
Failed to call hook "OnServerInitialized"
imthenewguy replied to Andariel's Support Request in Support
Changed Status from Pending to Closed -
- 78 comments
-
- #recycler
- #monetization
- (and 5 more)
-
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.
-
Failed to call hook "OnServerInitialized"
imthenewguy replied to Andariel's Support Request in Support
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? -
- 1,333 comments
-
- 1
-
-
- #leveling
- #progression
- (and 19 more)
-
- 1,333 comments
-
- #leveling
- #progression
- (and 19 more)