Failed to call hook 'OnServerCommand' on plugin 'TimedCommandBlocker v1.1.0' (NullReferenceException: Object reference not set to an instance of an object) at Oxide.Plugins.TimedCommandBlocker.CheckCommand (ConsoleSystem+Arg arg) [0x0005a] in <0db6803a543a4e4bba26459344969200>:0
at Oxide.Plugins.TimedCommandBlocker.OnServerCommand (ConsoleSystem+Arg arg) [0x00000] in <0db6803a543a4e4bba26459344969200>:0
at Oxide.Plugins.TimedCommandBlocker.DirectCallHook (System.String name, System.Object& ret, System.Object[] args) [0x000d3] in <0db6803a543a4e4bba26459344969200>:0
at Oxide.Plugins.CSharpPlugin.InvokeMethod (Oxide.Core.Plugins.HookMethod method, System.Object[] args) [0x00079] in <9affce1cd15c4ec183941adef8db1722>:0
at Oxide.Core.Plugins.CSPlugin.OnCallHook (System.String name, System.Object[] args) [0x000d8] in <4452f821def6406d834e4149849fe7ea>:0
at Oxide.Core.Plugins.Plugin.CallHook (System.String hook, System.Object[] args) [0x00060] in <4452f821def6406d834e4149849fe7ea>:0 NullReferenceException at CheckCommandFixed
I'm getting an error in my console that says
https://pastebin.com/tHVULMK3
If someone could help me out i would greatly appreciate it, thankyou!
if we coudnt find a fix by the end of the month. i will try to fix the error because i need this plugin on the server. but i never published any plugins so i dont know if thats against the rules
This appears to still be an issue, @orange is this going to be fixed or no?
Failed to call hook 'OnServerCommand' on plugin 'TimedCommandBlocker v1.1.1' (NullReferenceException: Object reference not set to an instance of an object)
at Oxide.Plugins.TimedCommandBlocker.CheckCommand (ConsoleSystem+Arg console) [0x0005a] in <32fb3b231c1f417fb8b48a26deeba7d4>:0at Oxide.Plugins.TimedCommandBlocker.OnServerCommand (ConsoleSystem+Arg arg) [0x00000] in <32fb3b231c1f417fb8b48a26deeba7d4>:0at Oxide.Plugins.TimedCommandBlocker.DirectCallHook (System.String name, System.Object& ret, System.Object[] args) [0x000d3] in <32fb3b231c1f417fb8b48a26deeba7d4>:0at Oxide.Plugins.CSharpPlugin.InvokeMethod (Oxide.Core.Plugins.HookMethod method, System.Object[] args) [0x00079] in <9affce1cd15c4ec183941adef8db1722>:0
at Oxide.Core.Plugins.CSPlugin.OnCallHook (System.String name, System.Object[] args) [0x000d8] in <4452f821def6406d834e4149849fe7ea>:0at Oxide.Core.Plugins.Plugin.CallHook (System.String hook, System.Object[] args) [0x00060] in <4452f821def6406d834e4149849fe7ea>:0 maybe no
Stil no fix? :(
i fix it. i change a lot on plugin and work perfect to me now. i dont know if i can post it beacuse original plugin its Orange
Arania
i fix it. i change a lot on plugin and work perfect to me now. i dont know if i can post it beacuse original plugin its Orange
We don't allow random versions to be posted in forum threads, but if the author isn't going to maintain the plugin anymore, it will be marked as Unmaintained for another developer to claim and maintain.
Would love to see you version Arania, feel free to pm me.
Thank you Wulf, that's understandable.
Thank you Wulf, that's understandable.
Can this be marked unmaintained now so someone can post a working version. It's been broken for a year now.
Well, 1 year and no solution. GG xD
The fix is quite simple. Find lines:
And replace it with this one:
The fix is quite simple. Find lines:
var command = console.cmd.FullName;
foreach (var arg in console.Args)
{
command += $" {arg}";
}And replace it with this one:
var command = console.cmd.FullName;
if (console.Args != null && console.Args.Length != 0)
{
foreach (var arg in console.Args)
{
command += $" {arg}";
}
} Fixed in latest version.
Locked automatically