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

Search results

  1. River KA

    [Canada] [Custom] Kingdom Age (Official release - 2019)

    Oh, I see now what you meant. Well, you can play back again now. :) Just remember that I won't have much time until end of March. Have a great game and a nice day!
  2. River KA

    [Canada] [Custom] Kingdom Age (Official release - 2019)

    Hi, @Three Magic The updates stopped because I'm focused in my studies, and we will keep like that until the end of March. There is no need for the server to be reseted anymore, since we think the attributes needs no crucial tests. At the moment, this server has an experience rate of 20x, but...
  3. River KA

    Compiling Remeres 1098 Doesnt support Transparency

    Create a text file named "Tibia.otfi" (not .txt) and put inside your version folder. E.g., C:\RME\data\1099\Tibia.otfi This file's content should be something like that, according to your necessity: DatSpr extended: true transparency: true frame-durations: true frame-groups: true
  4. River KA

    [Canada] [Custom] Kingdom Age (Official release - 2019)

    Join our Discord. So we will able to support you. http://discord.gg/vZjxdwp
  5. River KA

    [Canada] [Custom] Kingdom Age (Official release - 2019)

    Yes. It's online and won't be reseted anymore. I'm just busy with studies until end of March. After that, I can finally work a lot on the project. We intent to make advertisements on April and forth.
  6. River KA

    Any “Serious” Servers out there?

    Kingdom Age Online (click here)
  7. River KA

    CAM for Otclient

    My old helmet and armor sprites. Stolen. Cool.
  8. River KA

    Player Relocate by QuestValue

    function onStepIn(creature, item, position, fromPosition) local player = creature:getPlayer() if not player or not player:getStorageValue(603) >= 1 then return true end local toPosition = Position(player:getPosition().x - 1, 32059, 12)...
  9. River KA

    Programmer Professional programing services - C/C++/C#/Python/PHP/Lua

    Are all, this project of yours, kept in a Git repository for you to know what you added/removed in the future? I have another OTC project and I just can't remake everything from 0 to get all changes of your client, but I still wish to get all of that in the future when I get money. Even if I had...
  10. River KA

    lua support

    energywall1Pos is nil (has no set up value).
  11. River KA

    lua support

    objectId has no set up value yet. You should put a line at the beginning like: local objectId = 7777
  12. River KA

    Select query returning "true" -- How to get to value?

    This is incorrect. 1. Storages were not made to store strings, only numbers. So it probably will easily bug later. It means you should get through the player guid ("id" on players table). 2. You should use string.format on query strings to avoid SQL injections. In this case it will not happen...
  13. River KA

    Select query returning "true" -- How to get to value?

    local storageId = 69693 function onSay(cid, words, param, channel) if param ~= '' then return true end local storageValue = getPlayerStorageValue(cid, storageId) local resultId = db.storeQuery(string.format("SELECT `currency` FROM `players` WHERE `name` = %s ;", storageValue))...
  14. River KA

    Select query returning "true" -- How to get to value?

    This is how you use the db.storeQuery (only for "SELECT" keyword): -- Return true if has at least 1 result function func() local resultId = db.storeQuery("SELECT <YOUR QUERY STRING HERE>") -- If found at least 1 result if resultId ~= false then result.free(resultId) -- Free memory...
  15. River KA

    Do you guys remenber that server?

    I think was our project, Kingdom Age Online. Discord: Discord.gg/vZjxdwp Website: Kingdom Age Online (http://kingdomageonline.com/) YouTube: Kingdom Age Online - YouTube Gaming (http://gaming.youtube.com/kingdomageonline) Facebook: http://facebook.com/kingdomageonline We use more the Discord...
  16. River KA

    How to cancel a started event?

    It is saying that "kickOutEvent" is not set up. The issue is in here "kickOutEvent[cid]", because "kickOutEvent" is nil (not a table as your intention) at the issue line. You are probably creating the event outside this script, or at least before the line of "local kickOutEvent = {}". You cannot...
  17. River KA

    (0.6.6) OTClient startup.ogg alternate

    I noticed this in there: http://lua-users.org/lists/lua-l/2007-03/msg00553.html
  18. River KA

    (0.6.6) OTClient startup.ogg alternate

    You were right about randomseed. But it has a issue that you can fix it forcing a first unused random as the first time you use the random. That was mine solution: local musicPaths = { "/sounds/startup1", "/sounds/startup2", "/sounds/startup3", "/sounds/startup4", }...
  19. River KA

    (0.6.6) OTClient startup.ogg alternate

    PM with Team Viewer id+pass.
Back
Top