diff options
author | gumi <git@gumi.ca> | 2019-06-04 14:54:35 -0400 |
---|---|---|
committer | gumi <git@gumi.ca> | 2019-06-04 14:55:05 -0400 |
commit | aaf1645be93d351bf1d88977bacfdaaf42c81f99 (patch) | |
tree | c8fdaa0b5c49ff38b2cd9d599ce98248c799c4f5 /world/map/npc/029-4/time-traveler.txt | |
parent | 0a9045638b533d43d23ef04e1ea43ee6d4e0f447 (diff) | |
download | serverdata-aaf1645be93d351bf1d88977bacfdaaf42c81f99.tar.gz serverdata-aaf1645be93d351bf1d88977bacfdaaf42c81f99.tar.bz2 serverdata-aaf1645be93d351bf1d88977bacfdaaf42c81f99.tar.xz serverdata-aaf1645be93d351bf1d88977bacfdaaf42c81f99.zip |
add the old candor to the wormhole
Diffstat (limited to 'world/map/npc/029-4/time-traveler.txt')
-rw-r--r-- | world/map/npc/029-4/time-traveler.txt | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/world/map/npc/029-4/time-traveler.txt b/world/map/npc/029-4/time-traveler.txt new file mode 100644 index 00000000..1242e7c4 --- /dev/null +++ b/world/map/npc/029-4/time-traveler.txt @@ -0,0 +1,31 @@ +// time traveler that warps from old tonori to new tonori + +029-1,25,40,0|script|Time Traveler#291|184 +{ + mes "Would you like to time travel?"; + menu + "Yes!", L_Warp; + +L_Warp: + mes "Hang tight!"; + close2; + warp "029-4", 24, 38; + close; +} + +029-4,26,36,0|script|Time Traveler#294|184 +{ + mes "Welcome back!"; + menu + "What year are we in?", L_What, + "How do I leave?", L_Leave; + +L_What: + mes "This is what Candor used to look like back in 2014."; + // TODO: we need an explaination + close; + +L_Leave: + mes "Walk West from here to escape the time dilation bubble."; + close; +} |