diff options
author | Jesusaves <cpntb1@ymail.com> | 2022-10-23 21:44:22 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2022-10-23 21:44:22 -0300 |
commit | a7c45a192268da2601cef47a4cdba987ae2327ca (patch) | |
tree | c5fb5b97db109fe7106496dd96498c475881046b /npc/017-0 | |
download | serverdata-a7c45a192268da2601cef47a4cdba987ae2327ca.tar.gz serverdata-a7c45a192268da2601cef47a4cdba987ae2327ca.tar.bz2 serverdata-a7c45a192268da2601cef47a4cdba987ae2327ca.tar.xz serverdata-a7c45a192268da2601cef47a4cdba987ae2327ca.zip |
Initial commit (Moubootaur Legends fork)
Diffstat (limited to 'npc/017-0')
-rw-r--r-- | npc/017-0/_import.txt | 5 | ||||
-rw-r--r-- | npc/017-0/_mobs.txt | 28 | ||||
-rw-r--r-- | npc/017-0/_warps.txt | 3 | ||||
-rw-r--r-- | npc/017-0/wizard.txt | 31 |
4 files changed, 67 insertions, 0 deletions
diff --git a/npc/017-0/_import.txt b/npc/017-0/_import.txt new file mode 100644 index 0000000..8597a69 --- /dev/null +++ b/npc/017-0/_import.txt @@ -0,0 +1,5 @@ +// Map 017-0: Mystic Forest +// This file is generated automatically. All manually added changes will be removed when running the Converter. +"npc/017-0/_mobs.txt", +"npc/017-0/_warps.txt", +"npc/017-0/wizard.txt", diff --git a/npc/017-0/_mobs.txt b/npc/017-0/_mobs.txt new file mode 100644 index 0000000..85cebf7 --- /dev/null +++ b/npc/017-0/_mobs.txt @@ -0,0 +1,28 @@ +// This file is generated automatically. All manually added changes will be removed when running the Converter. +// Map 017-0: Mystic Forest mobs +017-0,54,49,26,23 monster Centaur 1139,8,90000,80000 +017-0,55,40,32,19 monster Living Potato 1181,15,60000,45000 +017-0,57,76,20,19 monster Fluffy 1022,8,60000,45000 +017-0,171,43,81,19 monster Living Potato 1181,15,60000,45000 +017-0,241,92,43,51 monster Wind Fairy 1185,11,60000,45000 +017-0,222,154,25,49 monster Nature Fairy 1186,12,60000,45000 +017-0,201,182,25,49 monster Forest Mushroom 1060,13,60000,45000 +017-0,163,196,25,29 monster Tipiu 1015,8,60000,45000 +017-0,72,123,26,19 monster Archant 1026,8,60000,45000 +017-0,102,85,19,19 monster Skeleton 1137,8,60000,45000 +017-0,144,107,25,49 monster Forain 1061,12,60000,45000 +017-0,164,89,30,24 monster Scar 1045,8,60000,45000 +017-0,95,178,39,43 monster Sea Slime Mother 1244,8,60000,45000 +017-0,94,123,26,25 monster Bluepar 1177,8,60000,45000 +017-0,237,150,25,24 monster Red Mushroom 1042,18,60000,45000 +017-0,145,127,26,24 monster Wicked Mushroom 1176,12,60000,45000 +017-0,149,98,29,53 monster Vampire Bat 1063,18,60000,45000 +017-0,253,186,6,11 monster Training Dummy 1021,6,10000,10000 +017-0,53,83,43,59 monster Red Butterfly 1025,30,60000,45000 +017-0,262,182,66,63 monster Red Butterfly 1025,30,60000,45000 +017-0,162,121,133,110 monster Cyan Butterfly 1172,140,60000,30000 +017-0,125,131,108,114 monster Alizarin Plant 1188,45,45000,45000 +017-0,161,130,98,102 monster Cobalt Plant 1136,45,45000,45000 +017-0,187,119,98,102 monster Gamboge Plant 1134,45,45000,45000 +017-0,156,143,98,102 monster Mauve Plant 1135,45,45000,45000 +017-0,152,112,31,32 monster Shadow Plant 1189,25,60000,45000 diff --git a/npc/017-0/_warps.txt b/npc/017-0/_warps.txt new file mode 100644 index 0000000..499b7ac --- /dev/null +++ b/npc/017-0/_warps.txt @@ -0,0 +1,3 @@ +// This file is generated automatically. All manually added changes will be removed when running the Converter. +// Map 017-0: Mystic Forest warps +017-0,23,78,0 warp #017-0_23_78 0,3,017-1,229,86 diff --git a/npc/017-0/wizard.txt b/npc/017-0/wizard.txt new file mode 100644 index 0000000..966ca0a --- /dev/null +++ b/npc/017-0/wizard.txt @@ -0,0 +1,31 @@ +// TMW2 Script +// Author: +// Jesusalva +// Description: +// Wizard at Magic Academy Entrance +// TODO: Training for Academy Students + +017-0,245,223,0 script Red Wizard NPC_RED_WIZARD_F,{ + mesn; + mesq l("Hello. I am the instructor assigned to the magic range training field."); + if (!MAGIC_LVL) + close; + next; + mesn; + mesq l("Do you wish to return to the Academy?"); + next; + select + l("Not yet."), + l("Yes please."); + mes ""; + closeclientdialog; + if (@menu == 2) + warp "027-1", 46, 91; + close; + +OnInit: + .distance = 4; + .sex = G_FEMALE; + end; +} + |