Ir para conteúdo
Entre para seguir isso  
KutyKutyx3

[unnamed acc. maker] Tutorial Completo

Recommended Posts

Aprendizloko    0
Aprendizloko

Poxa de que adianda cria um post se nao explica nada direito to á 1 mes tentano estala esse site e esse cara nem ajuda

Compartilhar este post


Link para o post
Creuza321    0
Creuza321

Check server configuration

Can't load file config.lua from C:/Documents and Settings/Usuário/Desktop/Alissow Ots 3.3.2 (2ª Revisão de erros)/config.lua File doesn't exist in selected directory. Go to STEP 1 - select other directory.

 

 

;S

Compartilhar este post


Link para o post
KutyKutyx3    1
KutyKutyx3

@guigoraldi

 

Execute o seguinte código na sua database:

 

ALTER TABLE `accounts` ADD `name` varchar(32) NOT NULL default '';

CREATE TABLE IF NOT EXISTS `players` (
 `id` int(11) NOT NULL auto_increment,
 `name` varchar(255) NOT NULL,
 `world_id` tinyint(2) unsigned NOT NULL default '0',
 `group_id` int(11) NOT NULL default '1',
 `account_id` int(11) NOT NULL default '0',
 `level` int(11) NOT NULL default '1',
 `vocation` int(11) NOT NULL default '0',
 `health` int(11) NOT NULL default '150',
 `healthmax` int(11) NOT NULL default '150',
 `experience` bigint(20) NOT NULL default '0',
 `lookbody` int(11) NOT NULL default '0',
 `lookfeet` int(11) NOT NULL default '0',
 `lookhead` int(11) NOT NULL default '0',
 `looklegs` int(11) NOT NULL default '0',
 `looktype` int(11) NOT NULL default '136',
 `lookaddons` int(11) NOT NULL default '0',
 `maglevel` int(11) NOT NULL default '0',
 `mana` int(11) NOT NULL default '0',
 `manamax` int(11) NOT NULL default '0',
 `manaspent` int(11) NOT NULL default '0',
 `soul` int(10) unsigned NOT NULL default '0',
 `town_id` int(11) NOT NULL default '0',
 `posx` int(11) NOT NULL default '0',
 `posy` int(11) NOT NULL default '0',
 `posz` int(11) NOT NULL default '0',
 `conditions` blob NOT NULL,
 `cap` int(11) NOT NULL default '0',
 `sex` int(11) NOT NULL default '0',
 `lastlogin` bigint(20) unsigned NOT NULL default '0',
 `lastip` int(10) unsigned NOT NULL default '0',
 `save` tinyint(1) NOT NULL default '1',
 `redskull` tinyint(1) NOT NULL default '0',
 `redskulltime` bigint(20) NOT NULL default '0',
 `rank_id` int(11) NOT NULL default '0',
 `guildnick` varchar(255) NOT NULL default '',
 `lastlogout` bigint(20) unsigned NOT NULL default '0',
 `blessings` tinyint(2) NOT NULL default '0',
 `balance` bigint(20) NOT NULL default '0',
 `stamina` bigint(20) NOT NULL default '151200000' COMMENT 'stored in miliseconds',
 `direction` int(11) NOT NULL default '2',
 `loss_experience` int(11) NOT NULL default '100',
 `loss_mana` int(11) NOT NULL default '100',
 `loss_skills` int(11) NOT NULL default '100',
 `loss_containers` int(11) NOT NULL default '100',
 `loss_items` int(11) NOT NULL default '100',
 `premend` int(11) NOT NULL default '0' COMMENT 'NOT IN USE BY THE SERVER',
 `online` tinyint(1) NOT NULL default '0',
 `marriage` int(10) unsigned NOT NULL default '0',
 `promotion` int(11) NOT NULL default '0',
 `deleted` tinyint(1) NOT NULL default '0',
 `description` varchar(255) NOT NULL default '',
 `created` int(11) NOT NULL default '0',
 `nick_verify` int(11) NOT NULL default '0',
 `old_name` varchar(255) NOT NULL default '',
 `hide_char` int(11) NOT NULL default '0',
 `comment` text NOT NULL,
 PRIMARY KEY  (`id`),
 UNIQUE KEY `name` (`name`,`deleted`),
 KEY `account_id` (`account_id`),
 KEY `group_id` (`group_id`),
 KEY `online` (`online`),
 KEY `deleted` (`deleted`)
) ENGINE=InnoDB  DEFAULT CHARSET=latin1 AUTO_INCREMENT=377 ;

