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

AAC Error leave guild Znote AAC

kennyubuntu

Member
Joined
May 20, 2016
Messages
150
Reaction score
13
When i try to leave guild show me this:
Code:
string(75) "UPDATE `players` SET `rank_id`='0', `guildnick`= NULL WHERE `id`=5 LIMIT 1;"
(query - SQL error)
Type: voidQuery (voidQuery is used for update, insert or delete from database)

Column 'guildnick' cannot be null

And i cant leave on znote... Why?
 
Solution
Not sure if this is the best solution since I do not know if there's a reason for the guildnick to be not null but..
Execute this query in your database.
SQL:
ALTER TABLE `players` MODIFY `guildnick` VARCHAR(30);
Not sure if this is the best solution since I do not know if there's a reason for the guildnick to be not null but..
Execute this query in your database.
SQL:
ALTER TABLE `players` MODIFY `guildnick` VARCHAR(30);
 
Solution
Back
Top