nameless_n,241,62,6 script Valkyrie Helms 404,{
// Variables
set @name$,"[Valkyrie Helms]"; //NPC Name
// Quest Script
mes @name$;
mes "Hello, ^5555FF" + strcharinfo(0) + "^000000!...";
mes "Select your quest";
menu "Valkyrie Helm",QUEST1,"Black Valkyrie Helm",QUEST2,"Brown Valkyrie Helm",QUEST3,"White Valkyrie Helm",QUEST4;
QUEST1:
next;
mes "Description:";
mes "1 edit";
mes "20 Black Dyestuff";
mes "100 Dark Crystal Fragment";
mes "100 Cursed Seal";
mes "1 Valkyrie Randgris Card";
next;
if(countitem(edit)<1)goto missing;
if(countitem(983)<20)goto missing;
if(countitem(7315)<100)goto missing;
if(countitem(7442)<100)goto missing;
if(countitem(4407)<1)goto missing;
next;
mes "Ok, you have all items take this";
next;
delitem edit,1;
delitem 983,20;
delitem 7315,100;
delitem 7442,100;
delitem 4407,1;
getitem 2357,1;
close;
npctalk "~ Congratulations ^^ ~";
QUEST2:
next;
mes "Description:";
mes "1 Valkyrie Helm";
mes "20 Black Dyestuff";
mes "100 Dark Crystal Fragment";
mes "100 Cursed Seal";
mes "1 Valkyrie Randgris Card";
next;
if(countitem(2357)<1)goto missing;
if(countitem(983)<20)goto missing;
if(countitem(7315)<100)goto missing;
if(countitem(7442)<100)goto missing;
if(countitem(4407)<1)goto missing;
next;
mes "Ok, you have all items take this";
next;
delitem 2357,1;
delitem 983,20;
delitem 7315,100;
delitem 7442,100;
delitem 4407,1;
getitem edit,1;
close;
npctalk "~ Congratulations ^^ ~";
QUEST3:
next;
mes "Description:";
mes "1 Black Valkyrie Helm";
mes "20 Black Dyestuff";
mes "100 Dark Crystal Fragment";
mes "100 Cursed Seal";
mes "1 Valkyrie Randgris Card";
next;
if(countitem(edit)<1)goto missing;
if(countitem(983)<20)goto missing;
if(countitem(7315)<100)goto missing;
if(countitem(7442)<100)goto missing;
if(countitem(4407)<1)goto missing;
next;
mes "Ok, you have all items take this";
next;
delitem edit,1;
delitem 983,20;
delitem 7315,100;
delitem 7442,100;
delitem 4407,1;
getitem edit,1;
close;
npctalk "~ Congratulations ^^ ~";
QUEST4:
next;
mes "Description:";
mes "1 Brown Valkyrie Helm";
mes "20 Black Dyestuff";
mes "100 Dark Crystal Fragment";
mes "100 Cursed Seal";
mes "2 Valkyrie Randgris Card";
next;
if(countitem(edit)<1)goto missing;
if(countitem(983)<20)goto missing;
if(countitem(7315)<100)goto missing;
if(countitem(7442)<100)goto missing;
if(countitem(4407)<1)goto missing;
next;
mes "Ok, you have all items take this";
next;
delitem edit,1;
delitem 983,20;
delitem 7315,100;
delitem 7442,100;
delitem 4407,1;
getitem edit,1;
close;
npctalk "~ Congratulations ^^ ~";
missing:
mes "Still do not have the necessary back when you have..";
close;
npctalk "~ Congratulations ^^ ~";
OnInit:
delwaitingroom;
waitingroom "¡Valkyrie Helms!",0;
}
something?