15 lines
685 B
JavaScript
15 lines
685 B
JavaScript
// ===========================================================================
|
|
// Vortrex's Roleplay Resource
|
|
// https://github.com/VortrexFTW/gtac_roleplay
|
|
// ===========================================================================
|
|
// FILE: fishing.js
|
|
// DESC: Provides fishing functions and commands
|
|
// TYPE: Server (JavaScript)
|
|
// ===========================================================================
|
|
|
|
function initFishingScript() {
|
|
logToConsole(LOG_INFO, "[VRR.Fishing]: Initializing fishing script ...");
|
|
logToConsole(LOG_INFO, "[VRR.Fishing]: Fishing script initialized successfully!");
|
|
}
|
|
|
|
// ===========================================================================
|