Skip to content

Installation

Tazio edited this page Apr 25, 2024 · 1 revision
  1. 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
  1. Download & Install the dependencies KOTH Core relies on: MySQL Async & MenuV
  2. Download the Core (this repository)
  3. Put the core-main folder in the resource folder and rename it to core.
  4. Open your server.cfg and add start core
  5. Make sure everything is set up & then start the server.
Clone this wiki locally