Server can't update 'characters' - SQL syntax error #32
-
|
Edit: I set the server up using Bullsito's set up guide Whenever I log into the character, the server tries to update character data and then this happens: I can keep playing after this error but no one else can join and when I try to reconnect or change character I can't log back in as well. Any ideas? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
|
x=1143 I had this error, its about the coords, you have to set in your server/computer/wherever_you_host_the_database, the decimal separator as point instead of comma, that error is caused because the MySql query that is trying to make failed and therefore, the whole database. Right now, for the 'x' valor, it is trying to insert 1143 AND 1831, not 1143.183100000 (I put some zeros to not be mistaken with thousands). In Windows it was something at the Language settings, I don't remember right now (I recomend you to search at google how to change the decimal separator at your computer). If its Linux, no clue, I guess there is something similar at settings. I hope this helps you. |
Beta Was this translation helpful? Give feedback.
x=1143
,1831, y=-640,93115, z=56,753082, rz=-136,22603I had this error, its about the coords, you have to set in your server/computer/wherever_you_host_the_database, the decimal separator as point instead of comma, that error is caused because the MySql query that is trying to make failed and therefore, the whole database.
Right now, for the 'x' valor, it is trying to insert 1143 AND 1831, not 1143.183100000 (I put some zeros to not be mistaken with thousands).
In Windows it was something at the Language settings, I don't remember right now (I recomend you to search at google how to change the decimal separator at your computer).
If its Linux, no clue, I guess there is something similar a…