diff options
-rw-r--r-- | npc/001-1/wateranimation.txt | 8 | ||||
-rw-r--r-- | npc/005-1/wateranimation.txt | 12 | ||||
-rw-r--r-- | npc/012-1/wateranimation.txt | 9 |
3 files changed, 8 insertions, 21 deletions
diff --git a/npc/001-1/wateranimation.txt b/npc/001-1/wateranimation.txt index 9673929a9..7c143582e 100644 --- a/npc/001-1/wateranimation.txt +++ b/npc/001-1/wateranimation.txt @@ -12,14 +12,6 @@ close; OnInit: - // default fishes - setarray .common_fish, - CommonCarp, Roach, Tench; - - // rare fishes - setarray .rare_fish, - GrassCarp; - .sex = G_OTHER; .distance = 4; end; diff --git a/npc/005-1/wateranimation.txt b/npc/005-1/wateranimation.txt index 519ad6069..cb8ae56c2 100644 --- a/npc/005-1/wateranimation.txt +++ b/npc/005-1/wateranimation.txt @@ -6,18 +6,12 @@ 005-1,81,62,0 script #water_animation_candor0 NPC_WATER_SPLASH,{ - fishing; // begin or continue fishing + fishing(1, + Roach, + Tench); // begin or continue fishing close; OnInit: - // default fishes - setarray .common_fish, - Roach; - - // rare fishes - setarray .rare_fish, - Tench; - setarray .bait_ids, SmallTentacles, 24, PiouLegs, 1, diff --git a/npc/012-1/wateranimation.txt b/npc/012-1/wateranimation.txt index 0943d5942..4621afbbb 100644 --- a/npc/012-1/wateranimation.txt +++ b/npc/012-1/wateranimation.txt @@ -9,10 +9,11 @@ 012-1,119,54,0 script #Hurn_WAM0 NPC_WATER_SPLASH,{ - fishing; // begin or continue fishing - setarray .@rare_fish, - GrassCarp, - BottleOfWoodlandWater; + fishing(1, + CommonCarp, + GrassCarp, + BottleOfWoodlandWater); + close; OnInit: |