diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-12-31 19:09:49 -0200 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-12-31 19:09:49 -0200 |
commit | 2f16d8b8c34257733180058c82415d395ea27474 (patch) | |
tree | 09a7e0b77ba01cfade269593ee88c02122fd5976 /npc/001-1 | |
parent | f4ac215d94dc2c5eb58675f79e0be87932f78cc3 (diff) | |
parent | 28fdcc18ff9c80fea20414482ecc7c74fd0bf9cf (diff) | |
download | serverdata-jesusalva/GuidedTour.tar.gz serverdata-jesusalva/GuidedTour.tar.bz2 serverdata-jesusalva/GuidedTour.tar.xz serverdata-jesusalva/GuidedTour.zip |
Merge branch 'master' into jesusalva/GuidedTourjesusalva/GuidedTour
Diffstat (limited to 'npc/001-1')
-rw-r--r-- | npc/001-1/_import.txt | 3 | ||||
-rw-r--r-- | npc/001-1/koga.txt | 20 | ||||
-rw-r--r-- | npc/001-1/rowboat.txt | 20 | ||||
-rw-r--r-- | npc/001-1/sophialla.txt | 20 |
4 files changed, 63 insertions, 0 deletions
diff --git a/npc/001-1/_import.txt b/npc/001-1/_import.txt index eb522c73..1b748d55 100644 --- a/npc/001-1/_import.txt +++ b/npc/001-1/_import.txt @@ -18,6 +18,7 @@ "npc/001-1/harbours.txt", "npc/001-1/juscare.txt", "npc/001-1/katja.txt", +"npc/001-1/koga.txt", "npc/001-1/lucas.txt", "npc/001-1/manhole.txt", "npc/001-1/mapflags.txt", @@ -28,10 +29,12 @@ "npc/001-1/pious.txt", "npc/001-1/qonan.txt", "npc/001-1/qpid.txt", +"npc/001-1/rowboat.txt", "npc/001-1/rumly.txt", "npc/001-1/salem.txt", "npc/001-1/shop.txt", "npc/001-1/sign.txt", +"npc/001-1/sophialla.txt", "npc/001-1/taree.txt", "npc/001-1/treeleaf.txt", "npc/001-1/trees.txt", diff --git a/npc/001-1/koga.txt b/npc/001-1/koga.txt new file mode 100644 index 00000000..3aecb09a --- /dev/null +++ b/npc/001-1/koga.txt @@ -0,0 +1,20 @@ +// Evol scripts. +// Author: +// Micksha +// Description: +// The Koga in Artis, only accessable via Rowboat. +// THIS IS A PLACEHOLDER! + +001-1,225,59,0 script Koga#001-1 NPC_KOGA,{ + speech + l("Ah, whom did you bring here?"), + l("Isnt that the one Nard found on a float in the sea, with the sign of the Legion on his chest?"); + l("I hope they know what they are doing. So, come on board. I am looking forward to go back to Woodland, haven't been there for a while."); + + close; + +OnInit: + .sex = G_MALE; + .distance = 4; + end; +} diff --git a/npc/001-1/rowboat.txt b/npc/001-1/rowboat.txt new file mode 100644 index 00000000..8682ba0e --- /dev/null +++ b/npc/001-1/rowboat.txt @@ -0,0 +1,20 @@ +// Evol scripts. +// Author: +// Micksha +// Description: +// The rowboat, picking up the player on small beach in order to bring it to Koga. +// THIS IS A PLACEHOLDER! + +001-1,203,64,0 script Rowboat NPC_ROWBOAT_STAND_WE,{ + speech + l("Oh, hi."), + l("In case you don't have a commendatory letter from you-know-whom, I am just sitting here and observe the whales."); + l("Perhaps, and only perhaps, if you bring me the latter, I can bring you to a ship that will perhaps, and only perhaps, be able to bring you to Woodland."); + + close; + +OnInit: + .sex = G_MALE; + .distance = 3; + end; +} diff --git a/npc/001-1/sophialla.txt b/npc/001-1/sophialla.txt new file mode 100644 index 00000000..ad4d508a --- /dev/null +++ b/npc/001-1/sophialla.txt @@ -0,0 +1,20 @@ +// Evol scripts. +// Author: +// Micksha +// Description: +// Sophialla, the connection between Artis and the Brotherhood in Hurns. +// THIS IS A PLACEHOLDER! + +001-1,73,40,0 script Sophialla#001-1 NPC_SOPHIALLA,{ + speech + l("Hello."), + l("Can't you see I am reading? If you need something, tell me the secret password."); + lg("If you don't know it, just go, please."); + + close; + +OnInit: + .sex = G_FEMALE; + .distance = 2; + end; +} |