📄 code.py
字号:
def Run(this,CmdNPC):
if this._NPCcontrol==0:
if this._client.Char.Level<70:
CmdNPC.Face(15);
CmdNPC.Say("This is the way to Deserty City. The monsters there are");
CmdNPC.Say("much stronger than you. Are you sure you want to go there?");
CmdNPC.Link("No, I shall not go.", 255);
CmdNPC.Link("Please teleport me there.", 1);
CmdNPC.Finish();
elif this._client.Char.Level>69:
CmdNPC.Say("This is the way to Deserty City. Although you are");
CmdNPC.Say("excellent, it is dangerous to go ahead");
CmdNPC.Link("I see.", 1);
CmdNPC.Finish();
elif this._NPCcontrol==1:
this.SendCharacterInfo(this._client.Char);
this.SpawnCharacter(this._client,217,215,1000);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -