new_1-1,117,116,4 script Ruminn#1 4_M_NOV_RUMIN,1,9,{
if(Freecostume >= 1) {
mes "[Ruminn]";
mes "Proceed to the training grounds now! and meet new people!";
mes "Enjoy the world or Ragnarok!";
close;
}
mes "[Ruminn]";
mes "Good Day Adventurer!";
mes "Please choose only one Costume to wear!";
next;
mes "[Ruminn]";
mes "These costumes are ^FF0000character bound^000000";
mes "^0000FFCannot be trade, storage, drop, sell to npc, and cart.^000000";
menu "Costume Happy Lunatic Hanging Ear",L_1,"Costume Over Protector",L_2,"Costume Polar Bear Cap",L_3,"Costume Hunting Cap",L_4,"Costume Tendrilion Hat",L_5,"I don't want a costume!",-;
close;
L_1:
next;
mes "[Ruminn]";
mes "Are you sure you want this costume?";
mes "^FF0000Costume Happy Lunatic Hanging Ear^000000";
menu "Yes I'm sure!",B_1,"No, I don't want that.",-;
close;
B_1:
next;
mes "[Ruminn]";
mes "Okay here is your free costume!";
mes "This costume has no weight so don't worry.";
getitem 20298,1;
Freecostume += 1;
close;
L_2:
next;
mes "[Ruminn]";
mes "Are you sure you want this costume?";
mes "^ff0000Costume Over Protector^000000";
menu "Yes I'm sure!",B_2,"No, I don't want that.",-;
close;
B_2:
next;
mes "[Ruminn]";
mes "Okay here is your free costume!";
mes "This costume has no weight so don't worry.";
getitem 20283,1;
Freecostume += 1;
close;
L_3:
next;
mes "[Ruminn]";
mes "Are you sure you want this costume?";
mes "^ff0000Costume Polar Bear Cap^000000";
menu "Yes I'm sure!",B_3,"No, I don't want that.",-;
close;
B_3:
next;
mes "[Ruminn]";
mes "Okay here is your free costume!";
mes "This costume has no weight so don't worry.";
getitem 20274,1;
Freecostume += 1;
close;
L_4:
next;
mes "[Ruminn]";
mes "Are you sure you want this costume?";
mes "^ff0000Costume Hunting Cap^000000";
menu "Yes I'm sure!",B_4,"No, I don't want that.",-;
close;
B_4:
next;
mes "[Ruminn]";
mes "Okay here is your free costume!";
mes "This costume has no weight so don't worry.";
getitem 20204,1;
Freecostume += 1;
close;
L_5:
next;
mes "[Ruminn]";
mes "Are you sure you want this costume?";
mes "^ff0000Costume Tendrilion Hat^000000";
menu "Yes I'm sure!",B_5,"No, I don't want that.",-;
close;
B_5:
next;
mes "[Ruminn]";
mes "Okay here is your free costume!";
mes "This costume has no weight so don't worry.";
getitem 20165,1;
Freecostume += 1;
close;
}