📄 code.py
字号:
def Run(this,CmdNPC):
if this._NPCcontrol==0:
CmdNPC.Say("Forty days` dedline is coming. I have no clues at all. What");
CmdNPC.Say("can I do.");
CmdNPC.Link("What is wrong with you?", 1);
CmdNPC.Link("I am just passing by.", 255);
CmdNPC.Finish();
elif this._NPCcontrol==1:
CmdNPC.Say("Last month, the government entrusted us to escort the");
CmdNPC.Say("Peace Jade. It is a great mission so we deployed hundreds");
CmdNPC.Say("of bodyguards");
CmdNPC.Link("And what was wrong?", 2);
CmdNPC.Finish();
elif this._NPCcontrol==2:
CmdNPC.Say("On the way to Desert City, all the bodyguards were killed");
CmdNPC.Say("and Peace Jade was stolen. But we have no clues of it at");
CmdNPC.Say("all.");
CmdNPC.Link("That is very bad.", 3);
CmdNPC.Link("I had better leave now.", 255);
CmdNPC.Finish();
elif this._NPCcontrol==3:
CmdNPC.Say("The government was furious about it. He commanded us to get");
CmdNPC.Say("it back in 40 days. Otherwise we'll have to pay for it.");
CmdNPC.Say("Now, 30 days have passed and I still have no idea at all.");
CmdNPC.Link("Let me have a try.", 4);
CmdNPC.Link("Sigh, god bless you.", 255);
CmdNPC.Finish();
elif this._NPCcontrol==4:
CmdNPC.Say("That is very kind of you.");
CmdNPC.Link("You are welcome.", 255);
CmdNPC.Finish();
elif this._NPCcontrol==5:
CmdNPC.Say("How is the case going on?");
CmdNPC.Link("I will try my best", 255);
CmdNPC.Finish();
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -