• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Recent content by River KA

  1. River KA

    Ot-hub, OTS advertising discussion thread

    Share us your knowledge about it (I want to know honestly, no jokes).
  2. River KA

    Font

    https://github.com/otland/otclient/pull/6/files For translations of PT, ES, DE, SV, open the translation file using encode cp1252 (in VS Code, it is "Western (Windows 1252)"). For translation of PL, open the translation file using encode cp1250 (in VS Code, it is "Central European (Windows 1250)").
  3. River KA

    🔥 Kingdom Age — Jobs feature poll — VOTE NOW! ✔

    That's the idea. At the moment, the "real votes" are: Blacksmith and Gatherer --> 9 + 6 = 15 votes Tamer and Cooker --> 7 + 2 = 9 votes Merchant --> 5 votes Alchemist --> 5 votes This means we will start developing Blacksmith and Gatherer. A later updater we will develop Tamer and Cooker. Then...
  4. River KA

    🔥 Kingdom Age — Jobs feature poll — VOTE NOW! ✔

    We are about to develop a job feature on Kingdom Age. But my question is: What job(s) would you like to see at first? Fell free to VOTE! ✔ ⛏ Gatherer — Gather resources (wood, stone, hide, ore, fiber, fish, herb, crop) around zones over the map and refine them. ⚔ Blacksmith — Craft...
  5. River KA

    OTUI parent question

    The parent of gameRootPanel is root, which is also a UIWidget. There is no parent for the root — it is the "master" widget.
  6. River KA

    Looking for a back end web programmer [TIBIAREMAINS]

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

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

    Forgot that. Ty.
  8. 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!
  9. River KA

    Item storage

    item:setCustomAttribute(key, value) item:getCustomAttribute(key)
  10. 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.
  11. River KA

    Programmer Need OTC Programmer (50U$)

    Discord?
  12. 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...
  13. 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.
  14. 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...
Back
Top