• 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 Changing GesiorACC to MyACC

    Normally not. But I would suggest copying current database, and testing on the copy. This way you can see if it "damaged" anything. All MyAAC do is change some column names like hide_char -> hidden.
  2. slaw

    [GERMANY] [Custom] Hitera |Edited Karmia-Map| New Sprites | ANDROID CLIENT | START 04.03.2023 16:00 CET

    Maybe you bought the same dedicated/VPS that used the same IP?
  3. slaw

    MyAAC v0.8.21

    I answered him by PM. I will post the message here so more users can use it. First you need to add this somewhere to your template: <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"> Then you can copy code for icons and paste where you...
  4. slaw

    AAC Myaac error, Server Offline.

    It seems ok. Are you sure you didn't modify any other files?
  5. slaw

    Komenda wyświetlająca wykonane questy

    Musiałbyś albo inaczej tabelę skonstruować, tzn. name przesunąć w index. Coś ala: questId = { ["Annhi"] = {text = "Ksss Ksss", storage = 97770}, ["DHQ"] = {text = "Ksss Ksss", storage = 97771}, ["poi"] = {text = "Ksss Ksss", storage = 97772}, ["desert"] = {text = "Ksss Ksss"...
  6. slaw

    AAC Myaac error, Server Offline.

    Weird, you must have something broken with status. Try adding in system/libs/pot/OTS_ServerInfo.php Before: return $info; Add: var_dump($info); Does it display something like this?
  7. slaw

    Komenda wyświetlająca wykonane questy

    Witaj, Musisz pojechać po wartościach z wspomnianej tabeli. W Lua wygląda to tak: local wykonales = "" for _, quest in pairs(questId ) do if player:getStorageValue(quest.storage) > 0 then wykonales = wykonales .. quest.name .. ", " end end print(wykonales) Na koniec jeszcze...
  8. slaw

    AAC Myaac error, Server Offline.

    Try add this in config.local.php $config['status_ip'] = '127.0.0.1'; Did it worked?
  9. slaw

    AAC [MYAAC]Characters page

    You also need to clear myaac cache - FAQs – MyAAC (https://my-aac.org/faqs/) #2 question
  10. slaw

    MyAAC v0.8.21

    Hello, the demos are working again, there was a small break since yesterday, cause I migrated from Ubuntu 20.04 to 22.04, which includes newer PHP 8.1, which was required to run latest myaac. One change - now you login by email on the Latest News - Forgotten (https://next.my-aac.org), so to...
  11. slaw

    MyACC how to make website "secure" instead of "not secure"

    Yes, you need a SSL certificate. This will make your website available at https:// instead of http://. Long time ago it was paid, but now its free, and you can generate the certificate yourself - Certbot (https://certbot.eff.org/)
  12. slaw

    MyAAC v0.8.10 - random account number

    Account number is supported in myaac-0.9 https://github.com/slawkens/myaac/releases/tag/v0.9.0-alpha Your server needs to have accounts.number column tho.
  13. slaw

    Solved [MyACC] Call to a member function getID() on null

    You need to post more code, the context is important. From that little part, I cannot say whats wrong. If you want to get storages for all players then you don't need this part: `player_id` = '.$player->getID().' AND
  14. slaw

    Lua Gamestore order by coins

    Seems the offers are stored in different file. Search for GameStore.Categories Need this to know how they are build, so it can be sorted.
  15. slaw

    myacc config

    You can edit menus in admin panel: http://localhost/admin/?p=menus If that's what you mean. It also doesn't look like aldora original layout. So, what exactly do you want to do?
  16. slaw

    [MyAAC][Plugin] Gesior Shop System

    OK, weeks passed and I didn't heard about any bugs. So I'm assuming the v4.0 is ready to be released as production-stable. MyAAC v0.8.9 is required for this! Only one fix, since last release: * Fix premium time buying for tfs 1.4+ (premium_ends_at column) Remember you can download latest...
  17. slaw

    [MyAAC][Plugin] Better Downloads Page

    Template of the 1) whole page or just 2) download page? if 1), then in config.php search for -> template, and template_allow_change. if 2), then currently not possible
  18. slaw

    [MyAAC][Plugin] Better Downloads Page

    If you put your client in public_html, then you need to configure just like this: 'Client 11.47' => 'http://your-ip/OpenTibia_Setup.exe',
  19. slaw

    [MyAAC] Znote Converter

    Yeah, here's the file, in case someone needs it: And also I would like to clarify one thing that is in topic: It doesn't convert the schema, but it just transfers the data. From one tables to another. The schema stays intact.
  20. slaw

    AAC Player Mount List for myacc

    Did it worked as suppose? I didn't test with more mounts.
Back
Top