Skip to content

Cazim99/Amongus

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

AMONGUS

It is necessary to prepare a database

|| || /



CREATE DATABASE IF NOT EXISTS zimca_games;

use zimca_games;

CREATE TABLE `users` (
  `ID` int NOT NULL AUTO_INCREMENT,
  `full_name` varchar(255) NOT NULL,
  `username` varchar(255) NOT NULL,
  `email` varchar(255) NOT NULL,
  `password` varchar(255) NOT NULL,
  `movespeed` int NOT NULL,
  `health` int NOT NULL,
  `inside_ship` bool NOT NULL,
  `cordinates` varchar(255) NOT NULL,
  'baned' inr NOT NULL,
  PRIMARY KEY (`ID`)
)


Set configurations for the database in config.ini file and this is located in the GameServer folder and the WebSite folder

AFTER THAT Run main.py from Web Site folder Run GameServer.py from GameServer folder

Open a website at localhost:9997 and create an account

Run the game from the Folder Amongus-Game -> main.py

Enjoy!