Mewtwo is a implementation of Disney's OTP server.
git clone https://gitlab.com/sunrisemmos/Mewtwopython -m pip install -r requirements.txtcd startup/win32run_otpd.batrun_server_ext.batrun_ai.bat
Create a database called toontownTopDb
User: ttDb_user
Pass: toontastic2008
CREATE TABLE IF NOT EXISTS ttParty (
partyId BIGINT NOT NULL AUTO_INCREMENT,
hostId BIGINT NOT NULL,
startTime DATETIME NOT NULL DEFAULT '1970-01-01 00:00:00',
endTime DATETIME NOT NULL DEFAULT '1970-01-01 00:00:00',
isPrivate TINYINT(1) DEFAULT 0,
inviteTheme TINYINT,
activities VARBINARY(252),
decorations VARBINARY(252),
statusId TINYINT DEFAULT 0,
creationTime TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
lastupdate TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (partyId),
INDEX idx_hostId (hostId),
INDEX idx_statusId (statusId)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;