static int IsCommandValid(IntPtr L)
    {
        LuaScriptMgr.CheckArgsCount(L, 2);
        MatchStateTipOff obj  = (MatchStateTipOff)LuaScriptMgr.GetNetObjectSelf(L, 1, "MatchStateTipOff");
        Command          arg0 = (Command)LuaScriptMgr.GetNetObject(L, 2, typeof(Command));
        bool             o    = obj.IsCommandValid(arg0);

        LuaScriptMgr.Push(L, o);
        return(1);
    }