|
楼主 |
发表于 2018-1-21 22:27:13
|
显示全部楼层
找到了以前前辈发的解决方案了,这里我也贴一下。方便以后新人解决这个问题。
如果你现在是sx+hs2的话,需要修改一下代码
打开shujian.lua,查找checkPrepareOver()这个函数。内容如下:
function checkPrepareOver()
if lostletter==1 and needdolost==1 then
return letterLost()
end
if not job.last or job.last=="songxin" or needdolost==1 or job.last=="tdh" or job.last=="songmoya" or job.zuhe["hqgzc"] then
return check_xuexi()
else
return check_job()
end
end
大家看到吧,默认是"songxin""tdh""songmoya""hqgzc",也就是送信、天地会、宋摩崖、洪七公做菜这几个任务才会判断是否需要回门派学习,所以在里面只要加上华山或武当就可以了。如下:
if not job.last or job.last=="songxin" or needdolost==1 or job.last=="tdh" or job.last=="songmoya" or job.last=="huashan" or job.zuhe["hqgzc"] then
就可以了,这样华山任务后也就回去学习了。 |
|