summaryrefslogtreecommitdiff
path: root/npc/003-0-1
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2018-03-20 22:42:06 -0300
committerJesusaves <cpntb1@ymail.com>2018-03-20 22:42:06 -0300
commita2815a64f68885b085c28b0c8f24302e63a67e65 (patch)
treec4c8996b56aebd9878097c2935b3c85a0753eac0 /npc/003-0-1
parent46af75f95a875c1fe1c3b3418af65da536abe51d (diff)
downloadserverdata-a2815a64f68885b085c28b0c8f24302e63a67e65.tar.gz
serverdata-a2815a64f68885b085c28b0c8f24302e63a67e65.tar.bz2
serverdata-a2815a64f68885b085c28b0c8f24302e63a67e65.tar.xz
serverdata-a2815a64f68885b085c28b0c8f24302e63a67e65.zip
Include stautes (possible final version)
Diffstat (limited to 'npc/003-0-1')
-rw-r--r--npc/003-0-1/_import.txt1
-rw-r--r--npc/003-0-1/statues.txt60
2 files changed, 61 insertions, 0 deletions
diff --git a/npc/003-0-1/_import.txt b/npc/003-0-1/_import.txt
index 1095fd386..b62d85083 100644
--- a/npc/003-0-1/_import.txt
+++ b/npc/003-0-1/_import.txt
@@ -1,3 +1,4 @@
// Map 003-0-1: The Magic Guild
// This file is generated automatically. All manually added changes will be removed when running the Converter.
"npc/003-0-1/_warps.txt",
+"npc/003-0-1/statues.txt",
diff --git a/npc/003-0-1/statues.txt b/npc/003-0-1/statues.txt
new file mode 100644
index 000000000..d663101b9
--- /dev/null
+++ b/npc/003-0-1/statues.txt
@@ -0,0 +1,60 @@
+// TMW-2 Script
+// Author:
+// Jesusalva
+// Description:
+// Currently Leaderboards + GM Command Log. But is a free npc.
+
+003-0-1,45,28,0 script Fortune Statue NPC_STATUE_BANKER,{
+
+ HallOfFortune();
+ close;
+
+OnInit:
+ .sex = G_MALE;
+ .distance = 5;
+ end;
+}
+
+003-0-1,51,28,0 script Strength Statue NPC_STATUE_GUARD,{
+
+ HallOfLevel();
+ close;
+
+OnInit:
+ .sex = G_MALE;
+ .distance = 5;
+ end;
+}
+
+003-0-1,34,38,0 script Hero Statue NPC_STATUE_ANDREI,{
+
+ mes l("This statue was built for memory of Andrei Sakar, the greatest hero this world has even seen.");
+ mes l("For defending Hurnscald alone and saving all its inhabitants.");
+ mes l("For fighting against the Monster King once and getting out alive to tell the story.");
+ mes l("For all his great deeds, and thousands of lives he saved, this statue is in his honor.");
+ if ($MOST_HEROIC$ == "")
+ close;
+ next;
+ mes l("Also in honor of @@, who did a great act of bravery recently. May they keep protecting our world!", $MOST_HEROIC$);
+ close;
+
+OnInit:
+ .sex = G_MALE;
+ .distance = 5;
+ end;
+}
+
+003-0-1,82,24,0 script Worker Statue NPC_STATUE_CONTRIBUTOR,{
+
+ mes l("This is in honor of all the [@@help://about-server|Contributors@@] who helped rebuilding this world, after the Monster War outbreak.");
+ mes l("And also in notable mention of those who sponsor the Alliance and its administrative structure.");
+ mes l("");
+ mes l("Saulc.");
+ close;
+
+OnInit:
+ .sex = G_MALE;
+ .distance = 5;
+ end;
+}
+