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

Console Error!

MrSaetaKuko

New Member
Joined
Jun 19, 2010
Messages
79
Reaction score
0
Location
In my House
How I can fix this?:blink:
error2ga.png
 
Long story short, this translates into:

"I'm trying to insert a value into your database, but that value already exists. I've been specifically told that this kind of value, there can only be one of."

In this case, it's trying to insert a value into your "player_advances" table, with the cid "25" (and 23), but that already exists.
This could happen if you mess around with player character IDs, or use an old database with a fresh server, among other things.

There are two ways to fix this:
  1. You look at what the server is saying, which ID's it's trying (and failing) to insert, then search through the DB and delete those values manually.

  2. Run the query " TRUNCATE TABLE `player_advances`; ", to "reset" the table back to it's original fresh status. This will DELETE all data in that table PERMANENTLY.
 
Back
Top