• 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 TFS V.04_DEV

Fileey

Member
Joined
Sep 30, 2009
Messages
46
Reaction score
7
Hello, got my server up hosted but I got a console problem whenever someone logs in or creates an account it goesvafan.png

And when I restart the server everyone is level 8 spawning in temple, even when I relog I spawn in temple with my GM character, with the outfit changer up.
Nothing is saving please help me
 
"cast" is missing from your tables.
add it to the player's table.
This could be it.

Try executing this

Code:
ALTER TABLE  `players` ADD  `cast` TINYINT NOT NULL DEFAULT  '0',
ADD  `castViewers` INT( 11 ) NOT NULL DEFAULT  '0',
ADD  `castDescription` VARCHAR( 255 ) NOT NULL
 
This could be it.

Try executing this

Code:
ALTER TABLE  `players` ADD  `cast` TINYINT NOT NULL DEFAULT  '0',
ADD  `castViewers` INT( 11 ) NOT NULL DEFAULT  '0',
ADD  `castDescription` VARCHAR( 255 ) NOT NULL

Yeah, I would give the sql query, but I had no idea if it was int or varchar or wtf.. I'm not working with TFS at all haha xD
 
Back
Top