|
理相不好的时候,做hs2导致内力打空,无法装备武器,qie corpse的时候发呆了,今天我就遇上了。也给别的师弟新手们提醒一下,我这里有个解决办法:运行iset,把木剑勾选上。
打开weapon.lua
weaponWieldCut=function()
for p in pairs(Bag) do
if Bag[p].kind and weaponKind[Bag[p].kind] and weaponKind[Bag[p].kind]=="cut" then
if not (Bag[p].kind == "staff" and weaponUsave[p]) then
for q in pairs(Bag) do
if Bag[q].kind == "staff" and weaponUsave[q] then
exe('unwield '.. Bag[q].fullid )
end
end
exe('wield mu jian')
end
end
end
checkWield()
end
防止拿木剑做任务,在岳灵珊那里也修改一下:
打开huashan.lua
huashan_yls=function()
DeleteTriggerGroup("huashan_yls")
create_trigger_t('huashan_yls1','^(> )*(这里没有这个人。|你身上没有这样东西。|这人好象不是你杀的吧?|你的令牌呢|你还没有去找恶贼,怎么就来祭坛了?)','','huashan_yls_fail')
create_trigger_t('huashan_yls2','^(> )*岳灵珊在你的令牌上写下了一个 (一|二) 字。','','huashan_yls_ask')
create_trigger_t('huashan_yls3','^(> )*这好象不是你领的令牌吧?','','huashan_yls_lingpai')
SetTriggerOption("huashan_yls1","group","huashan_yls")
SetTriggerOption("huashan_yls2","group","huashan_yls")
SetTriggerOption("huashan_yls3","group","huashan_yls")
return exe('unwield mu jian;give head to yue lingshan;hp') ----这里加上unwield mu jian
end
如果身上出现木剑过多的情况,就在门派区说一下,我在把判断木剑过多的情况下,自动丢弃的代码发上来,运行了一天,我目前没有发现木剑过多的情况。
|
|