|
@@ -138,6 +138,18 @@ end
|
|
|
------------------------------------------------------
|
|
------------------------------------------------------
|
|
|
-- 对外暴露接口
|
|
-- 对外暴露接口
|
|
|
------------------------------------------------------
|
|
------------------------------------------------------
|
|
|
|
|
+
|
|
|
|
|
+function isDot(human)
|
|
|
|
|
+ local isDot = false
|
|
|
|
|
+ for orderType in pairs(orderNameMap) do
|
|
|
|
|
+ if checkRed(human,orderType) == 1 then
|
|
|
|
|
+ isDot = true
|
|
|
|
|
+ break
|
|
|
|
|
+ end
|
|
|
|
|
+ end
|
|
|
|
|
+ return isDot
|
|
|
|
|
+end
|
|
|
|
|
+
|
|
|
function warOrderInfo(human,orderType)
|
|
function warOrderInfo(human,orderType)
|
|
|
local orderName = orderNameMap[orderType]
|
|
local orderName = orderNameMap[orderType]
|
|
|
local cfg = OrderExcel[orderName]
|
|
local cfg = OrderExcel[orderName]
|