diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-04-30 17:00:52 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-04-30 17:00:52 -0300 |
commit | e32fda927b3d1530f987a4771065902b50e29389 (patch) | |
tree | 6cdb6ec2945f6e533527c164d468cc61ce81cd1f /npc/001-5 | |
parent | f17df0c88d81dd00ee3b76b3c3d1f3bc23e11003 (diff) | |
download | serverdata-e32fda927b3d1530f987a4771065902b50e29389.tar.gz serverdata-e32fda927b3d1530f987a4771065902b50e29389.tar.bz2 serverdata-e32fda927b3d1530f987a4771065902b50e29389.tar.xz serverdata-e32fda927b3d1530f987a4771065902b50e29389.zip |
Missing files for previous commit
Diffstat (limited to 'npc/001-5')
-rw-r--r-- | npc/001-5/_import.txt | 5 | ||||
-rw-r--r-- | npc/001-5/_mobs.txt | 5 | ||||
-rw-r--r-- | npc/001-5/_warps.txt | 3 | ||||
-rw-r--r-- | npc/001-5/worker.txt | 58 |
4 files changed, 71 insertions, 0 deletions
diff --git a/npc/001-5/_import.txt b/npc/001-5/_import.txt new file mode 100644 index 000000000..5c94ec581 --- /dev/null +++ b/npc/001-5/_import.txt @@ -0,0 +1,5 @@ +// Map 001-5: Contributor's Cave +// This file is generated automatically. All manually added changes will be removed when running the Converter. +"npc/001-5/_mobs.txt", +"npc/001-5/_warps.txt", +"npc/001-5/worker.txt", diff --git a/npc/001-5/_mobs.txt b/npc/001-5/_mobs.txt new file mode 100644 index 000000000..ae0cabc8d --- /dev/null +++ b/npc/001-5/_mobs.txt @@ -0,0 +1,5 @@ +// This file is generated automatically. All manually added changes will be removed when running the Converter. +// Map 001-5: Contributor's Cave mobs +001-5,49,49,29,29 monster Blob 1008,2,35000,150000 +001-5,53,50,25,29 monster Snake 1122,1,35000,150000 +001-5,54,51,25,29 monster Night Scorpion 1077,1,35000,150000 diff --git a/npc/001-5/_warps.txt b/npc/001-5/_warps.txt new file mode 100644 index 000000000..a657e4a3a --- /dev/null +++ b/npc/001-5/_warps.txt @@ -0,0 +1,3 @@ +// This file is generated automatically. All manually added changes will be removed when running the Converter. +// Map 001-5: Contributor's Cave warps +001-5,22,80,0 warp #001-5_22_80 0,0,000-1,22,22 diff --git a/npc/001-5/worker.txt b/npc/001-5/worker.txt new file mode 100644 index 000000000..8db90a582 --- /dev/null +++ b/npc/001-5/worker.txt @@ -0,0 +1,58 @@ +// TMW2 Script +// Author: Jesusalva +// Workers from Worker Day + +001-5,23,73,0 script Soren NPC_CONSTR_WORKER,{ + mesn; + mesq l("You can get @@ anywhere, although here is a little easier to get.", getitemlink(Pearl)); + next; + mesn; + mesq l("You can trade them for quite nice items with my friend over there."); + close; +} + +001-5,75,69,0 script Simon NPC_CONSTR_WORKER,{ + mesn; + mesq l("Hey dude. During this event you can trade one @@ for more... useful items.", getitemlink(Pearl)); + if (countitem(Pearl) == 0) + close; + next; + select( + l("Nothing right now."), + l("5x Strange Coins"), + l("2x Snake Egg"), + l("1x Bronze Gift"), + l("800 GP"), + rif(countitem(Pearl) >= 2, l("Trade 2 Pearl for a Silver Gift")), + l("Nothing right now.") + ); + switch (@menu) { + case 1: + delitem Pearl, 1; + getitem StrangeCoin, 5; + break; + case 2: + delitem Pearl, 1; + getitem SnakeEgg, 2; + break; + case 3: + delitem Pearl, 1; + getitem BronzeGift, 1; + break; + case 4: + delitem Pearl, 1; + Zeny=Zeny+800; + break; + case 5: + delitem Pearl, 2; + getitem SilverGift, 1; + break; + + } + + close; + + +} + + |