Last updated
Welcome to Koja-Lawnmower, a fluent job system designed to enhance gameplay for your players. This guide will walk you through the installation process step by step.
Before installing Koja-Lawnmower, ensure you have the following dependencies:
Download koja-lib from the official repository
Place it in your resources folder
Add to your server.cfg:
ensure koja-libkoja-lib must be started before koja-lawnmower!
You have two options for setting up the database:
Open shared/config.lua
Ensure this setting is enabled:
AutoCreateTable = true,
TableName = 'koja-lawnmower',
StartingValues = {
level = 1,
exp = 0,
history = {
totalMissions = 0,
totalEarnings = 0,
logs = {}
},
skillpoints = 0,
skills = {}
}The script will automatically create all required tables on first start.
Open your database management tool (TablePlus, HeidiSQL, etc.)
Import the koja-lawnmower.sql file
This will create three tables:
TableName - Stores player progression (level, skills, history, etc)
Documentation: https://docs.kojascripts.eu
Discord Support: https://discord.gg/kojascripts
GitHub: Check for updates and report issues
β Installation Complete! Your job system is now ready to use. Enjoy!
Last updated