[ sell=5]首先解压pwpack20080320至D盘根目录(pwpack20080320是一个解压PCK文件的工具) 复制“武林外传\element\interfaces.pck”到D盘根目录 点击开始—运行—输入“cmd”—输入“d:”—输入“pwpack -x interfaces.pck”(解压interfaces.pck) 在D盘根目录找到interfaces.pck.files 打开"interfaces.pck.files\interfaces\script\ai_helper"(ai_helper请神的源文件~用记事本打开) 找到 if (not status[1]) or (not GameAI.IsPreparingPickingUp()) and (not GameAI.IsPickingUp()) then if self.m_tabValid then if self.m_tabCounter:IncCounter(dwPeriod) then self.m_tabCounter:Reset(); if not can_attack and target_hp == 0 then if self.m_pickValid then GameAI.PickUp(); end GameAI.SelectMonster(); end end 将他改成 if (not status[1]) or (not GameAI.IsPreparingPickingUp()) and (not GameAI.IsPickingUp()) then 档族 if self.m_tabValid then if self.m_tabCounter:IncCounter(dwPeriod) then self.m_tabCounter:Reset(); if target_hp < 1.1 then GameAI.SelectMonster(); end end (不要手动修改。。复制黏贴把。。 if target_hp < 1.1 then GameAI.SelectMonster(); 意思是判断怪物血量是否大于110%~大于则换怪。。应该不会有怪血超过100%把。。。) 然后找到 self.m_pickCounter:SetPeriod(800); 将他改成 self.m_pickCounter:SetPeriod(6000); (把拾取判定从原来的0.8秒判定一次改为6秒一次,) 好了保存 在CMD的界面中打“pwpack -z 0 -c interfaces.pck.files aa.pck"(这是从重新压缩并命名行族弊为aa.PCK的穗悄意思) 在D盘根目录找到aa.pck复制到桌面改名为interfaces.pck 替换”武林外传\element\interfaces.pck“的”interfaces.pck“ [/sell]