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

Solved error to develop any skill

theundertaker

New Member
Joined
Oct 6, 2009
Messages
25
Reaction score
0
When a character gains this ability giving it,
how I can fix this?
sorry for my bad english

2552by8.jpg
 
You can go to creaturescripts, look for a script with type advance and delete the query for this or add the table.
Code:
CREATE TABLE `first_up`
(
   `player_id` INT NOT NULL DEFAULT 0,
   `skill` TINYINT(2) NOT NULL DEFAULT 0,
   `new_level` INT UNSIGNED NOT NULL DEFAULT 0,
   `old_level` INT UNSIGNED NOT NULL DEFAULT 0,
   `date` BIGINT NOT NULL DEFAULT 0,
   KEY (`player_id`),
   FOREIGN KEY (`player_id`) REFERENCES `players`(`id`) ON DELETE CASCADE
) ENGINE = InnoDB;
http://otland.net/threads/mysql-how-to-run-a-query.177833/
 
Back
Top