
git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@6511 54d463be-8e91-2dee-dedb-b68131a5f0ec
57 lines
1.8 KiB
Plaintext
57 lines
1.8 KiB
Plaintext
//===== eAthena Script =======================================
|
|
//= Sea Otter Hat Quest
|
|
//===== By: ==================================================
|
|
//= Halca (1.0)
|
|
//= Mass Zero (1.1)
|
|
//===== Current Version: =====================================
|
|
//= 1.5
|
|
//===== Compatible With: =====================================
|
|
//= Any eAthena Version.
|
|
//===== Description: =========================================
|
|
//= Seperate Sea Otter Hat quest.
|
|
//===== Additional Comments: =================================
|
|
//= 1.2 Fixed wrong labels, added missing text [Lupus]
|
|
//= 1.3 Fixed possible exploit [Lupus]
|
|
//= 1.4 Fixed required item (Lazy Racoon Hat -> Racoon Hat),
|
|
//= thanks to frugal [DracoRPG]
|
|
//= 1.5 Transformation Leaf -> Smokie Leaf [Playtester]
|
|
//============================================================
|
|
|
|
xmas.gat,184,267,4 script Pretty Rency 818,{
|
|
mes "[Pretty Rency]";
|
|
mes "Wow! you heard of a Sea Otter Hat?";
|
|
next;
|
|
mes "[Pretty Rency]";
|
|
mes "The requirements for this item, are very simple:";
|
|
mes "1 Raccoon Hat,";
|
|
mes "1 Smokie Leaf";
|
|
next;
|
|
mes "[Pretty Rency]";
|
|
mes "Do you have these items?";
|
|
next;
|
|
menu "Yes.",-,"No.",M_EXIT;
|
|
|
|
if(countitem(5033) < 1 || countitem(5064) < 1) GOTO L_NOITEM;//Items: Raccoon Hat, Transformation Leaf,
|
|
delitem 5033,1;//Items: Raccoon Hat,
|
|
delitem 5064,1;//Items: Smokie Leaf,
|
|
mes "[Pretty Rency]";
|
|
mes "Congratulations!";
|
|
next;
|
|
mes "[Pretty Rency]";
|
|
mes "Thanks for your items! Now I will make yours for you!";
|
|
next;
|
|
getitem 5078,1;//Items: Sea Otter Hat,
|
|
mes "[Pretty Rency]";
|
|
mes "Thanks! Byeeeeeee!";
|
|
close;
|
|
|
|
L_NOITEM:
|
|
mes "[Pretty Rency]";
|
|
mes "Sorry, not enough items.";
|
|
close;
|
|
|
|
M_EXIT:
|
|
mes "[Pretty Rency]";
|
|
mes "Byebye! Have a nice time in the world of Ragnarok!";
|
|
close;
|
|
} |