📄 generalpeace.lua
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -