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

Recent content by Bakasura

  1. Bakasura

    OTClient hotkeys binding issue

    Those keys has not been mapped in source (src/framework/platform/win32window.cpp) by Edubart for some reason. You can try to find out why by uncommenting the fragment: // keypad /* m_keyMap[VK_ADD] = Fw::KeyPlus; m_keyMap[VK_SUBTRACT] = Fw::KeyMinus; m_keyMap[VK_DECIMAL] =...
  2. Bakasura

    Looking for DBL bot

    Yeah, write me your player name in private message. :cool:
  3. Bakasura

    UIItem disable no tooltip

    Your dark grey color is defined in OTUI as a parameter of disabled state. edubart/otclient (https://github.com/edubart/otclient/blob/9c9b85ac5e9ae3cbacfc2d4993517c886d8881cd/data/styles/10-items.otui#L10) You should simply use your own style like: OwnItem < Item color: #646464 It makes them...
  4. Bakasura

    Buttons Position - OTC

    of course. modules/game_interface/gameinterface.otui at lines 77 and 78 you have your splitter minimum height settings onUpdate and onGeometry change: edubart/otclient...
  5. Bakasura

    [OTC] theme

    modules/gamelib/ui/uiminimap.lua and data/styles/30-minimap.otui
  6. Bakasura

    Buttons Position - OTC

    Decrease the padding(-top) value in MiniWindow class. I bet you have real topbar UIWidget lowered by padding value and you picked up your title and icon with negative margin values - it doesn't matter for them cause it's not clickable but it makes a difference for your buttons
  7. Bakasura

    my window doesn't close

    I'll say it again: terminate() function doesn't execute on character logout. It works when you totally exit the client. You won't see it's effect untill you open the terminal log file.
  8. Bakasura

    my window doesn't close

    I have read that here so I must make it right: otmod unload function (customary terminate()) doesn't execute on character logout. Your whole code is so messy so we cannot help you in a simple way. Let's try to make some changes: First: you must make your whitespaces clear cause your code is...
  9. Bakasura

    OTClient Helps with OTC UI

    Your window is defined as miniwindow so you should find the miniwindow style in data/styles (in original OTC) edubart/otclient (https://github.com/edubart/otclient/blob/872abf05f49180f08436ea9248220319a2cbe680/data/styles/30-miniwindow.otui#L30) In this case, when you have your style defined in...
  10. Bakasura

    OTClient Helps with OTC UI

    Find the X button in OTUI files of the module and add @onClick: onoff() alternatively you can do this in your init/create function of the module someXbuttonVariable.onClick = onoff
  11. Bakasura

    HP bars in PNG

    See drawImage function in framework/ui/uiwidgetimage.cpp. There you have the built-in way to clip images without resizing them.
  12. Bakasura

    How to parse server ID to client ID?

    You can also load XML and OTB files on client start and use ItemType's parameters with client-side functions without sending them from server. There are some pros and cons of both solutions. With mine you have to "publish" your valueable files.
  13. Bakasura

    How to print source value to OTClient?

    g_logger.info()
  14. Bakasura

    [OTClient Mod] Auto Screenshot and Fast Screenshot

    Hi! I'm also trying to implement this amazing feature to our OTC but my problem is that screenshots work good until player changes the geometry of the window - after resizing, entering the fullscreen (leaving fullscreen doesn't fix). Doing any geometry changes causes that some part of the...
  15. Bakasura

    Running any bot on DBLOTS OtClient

    Hello! I'm afraid I cannot help you my friend. You won't apply Candybot and any other bots into our OTClient. Moreover, you won't be able to connect OTClientV8 with DBLots. But can you write me your character name? :) Regards
Back
Top