diff options
-rw-r--r-- | npc/005-1/_import.txt | 1 | ||||
-rw-r--r-- | npc/005-1/saxso.txt | 19 |
2 files changed, 20 insertions, 0 deletions
diff --git a/npc/005-1/_import.txt b/npc/005-1/_import.txt index 84542811c..d7d03baaf 100644 --- a/npc/005-1/_import.txt +++ b/npc/005-1/_import.txt @@ -7,6 +7,7 @@ "npc/005-1/mapflags.txt", "npc/005-1/maya.txt", "npc/005-1/sailors.txt", +"npc/005-1/saxso.txt", "npc/005-1/ship.txt", "npc/005-1/soul-menhir.txt", "npc/005-1/underground.txt", diff --git a/npc/005-1/saxso.txt b/npc/005-1/saxso.txt new file mode 100644 index 000000000..e80fb6ad1 --- /dev/null +++ b/npc/005-1/saxso.txt @@ -0,0 +1,19 @@ +// TMW2 Script +// Author: +// Jesusalva + +// Sign of great danger +005-1,66,62,0 script Magic Barrier#0051 NPC_HIDDEN,{ + mes ".:: "+l("DANGER")+" ::."; + mesc l("Saxso's Official Residence."); + mesc l("DO NOT ENTER."); + mes ""; + mesc l("-- Zegas, the Mayoress"); + close; + +OnInit: + .sex = G_OTHER; + .distance = 3; + end; +} + |