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

Recent content by tobi132

  1. T

    AAC ZnoteAAC HELP highlighting boxes inside boxes php

    You already have this class there: <table id="highscoresTable" class="table table-striped table-hover"> table-hover, but it should be hoverTable instead, because in css the minus is important, and also you need to be precise.
  2. T

    AAC ZnoteAAC HELP highlighting boxes inside boxes php

    You need to set the class to the table. Look here (google ftw): Highlight Table Row on hover using CSS (https://www.textfixer.com/tutorials/highlight-table-row.php) .hoverTable tr{ background: #b8d1f3; } And the highscores table: <table class="hoverTable">
  3. T

    Solved Auto-detect country when accessing register.php

    You don't need jquery for this at all. Just paste the code above that form and use it in that <select with "selected" attribute.
  4. T

    Change ports in Tibia Client 13

    No. You just need to change the gameProtocolPort in config.lua
  5. T

    Change ports in Tibia Client 13

    In client 13, its web server (login.php) who sends the login ports. For example, myaac uses gameProtocolPort from config.lua $port = $config['lua']['gameProtocolPort']; // default world info $world = [ 'id' => 0, 'name' => $config['lua']['serverName'], 'externaladdress' =>...
  6. T

    Solved Which CSS to change this colors? - MyAAC

    What color do you mean? The text or the background? The background colors can be configured in templates/your-template/config.ini or config.php
  7. T

    Help! Setting up TFS for the first time on Mac, unsure of what to do next.

    The message is clear. You need to download the 10.99 client and copy the selected files into the specified folder (things/1099).
  8. T

    Blocking login Account Manager in MY-AAC 0.8.16

    Short but gold! 🤣
  9. T

    Myaac - Gesior Shop Plugin gifts.php error 500

    Try delete all z_ tables (z_shop_offer, z_shop_categories etc.) and then reinstall the plugin again
  10. T

    help name of the invisible towns in myacc

    Did you start your server already? There is town table in mysql, where towns are saved. If it's empty then you will see empty list. They are always loaded on server startup.
  11. T

    PHP How I read player_items.attributes?

    If you use myaac, then you can use this class https://github.com/slawkens/myaac/blob/master/system%2Flibs%2Fpot%2FOTS_Buffer.php usage: $buffer = new OTS_Buffer($test['attributes ']); Then use the functions to read the data: $buffer->getChar(); $buffer->getShort(); $buffer->getLong()...
  12. T

    RevScripts Mysql login history table

    CREATE TABLE IF NOT EXISTS `login_history` ( `id` INT(11) NOT NULL AUTO_INCREMENT, `account_id` INT(11) NOT NULL DEFAULT 0, `player_id` INT(11) NOT NULL DEFAULT 0, `where` TINYINT(1) NOT NULL DEFAULT 0 COMMENT '1 - server, 2 - website', `type` TINYINT(1) NOT NULL DEFAULT 0 COMMENT '1 - login, 2...
  13. T

    new MYAAC CATEGORY

    1) In templates/tibiacom/config.php Add new entry into menu_categories, like shown here: (The line with 8) $config['menu_categories'] = array( MENU_CATEGORY_NEWS => array('id' => 'news', 'name' => 'Latest News'), MENU_CATEGORY_ACCOUNT => array('id' => 'account', 'name' => 'Account')...
  14. T

    RevScripts Mysql login history table

    Can you post the script? I maybe have a sql for this.
  15. T

    AAC myaac-0.8.16 When a player buys points, he does not get them

    How are we supposed to help you if all you say is: he does not get the points? o_O
Back
Top