diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-12-14 15:59:58 -0200 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-12-14 15:59:58 -0200 |
commit | b9d4185686e561ec80145f1370b499d0bf58afc2 (patch) | |
tree | 17ade44a037fca5b85169ee8fd7dd83ddc526052 /npc/001-1/wateranimation.txt | |
parent | 32ce252ddab84f3204b2ec74b6a3f0f9f3e13823 (diff) | |
download | serverdata-b9d4185686e561ec80145f1370b499d0bf58afc2.tar.gz serverdata-b9d4185686e561ec80145f1370b499d0bf58afc2.tar.bz2 serverdata-b9d4185686e561ec80145f1370b499d0bf58afc2.tar.xz serverdata-b9d4185686e561ec80145f1370b499d0bf58afc2.zip |
Mahul, Aeros Well Master. And, why not fishing on Aeros? I want fried fish!
(jk, I don't like eating fish)
Diffstat (limited to 'npc/001-1/wateranimation.txt')
-rw-r--r-- | npc/001-1/wateranimation.txt | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/npc/001-1/wateranimation.txt b/npc/001-1/wateranimation.txt new file mode 100644 index 000000000..1dc66c99f --- /dev/null +++ b/npc/001-1/wateranimation.txt @@ -0,0 +1,36 @@ +// TMW2 scripts. +// Author: +// Saulc +// Jesusalva +// Description: +// Water animations, splash, fishes, etc... + +001-1,254,70,0 script #water_animation_aeros0 NPC_WATER_SPLASH,{ + + fishing; // begin or continue fishing + close; + +OnInit: + // default fishes + setarray .common_fish, + CommonCarp, Roach, Tench; + + // rare fishes + setarray .rare_fish, + GrassCarp; + + .sex = G_OTHER; + .distance = 4; + end; +} + +001-1,250,72,0 duplicate(#water_animation_aeros0) #water_animation_aeros1 NPC_WATER_SPLASH +001-1,254,76,0 duplicate(#water_animation_aeros0) #water_animation_aeros2 NPC_WATER_SPLASH +001-1,247,77,0 duplicate(#water_animation_aeros0) #water_animation_aeros3 NPC_WATER_SPLASH + +001-1,105,112,0 duplicate(#water_animation_aeros0) #water_animation_aeros4 NPC_WATER_SPLASH +001-1,99,112,0 duplicate(#water_animation_aeros0) #water_animation_aeros5 NPC_WATER_SPLASH +001-1,94,110,0 duplicate(#water_animation_aeros0) #water_animation_aeros6 NPC_WATER_SPLASH +001-1,90,112,0 duplicate(#water_animation_aeros0) #water_animation_aeros7 NPC_WATER_SPLASH + + |