Log In
Sign Up
Go Gold
Home
Forum
Mail
Downloads
Game Search
Macro Editor
Notes
Membership
an_owlbear_fleshrender.pl - Quest File
General Info
Quest File
#Generic Owlbear Script my %AggroText = ( 1 => "assails you with a deafening shriek!", 2 => "catches sight of an enemy and ruffles its feathers in anger.", 3 => "emits a loud screech, vibrating the ground at your feet.", 4 => "snaps its powerful beak." ); my %DeathText = ( 1 => "emits a muffled screech as it collapses.", 2 => "twitches as life fades from its round yellow eyes." ); sub EVENT_AGGRO { my $RandomNumber = int(rand(4)) + 1; quest::emote("$AggroText{$RandomNumber}"); } sub EVENT_DEATH_COMPLETE { my $RandomNumber = int(rand(2)) + 1; quest::emote("$DeathText{$RandomNumber}"); }
Source: 17 Jan 2022
Quest Source: 28 May 2022