Ir para conteúdo
  • Cadastre-se

Bots & Macro

Confira aqui os melhores bots disponíveis!

Fóruns

  1. ElfBot

    Aqui você poderá compartilhar seus tutoriais, waypoints, scripts, targetings e retirar suas duvidas.

    5
    posts
  2. BBot

    Confira todas as novidades sobre este incrível bot para Tibia!

    1.8k
    posts
  3. Blackd Tools

    Aqui você poderá conferir todas as novidades relacionada à Blackd Tools, além de tirar suas duvidas sobre ele!

    56
    posts
  4. ElfBot NG

    Scripts, hotkeys e afins

    Códigos de Elf-Bot NG.

    1.5k
    posts
  5. TibiaBot NG

    Aqui você poderá compartilhar seus tutoriais, waypoints, scripts e retirar suas duvidas.

    253
    posts
  6. iBot

    Esta seção é dedicada ao iBot, aqui você poderá encontrar tudo relacionado à este cheat!

    1.2k
    posts
  7. MageBOT

    Poste e veja aqui todas as informações disponíveis sobre o MageBOT.

    519
    posts
  8. Tibia Auto

    Aqui você poderá conferir todas as novidades relacionada ao Tibia Auto, além de tirar suas duvidas sobre ele!

    668
    posts
  9. WindBot

    Aqui você poderá conferir todas as novidades relacionada ao WindBot, além de tirar suas duvidas sobre ele!

    91
    posts
  10. Xeno Bot

    Esta seção é dedicada ao Xeno Bot, aqui você poderá encontrar tudo relacionado à este cheat!

    1.1k
    posts
  11. Bots para OTC

    Seção destinada à conteúdos para bots para o OT Client.

    263
    posts
  12. Outros Bots

    Esta seção é dedicada a bots que não tem uma categoria própria em nosso fórum, aqui você poderá encontrar tudo relacionado à estes bots!

    4k
    posts
  13. Suporte Bots

    Pedidos, Duvidas e Erros

    Tire suas duvidas e faça seus pedidos sobre Bots aqui.

    11k
    posts
  • Quem Está Navegando   0 membros estão online

    Nenhum usuário registrado visualizando esta página.



  • TK Destaques 2023:

  • Posts Recentes

    • Alguem me ajuda ai estou com um erro critico quando vou tentar abrir meu site    Qual o motivo deste tópico?    Está surgindo algum erro? Se sim coloque-o aqui.    ESSE E MEU DATABASE.PHP  <?php if (!defined('INITIALIZED')) exit; class Database extends PDO { const DB_MYSQL = 1; public $connectionError = ''; public $queriesCount = 0; public $printQueries = false; private $connected = false; private $db_driver = 'shem'; private $db_host = 'localhost'; private $db_port = '3306'; private $db_name = 'shem'; private $db_username = 'root'; private $db_password; private $db_file = 'shem'; public function setPrintQueries($value) { return $this->printQueries = $value; } public function getDatabaseDriver() { return $this->db_driver; } public function getDatabaseHost() { return $this->db_host; } public function getDatabasePort() { return $this->db_port; } public function getDatabaseName() { return $this->db_name; } public function getDatabaseUsername() { return $this->db_username; } public function getDatabasePassword() { return $this->db_password; } public function getDatabaseFile() { return $this->db_file; } public function setDatabaseDriver($value) { $this->db_driver = $value; } public function setDatabaseHost($value) { $this->db_host = $value; } public function setDatabasePort($value) { $this->db_port = $value; } public function setDatabaseName($value) { $this->db_name = $value; } public function setDatabaseUsername($value) { $this->db_username = $value; } public function setDatabasePassword($value) { $this->db_password = $value; } public function setDatabaseFile($value) { $this->db_file = $value; } public function beginTransaction() { if ($this->isConnected() || $this->connect()) return parent::beginTransaction(); else throw new RuntimeException('Website is not connected to database. Cannot execute "beginTransaction()"'); } public function isConnected() { return $this->connected; } public function setConnected($value) { $this->connected = $value; } public function connect() { return false; } public function commit() { if ($this->isConnected() || $this->connect()) return parent::commit(); else throw new RuntimeException('Website is not connected to database. Cannot execute "commit()"'); } public function errorCode() { if ($this->isConnected() || $this->connect()) return parent::errorCode(); else throw new RuntimeException('Website is not connected to database. Cannot execute "errorCode()"'); } public function exec($statement) { if ($this->isConnected() || $this->connect()) return parent::exec($statement); else throw new RuntimeException('Website is not connected to database. Cannot execute exec($statement)'); } public function getAttribute($attribute) { if ($this->isConnected() || $this->connect()) return parent::getAttribute($attribute); else throw new RuntimeException('Website is not connected to database. Cannot execute getAttribute($attribute)'); } public function inTransaction() { if ($this->isConnected() || $this->connect()) return parent::inTransaction(); else throw new RuntimeException('Website is not connected to database. Cannot execute inTransaction()'); } public function lastInsertId($name = NULL) { if ($this->isConnected() || $this->connect()) return parent::lastInsertId($name); else throw new RuntimeException('Website is not connected to database. Cannot execute '); } public function prepare($statement, $driver_options = array()) { if ($this->isConnected() || $this->connect()) return parent::prepare($statement, $driver_options); else throw new RuntimeException('Website is not connected to database. Cannot execute lastInsertId($name)'); } public function query($statement) { $this->queriesCount++; // BETA TESTS - uncomment line below to print all queries on website before execution //echo'<br />' . $statement . '<br />'; if ($this->isConnected() || $this->connect()) { $ret = parent::query($statement); if ($this->printQueries) { $_errorInfo = $this->errorInfo(); echo '<table>'; echo '<tr><td>Query: </td><td>' . $statement . '</td></tr>'; echo '<tr><td>SQLSTATE: </td><td>' . $_errorInfo[0] . '</td></tr>'; echo '<tr><td>Driver code: </td><td>' . $_errorInfo[1] . '</td></tr>'; echo '<tr><td>Error message: </td><td>' . $_errorInfo[2] . '</td></tr>'; echo '</table>'; } return $ret; } else throw new RuntimeException('Website is not connected to database. Cannot execute query($statement)'); } public function errorInfo() { if ($this->isConnected() || $this->connect()) return parent::errorInfo(); else throw new RuntimeException('Website is not connected to database. Cannot execute errorInfo()'); } public function quote($string, $parameter_type = PDO::PARAM_STR) { if ($this->isConnected() || $this->connect()) return parent::quote($string, $parameter_type); else throw new RuntimeException('Website is not connected to database. Cannot execute quote($string, $parameter_type)'); } public function rollBack() { if ($this->isConnected() || $this->connect()) return parent::rollBack(); else throw new RuntimeException('Website is not connected to database. Cannot execute rollBack()'); } public function setAttribute($attribute, $value) { if ($this->isConnected() || $this->connect()) return parent::setAttribute($attribute, $value); else throw new RuntimeException('Website is not connected to database. Cannot execute setAttribute($attribute, $value)'); } public function setConnectionError($string) { $this->connectionError = $string; } }   Você tem alguma imagem que possa auxiliar no problema? Se sim, coloque-a aqui.   
    • Prezados,   Boa Tarde.   Estou criando um projeto de um otserver 8.60 com novas funções do 12, estou em busca de pessoas que estejam disponível e com conhecimento para me ajudar a desenvolver.   Fico a disposição.
    • Caso ainda precise. 5547988449714   Trabalho com C++ (Verificação de bugs e melhorias) e Lua (Quests e Sistemas)
×
×
  • Criar Novo...

Informação Importante

Confirmação de Termo