Ir para conteúdo

Tricoder

Héroi
  • Registro em

  • Última visita

Tudo que Tricoder postou

  1. Tricoder postou uma resposta no tópico em Suporte Tibia OTServer
    @ThunFox, poste as linhas dos arquivos em spoiler, por favor.
  2. @Magrao138 Teu TFS é 0.4 né? Executa isso no sqlitestudio: ALTER TABLE killers ADD war INTEGER NOT NULL DEFAULT 0;
  3. Enviado do meu iPhone usando Tapatalk
  4. Tricoder postou uma resposta no tópico em Suporte Tibia OTServer
    Enviado do meu iPhone usando Tapatalk
  5. Eu respondi essa mesma dúvida há um tempo atrás, use a ferramenta "pesquisar" e você encontrará a solução. Enviado do meu iPhone usando Tapatalk
  6. Tricoder postou uma resposta no tópico em Formação de Equipe
    Tem milhões de Jean Moraes no facebook. Melhore seu tópico dando mais informação de meios de contato. Informe mais sobre o seu projeto, como será, etc.
  7. @lucaspds 1. Você não especificou seu TFS, então... Vai em game.cpp e procure por: void Game::showHotkeyUseMessage(Player* player, Item* item) { int32_t subType = -1; if(item->hasSubType() && !item->hasCharges()) subType = item->getSubType(); const ItemType& it = Item::items[item->getID()]; uint32_t count = player->__getItemTypeCount(item->getID(), subType, false); char buffer[40 + it.name.size()]; if(count == 1) sprintf(buffer, "Using the last %s...", it.name.c_str()); else sprintf(buffer, "Using one of %d %s...", count, it.pluralName.c_str()); player->sendTextMessage(MSG_INFO_DESCR, buffer); } Substitua por: void Game::showHotkeyUseMessage(Player* player, Item* item) { const ItemType& it = Item::items[item->getID()]; uint32_t count = player->__getItemTypeCount(item->getID(), -1); char buffer[40 + it.name.size()]; if(count == 1) sprintf(buffer, "Using the last %s...", it.name.c_str()); else sprintf(buffer, "Using one of %d %s...", count, it.pluralName.c_str()); player->sendTextMessage(MSG_INFO_DESCR, buffer); }
  8. @firete Quando tiver uma dúvida dferente, crie outro tópico, isso ajudará outras pessoas, enfim... Você seguiu esse tutorial?
  9. @canaldextiger Isso não está relacionado com a versão do RME e nem é problema com o RME. Isso acontece porque o items.otb que você usou para editar e salvar o mapa, estava com a versão errada. Para isso, crie um novo mapa (file > new) com a versão correta de items.otb (um que não bugue, no caso) e vá em file > import map. Após isso, salve o mapa. Isso fará com que não fique mais corrompido, ai você pode fazer o que quiser pois não irá aparecer o erro.
  10. @firete Abre config-and-functions.php e procura por: // ###################### CONFIG ######################## Abaixo coloque: date_default_timezone_set('America/Sao_Paulo'); Veja se o erro some agora. SE não sumir, abra o arquivo system/load.init, procure por: session_start() Abaixo coloque: date_default_timezone_set('America/Sao_Paulo'); Veja agora.
  11. Tricoder postou uma resposta no tópico em Suporte Tibia OTServer
    @Well ownaz O que tem no install.php na linha 606?
  12. @zPerseu Posso ajudar se você postar a linha 47 kkkkk
  13. @erick10 Não poste o script inteiro e sim a linha que informa o erro. E se for postar o script inteiro, poste em spoiler. Enfim, poste a linha 47 do website.php. Sobre trocar de database, isso não tem nada a ver, lol.
  14. @firete Copia a linha 523 do latestnews.php e coloque em Spoiler. Sobre o erro 32, rode no phpmyadmin: DROP TABLE IF EXISTS `player_killers`; CREATE TABLE `player_killers` ( `kill_id` INT NOT NULL, `player_id` INT NOT NULL, FOREIGN KEY (`kill_id`) REFERENCES `killers`(`id`) ON DELETE CASCADE, FOREIGN KEY (`player_id`) REFERENCES `players`(`id`) ON DELETE CASCADE ) ENGINE = InnoDB; ALTER TABLE `guilds` ADD `logo_gfx_name` VARCHAR(255) NOT NULL DEFAULT "default-logo.png"
  15. @bismarkzika Você utiliza phpmyadmin ou sqlitestudio?
  16. @sidneivascao Esse Roar of Time e Last Resort são magias próprias? Se sim, você as modificou errado. Poste os arquivos aqui em spoiler.
  17. @baiak21 Posta seu Moveevents.xml em spoiler.
  18. @Naze Roda no phpmyadmin: DROP TABLE IF EXISTS `announcements`; CREATE TABLE IF NOT EXISTS `announcements` ( `id` int(10) NOT NULL AUTO_INCREMENT, `title` varchar(50) NOT NULL, `text` varchar(255) NOT NULL, `date` varchar(20) NOT NULL, `author` varchar(50) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
  19. Rode isso no phpmyadmin DROP TABLE IF EXISTS `z_forum`; CREATE TABLE IF NOT EXISTS `z_forum` ( `id` int(11) NOT NULL AUTO_INCREMENT, `sticky` tinyint(1) NOT NULL DEFAULT '0', `closed` tinyint(1) NOT NULL DEFAULT '0', `first_post` int(11) NOT NULL DEFAULT '0', `last_post` int(11) NOT NULL DEFAULT '0', `section` int(3) NOT NULL DEFAULT '0', `replies` int(20) NOT NULL DEFAULT '0', `views` int(20) NOT NULL DEFAULT '0', `author_aid` int(20) NOT NULL DEFAULT '0', `author_guid` int(20) NOT NULL DEFAULT '0', `post_text` text NOT NULL, `post_topic` varchar(255) NOT NULL, `post_smile` tinyint(1) NOT NULL DEFAULT '0', `post_date` int(20) NOT NULL DEFAULT '0', `last_edit_aid` int(20) NOT NULL DEFAULT '0', `edit_date` int(20) NOT NULL DEFAULT '0', `post_ip` varchar(15) NOT NULL DEFAULT '0.0.0.0', `icon_id` tinyint(4) NOT NULL DEFAULT '1', `post_icon_id` tinyint(10) NOT NULL, PRIMARY KEY (`id`), KEY `section` (`section`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=6 ;
  20. @woiciechovski DROP TABLE IF EXISTS `z_helpdesk`; CREATE TABLE IF NOT EXISTS `z_helpdesk` ( `account` varchar(255) NOT NULL, `type` int(11) NOT NULL, `status` int(11) NOT NULL, `text` text NOT NULL, `id` int(11) NOT NULL, `subject` varchar(255) NOT NULL, `priority` int(11) NOT NULL, `reply` int(11) NOT NULL, `who` int(11) NOT NULL, `uid` int(11) NOT NULL AUTO_INCREMENT, `tag` int(11) NOT NULL, `registered` int(11) NOT NULL, PRIMARY KEY (`uid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=26 ;
  21. @flavio1997 É só você clicar em uma das opções e adicionar a venda do item no shop, ué.
  22. É proibido ressuscitar tópico, preste mais atenção. Respondendo sua dúvida, fica na pasta pages.
  23. @hellgorak Você provavelmente não alterou essa linha: $config['pagseguro']['email'] = 'SEU E-MAIL DO PAGSEGURO';
  24. @boxxer321 Poste as linhas 32 e 64 do seu latestnews.php.
  25. @Baiak Legend Poste o script .php de doação aqui.

Informação Importante

Confirmação de Termo