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

Windows How I can Fix This?

MrSaetaKuko

New Member
Joined
Jun 19, 2010
Messages
79
Reaction score
0
Location
In my House
I get this problem in the conselo, its anoying because allways appearing.
problemai.png
 
On the first one you need to create this in your database.

Code:
CREATE TABLE IF NOT EXISTS `z_ots_comunication` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `type` varchar(255) NOT NULL,
  `action` varchar(255) NOT NULL,
  `param1` varchar(255) NOT NULL,
  `param2` varchar(255) NOT NULL,
  `param3` varchar(255) NOT NULL,
  `param4` varchar(255) NOT NULL,
  `param5` varchar(255) NOT NULL,
  `param6` varchar(255) NOT NULL,
  `param7` varchar(255) NOT NULL,
  `delete_it` int(2) NOT NULL DEFAULT '1',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=7 ;
 
And the second one,
You missing the table "Server.players_advances"
And im not sure where you can find it. Sorry :/

@Sorry for double post :S
 
On the first one you need to create this in your database.

Code:
CREATE TABLE IF NOT EXISTS `z_ots_comunication` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `type` varchar(255) NOT NULL,
  `action` varchar(255) NOT NULL,
  `param1` varchar(255) NOT NULL,
  `param2` varchar(255) NOT NULL,
  `param3` varchar(255) NOT NULL,
  `param4` varchar(255) NOT NULL,
  `param5` varchar(255) NOT NULL,
  `param6` varchar(255) NOT NULL,
  `param7` varchar(255) NOT NULL,
  `delete_it` int(2) NOT NULL DEFAULT '1',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=7 ;

how I create it?
sorry for not know how^_^
 
1: Log in to your "127.0.0.1/localhost"
2: Press on your database to the left.
3: At the top of the page there is a small box named "SQL" click on that.
4: Then you paste the code i wrote in the text window, and press "Run"
5: And your done, hope you get it ;)

Regards / WeZzi^
 
Try this (but i'm not sure that it will works):
Code:
CREATE TABLE IF NOT EXISTS `player_advances` (
  `cid` int(11) NOT NULL,
  `skill` tinyint(2) NOT NULL,
  `oldlevel` int(10) NOT NULL,
  `newlevel` int(10) NOT NULL,
  `time` bigint(20) NOT NULL,
  PRIMARY KEY  (`cid`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
 
Try this (but i'm not sure that it will works):
Code:
CREATE TABLE IF NOT EXISTS `player_advances` (
  `cid` int(11) NOT NULL,
  `skill` tinyint(2) NOT NULL,
  `oldlevel` int(10) NOT NULL,
  `newlevel` int(10) NOT NULL,
  `time` bigint(20) NOT NULL,
  PRIMARY KEY  (`cid`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

Now I get this at console
please help me to fix it;)

error2p.png
 
Back
Top