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

Guild Invite - Premium Gesior

dracovisk

New Member
Joined
Aug 25, 2020
Messages
11
Solutions
1
Reaction score
2
its not possible invite players on my guild, not even show members/leader in guidlist.
 

Attachments

Looks like something is missing in guilds database table,
you should use an updated or correct sql schema.

Try this query also

SQL:
CREATE TABLE IF NOT EXISTS `guild_invites` (
  `player_id` int(11) NOT NULL,
  `guild_id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
 
Looks like something is missing in guilds database table,
you should use an updated or correct sql schema.

Try this query also

SQL:
CREATE TABLE IF NOT EXISTS `guild_invites` (
  `player_id` int(11) NOT NULL,
  `guild_id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
I have the same problem, can anyone help me? This command did not resolve
 
Back
Top