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

    Feature Protection Time

    Why? Shouldn't it be easy to convert to non revscript? I think what you want works different way, as they can still attack you, and this makes monsters ignore you for X time. Best bet would be make a script that sets physical and magical immunity to 100%, and after that 5 seconds changes it...
  2. margoh

    Feature Protection Time

    Hello. How does it work: If you login you get 10 seconds (configurable) of protection. If you move you lose protection. If you push yourself, you lose protection. If you attack creature, you lose protection. If times runs out, monsters attacks you. combat.cpp in Combat::canDoCombat(Creature*...
  3. margoh

    Otclient Classic UI

    This works for me: MiniWindowContents padding: 4 4 3 7 layout: type: grid cell-size: 34 34 cell-spacing: 3 flow: true Line 158: containerWindow:setContentMinimumHeight(cellSize.height + 1) Line 159: containerWindow:setContentMaximumHeight(cellSize.height...
  4. margoh

    Otclient Classic UI

    Increase spacing between cells, and move all that to the right.
  5. margoh

    Otclient Classic UI

    What do you mean? The second version is the same as first, but you can use it anywhere without copying and pasting whole calculations, so in the future if some of your modules will require new bar you just need to use that function.
  6. margoh

    TFS 1.X+ Effect Energy in Spell tfs 1.5 nekiro 7.72

    Shouldn't replacing CONST_ME_ENERGYHIT with CONST_ME_NONE do the job?
  7. margoh

    Otclient Classic UI

    https://otland.net/threads/ripoff-health-mana-bar.274899/ Instead of resizing texture to % it will crop it properly to % making it as real Tibia.
  8. margoh

    Show additional skills on client

    It clearly states that you have used TABs instead of SPACEs.
  9. margoh

    Does Amazon's New World contain features Tibia misses?

    New World is a game from Amazon Games. https://www.newworld.com/
  10. margoh

    OTCv8 Buttons

    https://github.com/OTCv8/otclientv8/blob/master/modules/client_entergame/characterlist.otui https://github.com/OTCv8/otclientv8/blob/4c1fc24f26f6e3fdc9b46916672340dacfcd4b55/data/styles/40-inventory.otui
  11. margoh

    OTCv8 Buttons

    Probably height value of a panel in which button is located can be too small, try to add few pxels and check if it works. As for auto reconnect, look for a function for changing the state of button, maybe there is some part of the code responsible to change text if not, just add it.
  12. margoh

    NPC Highlight speech blue

    Change: if speaktype.npcChat and (g_game.getCharacterName() ~= creatureName or g_game.getCharacterName() == 'Account Manager') then To: if (g_game.getCharacterName() ~= creatureName or g_game.getCharacterName() == 'Account Manager') then
  13. margoh

    Otclient module

    Add it to interface.otmod inside game_interface to load it with client start.
  14. margoh

    OTClient help with mini button windows in containers

    Inside container.otui you need to switch anchors for UIButton id:upButton from minimizeButton to lockButton or whatever you have called it.
  15. margoh

    Lua Problem with toolgear.lua

    if not isInArray({2550, 10511, 10513, 10515}, item.itemid) then return false end Just add id of your item to the array.
  16. margoh

    OTClient Bug on top menu dissapear when using 2560x1080 resolution

    Change Panel anchor.top inside background.otui from anchors.top: topMenu.bottom to anchors.top: parent.top. If there will still be 1px of that "bug" remove margin-top: 1.
  17. margoh

    OTClient 1.0 (Release)

    Also, why should he? If you want to have your client protected, add it yourself.
  18. margoh

    The Forgotten Server Icon Competition - Voting thread - V1

    #4 is the choice to go with. #3 aka #6 looks more like a logo for an e-sport team, rather than server icon.
  19. margoh

    How to house tiles?

    I think if tile doesn't belong to a house the item will disappear after a restart.
  20. margoh

    OTClient 2 errors & 99 warnings during compiling

    If you have downloaded latest otc sources then you have to use vcpkg.
Back
Top