local xuyongFunctions=ZPFramework.ZPFrameworkClassImprot("zp_base.luaScript.ZPFunctions") --获取小家是否可以看牌 function xuyongFunctions.getLittleIsCanLookCard() local roomInfo = app.room.roomInfo; local jsonInfo = json.decode(roomInfo.strGameInfo) if jsonInfo then if getNumBand(jsonInfo.specialRule,0x0020) > 0 then return true end end return false end --获取是否有圈牌 固定返回true function xuyongFunctions.getIsHaveQuanCard() local roomInfo = app.room.roomInfo; local jsonInfo = json.decode(roomInfo.strGameInfo) if jsonInfo and jsonInfo.specialRule then if getNumBand(jsonInfo.specialRule,0x0400) > 0 then return true end end return true end return xuyongFunctions