Events
Events can be requested at our discord! (https://discord.rxscripts.xyz/)
Client Side
Server Side
fishing:onLicenseBought
Example
RegisterNetEvent('fishing:onLicenseBought', function(playerId)
-- This event will be called whenever a player bought a fishing license
end)
fishing:onFishingStart
Example
RegisterNetEvent('fishing:onFishingStart', function(playerId, rodName, fisher)
-- This event will be called whenever a player starts fishing
end)
fishing:onFishCaught
Example
RegisterNetEvent('fishing:onFishCaught', function(playerId, fishName, fisher)
-- This event will be called whenever a player caught a fish
end)
Last updated