|
发表于 2012-3-13 14:28:45
|
显示全部楼层
MUSH解释版:【未测试】
-
- function simple_lingwu()
-
- wait.make(function()
- run("hp;dazuo 100")
- local l,w=wait.regexp('^.*你运功完毕,深深吸了口气,站了起来',5)
- if l==nil then
- simple_lingwu()
- return
- end
- if string.find(l,"你运功完毕,深深吸了口气,站了起来") then
- Execute("exert recover")
- Execute("lingwu blade 100")
- Execute("lian blade 50;exert regenerate")
- print("waiting 10 seconds to be continued...")
- wait.time(10)
- return
- end
- wait.time(5)
- end)
-
- end
- AddAlias("alias_simplelw","#slingwu","",alias_flag.Enabled + alias_flag.Replace,"simple_lingwu")
复制代码 |
|