From e9146e5870dfcebcef8df90af46205e8bf3c7596 Mon Sep 17 00:00:00 2001 From: TurmoilToad Date: Fri, 19 Jan 2018 14:26:58 -0500 Subject: [PATCH] Created Perl EVENT_FISH_START (markdown) --- Perl-EVENT_FISH_START.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 Perl-EVENT_FISH_START.md diff --git a/Perl-EVENT_FISH_START.md b/Perl-EVENT_FISH_START.md new file mode 100644 index 0000000..3f29a13 --- /dev/null +++ b/Perl-EVENT_FISH_START.md @@ -0,0 +1,17 @@ +EVENT_FISH_START is triggered when the player begins to fish. + +Typically you would use this functionality in the zone player.pl or global_player.pl script files. + +### Triggered + +* When the player begins to fish. + +### Example + +* This example displays an emote in gray when the player casts their line + +```perl +sub EVENT_FISH_START { + $client->Message(1, "You crack a beer and toss your line in."); +} +``` \ No newline at end of file