• 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. Leesne

    AAC [MyAAC] - 3 Problems with Storages and Guilds.

    You could try adding some "echo"s inside the getstorage function itself. see if it printers the char ID and value within the function rather than when called.
  2. Leesne

    MyACC characters how to show kills

    In twig is it called as frags_count and frags.. not $frag and $frags_count. Thats why i said post your characters.twig as you saying its showing as 0 there. -.-
  3. Leesne

    MyACC characters how to show kills

    Wow this is hard work. -.- If it doesn't use them then post the code you use to write it to page, instead of just saying none. The code seems to work fine. So it could be how its written to the page. As in post the section of your "characters.html.twig" where it shows frags.
  4. Leesne

    MyACC characters how to show kills

    I mean on the characters twig page. Are you using $frags or $frags_count
  5. Leesne

    MyACC characters how to show kills

    Where are you looking at the frags? $frags_count and $frags are two separate functions in characters page
  6. Leesne

    MyACC characters how to show kills

    If its zero in phpmyadmin its not the code being edited on the page. What results does phpmyadmin give when you type that into the SQL query builder. I just tested this and it sees the 3 frags the tests i made has. Post an image of the structure and the data tab with all columns for the deaths...
  7. Leesne

    MyAAC v0.8.21

    I believe this is being worked on by slaw.
  8. Leesne

    AAC [MyAAC] - 3 Problems with Storages and Guilds.

    Because you use getstorage for your resets, you would need to reorder the array. You need to replace code in highscores.twig {{ player['rank'] }} with {{ loop.index }} then add this code at the bottom of the gettopplayers function. array_multisort(array_column($players, 'resets')...
  9. Leesne

    AAC [MyAAC] - 3 Problems with Storages and Guilds.

    I have been rewriting the highscores etc to use the OTS_PLAYER to get all the information but never got around to finishing as with alot of the work I do on MyAAC. characters page works fine for me: Highscores: <small>Level: ('.$player['resets'].')</span> add this in the...
  10. Leesne

    Lua TFS 1.2 Hide items atributes

    I guess you could just put (it.showAttributes) but without testing I couldn't be sure as I only skimmed that part the code.
  11. Leesne

    Lua TFS 1.2 Hide items atributes

    The reason it doesn't work is because the item has Armor. item.cpp } else if (it.armor != 0 || (item && item->getArmor() != 0) || it.showAttributes) {
  12. Leesne

    Lua TFS 1.2 Hide items atributes

    I'm a bit confused isn't this what you are asking for? <attribute key="showattributes" value="0" />
  13. Leesne

    MyAAC v0.8.21

    This was going to be released as a separate plugin whilst its in early stages anyways, people could always submit additional changes the same as with myaac, then could be incorporated into myaac as I know slaw wants to remove and have a bootstrap type theme as default so themes can be built off...
  14. Leesne

    MyAAC v0.8.21

    If you are talking about the one I said I'll release. Its still a way off as I am very busy lately. It'll only be a very basic release with very minimal pages styled fully with bootstrap on initial release but will be released on github for others to contribute any fixes and extra pages etc.
  15. Leesne

    AAC Make MyAcc refresh updates instantly

    You said yes to using cloudflare that has its own caching
  16. Leesne

    AAC Make MyAcc refresh updates instantly

    Are you using cloudflare for the website? Did you try what slaw suggested? Are you sure you put the image in the correct folder? in the template folder if you call it from the template folder or the image folder in root if you call it from there?
  17. Leesne

    MyAAC v0.8.21

    https://github.com/slawkens/myaac/commit/bb3602073c2da9dee66ec1ce0ef99fbabc08cd34 This is the commit I did for the changelog editor for the version slaw is talking about.
  18. Leesne

    Compiling Compile Ubuntu 16.04

    https://github.com/opentibiabr/otservbr-global/wiki/Compiling-on-Ubuntu says curl is missing, check the "1. Install the required software"
  19. Leesne

    Lua Bosses drop loot on the ground.

    local creaturenames = {"rat","cave rat"} local name = string.lower(getCreatureName(cid)) if(isInArray(creaturenames, name)) then
  20. Leesne

    OTClient Helps with OTC UI

    instead of keep bumping read the already existing otui files and code to see how they do it.
Back
Top