|
楼主 |
发表于 2019-1-7 10:04:29
|
显示全部楼层
function outSldGive()
-- wait.make(function()
-- wait.time(2)
DeleteTemporaryTriggers()
create_triggerex_f('outsld1',"^(> )*你给船夫一块通行令牌。",'','outSldoff')
create_triggerex_f('outsld2',"^(> )*黄河入海口",'','outSldWait')
if score.party == '神龙教' and job.name == 'huashan' then
exe('out;#3s;give ling pai to chuan fu;give ling pai 2 to chuan fu')
create_timer_s('walkWait4',0.5,'outsldgivelp')
-- check_busy(outSldWait,3)
else
exe('out;#3s;give ling pai to chuan fu')
create_timer_s('walkWait4',0.5,'outsldgivelp')
-- check_busy(outSldWait,3)
end
end
function outsldgivelp()
if score.party == '神龙教' and job.name == 'huashan' then
exe('give ling pai to chuan fu;give ling pai 2 to chuan fu')
else
exe('give ling pai to chuan fu')
end
end
function outSldoff()
EnableTimer('walkWait4',false)
end
function outSldWait()
-- wait.make(function()
-- wait.time(6)
DeleteTemporaryTriggers()
locate()
check_busy(outSldCheck)
end |
评分
-
1
查看全部评分
-
|