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

    Lua attempt to index a nil value

    Thx bro perfect
  2. N

    Lua attempt to index a nil value

    error continues on the line: if not ItemType(item):isMovable() then
  3. N

    Lua attempt to index a nil value

    Good night, can anyone help me with this error? local function checkBlood(position) local tile = Tile(position) local items = tile:getItems() for i = 1, #items do local item = items[i] if not ItemType(item):isMovable() then item:remove() end...
  4. N

    RewardChest delivering items unique="1" to all players

    Done! I inserted it into the source and compiled it and it worked, at first it's just 1 ferumbras hat for 1 player XD
  5. N

    RewardChest delivering items unique="1" to all players

    RewardChest delivering items unique="1" to all players, when in fact it was only supposed to be delivered to one player, any solution? lib/rewardboss.lua function MonsterType.createLootItem(self, lootBlock, chance, lootTable) local lootTable, itemCount = lootTable or {}, 0 local...
  6. N

    Respawn with player on screen TFS 1.5

    @Nekiro XD
  7. N

    Premium account error

    up
  8. N

    Premium account error

    I'm just trying to add premiumTime and now it's showing Free Account status
  9. N

    Premium account error

    Good morning, I'm migrating to TFS 1.5 and with that I'm aware that it changes the way the premium account is done. My database has the premium_ends_at column but when logging into the game all characters have 65000+ days of premium. In data\lib\core\player.lua I changed the script as it was in...
  10. N

    Respawn with player on screen TFS 1.5

    Respawn with player on screen and Effect for TFS 1.5 =D
  11. N

    Respawn with player on screen TFS 1.5

    Has anyone done a tutorial for TFS 1.5 Respawn with player on screen and effect? I really need =D
  12. N

    !frags time doesn't change TFS 1.3

    https://otland.net/threads/8-6-tfs1-3-alkurius-global-coustom.273912/
  13. N

    !frags time doesn't change TFS 1.3

    timeToDecreaseFrags = 24 * 60 * 60 * 1000
  14. N

    !frags time doesn't change TFS 1.3

    Dont work bro
  15. N

    !frags time doesn't change TFS 1.3

    Up, Does anyone have any idea how to fix this? =/
  16. N

    !frags time doesn't change TFS 1.3

    Now is the hour that is not changing... Can someone help me?
  17. N

    !frags time doesn't change TFS 1.3

    Good morning, Does anyone know why the time doesn't change? !frags function onSay(player, words, param) local fragTime = configManager.getNumber(configKeys.FRAG_TIME) if fragTime <= 0 then player:sendTextMessage(MESSAGE_STATUS_CONSOLE_BLUE, "You do not have any unjustified...
Back
Top