diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-04-09 11:00:49 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-04-09 11:00:49 -0300 |
commit | 8a4bf716002a017de77fe7df301ef8e4aaf00a2e (patch) | |
tree | 4947d0b015baad639fa07133369e9a09c8a468bc /npc/008-3-1 | |
download | serverdata-8a4bf716002a017de77fe7df301ef8e4aaf00a2e.tar.gz serverdata-8a4bf716002a017de77fe7df301ef8e4aaf00a2e.tar.bz2 serverdata-8a4bf716002a017de77fe7df301ef8e4aaf00a2e.tar.xz serverdata-8a4bf716002a017de77fe7df301ef8e4aaf00a2e.zip |
Initial commit
Diffstat (limited to 'npc/008-3-1')
-rw-r--r-- | npc/008-3-1/_import.txt | 5 | ||||
-rw-r--r-- | npc/008-3-1/_mobs.txt | 8 | ||||
-rw-r--r-- | npc/008-3-1/_warps.txt | 3 | ||||
-rw-r--r-- | npc/008-3-1/arkim.txt | 56 |
4 files changed, 72 insertions, 0 deletions
diff --git a/npc/008-3-1/_import.txt b/npc/008-3-1/_import.txt new file mode 100644 index 00000000..fa138e1f --- /dev/null +++ b/npc/008-3-1/_import.txt @@ -0,0 +1,5 @@ +// Map 008-3-1: Bat Cave +// This file is generated automatically. All manually added changes will be removed when running the Converter. +"npc/008-3-1/_mobs.txt", +"npc/008-3-1/_warps.txt", +"npc/008-3-1/arkim.txt", diff --git a/npc/008-3-1/_mobs.txt b/npc/008-3-1/_mobs.txt new file mode 100644 index 00000000..b741a714 --- /dev/null +++ b/npc/008-3-1/_mobs.txt @@ -0,0 +1,8 @@ +// This file is generated automatically. All manually added changes will be removed when running the Converter. +// Map 008-3-1: Bat Cave mobs +008-3-1,42,35,7,5 monster Crafty 1018,7,1000,120000 +008-3-1,44,54,4,2 monster Crafty 1018,4,10000,75000 +008-3-1,43,39,5,2 monster Spider 1044,1,4000,8000 +008-3-1,46,53,5,2 monster Spider 1044,2,2000,7500 +008-3-1,52,31,0,0 monster Iron Vein 1047,1,600000,60000 +008-3-1,43,25,0,0 monster Coal Vein 1048,1,600000,60000 diff --git a/npc/008-3-1/_warps.txt b/npc/008-3-1/_warps.txt new file mode 100644 index 00000000..221789b7 --- /dev/null +++ b/npc/008-3-1/_warps.txt @@ -0,0 +1,3 @@ +// This file is generated automatically. All manually added changes will be removed when running the Converter. +// Map 008-3-1: Bat Cave warps +008-3-1,34,34,0 warp #008-3-1_34_34 0,0,008-1,128,139 diff --git a/npc/008-3-1/arkim.txt b/npc/008-3-1/arkim.txt new file mode 100644 index 00000000..665725bf --- /dev/null +++ b/npc/008-3-1/arkim.txt @@ -0,0 +1,56 @@ +// The Mana World scripts. +// Author: +// Jesusalva +// Description: +// Arkim the mad hermit and Mirak's brother + +008-3-1,41,34,0 script Arkim NPC_TERRY,{ + function arkimDaily; + mesn; + mesq l("Do you want help me with bats?"); + next; + select + l("Yes, please!"), + l("Bats? Actually... Why do you live here?"); // Who said they live here? + mes ""; + if (@menu == 1) + arkimDaily(); + mesn; + mesq l("Oh my, never really thought about it!"); + next; + mesn; + mesq l("I guess mostly I enjoy experimenting with the bats here."); + next; + select + l("I see... Ehm... I have to go..."), + l("What type of experimenting?"); + mes ""; + if (@menu == 1) + close; + mesn; + mesq l("Never really thought about it either..."); + next; + mesn; + mesc l("You watch as the hermit's old, lazy eyes open wide, and the old man comes alive with energy."); + mesq l("I GUESS I REALLY LIKE CUTTING THEM UP TO SEE HOW THEY WORK!! HAHAHA!"); + next; + select + l("YOU'RE CRAZY!"), + l("Right... me too! Can I help?"); + mes ""; + if (@menu == 2) + arkimDaily(); + close; + +function arkimDaily { + // DailyQuest(lvl, cost, count, item) + DailyQuest(20, 4, 3, BatWing); + close; +} + +OnInit: + .distance = 4; + end; + +} + |