summaryrefslogtreecommitdiff
path: root/npc/functions/fishing.txt
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2019-06-09 16:25:46 -0300
committerJesusaves <cpntb1@ymail.com>2019-06-09 16:25:46 -0300
commit080204a2d70958d7a3a94bb5e6340f6db287dce0 (patch)
tree5719eb257ab7a3084adfabd3913e0b77d96bd3be /npc/functions/fishing.txt
parentd970624d6127ee9e8add09d811d4ee0ff9e04b2a (diff)
downloadserverdata-080204a2d70958d7a3a94bb5e6340f6db287dce0.tar.gz
serverdata-080204a2d70958d7a3a94bb5e6340f6db287dce0.tar.bz2
serverdata-080204a2d70958d7a3a94bb5e6340f6db287dce0.tar.xz
serverdata-080204a2d70958d7a3a94bb5e6340f6db287dce0.zip
Register FX Particles with constants, and force players on Nard to get the Exp Boost
Diffstat (limited to 'npc/functions/fishing.txt')
-rw-r--r--npc/functions/fishing.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/functions/fishing.txt b/npc/functions/fishing.txt
index b09cb0d48..c071f20d2 100644
--- a/npc/functions/fishing.txt
+++ b/npc/functions/fishing.txt
@@ -93,12 +93,12 @@ function script fishing {
.@regen_time = (.@regen_time ? .@regen_time : 20);
.@success_fx = getvariableofnpc(.success_fx, .@npc$); // effect to show on success
- .@success_fx = (.@success_fx ? .@success_fx : 27);
+ .@success_fx = (.@success_fx ? .@success_fx : FX_SUCCESS);
.@failure_fx = getvariableofnpc(.failure_fx, .@npc$); // effect to show on failure
if (.@failure_fx < 1)
{
- .@failure_fx = 28;
+ .@failure_fx = FX_FAILURE;
set getvariableofnpc(.failure_fx, .@npc$), .@failure_fx; // needed by global handler
}