BenSaint/endless-war
Folders and files
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Repository files navigation
Create a file in the same directory as client.py named "token", which contains only your API token. Run client.py (with python 3.5+). ------------------------------------------------------------------------ Creating the database tables: CREATE TABLE users ( id_user varchar(128) NOT NULL, id_server varchar(128) NOT NULL, slimes int NOT NULL DEFAULT '0', time_lastkill int NOT NULL DEFAULT '0', time_lastrevive int NOT NULL DEFAULT '0', id_killer varchar(128) NOT NULL DEFAULT '', time_lastspar int NOT NULL DEFAULT '0', time_expirpvp int NOT NULL DEFAULT '0', time_lasthaunt int NOT NULL DEFAULT '0', CONSTRAINT id_user_server PRIMARY KEY (id_user, id_server) );