|
发表于 2017-3-5 13:07:24
|
显示全部楼层
找到shujian.lua里面
score_check_xy=function(n,l,w) 这个,把这一条,意思是到整个改成下面这个样子。
具体数值参照自己情况
不要笑话我做的low逼
score_check_xy=function(n,l,w)
score.xiangyun=Trim(w[1]) --六个状态,生、旺、败、平、衰、死
score.xynum=tonumber(Trim(w[2]))
if score.xiangyun=='死' then smyteam=11 end
if score.xiangyun=='衰' and score.xynum<7 then smyteam=12 end
if score.xiangyun=='衰' and score.xynum>=7 then smyteam=11 end
if score.xiangyun=='平' then smyteam=12 end
if score.xiangyun=='败' and score.xynum<25 and score.xynum>19 then smyteam=16 end
if score.xiangyun=='败' and score.xynum<=19 and score.xynum>13 then smyteam=15 end
if score.xiangyun=='败' and score.xynum<=13 and score.xynum>7 then smyteam=14 end
if score.xiangyun=='败' and score.xynum<=7 then smyteam=13 end
if score.xiangyun=='生' and score.xynum<25 and score.xynum>19 then smyteam=16 end
if score.xiangyun=='生' and score.xynum<=19 and score.xynum>13 then smyteam=15 end
if score.xiangyun=='生' and score.xynum<=13 and score.xynum>7 then smyteam=14 end
if score.xiangyun=='生' and score.xynum<=7 then smyteam=13 end
if score.xiangyun=='旺' then smyteam=16 end
end |
|