mirror of
https://github.com/EQEmu/Server.git
synced 2026-06-21 06:28:22 +00:00
Created Perl EVENT_FISH_START (markdown)
@@ -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.");
|
||||||
|
}
|
||||||
|
```
|
||||||
Reference in New Issue
Block a user