code.py

来自「架设关键部分开始了。点击开始——程序」· Python 代码 · 共 25 行

PY
25
字号
def Run(this,CmdNPC):
           if this._NPCcontrol==0:
                   CmdNPC.Face(15);
                   CmdNPC.Say("What can I do for you");
                   CmdNPC.Link("Visit the jail.", 1);
                   CmdNPC.Link("Just passing by.", 255);
                   CmdNPC.Finish();
           elif this._NPCcontrol==1:
                   CmdNPC.Face(15);
                   CmdNPC.Say("Give me 1000 silver, I will teleport you there. If your PK");
                   CmdNPC.Say("point are 100+, you will put into the jail.");
                   CmdNPC.Link("Here are 1000 silver.", 2);
                   CmdNPC.Link("If so, I will stay here.", 255);
                   CmdNPC.Finish();
           elif this._NPCcontrol==2:
                   if this._client.Char.Money>999:
                       Teleport_Gold=this._client.Char.Money-1000;
                       this._client.Char.Money=int(Teleport_Gold);
                       this.SendCharacterInfo(this._client.Char);
                       this.SpawnCharacter(this._client,29,72,6000);
                   elif this._client.Char.Money<1000:
                       CmdNPC.Say("Sorry, you do not have 1000 silver.");
                       CmdNPC.Link("I see.", 255);
                       CmdNPC.Finish();

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?