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

Saving Player Error

Slizzer

Premium User
Premium User
Joined
Jan 23, 2016
Messages
13
Reaction score
3
Hey guys,

i have a problem with mysql. Can someone help me to solve it?

Error:
[Error - mysql_real_query] Query: UPDATE players SET level = 1,group_id = 3,vocation = 0,health = 100,healthmax = 100,experience = 0,lookbody = 10,lookfeet = 10,lookhead = 10,looklegs = 10,looktype = 136,lookaddons = 0,maglevel = 0,mana = 100,manamax = 100,`
Message: Out of range value for column 'blessings' at row 1
[Error - mysql_real_query] Query: UPDATE players SET level = 1,group_id = 3,vocation = 0,health = 100,healthmax = 100,experience = 0,lookbody = 10,lookfeet = 10,lookhead = 10,looklegs = 10,looktype = 136,lookaddons = 0,maglevel = 0,mana = 100,manamax = 100,`
Message: Out of range value for column 'blessings' at row 1
[Error - mysql_real_query] Query: UPDATE players SET level = 1,group_id = 3,vocation = 0,health = 100,healthmax = 100,experience = 0,lookbody = 10,lookfeet = 10,lookhead = 10,looklegs = 10,looktype = 136,lookaddons = 0,maglevel = 0,mana = 100,manamax = 100,`
Message: Out of range value for column 'blessings' at row 1
Error while saving player: Playername
 
Open iologindata.cpp, and the function to save player, you have to cast sex as an actual sex.

Search for
C++:
query << "`sex` = " << player->sex << ',';

Change for
C++:
query << "`sex` = " << static_cast<uint16_t>(player->sex) << ',';
Just recompile and test.


If that doesn't work, try another link here
 
Last edited:
Acording to error it seems like there's an issue with blessings column.
Check type of the column in DB and how it's saved on your distro.
SQL:
`blessings` tinyint NOT NULL DEFAULT '0'

Most important, what's the distro you're using? TFS 0.x/1.x? Canary?
 
Back
Top