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

Compiling Higher outfit amount crash client

elking

Swev-v2.sytes.net Comming Soon !<>!
Joined
Aug 20, 2012
Messages
445
Reaction score
28
Location
Egypt
Hello people of OTLand.
I have 2 problem need to fix
First with compiling source
...I edited outift.h
Code:
OUTFITS_MAX_NUMBER 25
to
Code:
OUTFITS_MAX_NUMBER 29
I have 23 outfit in and I add 8 outift as a quest
when I made 1 or 2 quest and try to change my outfit tibia client crash
I use tibia client 8.6 TFS 0.4

second with mysql
...while starting get this error
[FIXED]
mN5HaD.png

and this when I logout appear
[FIXED]
GJtUvJ.png
 
Last edited:
It seems like guild_wars table its missing, execute this query:

Code:
CREATE TABLE IF NOT EXISTS `guild_wars` (
`id` INT,
`guild_id` INT NOT NULL,
`enemy_id` INT NOT NULL,
`begin` BIGINT NOT NULL DEFAULT 0,
`end` BIGINT NOT NULL DEFAULT 0,
`frags` INT NOT NULL DEFAULT 0,
`payment` BIGINT NOT NULL DEFAULT 0,
`guild_kills` INT NOT NULL DEFAULT 0,
`enemy_kills` INT NOT NULL DEFAULT 0,
`status` TINYINT(1) NOT NULL DEFAULT 0, PRIMARY KEY (`id`) 
)

Second error you need to add the column cast into your "players" table, or delete that system (search in your server files) if you're not using it, seems like your server is trying to use it but you have missing that column.
 
It seems like guild_wars table its missing, execute this query:

Code:
CREATE TABLE IF NOT EXISTS `guild_wars` (
`id` INT,
`guild_id` INT NOT NULL,
`enemy_id` INT NOT NULL,
`begin` BIGINT NOT NULL DEFAULT 0,
`end` BIGINT NOT NULL DEFAULT 0,
`frags` INT NOT NULL DEFAULT 0,
`payment` BIGINT NOT NULL DEFAULT 0,
`guild_kills` INT NOT NULL DEFAULT 0,
`enemy_kills` INT NOT NULL DEFAULT 0,
`status` TINYINT(1) NOT NULL DEFAULT 0, PRIMARY KEY (`id`)
)

Second error you need to add the column cast into your "players" table, or delete that system (search in your server files) if you're not using it, seems like your server is trying to use it but you have missing that column.

Ok thank you I fixed second and third do you know anything about first one ?!
 
Back
Top