• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Need Help Rep - +1

Rainerr

Mapper n scri
Joined
Apr 2, 2009
Messages
237
Reaction score
1
when i create account to my Server and then i cant login i get an error like this

357rfnq.png



Help me out and get Rep +
 
Run the mysql sql query that came with your server, do not run any other random sql file since they are usually not compatible with the server itself, like in your case.
 
Hey
Copy That In Sql


Then Tell Me =)

The fuck? The error didn't even state anything about vipdays? xDDD

SQL:
DROP TABLE IF EXISTS `accounts`

CREATE TABLE `accounts`
(
	`id` INT NOT NULL AUTO_INCREMENT,
	`name` VARCHAR(32) NOT NULL DEFAULT '',
	`password` VARCHAR(255) NOT NULL/* VARCHAR(32) NOT NULL COMMENT 'MD5'*//* VARCHAR(40) NOT NULL COMMENT 'SHA1'*/,
	`premdays` INT NOT NULL DEFAULT 0,
	`lastday` INT UNSIGNED NOT NULL DEFAULT 0,
	`email` VARCHAR(255) NOT NULL DEFAULT '',
	`key` VARCHAR(20) NOT NULL DEFAULT '0',
	`blocked` TINYINT(1) NOT NULL DEFAULT FALSE COMMENT 'internal usage',
	`warnings` INT NOT NULL DEFAULT 0,
	`group_id` INT NOT NULL DEFAULT 1,
	PRIMARY KEY (`id`), UNIQUE (`name`)
) ENGINE = InnoDB;

INSERT INTO `accounts` VALUES (1, '1', '1', 65535, 0, '', '0', 0, 0, 1);

If this doesn't work then look for all "onLogin" scripts in your creaturescripts folder and paste them here.
 
Back
Top