diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-06-21 17:41:08 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-06-21 17:41:08 -0300 |
commit | 6da4f9d728f5cb1bf4db103cab375671c39985a0 (patch) | |
tree | e85e85881d22e40155855e11a74995df29d5eff5 /npc/items/maps.txt | |
parent | 1aeb12161b1bbb318fd4c66762a91d60c408f615 (diff) | |
download | serverdata-6da4f9d728f5cb1bf4db103cab375671c39985a0.tar.gz serverdata-6da4f9d728f5cb1bf4db103cab375671c39985a0.tar.bz2 serverdata-6da4f9d728f5cb1bf4db103cab375671c39985a0.tar.xz serverdata-6da4f9d728f5cb1bf4db103cab375671c39985a0.zip |
Tulimshar City Map, given by Nard automatically, and referenced on Swezanne.
Many questions about “where's the fishing rod” and “where's Silvia”, let's make things simple.
Diffstat (limited to 'npc/items/maps.txt')
-rw-r--r-- | npc/items/maps.txt | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/npc/items/maps.txt b/npc/items/maps.txt new file mode 100644 index 000000000..cb9b418d6 --- /dev/null +++ b/npc/items/maps.txt @@ -0,0 +1,17 @@ +// TMW2 Script. +// Authors: +// Jesusalva +// Description: +// World Map Items + +function script wmap { + .@loc$=getarg(0, LOCATION$); + setnpcdialogtitle l("World Map - @@", l(.@loc$)); + setskin "map_"+.@loc$; + mes "Please keep your ManaPlus updated."; + select("Ok"); + setskin ""; + closeclientdialog; + return; +} + |