Ir para conteúdo

[Release] Dragon Ball Online


Beeki

Posts Recomendados

Olá Beeki gostei muito desse WoDBO, e estou a um passo de conseguir joga-lo.

 

Como ainda não tem site, baixei de um outro WoDBO que pesquisei mas quando eu crio uma account, da esse seguinte erro:

 

Notice: AutoSetup has attempted to create missing tables for you. This message should not repeat.

Error #1146

REPLACE INTO `nicaw_accounts` (`account_id`,`rlname` , `location ` , `comment ` , `recovery_key`) VALUES (2652645,NULL,NULLNULL,NULL);

Table 'wodbo.nicaw_accounts' doesn't exist

 

sql.php on line: 57

Script was terminated because unexpected happened. You can report this, if you think it's a bug.

 

Ajudem por favor!

Link para o comentário
Compartilhar em outros sites

Executa em seu Banco de dados isso aqui

 

 

CREATE TABLE `nicaw_accounts` (

`account_id` int(10) unsigned NOT NULL,

`rlname` varchar(50) NULL,

`location` varchar(50) NULL,

`comment` tinytext NULL,

`recovery_key` char(32) NULL,

UNIQUE KEY `account_id` (`account_id`)

) ENGINE = InnoDB;

 

CREATE TABLE `nicaw_account_logs` (

`id` int(10) unsigned NOT NULL auto_increment,

`account_id` int(11) NOT NULL,

`ip` int(11) NOT NULL,

`date` int(11) NOT NULL,

`action` varchar(255) NOT NULL,

UNIQUE KEY `id` (`id`),

KEY `account_id` (`account_id`)

) ENGINE = InnoDB;

 

CREATE TABLE `nicaw_news` (

`id` int(10) unsigned NOT NULL auto_increment,

`title` varchar(64) NOT NULL,

`creator` varchar(25) NOT NULL,

`date` int(11) NOT NULL,

`text` text NOT NULL,

`html` tinyint(1) NOT NULL default '0',

UNIQUE KEY `id` (`id`)

) ENGINE = InnoDB;

 

CREATE TABLE `nicaw_polls` (

`id` int(10) unsigned NOT NULL auto_increment,

`question` varchar(255) NOT NULL,

`startdate` int(10) unsigned NOT NULL,

`enddate` int(10) unsigned NOT NULL,

`minlevel` int(10) unsigned NOT NULL,

`hidden` tinyint(1) NOT NULL default '0',

UNIQUE KEY `id` (`id`)

) ENGINE = InnoDB;

 

CREATE TABLE `nicaw_poll_options` (

`id` int(10) unsigned NOT NULL auto_increment,

`poll_id` int(10) unsigned NOT NULL,

`option` varchar(255) NOT NULL,

UNIQUE KEY `id` (`id`)

) ENGINE = InnoDB;

 

CREATE TABLE `nicaw_poll_votes` (

`option_id` int(10) unsigned NOT NULL,

`account_id` int(11) NOT NULL,

`ip` int(11) NOT NULL

) ENGINE = InnoDB;

 

CREATE TABLE `nicaw_guild_invites` (

`gid` int(10) unsigned NOT NULL COMMENT 'guild id',

`pid` int(10) unsigned NOT NULL COMMENT 'player id',

`rank` int(10) unsigned NOT NULL

) ENGINE = InnoDB;

 

CREATE TABLE `nicaw_guild_info` (

`id` int(10) unsigned NOT NULL COMMENT 'guild id',

`description` TINYTEXT NULL,

UNIQUE KEY `id` (`id`)

) ENGINE = InnoDB;

 

@edit

 

se não funcionar use outro site.

Link para o comentário
Compartilhar em outros sites

78861207.png

Olha Eu Segui a video aula direitinho mas deu isso ajuda aii!!!

 

Edited!!!

Esquece funfo aki de boa vleuu! rep mais pra vc hj emm! abrsss

Editado por Avuenja
Link para o comentário
Compartilhar em outros sites

no meu site quando eu vo criar um Acc da esse erro agraçeco se vc mi ajudar beeki

 

 

 

 

 

 

 

 

 

e fica dando esses outros erros em baixo

 

 

Deprecated: Function eregi() is deprecated in C:\xampp\htdocs\class\iobox.php on line 105

 

Deprecated: Function eregi() is deprecated in C:\xampp\htdocs\class\iobox.php on line 105

 

Deprecated: Function eregi() is deprecated in C:\xampp\htdocs\class\iobox.php on line 105

 

Deprecated: Function eregi() is deprecated in C:\xampp\htdocs\class\globals.php on line 45

 

