Created Perl EVENT_FISH_FAILURE (markdown)

TurmoilToad
2018-01-19 14:29:27 -05:00
parent e9146e5870
commit c904f59470
+17
@@ -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!")
}
```