2013-12-31 08:50:46 -05:00
|
|
|
return
|
|
|
|
{
|
|
|
|
HOOK_PLAYER_FISHING =
|
|
|
|
{
|
|
|
|
CalledWhen = "A player is about to get a reward from fishing.",
|
|
|
|
DefaultFnName = "OnPlayerFishing", -- also used as pagename
|
|
|
|
Desc = [[
|
2014-01-01 09:18:12 -05:00
|
|
|
This hook gets called when a player right clicks with a fishing rod while the floater is under water. The reward is already descided, but the plugin may change it.
|
2013-12-31 08:50:46 -05:00
|
|
|
]],
|
|
|
|
Params =
|
|
|
|
{
|
|
|
|
{ Name = "Player", Type = "{{cPlayer}}", Notes = "The player who pulled the fish in." },
|
2014-01-01 09:02:43 -05:00
|
|
|
{ Name = "Reward", Type = "{{cItems}}", Notes = "The reward the player gets. It can be a fish, treasure and junk." },
|
2013-12-31 08:50:46 -05:00
|
|
|
},
|
|
|
|
Returns = [[
|
|
|
|
If the function returns false or no value, the next plugin's callback is called. Afterwards, the
|
|
|
|
server gives the player his reward. If the function returns true, no other
|
|
|
|
callback is called for this event and the player doesn't get his reward.
|
|
|
|
]],
|
|
|
|
}, -- HOOK_PLAYER_FISHING
|
2014-01-01 09:31:57 -05:00
|
|
|
};
|