Statistics

The fishing statistics system tracks player fishing activities, including total fish caught, biggest catches, fishing time, and more.

General Configuration

enabled = true
enabledrequiredboolean
true
Allows you to enable or disable the entire fishing statistics system. When set to false, players won't have access to statistics tracking.

Commands Configuration

The commands section configures the command related to fishing statistics:

commands = {
    stats = {
        enabled = true,
        command = 'fishingstats', 
        help = 'View fishing statistics'
    }
}
commands.stats.enabledrequiredboolean
true
Whether to enable the statistics command.
commands.stats.commandrequiredstring
'fishingstats'
The command that players can use to view their fishing statistics.
commands.stats.helprequiredstring
'View fishing statistics'
The help text shown for the command.

Features Configuration

The features section controls which statistics features are enabled:

features = {
    personalStats = true,
    leaderboard = true
}
features.personalStatsrequiredboolean
true
Enables or disables the personal fishing statistics tracking and display.
features.leaderboardrequiredboolean
true
Enables or disables the fishing leaderboard that shows top fishers on the server.

Display Configuration

The display section controls which statistics are shown in the personal stats menu:

display = {
    totalFish = true,
    biggestFish = true,
    totalWeight = true,
    timeSpent = true,
    mostCaught = true
}
display.totalFishrequiredboolean
true
Whether to display the total number of fish caught in the stats menu.
display.biggestFishrequiredboolean
true
Whether to display information about the biggest fish caught in the stats menu.
display.totalWeightrequiredboolean
true
Whether to display the total weight of all fish caught in the stats menu.
display.timeSpentrequiredboolean
true
Whether to display the total time spent fishing in the stats menu.
display.mostCaughtrequiredboolean
true
Whether to display the most commonly caught fish type in the stats menu.