• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Search results

  1. M

    AAC Reborn status on the page HELP!

    I modified the query a bit: $reborns = $SQL->query('SELECT reborns FROM ' . $SQL->tableName('players') . ' WHERE `id` = ' . $player->getID())->fetch(); Now it selects player id and also I removed some (i think) useless WHERE clause.
  2. M

    AAC Reborn status on the page HELP!

    Add a semicolon after that line: (semicolon - ;;;;;;) $reborns_query = $SQL->query ...;
  3. M

    MyACC Loleslav Layout questions

    That change I posted was for online page, for highscores and characters there are two other directives: $config['highscores_outfit'] = false; $config['characters']['outfit'] = false;
  4. M

    MyACC Loleslav Layout questions

    Sorry I did some small mistake in 2. It should be like this: $config['online_outfit']= false; 3. Search for this in default.css: .title { height: 27px; margin: 0px; padding: 10px 0px 0px 12px; font-size: 15px; color: #FFFFFF; } It's the class for that Home or Hi. You can add into it...
  5. M

    MyACC Loleslav Layout questions

    1. Go to your database, table players. Check id field of every sample vocation and save it in config.local.php under highscores_ids_hidden. Example: $config['highscores_ids_hidden'] = array(1, 2, 3, 4); // ids of your samples characters 2. Set 'online_outfit' => false in config.local.php...
  6. M

    OTX SERWER 3 PROTOKOL 8.6 NIEDZILAJA NIEKTORE KOMENDY

    3 to Senior Tutor. Tutaj cala lista: enum AccountType_t : uint8_t { ACCOUNT_TYPE_NORMAL = 1, ACCOUNT_TYPE_TUTOR = 2, ACCOUNT_TYPE_SENIORTUTOR = 3, ACCOUNT_TYPE_GAMEMASTER = 4, ACCOUNT_TYPE_GOD = 5 };
  7. M

    Compiling [YACT] Yet Another Compilation Thread..

    What does pkg-config --list-all|grep -i lua output? Also, tried adding this into your configure.ac file? PKG_CHECK_MODULES([LUA], [lua5.1])
  8. M

    Compiling [YACT] Yet Another Compilation Thread..

    Found exact same issue here: Undefined reference to dlclose@@GLIBC_2.2.5 · Issue #1664 · awesomeWM/awesome · GitHub Maybe it can help to resolve your problem.
  9. M

    Gesior text layout problem

    Most probably you did something wrong when copying the code. I would suggest doing it one more time, to ensure its right. I think you forgot some small character like closing or open tag '<' or '>', or quote (" or '). Also, the PHP code you posted is irrelevant.
  10. M

    [SQL][Lua] Check information in table sql players

    Its better when you save lang in accounts table. And you can check it like this: local player = Player(cid) local accid = player:getAccountId() local data = db.storeQuery("SELECT `lang` FROM `accounts` WHERE `id` ='"..accid.."';") local lang = result.getNumber(data, "lang")
  11. M

    Error accmaker

    You need to import your database schema into your database. You can do it with phpmyadmin. Select your database and go to 'Import' and then select your schema file. Its commonly named schema.mysql or something like this in your server directory.
  12. M

    Error accmaker

    Make a new file phpinfo.php in your htdocs dir with this content: <?php phpinfo(); Then navigate your browser to http://localhost/phpinfo.php (or any other domain your site is located at). Then search on this website (in your browser) for "session". Then make a screenshot showing all the...
  13. M

    Error accmaker

    Looks like problem with session. Do you have enabled cookies in your browser? Also check what's in your php.ini file under session.save_path - is this directory writable by your web server?
  14. M

    Lua Advance Scripts - Money & Health and Mana FULL on level up

    You got the answer, but some people might need some more features, like items in a backpack, only for vocation, or for the specified skill. That's why I made a mod for TFS 0.3/0.4, like 7 years ago. https://raw.githubusercontent.com/slawkens/tfs-mods/master/advance-reward.xml Just copy it...
  15. M

    MyAAC v0.7.12

    Thanks for the report. Try this: https://github.com/slawkens/myaac/archive/0.7.zip (Its latest 0.7 that will be released soon)
  16. M

    Serwerownie - opinie, pytania oraz wszystko co z nimi związane

    Z kimsufi jest ten problem ze nie mozna dodac/kupic dodatkowych adresow IP. Dlatego tez swoj serwer zamowilem w hetzner.de, jest tam gielda uzywanych serwerow gdzie bardzo korzystnie mozna nabyc mocny serwer z dyskiem SSD (Serverbörse Root Server günstig ersteigern - Hetzner Online GmbH). Do...
  17. M

    MyAAC v0.7.12

    Why don't you give your second vocation id = 1? It will fix the bug.
  18. M

    Website Help

    If you want to display that highscores top 5 sorted by reborns, change in that function getTopPlayers() this: ORDER BY `experience` to this: ORDER BY `reborn` Or do you mean something different? BTW. I'm going sleep now, so I will probably answer you tomorrow.
  19. M

    Website Help

    Modify this function inside of system/functions.php: function getTopPlayers($limit = 5) { change: $players = $db->query('SELECT `name`, `level`, `experience` FROM `players` WHERE `group_id` < ' . $config['highscores_groups_hidden'] . ' AND `' . $deleted . '` = 0 AND account_id != 1 ORDER BY...
  20. M

    Lua Text on tp.

    In your code everything is correct. I tested it now in lua online editor: Lua: demo The functions in loop are executed properly. Try adding some print function to see if this globalevent is even executed. Like this: print("Are we here?") Add it after and before onThink(interval) function...
Back
Top