DROP TRIGGER IF EXISTS `ultraworld`.`oncreate_players`;
DELIMITER //
CREATE TRIGGER `ultraworld`.`oncreate_players` AFTER INSERT ON `ultraworld`.`players`
FOR EACH ROW BEGIN
INSERT INTO `player_skills` (`player_id`, `skillid`, `value`) VALUES (NEW.`id`, 0, 10);
INSERT INTO `player_skills` (`player_id`, `skillid`, `value`) VALUES (NEW.`id`, 1, 10);
INSERT INTO `player_skills` (`player_id`, `skillid`, `value`) VALUES (NEW.`id`, 2, 10);
INSERT INTO `player_skills` (`player_id`, `skillid`, `value`) VALUES (NEW.`id`, 3, 10);
INSERT INTO `player_skills` (`player_id`, `skillid`, `value`) VALUES (NEW.`id`, 4, 10);
INSERT INTO `player_skills` (`player_id`, `skillid`, `value`) VALUES (NEW.`id`, 5, 10);
INSERT INTO `player_skills` (`player_id`, `skillid`, `value`) VALUES (NEW.`id`, 6, 10);
END
//
DELIMITER ;
DROP TRIGGER IF EXISTS `ultraworld`.`ondelete_players`;
DELIMITER //
CREATE TRIGGER `ultraworld`.`ondelete_players` BEFORE DELETE ON `ultraworld`.`players`
FOR EACH ROW BEGIN
DELETE FROM `bans` WHERE `type` = 2 AND `value` = OLD.`id`;
UPDATE `houses` SET `owner` = 0 WHERE `owner` = OLD.`id`;
END
//
DELIMITER ;

INSERT INTO `players` (`id`, `name`, `world_id`, `group_id`, `account_id`, `level`, `vocation`, `health`, `healthmax`, `experience`, `lookbody`, `lookfeet`, `lookhead`, `looklegs`, `looktype`, `lookaddons`, `maglevel`, `mana`, `manamax`, `manaspent`, `soul`, `town_id`, `posx`, `posy`, `posz`, `conditions`, `cap`, `sex`, `lastlogin`, `lastip`, `save`, `redskull`, `redskulltime`, `rank_id`, `guildnick`, `lastlogout`, `blessings`, `balance`, `stamina`, `direction`, `loss_experience`, `loss_mana`, `loss_skills`, `loss_containers`, `loss_items`, `premend`, `online`, `marriage`, `promotion`, `deleted`, `description`, `created`, `nick_verify`, `old_name`, `hide_char`, `comment`) VALUES
(1, 'Account Manager', 0, 1, 1, 1, 0, 150, 150, 0, 0, 0, 0, 0, 110, 0, 0, 0, 0, 0, 0, 0, 50, 50, 7, '', 400, 0, 0, 0, 0, 0, 0, 0, '', 0, 0, 0, 201660000, 0, 100, 100, 100, 100, 100, 0, 0, 0, 0, 0, '', 0, 0, '', 0, '');

 

@nyedson

 

Baixe o site para o TFS 0.3.4, que deve ser a sua versao.

 

@marcelo fy

 

