Files
wsmud/world/map/new/new3.js
2026-05-26 16:41:20 +08:00

13 lines
588 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
this.inherits(ROOM);
this.name = "训练室"
this.desc = "这是一间空荡荡的训练室所有要去闯荡江湖的人们都需要在这里学习一些基本知识就算你是MUD老鸟你也需要了解下在没有命令可以输入的情况下如何挖泥。";
this.exits = { "north": "new/new2" };
this.on_enter = function (me) {
var npc = this.find_obj_bypath("new/mutouren");
if (!npc) {
NPC.CREATE("new/mutouren", me.environment);
}
}
this.on_leave = function (me, dir) {
if (dir != "north") return me.notify_fail("你还没去交任务。");
}