generalpeace.lua
来自「架设关键部分开始了。点击开始——程序」· LUA 代码 · 共 22 行
LUA
22 行
if NPCcon==0 then
if Char.Level<70 then
CmdNPC:Face(15);
CmdNPC:Say("这里是去沙漠的。前方有很多的怪物"); -- en "This is the way to Desert City. The monsters there are"
CmdNPC:Say("那些怪物明显比你强,你还是要去吗?"); -- en "much stronger than you. Are you sure you want to go there?"
CmdNPC:Link("不,我可不去送死",255); -- "No, I shall not go."
CmdNPC:Link("带我去那吧",1); -- "Please teleport me there."
CmdNPC:Finish();
else
CmdNPC:Face(15);
CmdNPC:Say("这里是去沙漠的。前方有很多的怪物"); -- en "This is the way to Desert City. The monsters there are"
CmdNPC:Say("你要去那里吗?"); -- "excellent, it is dangerous to go ahead"
CmdNPC:Link("是的",1); -- "I see."
CmdNPC:Link("不去了",255); -- NO
CmdNPC:Finish();
end;
end;
if NPCcon==1 then
API:GotoMap(client,1000,971,669);
end;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?