Deprecated: Function ereg() is deprecated in C:\xampp\htdocs\class\globals.php on line 35

 

help =p

 

 

 

Error #1048

INSERT INTO `nicaw_account_logs` (id, ip, account_id, date, action) VALUES(NULL, INET_ATON('::1'), 3525180, UNIX_TIMESTAMP(NOW()), 'Created')

Column 'ip' cannot be null

 

account.php on line: 129

Script was terminated because something unexpected happened. You can report this, if you think it's a bug.

Link para o comentário
Compartilhar em outros sites

no meu site quando eu vo criar um Acc da esse erro agraçeco se vc mi ajudar beeki

 

 

 

 

 

 

 

 

 

e fica dando esses outros erros em baixo

 

 

Deprecated: Function eregi() is deprecated in C:\xampp\htdocs\class\iobox.php on line 105

 

Deprecated: Function eregi() is deprecated in C:\xampp\htdocs\class\iobox.php on line 105

 

Deprecated: Function eregi() is deprecated in C:\xampp\htdocs\class\iobox.php on line 105

 

Deprecated: Function eregi() is deprecated in C:\xampp\htdocs\class\globals.php on line 45

 

Deprecated: Function ereg() is deprecated in C:\xampp\htdocs\class\globals.php on line 35

 

help =p

 

 

 

Error #1048

INSERT INTO `nicaw_account_logs` (id, ip, account_id, date, action) VALUES(NULL, INET_ATON('::1'), 3525180, UNIX_TIMESTAMP(NOW()), 'Created')

Column 'ip' cannot be null

 

account.php on line: 129

Script was terminated because something unexpected happened. You can report this, if you think it's a bug.

 

execute isso no seu Banco de dados.

 

CREATE TABLE `nicaw_accounts` (
 `account_id` int(10) unsigned NOT NULL,
 `rlname` varchar(50) NULL,
 `location` varchar(50) NULL,
 `comment` tinytext NULL,
 `recovery_key` char(32) NULL,
 UNIQUE KEY `account_id` (`account_id`)
) ENGINE = InnoDB;
CREATE TABLE `nicaw_account_logs` (
 `id` int(10) unsigned NOT NULL auto_increment,
 `account_id` int(11) NOT NULL,
 `ip` int(11) NOT NULL,
 `date` int(11) NOT NULL,
 `action` varchar(255) NOT NULL,
 UNIQUE KEY `id` (`id`),
 KEY `account_id` (`account_id`)
) ENGINE = InnoDB;
CREATE TABLE `nicaw_news` (
 `id` int(10) unsigned NOT NULL auto_increment,
 `title` varchar(64) NOT NULL,
 `creator` varchar(25) NOT NULL,
 `date` int(11) NOT NULL,
 `text` text NOT NULL,
 `html` tinyint(1) NOT NULL default '0',
 UNIQUE KEY `id` (`id`)
) ENGINE = InnoDB;
CREATE TABLE `nicaw_polls` (
 `id` int(10) unsigned NOT NULL auto_increment,
 `question` varchar(255) NOT NULL,
 `startdate` int(10) unsigned NOT NULL,
 `enddate` int(10) unsigned NOT NULL,
 `minlevel` int(10) unsigned NOT NULL,
 `hidden` tinyint(1) NOT NULL default '0',
 UNIQUE KEY `id` (`id`)
) ENGINE = InnoDB;
CREATE TABLE `nicaw_poll_options` (
 `id` int(10) unsigned NOT NULL auto_increment,
 `poll_id` int(10) unsigned NOT NULL,
 `option` varchar(255) NOT NULL,
 UNIQUE KEY `id` (`id`)
) ENGINE = InnoDB;
CREATE TABLE `nicaw_poll_votes` (
 `option_id` int(10) unsigned NOT NULL,
 `account_id` int(11) NOT NULL,
 `ip` int(11) NOT NULL
) ENGINE = InnoDB;
CREATE TABLE `nicaw_guild_invites` (
`gid` int(10) unsigned NOT NULL COMMENT 'guild id',
`pid` int(10) unsigned NOT NULL COMMENT 'player id',
`rank` int(10) unsigned NOT NULL
) ENGINE = InnoDB;
CREATE TABLE `nicaw_guild_info` (
`id` int(10) unsigned NOT NULL COMMENT 'guild id',
`description` TINYTEXT NULL,
UNIQUE KEY `id` (`id`)
) ENGINE = InnoDB;

 

 

num tenho jogar sem site tipow oz ot de tibia abrir com a espada

 

não entendi o que você quis dizer.

Link para o comentário
Compartilhar em outros sites

×
×
  • Criar Novo...