tmobj03.lua
来自「two legendary musicians are equivalent t」· LUA 代码 · 共 42 行
LUA
42 行
--description: 唐门出师任务 竹丝洞第三层宝箱
--author: yuanlan
--date: 2003/3/13
function main()
UTask_tm = GetTask(2);
if (UTask_tm == 67) then
Say("一柄残破生锈的铁剑。", 2, "要/accept", "不要/refuse")
end;
if (UTask_tm == 68) then
Say("宝箱已空。", 0)
end;
if (UTask_tm == 69) then
Say("你已打开了另一个宝箱,不能再开启此宝箱。", 0)
end;
end;
function accept()
AddEventItem("七星绝命剑");
Msg2Player("得到七星绝命剑。");
SetTask(2, 68);
end;
function refuse()
end;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?