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

Search results

  1. slaw

    AAC MyAcc Offline Training list.

    Try this: <?php /** * Online * * @package MyAAC * @author Gesior <[email protected]> * @author Slawkens <[email protected]> * @copyright 2019 MyAAC * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); $title = 'Who is online?'...
  2. slaw

    AAC MyACC Canary Login Fail

    This happens because first login window is done by login.php script from AAC - thats why it works. The second step - logging into gameworld is done server-side. So there must be something wrong. What exactly message do you get in console?
  3. slaw

    Lua [Change OTX 0.3.7 to TFS 1.5] Script Global Exhausted

    data/lib/core/core.lua at the end, add: dofile('data/lib/core/vocation.lua') data/lib/core/exhaustion.lua create exhaustion = { check = function (player, storage) if(player:hasFlag(PlayerFlag_HasNoExhaustion)) then return false end return...
  4. slaw

    AAC add function to the shop system

    $db->insert('z_ots_comunication', [ 'name' => 'playerName', //here player name 'type' => 'login', 'action' => 'give_item', 'param1' => 2160, // here item id 'param2' => 1, // count 'param3' => 0, 'param4' => 0, 'param5' => 'item', 'param6' => 'Crystal Coins'...
  5. slaw

    AAC MyAcc Offline Training list.

    Ahh sorry, didn't notice that one. Try this then, I tried myself and it worked: <?php /** * Online * * @package MyAAC * @author Gesior <[email protected]> * @author Slawkens <[email protected]> * @copyright 2019 MyAAC * @link https://my-aac.org */ defined('MYAAC') or...
  6. slaw

    AAC MyAcc Offline Training list.

    I assume you are running myaac 0.8. If so, here's the code. system/pages/online.php: <?php /** * Online * * @package MyAAC * @author Gesior <[email protected]> * @author Slawkens <[email protected]> * @copyright 2019 MyAAC * @link https://my-aac.org */ defined('MYAAC')...
  7. slaw

    [MyAAC][Plugin][Template] Oni

    What you have done is copying the wars.php from plugins folder. But it doesn't work that way. Guild wars is incompatible with 0.8, because it's missing some functions & hooks. Read here, if you would like to use the upcoming (1.0) version of myaac with guild wars: AAC - Looking For Tutorial to...
  8. slaw

    Problem with acc maker. Cant create a character.

    Execute this in phpmyadmin: INSERT INTO `players` (`id`, `name`, `group_id`, `account_id`, `level`, `vocation`, `health`, `healthmax`, `experience`, `lookbody`, `lookfeet`, `lookhead`, `looklegs`, `looktype`, `maglevel`, `mana`, `manamax`, `manaspent`, `soul`, `town_id`, `posx`, `posy`, `posz`...
  9. slaw

    I made a discord bot specialized in ot support

    What's under the hood?
  10. slaw

    [MyAAC][Plugin][Template] Oni

    Hi, thanks for your report. The fix is here: https://github.com/slawkens/myaac-plugins/commit/ae30ec6d73fa5197258a488fbc3c90012ed5a1ab I also include the plugin in the attachments.
  11. slaw

    Myacc-Uniserver-Possting

    Go to phpmyadmin, choose your database -> choose "myaac_pages" table Click on Change Change it to MEDIUMTEXT, which is 16 MB, and should be far enough for anything. Then click Save.
  12. slaw

    Myacc-Uniserver-Possting

    The field is of type TEXT - it allows to store up to 65,535 characters. Do you try to store a book there? :D
  13. slaw

    MyAAC v0.8.21

    Sorry for late reply, what myaac version is that? Cannot seem to find the line in latest version v0.8.15
  14. slaw

    AAC myacc few spaces

    It is allowed for admin to create char with spaces and also some other rules are skipped. Are you sure you are not logged on admin account while creating character?
  15. slaw

    AAC [MyAAC] [TFS 1.2] Character Auctions

    Change $SQL to $db Or In config.php, set 'backward_support' => true,
  16. slaw

    AAC Looking For Tutorial to Add Guild Wars.

    It works with the version of myaac that is not released yet - 1.0/develop. Its available here: https://github.com/slawkens/myaac/tree/develop You can also do git clone: git clone https://github.com/slawkens/myaac.git And then checkout the develop branch: git checkout develop Then you...
  17. slaw

    AAC MyACC shop problem

    Go to tab - "Pages" -> and see if you have there anything called "gifts", but I doubt that. You can write me on discord: slawkens, so we can debug further.
  18. slaw

    [MyAAC][Plugin] Gesior Shop System

    Try clearing cache in admin panel. You are missing php curl extension. You need to install/enable it with specified command. On Linux its just 2 commands, on Windows you need to uncomment 1 line. It already says what you need to do, can't help you more. The Webhook should be configured to...
  19. slaw

    AAC MyACC shop problem

    You can view admin panel by adding /admin to the url. Like: http://localhost/admin
  20. slaw

    AAC MyACC shop problem

    What version of myaac is that? You can see it in file called common.php in the main folder. Also: do you have page in Admin Panel -> Pages, called "gifts"?
Back
Top