• 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

    MyAAC v0.8.21

    It looks like you are using [MyAAC][Plugin] Creatures like on Tibia.com (https://otland.net/threads/myaac-plugin-creatures-like-on-tibia-com.254810/) This doesn't have the loot built into it. It replaced the creatures pages with basic version that just has data built into twig files. I am...
  2. Leesne

    MyAAC v0.8.21

    https://otland.net/threads/unpack-items-outfits-from-any-client-to-png-with-otclient.231045/ Using this to extract all your images from a sprite file will help.
  3. Leesne

    Save widgets on version 12 and mount after relog [TFS 1.3]

    There is a script/source edit somewhere for backpacks. But I haven't seen anything for widgets
  4. Leesne

    MyAAC v0.8.21

    Its open source. lol. I know i've not been paid for my myaac repo submissions but I have gotten work on other projects whilst working on it. If people want to donate to it, there's a donate link slawkens github page other than that its been free.
  5. Leesne

    AAC pop-up button

    foreach($config['site']['quests'] as $questName => $storageID) { $bgcolor = (($number_of_rows++ % 2 == 1) ? $config['site']['darkborder'] : $config['site']['lightborder']); $number_of_quests++; $main_content .= '<TR BGCOLOR="' ...
  6. Leesne

    AAC pop-up button

    As I said before post the code you used and i will comment.
  7. Leesne

    AAC pop-up button

    on my mobile atm. Paste the code you have put to get the image above.
  8. Leesne

    AAC pop-up button

    You added the percent in the foreach loop and not just above the line. } $main_content .= '<tr><td>Percent</td><td>'. ($number_complete_quests / 100) * $number_of_quests.'%</td></tr>'; $main_content .= '</TABLE></div><br />';
  9. Leesne

    AAC pop-up button

    On mobile so can't test but try this add this line under $number_of_quests = 0: $number_complete_quests = 0; add this line in the else where it shows images/true.png: $number_complete_quests++; above this line: $main_content .= '</TABLE></div><br />'; add: $main_content .=...
  10. Leesne

    MyAAC v0.8.21

    I had a quick look, its not a simple copy and paste job. But it would be possible to import the layout code but would require parts to be picked apart. I do not have the time to do that atm, I still have some projects I am working on.
  11. Leesne

    AAC pop-up button

    That layout is something i did for my server that i used to host. I may release it for myaac eventually. All you are editing is the html inside of the php tags. The html is all on the schools page. If you attempt to make the changes and run into trouble post the section of code you have edited...
  12. Leesne

    AAC pop-up button

    w3schools.com/howto/howto_js_collapsible.asp I would remove the table header and make it quests the button then tidy up the formatting. and then insert your table inside of the <div class="content">~table here~</div> screenshot is just an example i copied and pasted into chromes inspect window.
  13. Leesne

    AAC pop-up button

    Drop down button for what? Do you mean you want the task table to collapse so it just shows task and then you click it and it expands to show the rest of the table?
  14. Leesne

    MyAAC v0.8.21

    What about the new layout you wanted where is the code?
  15. Leesne

    [MyAAC][Plugin] Gesior Shop System

    $offers_fetch[$id]['item_img'] = getItemImage($item_id); which is a function inside myaac https://github.com/slawkens/myaac/blob/f719b3c1124d46ff818f613c1e1f64c9d60bbe91/system/functions.php which takes it from your config['item_images_url'] in the config file.
  16. Leesne

    MyAAC v0.8.21

    You would need to bring over whatever files are related to the shop but they may not be compatible if they are made with another version of myaac and the store has changed. You can use win merge to compare the files and see what has changed. If you want to send the php files and any other files...
  17. Leesne

    MyAAC v0.8.21

    I wanted to do some changes to the shop system but never got around to it due to being busy. If you the new admin panel there should be a gifts link at the bottom which allows you to add new items, delete and hide existing items. Eventually I want to change the admin panel for more options and...
  18. Leesne

    Gesior Shop CSS

    Neither do we as we cannot see your code. I am unsure why people think coders can look at a picture and be like oh yeah its line 1313 you've missed a bracket, without ANY code. But yeah looks like a close bracket is missing somewhere.
  19. Leesne

    Help on RME Npc's

    It was literally in the post above you lol.
  20. Leesne

    Help on RME Npc's

    Are you using the newest otx? I believe the npcs are spawned in using LUA now and not within the map file. @edit https://github.com/opentibiabr/otservbr-global/blob/develop/data/startup/tables/npc_spawn.lua
Back
Top