• 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. cbrm

    What does local & function mean?

    This. Sadly I see that you need to learn step-by-step. Click here Let me know if you succeeded or need a physical dictionary.
  2. cbrm

    What does local & function mean?

    There's also common sense, your brain and your friend Google y'know.
  3. cbrm

    movements script problem

    function onStepIn(cid, item, position, lastPosition, fromPosition, toPosition, actor) if isPlayer(cid) then doItemEraseAttribute(item.uid, "aid") local top = getCreatureMaxHealth(cid) / 3 doTargetCombatHealth(0, cid, COMBAT_PHYSICALDAMAGE, -1, -top...
  4. cbrm

    Lua Table issues

    You're welcome : )
  5. cbrm

    Lua Table issues

    F5
  6. cbrm

    Lua Table issues

    local level = 25 local cfg = { [{1, 5}] = { --just for test [1] = 121, [2] = 125, [3] = 129, effect = 2 }, [{2, 6}] = { [1] = 122, [2] = 126, [3] = 130, effect = 2 }, [{3, 7}] = { [1] = 123...
  7. cbrm

    Lua Table issues

    Technically if the index is an array, it can have infinite values : p local table = { [{1, 5}] = {out = 121, e = 2}, [{2, 6}] = {out = 122, e = 2}, [{3, 7}] = {out = 123, e = 2}, [{4, 8}] = {out = 124, e = 2} } for k, v in pairs(table) do if isInArray(k...
  8. cbrm

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

    Thanks for keeping us updated, Riv.
  9. cbrm

    OtLand XenForo 2 and forum changes

    I'm a simple man. The palette of colors is similar. I like the changes.
  10. cbrm

    Player Loot Rate

    The only way I'd do this is via sources. I haven't been able to compile on Win10, though.
  11. cbrm

    This script dont work for me???

    function getPlayerNameByGUID(guid) local resultId, name = db.storeQuery("SELECT `name` FROM `players` WHERE `id` = " .. guid), "Unknown" if resultId then name = result.getDataString(resultId, 'name') result.free(resultId) end return name end local function...
  12. cbrm

    Lua This free inventory check script won't work.

    function _getContainerFreeSlots(container) return getContainerCap(container) - getContainerSize(container) end function getContainerFreeSlots(container) if not isContainer(container) then return 0 end local t, v = {}, 0 for i = 0, getContainerSize(container)-1 do...
  13. cbrm

    TFS 1.X+ bug in function, HELP !

    function table.getIndex(t, v) for index, value in ipairs(t) do if v == value then return index end end return nil end function onLogin(player) player:registerEvent("RewardBossFixLogout") player:registerEvent("RewardBossFixDeath") return true...
  14. cbrm

    Player Loot Rate

    Sadly, loot is not one of the constants or variables rates in that server's definitions.
  15. cbrm

    Scammer selling maps: Highlander, Divine Angel, and some other names used too

    This seems to be case in which both parts didn't handle the issue at hand in a mature way. I don't see how both of you expect credibility if you boast on threats and countermeasures that only makes us spectators and judges think this is an internal matter looking for supporters in order to make...
  16. cbrm

    Gn Xedoc a total troll.

    Thanks for reporting Codex' latest user. Be wary for his next one.
  17. cbrm

    I am retiring - from otland

    Seriously? I am closing this joke now.
  18. cbrm

    I am retiring - from otland

    Codex got no friends at all in the moderators, I can assure you.
  19. cbrm

    Moderators are getting quite cocky

    Don't speak in plural if just refer to one moderator, @sampleangel I also pity you and others that get carried away by Codex and take him seriously. He's been doing this and worse since more than a year now. Probably he'll come back from this umpteenth "retirement" some time later, as usual.
  20. cbrm

    [CANADA] [CUSTOM] KINGDOM AGE - ALPHA ONLINE

    Thumbs up for this rare gem of a game server you don't see often.
Back
Top