-
Notifications
You must be signed in to change notification settings - Fork 7
Installation
Tazio edited this page Apr 25, 2024
·
1 revision
- Execute this query in the database:
CREATE DATABASE IF NOT EXISTS `koth`;
USE `koth`;
CREATE TABLE IF NOT EXISTS `users` (
`steamID` varchar(50) NOT NULL,
`discordID` varchar(50) NOT NULL,
`cash` varchar(50) NOT NULL DEFAULT '0',
`level` varchar(50) NOT NULL DEFAULT '0',
`xp` varchar(50) NOT NULL DEFAULT '0',
`lastLoggedIn` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`deaths` varchar(50) NOT NULL DEFAULT '0',
`kills` varchar(50) NOT NULL DEFAULT '0',
`streak` varchar(50) NOT NULL DEFAULT '0',
`vehicles` mediumtext,
`weapons` mediumtext,
PRIMARY KEY (`steamID`),
UNIQUE KEY `discordID` (`discordID`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1
- Download & Install the dependencies KOTH Core relies on: MySQL Async & MenuV
- Download the Core (this repository)
- Put the
core-main
folder in the resource folder and rename it tocore
. - Open your
server.cfg
and addstart core
- Make sure everything is set up & then start the server.