25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- local luzhouFunctions=ZPFramework.ZPFrameworkClassImprot("zp_base.luaScript.ZPFunctions")
-
- --获取小家是否可以看牌
- function luzhouFunctions.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
-
- return luzhouFunctions
|