public static int IsGainChapterStarReward(IntPtr l) { int result; try { DataSectionRift dataSectionRift = (DataSectionRift)LuaObject.checkSelf(l); int chapterId; LuaObject.checkType(l, 2, out chapterId); int index; LuaObject.checkType(l, 3, out index); bool b = dataSectionRift.IsGainChapterStarReward(chapterId, index); LuaObject.pushValue(l, true); LuaObject.pushValue(l, b); result = 2; } catch (Exception e) { result = LuaObject.error(l, e); } return(result); }