diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-03-20 22:42:06 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-03-20 22:42:06 -0300 |
commit | a2815a64f68885b085c28b0c8f24302e63a67e65 (patch) | |
tree | c4c8996b56aebd9878097c2935b3c85a0753eac0 /npc/003-0-1/statues.txt | |
parent | 46af75f95a875c1fe1c3b3418af65da536abe51d (diff) | |
download | serverdata-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/statues.txt')
-rw-r--r-- | npc/003-0-1/statues.txt | 60 |
1 files changed, 60 insertions, 0 deletions
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; +} + |