• 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. River KA

    Looking for a back end web programmer [TIBIAREMAINS]

    Bugs such as? You could list what you are looking for.
  2. River KA

    C++ How to print "Hello world" in OTCv8 in terminal

    Forgot that. Ty.
  3. River KA

    C++ How to print "Hello world" in OTCv8 in terminal

    g_logger.info("Hello, world!"); --> Hello, world! int myNumber = 7; g_logger.info(stdext::format("This is my number: %d!", myNumber)); --> This is my number: 7!
  4. River KA

    Item storage

    item:setCustomAttribute(key, value) item:getCustomAttribute(key)
  5. River KA

    getStorageValue inside setStorageValue dosent work

    Wrong: player:setStorageValue(player:getStorageValue(taskSys.storages.currentTask), taskSys.status.completed) Correct: player:setStorageValue(taskSys.storages.currentTask, taskSys.status.completed) First parameter of setStorageValue after player is the storage id, not value.
  6. River KA

    Programmer Need OTC Programmer (50U$)

    Discord?
  7. River KA

    Client Editor (PAID JOB)

    I don't quite understand. Let me try: You have custom files of spr & dat of a 7.4 version. But you want this to work for a 7.72 server & client. Is that correct? If yes, probably the best for you is to add all your custom items again into the brand new 7.72 spr/dat/otb. Also, how much you...
  8. River KA

    RPG OTs?

    Check out Kingdom Age Online: Kingdom Age Online Attributes, magics with boost (hold its hotkey to charge them), 6 vocations, train/wagon system, and so on.
  9. River KA

    How to make table from 1 to 10

    local monstersConfig = { -- Should be organized by ascending skillLevel { skillLevel = 10, name = 'Orc' }, { skillLevel = 20, name = 'Orc Spearman' }, } -- Find monsterConfig according to playerSkillLevel local monsterConfig for i = #monstersConfig, 1, -1 do -- Reverse order local...
  10. River KA

    Any really creative / out of the box OT out there?

    Check out Kingdom Age Online: https://kingdomageonline.com/ Attributes, magics with boost (by charging then hold the hotkey), 6 vocations, train/cart system, and so on.
  11. River KA

    How to Make Backpack Open Above a Panel?

    Maybe rightPanel:raise(). It raises the widget to the top of all children of his parent, that's why it does not works if they are attached on side panels. So, my guess is that you probably need to raise the panels too.
  12. River KA

    How to Make Backpack Open Above a Panel?

    Not really sure, but it should be something with UIWidget::raise(): I mean myWindow:raise().
  13. River KA

    I Love You!

    I love you, mate! 😁 I like the idea of sharing good vibes.
  14. River KA

    Feature [TFS 1.4] OTS statistics (C++/Lua/SQL) by kondra

    @Mehah Maybe you could consider merging this.
  15. River KA

    RevScripts bad argument #1 to 'pairs' (table expected, got nil)

    I edited the code removing unused stuff.
  16. River KA

    RevScripts bad argument #1 to 'pairs' (table expected, got nil)

    function Position:sendDistanceAnimateEffect(toPosition, distanceEffect, queueEffect) local pos = Position(self) -- copy local distance = self:getDistance(toPosition) local direction = self:getDirection(toPosition) for i = 1, distance do local nextPos = Position(pos) -- copy...
  17. River KA

    OTClient .otui and how to fetch?

    MyUIClassWhateverName < UIWidget and g_ui.createWidget('MyUIClassWhateverName', rootWidget)
  18. River KA

    OTclient question

    There were a lot of updates of Mehah in the last 3 months ago. Since was said "3 months ago" in 27th Sep, this is the updates list from 27th Jun up to 27th Sep: It seems a lot of updates on Mehah's, when this guy said there was no updates in the last of 3 months ago: 110 updates...
  19. River KA

    OTclient question

    I don't know about imbuements, but I know that it has prey module. About players, it's not about your client, it's about your server and host.
Back
Top