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

  1. margoh

    Help edit buttons otclient

    First 2 numbers represents X, y positions, second 2 numbers size of element. So, 0 0 is top left corner of image, and 20 20 is the width and height of clipped area.
  2. margoh

    Otclient Mehah - Change Background TopMenu

    I don't really remember where it was. But I think best bet would be checking game_interface for topMenu and see where is transparency applied and where is not. If that does not work, try adding transparency to image in client_topmenu.
  3. margoh

    Otclient Mehah - Change Background TopMenu

    In client background otui file you need to change anchors.top: topMenu.bottom to anchors.top: parent.top
  4. margoh

    Console-Chat Style

    It is for terminal, but you can take some part from otui to make chat in "window".
  5. margoh

    Console-Chat Style

    Check how terminal is made. And you will be able to achieve what you want.
  6. margoh

    OTClient Resize console window horizontally

    In terminal.otui you have ResizeBorder id: rightResizeBorder anchors.right: parent.right anchors.top: parent.top anchors.bottom: parent.bottom enabled: false Probably you can use it.
  7. margoh

    OTClient otclient emblems

    No, only first is source edit. Second is just module edit.
  8. margoh

    OTClient otclient emblems

    1. creature.cpp look for if (m_emblem != Otc::EmblemNone && m_emblemTexture) { 2. Yes, you can do that.
  9. margoh

    OTClient Change shader onPositionChange(player, newPos, oldPos)

    To be honest, I don't know as I haven't played with shaders. Maybe it is case sensitive, or you need to register and setup shaders like in shaders.lua.
  10. margoh

    OTClient Change shader onPositionChange(player, newPos, oldPos)

    It is possible, you just need to use setMapShader(biome) if is in the area and if not set Default shader.
  11. margoh

    RevScripts Reset system talkaction

    But he wants to reset it, and add small amount to it.
  12. margoh

    RevScripts Reset system talkaction

    player:setMaxHealth(MaxHealth) player:setMaxMana(MaxMana) If it resets players to lvl 8 and health/mp is the same for that lvl on every vocation, then just make calculation here. Example for health 250 + (100 * resets).
  13. margoh

    Monster type files

    Probably he meant folders. But yeah, it's better without them. Even though we can find files by name.
  14. margoh

    Topmenu bugging all

    game_interface change: UIWidget id: gameRootPanel anchors.fill: parent anchors.top: topMenu.bottom To: UIWidget id: gameRootPanel anchors.fill: parent That should fix the issue.
  15. margoh

    [Feature(?)] Don't clear console after death/relogin.

    Hello. game_console in function online() add at the beginning: if not (g_settings.get('last-logged-character') == g_game.getCharacterName()) then clear() end In function online() add at the end: -- focus default channel after relogin/death defaultTab = addTab(tr('Default'), true) Remove...
Back
Top