diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-07-14 23:49:23 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-07-14 23:49:23 -0300 |
commit | f62b882f9b595141ed38de5aa2135a71314e46c0 (patch) | |
tree | 5f9df4183f83cb840466d7011e2df872bb4658f8 /npc/00000SAVE/021-1_michel.forum.txt | |
parent | 8e55d3c5c591f23f86ea76adbfd67eab4979356f (diff) | |
download | serverdata-f62b882f9b595141ed38de5aa2135a71314e46c0.tar.gz serverdata-f62b882f9b595141ed38de5aa2135a71314e46c0.tar.bz2 serverdata-f62b882f9b595141ed38de5aa2135a71314e46c0.tar.xz serverdata-f62b882f9b595141ed38de5aa2135a71314e46c0.zip |
Rescue three quests from LoF forums, and add them to 0000SAVE (not converted)
Diffstat (limited to 'npc/00000SAVE/021-1_michel.forum.txt')
-rw-r--r-- | npc/00000SAVE/021-1_michel.forum.txt | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/npc/00000SAVE/021-1_michel.forum.txt b/npc/00000SAVE/021-1_michel.forum.txt new file mode 100644 index 000000000..1cd1e1cb1 --- /dev/null +++ b/npc/00000SAVE/021-1_michel.forum.txt @@ -0,0 +1,41 @@ +021-1.gat,49,123,0|script |Michel|111,{ + +mes "[Michel]"; +mes "\"I need some help could you help me please?""; +goto L_Michelmenu; + +L_Michelmenu: +menu +"Sure i will help you", L_Sure +"Nooo Michel", L_WrongKey +goto L_Close; + + +L_Sure: +mes "[Michel]"; +mes "\"I need 25 Raw Logs, 20 Roots, 15 Reed Bundles and 10.000 gp for Iten.\""; +menu +"Sure.", L_Sure, +"What a ripoff! , No way!", -; +goto L_Close; + +L_Sure: +if (countitem("Raw Log") < 25) goto L_Missing; +if (countitem("Reed Bundle") <15) goto L_Missing; +if (countitem("Root") <20) goto L_Missing; +if (Zeny < 10000) goto L_NotEnoughMoney; +getinventorylist; +if (@inventorylist_count == 100 && countitem("Raw Log") > 25 && countitem("Reed Bundle") > 15 && countitem("Root") > 20) goto L_Full; + +delitem "Raw Log", 25; +delitem "Reed Bundle", 15; +delitem "Root", 20; +set Zeny, Zeny - 10000 +getitem "Iten", 1; +mes "\"Here its your towel..Enjoy it.\""; +goto L_Close; + +L_WrongKey: +mes "Land of Fire is beautiful server."; +close; +) |