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

  1. Kleston

    Can anyone recognize this coding?

    I will not play with it;) This server also uses a regular client converted to version 772. But I can not connect using the standard OTClient. Maybe you know what I need to have to connect via standard OTClient?
  2. Kleston

    Can anyone recognize this coding?

    So the cipher knows only who encrypted it? Well, that is nothing we can do. I just wanted to know how I can make my own client for classictibia.com. Namely, when I enter all the data, I do not want to display the character list. Stops on the window connecting to the server.
  3. Kleston

    Can anyone recognize this coding?

    Can anyone recognize this coding? Or is it encrypted with some program? If anyone knows, please help in deciphering OTC files
  4. Kleston

    [Tutorial] Adding more tiles to game window - Updated 7/6/2018

    Refresh ur map save of ur tibia.dat file version
  5. Kleston

    Sliding window

    I created a new window. How to make it impossible to move it MainWindow id: customWindow size: 200 200
  6. Kleston

    OnLook print itemid OTClient

    Look on my code Mouse button
  7. Kleston

    Mouse button

    Why there is only one icon??? function initializeSkilllist(widget, mousePos, mouseButton) if mouseButton ~= MouseRightButton then return end local skillMenu = g_ui.createWidget('PopupMenu') skillMenu:setGameMenu(true) for i = 1, #SkilllistSettings.skillName do local skill =...
  8. Kleston

    OnLook print itemid OTClient

    function customFunction(mousePos, mouseButton) if mouseButton ~= MouseRightButton then return end --ur code where u use right mouse button return true end And add otui file &onMousePress: modules.game_interface.customFunction
  9. Kleston

    compiling with cmake 3.4.2 problems missing file libgmp-10.dll

    I also had this problem Use MVS 2015 The guides you have on the forum
  10. Kleston

    Mouse button

    How to display a loop using something from the array array = {'1', '5', '10' ...etc} Show on this code. function onSkillEdit(widget, mousePos, mouseButton) if mouseButton ~= MouseRightButton then return end local skillMenu = g_ui.createWidget('PopupMenu') skillMenu:setGameMenu(true)...
  11. Kleston

    Mouse button

    Could you tell me what functions? I have a suggestion for a hint. How to get there?
  12. Kleston

    Mouse button

    How can I hook up a list of spells under PopMenu? function onSkillEdit(widget, mousePos, mouseButton) if mouseButton ~= MouseRightButton then return end local skillMenu = g_ui.createWidget('PopupMenu') skillMenu:setGameMenu(true) skillMenu:addOption(tr('Pos1'), function()...
  13. Kleston

    Mouse button

    Which functions are responsible for invoking mouse actions? I mean the left and right button. When u use the right button this is something to happen. And when the left is something else. And how it will be in otui with onClick. Because I think it only works on one button
  14. Kleston

    New panel

    Refresh
  15. Kleston

    New panel

    How to do to show skin? But it does not work :/ hudPlayerPanel = nil hudPlayerPanelOutfit = nil playerOutfit = nil function init() connect(g_game, { onGameStart = online, onGameEnd = offline }) hudPlayerPanel = g_ui.displayUI('hud') hudPlayerPanelOutfit =...
Back
Top