diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-07-15 13:01:30 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-07-15 13:01:30 -0300 |
commit | f04415bbc4477cffc4d6909a4af14a6072a99f48 (patch) | |
tree | 83ed24f58f0c69f366aff70c0f9829a497cf74df /npc/029-4/time-traveler.txt | |
parent | ef5e8039265bd8b3e55de5903a1215b2ff4db8b7 (diff) | |
download | serverdata-f04415bbc4477cffc4d6909a4af14a6072a99f48.tar.gz serverdata-f04415bbc4477cffc4d6909a4af14a6072a99f48.tar.bz2 serverdata-f04415bbc4477cffc4d6909a4af14a6072a99f48.tar.xz serverdata-f04415bbc4477cffc4d6909a4af14a6072a99f48.zip |
Reintroduce the time travelers. This close #65
Diffstat (limited to 'npc/029-4/time-traveler.txt')
-rw-r--r-- | npc/029-4/time-traveler.txt | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/npc/029-4/time-traveler.txt b/npc/029-4/time-traveler.txt new file mode 100644 index 00000000..d9b19d58 --- /dev/null +++ b/npc/029-4/time-traveler.txt @@ -0,0 +1,33 @@ + +029-1,25,40,0 script Time Traveler#291 NPC184,{ + mes l("Would you like to time travel?"); + menu + l("Yes!"), L_Warp, + l("No"), -; + closeclientdialog; + close; + +L_Warp: + mes l("Hang tight!"); + close2; + warp "029-4", 24, 38; + close; +} + +029-4,26,36,0 script Time Traveler#294 NPC184,{ + mes l("Welcome back!"); + menu + l("What year are we in?"), L_What, + l("How do I leave?"), L_Leave; + +L_What: + mes l("This is what Candor used to look like back in 2014."); + next; + mes l("I think this island is a bit volcanic, as after the Great Quake, more land emerged."); + mes l("Settlers moved in shortly after."); + close; + +L_Leave: + mes l("Walk West from here to escape the time dilation bubble."); + close; +} |