来自 vMenu 的控制台消息是什么

what is this console message from vMenu

我的控制台出现来自 vMenu 的错误? 有人知道是什么吗?

Error invoking callback for event playerConnecting: System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.MissingMethodException: Method not found: int CitizenFX.Core.Native.API.StartFindKvp(string) at vMenuServer.BanManager.CheckForBans (CitizenFX.Core.Player source, System.String playerName, CitizenFX.Core.CallbackDelegate kickCallback) [0x0000d] in :0 at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 Exception_EndOfInnerExceptionStack at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 at System.Delegate.DynamicInvokeImpl (System.Object[] args) [0x000e7] in :0 at System.MulticastDelegate.DynamicInvokeImpl (System.Object[] args) [0x00008] in :0 at System.Delegate.DynamicInvoke (System.Object[] args) [0x00000] in :0 at CitizenFX.Core.EventHandlerEntry.Invoke (System.String sourceString, System.Object[] args) [0x00064] in C:\gl\buildsff63adb[=10=]\cfx\fivem\code\client\clrcore\EventHandlerDictionary.cs:89

看起来vMenu正在使用反射来调用某个函数。

反射可以像这样抛出运行时异常有两个原因。

  • 没有引用包含所述函数的程序集
  • 程序集存在,但版本错误,不包含所需的功能或特定的重载。

您应该尝试使用另一个版本并重新安装(最好尝试另一个版本)

否则在作者的 github 上启动错误以获得建议 and/or 修复。