you really should read the overview and FAQ
Current console commands are:
- zl.info - displays player info, supports name or steamid
- zl.lvl - set levels for specific players, see the FAQ for more info
- zl.pointsperhit - can change points per hit for all or specific skills (not saved to config)
ZLevelsRemastered
Moved
Total Downloads: 41,383 - First Release: Nov 15, 2015 - Last Update: Jul 22, 2018
- 5/5, 127 likes
-
-
In the Config Folder -
-
is there a way to lower the rate that xp is gained?
-
@Fujikura Can you add a hook to prevent penalty on entity death? Requested for compatibility with my Duelist plugin
-
-
Code:
if (Interface.CallHook("CanPenalize", player) != null) return;
Code:object CanPenalize(BasePlayer player) { if (!init || !player) return null; return IsDueling(player) ? (object)false : null; }
-
How do I move the GUI to the left hand side of screen? I have tried the 0.72 and 0.847 and it is still on right side by the health status etc
-
how do you wipe player data?!
[DOUBLEPOST=1498172503][/DOUBLEPOST]never mind I worked it out -
recommend adding a permission category that makes a group immune to level loss on death.
-
@Fujikura is there a way to prevent the xp loss?
-
Fujikura updated ZLevels Remastered with a new update entry:
2.5.9
[DOUBLEPOST=1498385649][/DOUBLEPOST]Code:if (Interface.CallHook("CanBePenalized", player) != null) return;
-
How does it work? Is this a group thing?
-
-
(18:03:19) | Failed to call hook 'OnItemCraft' on plugin 'ZLevelsRemastered v2.5.9' (InvalidCastException: Cannot cast from source type to destination type.)
(18:03:19) | at Oxide.Plugins.ZLevelsRemastered.OnItemCraft (.ItemCraftTask task, .BasePlayer crafter) [0x00000] in <filename unknown>:0
at Oxide.Plugins.ZLevelsRemastered.DirectCallHook (System.String name, System.Object& ret, System.Object[] args) [0x00000] in <filename unknown>:0
at Oxide.Plugins.CSharpPlugin.InvokeMethod (HookMethod method, System.Object[] args) [0x00000] in <filename unknown>:0
at Oxide.Core.Plugins.CSPlugin.OnCallHook (System.String name, System.Object[] args) [0x00000] in <filename unknown>:0
at Oxide.Core.Plugins.Plugin.CallHook (System.String hook, System.Object[] args) [0x00000] in <filename unknown>:0
Getting this with crafting enabled. I think its working but yeah, getting these errors in console. Cheers! -
Can we get an option of additive leveling instead of multiplicative?
It appears that the leveling bonuses are multiplicative and cumulative. If I'm right, that means fairly small resource gathering improvement early on, but increasingly large improvements as your level increases (just like compound interest).
Seems like it would be easy to make it additive instead, so that the progression is linear, and you don't get exploding resource gains at higher levels.
[DOUBLEPOST=1498430393][/DOUBLEPOST]
resource_multiplier = base + level_multiplier*0.1*(current_level-1)
At level 1 you get no improvement. If you want the resource scale factor to increase by just 1% per level, then you need level_multiplier = 0.1. If your base multiplier is 1, then you get 1.01x resources at level two, 1.02x resources at level three, and so on.
Multiplier settings:
0.1 yields 1% per more resources per level
0.2 yields 2% more per level
1.0 yields 10% more per level
...
And so on. -
Is there a way to get the ui into the bottom left corner of the screen?
Last edited by a moderator: Jun 26, 2017 -
never mind I worked it out
-