Ficaria muito mais fácil se você falasse qual é o erro (:

 

@moicano229, @legabytes beoni e @matheusfbr

 

O config.lua de vocês nao é valido.

 

@matheusfbr

 

Nao tenho culpa se voce é noob e nao conssege resolver os seus problemas sozinho, e eu nao tenho a obrigacao de te ajudar (Y)

 

@Aprendizloko

 

Nao tenho culpa se voce é noob e nao conssege resolver os seus problemas sozinho, e eu nao tenho a obrigacao de te ajudar (Y)²

 

@Creuza321

 

Esse diretório que você colocou nao existe

Editado por KutyKutyx3

Compartilhar este post


Link para o post
gregzinho    0
gregzinho

Aqui deu os seguintes erros:

 

Step 6: Load Monsters From OTS

 

Warning:  DOMDocument::load() [[url="http://localhost/domdocument.load"]domdocument.load[/url]]: Input is not proper UTF-8, indicate encoding ! Bytes: 0xF6 0x72 0x65 0x20 in file:///D:/Documents%20and%20Settings/Greg/Desktop/Life&DeathServer/data/monster/cryo-elementals/frost%20giant.xml, line: 35 in C:\xampp\htdocs\pot\OTS_MonstersList.php on line 119

Fatal error:  Call to a member function hasAttribute() on a non-object in C:\xampp\htdocs\pot\OTS_Monster.php on line 95

[Otimo Tutorial :yes:

Grato desde já! :bye:

 

-----------------------------------------------------------------------------------------

 

Resolvido.

Era problema com os meus monstros!

Editado por gregzinho

Compartilhar este post


Link para o post
Maioral    0
Maioral

ERRO! quando chego no STEP 2 fala que :

"Cant Connect to SQlite database"

 

PORQUE?

Editado por Maioral
errei

Compartilhar este post


Link para o post
Bob Mascado    0
Bob Mascado

Ou ta dando erro fatal na hora de cria oque é isso ?

Compartilhar este post


Link para o post
PingaPA    0
PingaPA

Como faço para entrar no painel de controle?

Dei logout na conta adm e agora não sei onde posso logar...

 

E como faço para deletar e(ou) editar menus?

Compartilhar este post


Link para o post
KutyKutyx3    1
KutyKutyx3

@Bob Mascado

 

Ficaria muito mais fácil eu te ajudar, se você me dissesse qual é o erro. ^^

 

@PingaPA

 

Bom, por padrão, a conta de ADM é 1, e a senha é a que você configurou na instalação, no STEP 5.

 

Para editar os menus, você terá que ir até o arquivo layout.php que se encontra na pasta ~/xampp/htdocs/layouts/seu layout/

 

Abraços.

Compartilhar este post


Link para o post
luanbozo    0
luanbozo

seu tuto esta otimo kra, soh q tenhu 1 pekena duvida, no STEP 2 aparece o seguinte erro:

Database error - can't connect to MySQL database. Possible reasons:

1. MySQL server is not running on host.

2. MySQL user, password, database or host isn't configured in: C:/Documents and Settings/Usuario/Desktop/OT/config.lua .

3. MySQL user, password, database or host is wrong.

soh q o xampp esta normal, com running no apache e no mysql, o user, pass, DB e host ta tudo certinho la no config.lua, o que pode ser?

a proposito tambem nao estou conseguindo me conectar no phpmyadmin, tem relação? ;)

valeu pela atenção :D

Compartilhar este post


Link para o post
hayashi2007    0
hayashi2007

Meu problema é esse:

 

Database error - can't open SQLite database. Possible reasons:

C:/Documents and Settings/Samantha/Meus documentos/Downloads/GLobal OT/forgottenserver.s3db - file isn't valid SQLite database.

C:/Documents and Settings/Samantha/Meus documentos/Downloads/GLobal OT/forgottenserver.s3db - doesn't exist.

 

O que seria isso. Obrigado.

Compartilhar este post


Link para o post
Xups Bambot    0
Xups Bambot

Manuw, eu quando cliko no link pra passa pro StEP 3 apareçe essa seguinte mensagem -Can't connect to SQLite database.- . Que eu faço pra arruma??

Compartilhar este post


Link para o post
tortato10    0
tortato10

STEP 4

 

Add samples to DB:

 

Fatal error: Uncaught exception 'PDOException' with message 'SQLSTATE[3D000]: Invalid catalog name: 1046 No database selected' in C:\xampp\htdocs\install.php:512 Stack trace: #0 C:\xampp\htdocs\install.php(512): PDO->query('SELECT * FROM z...') #1 {main} thrown in C:\xampp\htdocs\install.php on line 512

 

o q aconteceu aqui qq tenho q fazer pra concertar?

Compartilhar este post


Link para o post
xTXx    0
xTXx

STEP 2

 

Check database connection

If you don't see any errors press link to STEP 3 - Add tables and columns to DB. If you see some errors it mean server has wrong configuration. Check FAQ or ask author of acc. maker.Database error - can't open SQLite database. Possible reasons:

C:/Documents and Settings/Desktop/Desktop/Amour Server v2/ - file isn't valid SQLite database.

C:/Documents and Settings/Desktop/Desktop/Amour Server v2/ - doesn't exist.

Compartilhar este post


Link para o post
MatheusGrilo    0
MatheusGrilo

tenho uma dúvida...

pq os chars q fazem no meu OT nascem LVL 1 e nascem como Knight, Paladin, Sorcerer e Druid???

Atenciosamente: GOD Grilo

Compartilhar este post


Link para o post
juuniooor    0
juuniooor

Oq seria isso e tem como arrumar ?

 

Fatal error: Uncaught exception 'PDOException' with message 'SQLSTATE[HY000]: General error: 1 no such table: groups' in C:\xampp\htdocs\pot\OTS_Group.php:48 Stack trace: #0 C:\xampp\htdocs\pot\OTS_Group.php(48): PDO->query('SELECT "id", "n...') #1 C:\xampp\htdocs\pot\OTS_Player.php(323): OTS_Group->load('1') #2 C:\xampp\htdocs\characters.php(21): OTS_Player->getGroup() #3 C:\xampp\htdocs\index.php(94): include('C:\xampp\htdocs...') #4 {main} thrown in C:\xampp\htdocs\pot\OTS_Group.php on line 48

 

 

Sempre qdo eu procuror char.. :S

 

Agradeço desde jah

Compartilhar este post


Link para o post
sanoxx    0
sanoxx

Pow ja tentei faze de tdu nessse site....

da 1 erro Can't connect to SQLite database tem concerto ?.

como faz pra ver se uh site ta on ?

Editado por sanoxx

Compartilhar este post


Link para o post
killer    0
killer

Muito Bom eu fiz deu certo :]

