• 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. Alberto Cabrera

    when I add monster the edit is not seen Remere

    View > Show creatures
  2. Alberto Cabrera

    Looking for Offline Training script 8.60 TFS 1.5

    I think that system is already in source code, but commented. You need to uncomment those lines.
  3. Alberto Cabrera

    AAC Remote VPS - Cannot find config.lua file

    Have you added your ip (not vps) to html/install/ip.txt?
  4. Alberto Cabrera

    [VIDEOTUTORIAL] Learning how to compile TFS 1.5 on Windows (8.60 downgraded by Nekiro)

    https://github.com/otland/forgottenserver/wiki/Compiling
  5. Alberto Cabrera

    Otclient Classic UI

    Options > Interface > Display creature health bars above text
  6. Alberto Cabrera

    TFS 1.5 8.6 problem with login

    Have you changed the ip in config.lua?
  7. Alberto Cabrera

    Lua teambattle event error Tfs 1.2

    Maybe an item that doesn't exist in your spr?
  8. Alberto Cabrera

    RevScripts Boss room

    local config = { leverUniqueID = 49210, requiredLevel = 110, daily = true, bossName = "rat", storage = 7777, roomCenterPosition = Position(577, 478, 5), playerPositions = { Position(580, 479, 6), Position(580, 478, 6), Position(580, 580, 6)...
  9. Alberto Cabrera

    TFS 1.X+ teleport effect tfs 1.5 nekiro 7.72

    https://github.com/nekiro/TFS-1.5-Downgrades/blob/7.72/data/items/items.xml#L1711
  10. Alberto Cabrera

    TFS 1.X+ stop atk null IP

    TFS 0.3.7 Does not have stopAttackingAtExit in config.lua?
  11. Alberto Cabrera

    AAC Remote VPS - Cannot find config.lua file

    In server path field, change \ by /
  12. Alberto Cabrera

    TFS 0.X Loose Stone Pile - Bug with blood or another splash

    That function is in data/actions/lib/actions.lua
  13. Alberto Cabrera

    Depot Block (Player Outside)

    local ec = EventCallback ec.onMoveItem = function(self, item, count, fromPosition, toPosition, fromCylinder, toCylinder) local tile = Tile(toPosition) if tile and tile:getItemByType(ITEM_TYPE_DEPOT) then if math.abs(toPosition.x - self:getPosition().x) > 1 or...
  14. Alberto Cabrera

    TFS 0.X Login queue - Change order

    Below if(player->hasFlag(PlayerFlag_CanAlwaysLogin) || player->isAccountManager() || (waitList.empty() && online < max) || (g_config.getBool(ConfigManager::PREMIUM_SKIP_WAIT) && player->isPremium())) Try Database* db = Database::getInstance(); DBQuery query; query << "SELECT `value`...
  15. Alberto Cabrera

    Lua [TFS 0.X] Boss Room - Chance Reward every 24h

    Change MSG_STATUS_SMALL to MESSAGE_STATUS_SMALL
  16. Alberto Cabrera

    Lua [TFS 0.X] Boss Room - Chance Reward every 24h

    local storage = 5964 -- change this value local cooldown = 24 -- hours local effect = CONST_ME_MAGIC_BLUE local items = { { itemId = 5162, itemCount = 1, itemChance = 1 }, { itemId = 5599, itemCount = 1, itemChance = 10 }, { itemId = 5166, itemCount = 20, itemChance = 30 }, {...
  17. Alberto Cabrera

    Lua [TFS 0.X] Boss Room - Chance Reward every 24h

    Line 27 Change #count to count
  18. Alberto Cabrera

    TFS 1.X+ Fishing Rod tfs 0.4 to tfs 1.5

    Add this local sandHoles = {} -- add sand ids local sandAID = 2554 and change if table.contains(holes, groundId) then to if table.contains(holes, groundId) or (ground:getActionId() == sandAID and table.contains(sandHoles, groundId)) then
  19. Alberto Cabrera

    TFS 1.X+ Fishing Rod tfs 0.4 to tfs 1.5

    Why not add hole id to holes array?
  20. Alberto Cabrera

    Lua [TFS 0.X] Boss Room - Chance Reward every 24h

    I have edited my first reply
Back
Top