• 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!

Bug my DB

TaurenLess

New Member
Joined
Jan 2, 2010
Messages
76
Reaction score
1
Location
Brasília / Brasil
Hello, was wondering if you could help me ...
This bug is causing players clone items. :(

My server is giving this error that is in the image:
http://img16.imageshack.us/img16/1484/bugej.png


I've put the querry in DB:
Code:
CREATE TABLE `guild_invites`
(
	`player_id` INT NOT NULL DEFAULT 0,
	`guild_id` INT NOT NULL DEFAULT 0,
	UNIQUE (`player_id`, `guild_id`),
	FOREIGN KEY (`player_id`) REFERENCES `players`(`id`) ON DELETE CASCADE,
	FOREIGN KEY (`guild_id`) REFERENCES `guilds`(`id`) ON DELETE CASCADE
) ENGINE = InnoDB;


and

I've also removed the! Createguild,! Joinguild. For players to create the guild site only.


But already there and the bug continues... :(

Sorry if my English is not correct, it's because I'm from another country.
 
Back
Top