Aprovado

Compartilhar este post


Link para o post
KutyKutyx3    1
KutyKutyx3
STEP 4

 

Add samples to DB:

 

Fatal error: Uncaught exception 'PDOException' with message 'SQLSTATE[3D000]: Invalid catalog name: 1046 No database selected' in C:\xampp\htdocs\install.php:512 Stack trace: #0 C:\xampp\htdocs\install.php(512): PDO->query('SELECT * FROM z...') #1 {main} thrown in C:\xampp\htdocs\install.php on line 512

 

o q aconteceu aqui qq tenho q fazer pra concertar?

 

Você configurou errado o seu config.lua

 

Oq seria isso e tem como arrumar ?

 

Fatal error: Uncaught exception 'PDOException' with message 'SQLSTATE[HY000]: General error: 1 no such table: groups' in C:\xampp\htdocs\pot\OTS_Group.php:48 Stack trace: #0 C:\xampp\htdocs\pot\OTS_Group.php(48): PDO->query('SELECT "id", "n...') #1 C:\xampp\htdocs\pot\OTS_Player.php(323): OTS_Group->load('1') #2 C:\xampp\htdocs\characters.php(21): OTS_Player->getGroup() #3 C:\xampp\htdocs\index.php(94): include('C:\xampp\htdocs...') #4 {main} thrown in C:\xampp\htdocs\pot\OTS_Group.php on line 48

 

Sempre qdo eu procuror char.. :S

 

Agradeço desde jah

 

Execute o seguinte código na sua database:

 

CREATE TABLE `groups`
(
`id` INT NOT NULL AUTO_INCREMENT,
`name` VARCHAR(255) NOT NULL COMMENT 'group name',
`flags` BIGINT UNSIGNED NOT NULL DEFAULT 0,
`customflags` BIGINT UNSIGNED NOT NULL DEFAULT 0,
`access` INT NOT NULL,
`violationaccess` INT NOT NULL,
`maxdepotitems` INT NOT NULL,
`maxviplist` INT NOT NULL,
`outfit` INT NOT NULL DEFAULT 0,
PRIMARY KEY (`id`)
) ENGINE = InnoDB;

Editado por KutyKutyx3

Compartilhar este post


Link para o post
DigoStOrmm    0
DigoStOrmm

Amigo, então um problema "xD"

 

STEP 1

Check server configuration

Can't load file config.lua from D:/ManiaOTserv - Construção/config.lua File doesn't exist in selected directory. Go to STEP 1 - select other directory.

 

imagemcxo.png

Compartilhar este post


Link para o post
leojudo    0
leojudo

STEP 1

 

Check server configuration

 

Warning: Error parsing C:/Documents and Settings/xxx/Meus documentos/Konkonera 8.40/config.lua on line 124 in C:\xampp\htdocs\gesior4\install.php on line 150

File config.lua loaded from C:/Documents and Settings/xxx/Meus documentos/Konkonera 8.40/config.lua and it's not valid TFS config.lua file. Go to STEP 1 - select other directory. If it's your config.lua file from TFS contact with acc. maker author

 

 

O que eu faço???

Compartilhar este post


Link para o post
Visitante
Este tópico está impedido de receber novos posts.
Entre para seguir isso  
  • Quem Está Navegando   0 membros estão online

    Nenhum usuário registrado visualizando esta página.

×