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

Gesior 2012 guilds creation problem [TFS 1.3]

Cys9211

Sencor!
Joined
Aug 21, 2008
Messages
102
Reaction score
4
Location
Poland (Bełchatów)
Hello, I have a problem with starting Guilds, namely when I start guilds everything is going well

Witajcie, mam problem z zakładaniem Guilds, mianowicie gdy zakładam gildie, wszystko przebiega pomyślnie
1617104040639.png


Then after clicking Next
Następnie po kliknięciu dalej
1617104081391.png

Ultimately, the guild doesn't come into being
I ostatecznie gildia nie powstaje

1617104122210.png


This is my pages/guilds.php
https://pastebin.com/raw/PMSzy4mH

mysql table

SQL:
CREATE TABLE `guilds` (
  `id` int(11) NOT NULL,
  `name` varchar(255) NOT NULL,
  `ownerid` int(11) NOT NULL,
  `creationdata` bigint(20) NOT NULL,
  `motd` varchar(255) NOT NULL DEFAULT '',
  `residence` int(11) NOT NULL,
  `description` text NOT NULL,
  `guild_logo` mediumblob DEFAULT NULL,
  `create_ip` bigint(20) NOT NULL DEFAULT '0',
  `balance` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
  `last_execute_points` bigint(20) NOT NULL DEFAULT '0',
  `logo_gfx_name` varchar(255) NOT NULL DEFAULT '',
  `level` int(11) DEFAULT '1',
  `points` int(11) DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
 
Back
Top