static public int GetDyingBattleNpcCount(IntPtr l) { try { int argc = LuaDLL.lua_gettop(l); if (argc == 2) { GameFramework.PluginFramework self = (GameFramework.PluginFramework)checkSelf(l); System.Int32 a1; checkType(l, 2, out a1); var ret = self.GetDyingBattleNpcCount(a1); pushValue(l, true); pushValue(l, ret); return(2); } else if (argc == 3) { GameFramework.PluginFramework self = (GameFramework.PluginFramework)checkSelf(l); System.Int32 a1; checkType(l, 2, out a1); GameFramework.CharacterRelation a2; checkEnum(l, 3, out a2); var ret = self.GetDyingBattleNpcCount(a1, a2); pushValue(l, true); pushValue(l, ret); return(2); } pushValue(l, false); LuaDLL.lua_pushstring(l, "No matched override function to call"); return(2); } catch (Exception e) { return(error(l, e)); } }