这只是针对新手时期的师弟们,在打开任务检查内力的开关,跑去接任务的时候,如果内力不够设定的值,就会执行打坐准备内力。
偶而会遇上跑太快或网络卡顿一下,就发呆了。
打开job.lua
zhunbeineili_a=function()
if hp.qixue_per<50 and isInBags(drug.heal) then
exe('eat chantui yao')
end
exe('set 积蓄')
exe('dazuo '..hp.dazuo)
end
修改为等待0.5秒再执行打坐
zhunbeineili_a=function()
if hp.qixue_per<50 and isInBags(drug.heal) then
exe('eat chantui yao')
end
DoAfter (0.5, "set 积蓄")
DoAfter (0.7, 'dazuo '..hp.dazuo)
end