From c904f59470715fce9ed89d1f692f09df9c6c0e8f Mon Sep 17 00:00:00 2001 From: TurmoilToad Date: Fri, 19 Jan 2018 14:29:27 -0500 Subject: [PATCH] Created Perl EVENT_FISH_FAILURE (markdown) --- Perl-EVENT_FISH_FAILURE.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 Perl-EVENT_FISH_FAILURE.md diff --git a/Perl-EVENT_FISH_FAILURE.md b/Perl-EVENT_FISH_FAILURE.md new file mode 100644 index 0000000..5eef2bd --- /dev/null +++ b/Perl-EVENT_FISH_FAILURE.md @@ -0,0 +1,17 @@ +EVENT_FISH_FAILURE is triggered when the player fishes without catching anything. + +Typically you would use this functionality in the zone player.pl or global_player.pl script files. + +### Triggered + +* When the player fails at fishing. + +### Example + +* This example displays an emote in gray when the player fails to catch anything after a fishing attempt. + +```perl +sub EVENT_FISH_FAILURE { + $client->Message(1, "Keep it down--you're scaring all the fish away!") +} +``` \ No newline at end of file