📄 npc_quest.txt
字号:
// $Id: npc_quest.txt,v 1.1 2003/12/31 17:28:48 rovert Exp $
//-------------------- 'Balmung & Lord Kaho's Horns' Quest --------------------
// Modify By 蝴蝶君 Robert 2004-1-20 mailto:robert_st@21cn.com
// 这个脚本送出的两件物品为:神器三十二溯月和卡浩之角,个人认为任务过于简单
// 为免破坏平衡,请慎重使用。
prontera.gat,158,356,4 script 王室的信使 105,{
mes "[王室的信使]";
mes "欢迎来到普隆德拉,我是负责帮王室投递信件的信使。";
next;
menu "听他说什么",Lok,"离开",Lend;
Lok:
mes "[王室的信使]";
mes "这里有些差事可以让你选择,我想你应该会喜欢的。";
next;
menu "神器的差事",Lb,"卡浩之角的差事",Lkahos,"No",Lend;
Lb:
mes "[王室的信使]";
mes "神器的差事,需要收集以下物品:";
mes "120个钢铁";
mes "10个神之金属";
mes "10个风灵原石";
mes "10个火灵原石";
mes "10个水灵原石";
mes "10个土灵原石";
mes "10个风灵矿石";
mes "10个火灵矿石";
mes "10个水灵矿石";
mes "10个地灵矿石";
mes "还有100万Zeny。";
next;
if(countitem(999)<120 || countitem(984)<10 || countitem(996)<10 || countitem(994)<10
|| countitem(995)<10 || countitem(997)<10 || countitem(990)<10 || countitem(991)<10
|| countitem(992)<10 || countitem(993)<10 || countitem(994)<10)
goto Lend2;
if(Zeny<100000) goto NoGold;
mes "[王室的信使]";
mes "干得好!年轻人,愿这件神器能够给你带来好运!";
delitem 999,120;
delitem 984,10;
delitem 996,10;
delitem 994,10;
delitem 995,10;
delitem 997,10;
delitem 990,10;
delitem 991,10;
delitem 992,10;
delitem 993,10;
delitem 994,10;
set Zeny,Zeny-1000000;
getitem 1161,1;
close;
Lkahos:
mes "[王室的信使]";
mes "卡浩之角的任务,需要下面的这些材料:";
mes "1个触角头饰";
mes "10个星星的粉末";
mes "10个风灵原石";
mes "10个火灵原石";
mes "10个水灵原石";
mes "10个土灵原石";
mes "还有100万的Zeny。";
next;
if(countitem(2298) < 1 || countitem(1001)<10 || countitem(996)<10 || countitem(994)<10
|| countitem(995)<10 || countitem(997) <10 ) goto Lend2;
if(Zeny<100000) goto NoGold;
mes "[王室的信使]";
mes "干得好!希望这件神物能够给你带来好运!";
delitem 2298,1;
delitem 1001,10;
delitem 996,10;
delitem 994,10;
delitem 995,10;
delitem 997,10;
set Zeny,Zeny-1000000;
getitem 5013,1;
close;
Lend:
mes "[王室的信使]";
mes "愿你有美好的一天!";
close;
Lend2:
mes "[王室的信使]";
mes "对不起,你没有按照约定把所需的物品带来。";
mes "当你把物品找齐了再来找我吧!";
close;
NoGold:
mes "[王室的信使]";
mes "对不起,你没有足够的Zeny!";
close;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -