⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 npc_excalibur_quest.txt

📁 JA++的最新...很多ROSF都用这个 ] 是个不错的东西-3-
💻 TXT
字号:
// Excalibur Quest NPC
// By: Syrus22
// Version 1.0
// Any comments or questions PM me on the Yare forums
// Description: This is a simple item quest NPC. The player must find an
// Angel Band, a Heaven Ring, and an Emperium. If they do they will receive
// the Excalibur.
// Modify By 蝴蝶君 Robert 2004-1-20 mailto:robert_st@21cn.com

prt_castle.gat,81,171,5	script	神秘的使者	108,{
	mes "[神秘的使者]";
	mes "你好,冒险家!很荣幸的告诉你,我们正在搜集传说中亚瑟王的神剑-石中剑。";
	mes "当然,如果你有更珍贵物品,我们也愿意以它来和你交换!";
	next;
	menu "询问所需物品",ExItems,"交换石中剑",ExCreate,"结束",ExEnd;
	ExItems:
	        mes "[神秘的使者]";
	        mes "我们现在所需要的是:天使发圈、华丽金属和光环,每种一个。";
	        close;
	ExCreate:
        	mes "[神秘的使者]";
		mes "好,让我看看你带来的东西!";
		next;
		if(countitem(2254)<1) goto NoAngel;
		if(countitem(2282)<1) goto NoHeaven;
		if(countitem(714)<1) goto NoEmp;
		delitem 2254,1;
		delitem 2282,1;
		delitem 714,1;
		getitem 1137,1;
		mes "[神秘的使者]";
		mes "恭喜!所需的物品已经齐全了,我现在就给你传说中的'石中剑'!";
		mes "感谢你的参与,祝你好运!";
		close;
	    	NoAngel:
			mes "[神秘的使者]";
			mes "对不起,你并没有把天使发圈带来!请重新检查你的物品。";
			close;
		NoHeaven:
			mes "[神秘的使者]";
			mes "对不起,你并没有把光环带来!请重新检查你的物品。";
			close;
		NoEmp:
			mes "[神秘的使者]";
			mes "对不起,你并没有把华丽金属带来!请重新检查你的物品。";
			close;
	ExEnd:
		mes "[神秘的使者]";
		mes "再见!";
        	close;
}

⌨️ 快捷键说明

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