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

environment killers

GOD Wille

Excellent OT User
Joined
Jan 11, 2010
Messages
2,826
Solutions
2
Reaction score
815
Location
Sweden
how to fix this help


Code:
mysql_real_query(): INSERT INTO `environment_killers` (`kill_id`, `name`) VALUES (39681, 'a mutated spider') - MYSQL ERROR: Table 'theforgottenserver.environment_killers' doesn't exist (1146)
 
You don't have table called: "environment_killers"

Here you are :D :

Code:
CREATE TABLE `environment_killers`
(
	`kill_id` INT NOT NULL,
	`name` VARCHAR(255) NOT NULL,
	FOREIGN KEY (`kill_id`) REFERENCES `killers`(`id`) ON DELETE CASCADE
) ENGINE = InnoDB;
 
yes, and when i re add it, i got the same error

#1005 - Can't create table 'theforgottenserver.environment_killers' (errno: 121)

Help please
 
Back
Top