diff options
author | Reid <reidyaro@gmail.com> | 2015-09-14 23:32:47 +0200 |
---|---|---|
committer | Reid <reidyaro@gmail.com> | 2015-09-14 23:32:47 +0200 |
commit | 5c2a048e74de0bbbbaffe710629841b19bea2683 (patch) | |
tree | a42b403bac7a4bdbffac45e798932ebe0ace177a /npc | |
parent | f839a7a84ab283eefbaa868b171a2014a6e25ac9 (diff) | |
download | serverdata-5c2a048e74de0bbbbaffe710629841b19bea2683.tar.gz serverdata-5c2a048e74de0bbbbaffe710629841b19bea2683.tar.bz2 serverdata-5c2a048e74de0bbbbaffe710629841b19bea2683.tar.xz serverdata-5c2a048e74de0bbbbaffe710629841b19bea2683.zip |
Add a water animation file with a first location next to Eugene on Artis.
Diffstat (limited to 'npc')
-rw-r--r-- | npc/001-1/_import.txt | 1 | ||||
-rw-r--r-- | npc/001-1/wateranimation.txt | 19 |
2 files changed, 20 insertions, 0 deletions
diff --git a/npc/001-1/_import.txt b/npc/001-1/_import.txt index ee2dbef9..6d82d05c 100644 --- a/npc/001-1/_import.txt +++ b/npc/001-1/_import.txt @@ -25,3 +25,4 @@ npc: npc/001-1/xilaxa.txt npc: npc/001-1/trees.txt npc: npc/001-1/pious.txt npc: npc/001-1/flyingpiou.txt +npc: npc/001-1/wateranimation.txt diff --git a/npc/001-1/wateranimation.txt b/npc/001-1/wateranimation.txt new file mode 100644 index 00000000..2fdb8e29 --- /dev/null +++ b/npc/001-1/wateranimation.txt @@ -0,0 +1,19 @@ +// Evol scripts. +// Authors: +// Reid +// Description: +// Water animations, splash, fishes, etc... + +001-1,116,123,0 script #water_animation0 NPC_WATER_SPLASH,{ + mesn "Narrator"; + mesq col(l("You see some fish reflecting the sun on the surface of the ocean."), 9); + next; + closedialog; + end; + +OnInit: + setnpcsex G_OTHER; + setnpcdistance 2; + end; +} + |