|
发表于 2018-4-23 18:12:22
|
显示全部楼层
你想提前做任务的话要改 shujian.lua
- function check_job()
- if xcexp==0 and hp.exp<1000000 then
- print('巡城到1M')
- kdummy=0
- return xunCheng()
- end
- if xcexp==1 and hp.exp<2000000 then
- print('巡城到2M')
- kdummy=0
- return xunCheng()
- end
-
- if score.party=="桃花岛" and (hp.shen>150000 or hp.shen<-150000) then
- return thdJiaohui()
- end
-
- --if score.gold and score.gold>150 and weaponUsave and countTab(weaponUsave)>0 and math.random(1,5)==1 then
- --return weaponUcheck()
- --end
- return check_halt(weaponUcheck)
- end
复制代码
把上面的exp<改成小于你的exp,两处都要改 |
|