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

Somthing says at sql all time 24/7

kuk124

Banned User
Joined
May 6, 2010
Messages
271
Reaction score
6
Location
Homeless.
[01/04/2012 17:05:53] OTSYS_SQLITE3_PREPARE(): SQLITE ERROR: no such table: z_ots_comunication (SELECT * FROM z_ots_comunication WHERE "type" = 'login';)


[01/04/2012 17:05:53] OTSYS_SQLITE3_PREPARE(): SQLITE ERROR: no such table: z_ots_comunication (SELECT * FROM z_ots_comunication WHERE "type" = 'login';)

What is thaT? for problem.
 
You did not run the sql queries related to Geisor AAC (setup). (shop system)
You can also disable the script in globalevents/shop.lua (I think that's the name..).
 
local result_plr = db.getResult("SELECT * FROM z_ots_comunication WHERE `type` = 'login';") Should i put




{ catchPokemon(); } catch { Console.WriteLine("Gotta Catch 'em All!"); }
 
lolno the pokemon thingy is his signature :)

Goto ur sql database and execute this:

Code:
CREATE TABLE `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;
 
Back
Top