|
一般在华山任务结束qie corpse时huashan.lua
huashan_cut_act=function()
DeleteTimer('perform')
weapon_unwield()
weaponWieldCut()
for i=1,5 do
exe('halt;get ling pai from corpse '..i)
exe('qie corpse '..i)
end
end
这里装备上了,因为mu jian ,blade 是后来买的,所以做第i=1装备上了,
任务时发现在pfm里加上unwield mu jian还好,但我用玄虚刀法时,unwield blade 把shape longquan blade 给拿下来了
解决办法
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 blade;unwield mu jian;unwield gang fu;give head to yue lingshan;hp')
end
身上有啥这里填啥,没买的不要填,要不然出问题!我是三件都买身上了 |
|