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

    bomberman-tfs-1.x

    it has this function in the lib file
  2. L

    bomberman-tfs-1.x

    Not if I was buying, I would have bought it already .. The error I saw is time to remove. When I had some free time, I'll look more calmly.
  3. L

    bomberman-tfs-1.x

    Any solution?
  4. L

    Solved remover monster

    player + monster in the room do nothing room with only monster clean room. Its even function with the player in the room she is removing the monster bump bump bump bump bump bump
  5. L

    Solved remover monster

    the problem with this function in my test is if player in the room was removing the monster
  6. L

    Solved remover monster

    local function roomIsOccupied(bossposition, rangeX, rangeY) local spectators = Game.getSpectators(bossposition, false, false, rangeX, rangeX, rangeY, rangeY) if #spectators ~= 0 then return true end return false end function onStepIn(creature, item, position...
  7. L

    Solved login.php tibia 11.44

    Clicking on close does not enter the game. version 11.49 is logging normal only to 11.44 that this problem does not occur.
  8. L

    Solved login.php tibia 11.44

    error that is in the photo
  9. L

    Solved login.php tibia 11.44

    I am not able to log in to my server with client 11.44 with client 11.49 I am logging normally I would like to log in with 11.44 login.php login.php · master · Erick Nunes Mello Mattos / Otxserver-Global · GitLab
  10. L

    stamina regen.

    bump
  11. L

    stamina regen.

    tfs 1.+ I look for a script that if the player is in pz the stamina will go up every 5 minutes will go up 1 point. and another script that when he was on 1 sqm in particular the stamina went up 1 point every 5 minutes
  12. L

    TFS 1.2 Trainer stamina regen.

    I used the script above the potions stopped working
  13. L

    TFS 1.2 Trainer stamina regen.

    add where? Creature:onTargetCombat(target) if self:isPlayer() then if target and target:getName() == staminaBonus.target then local name = self:getName() if not staminaBonus.events[name] then staminaBonus.events[name] = addEvent(addStamina...
  14. L

    Solved autoloot

    yes in global.lua player:sendTextMessage(MESSAGE_INFO_DESCR, "free teste.") ok! now vip teste nop :/
  15. L

    double exp

    Hello test the script arrived on time and date did not appear msg
  16. L

    double exp

    I think this would conflict with the extra VIP exp function Player:onGainExperience(source, exp, rawExp) if not source or source:isPlayer() then return exp end if self:isVip() then exp = exp * 1.1 end
  17. L

    Solved autoloot

    edit by me local itemName = tonumber(split[2]) and itemType:getName() or item local size = 0 for i = AUTOLOOT_STORAGE_START, AUTOLOOT_STORAGE_END do local storage = player:getStorageValue(i) if size == AUTO_LOOT_MAX_ITEMS and not...
  18. L

    double exp

    local days = { [10] = '00:00', -- [day] = 'hour(s):minute(s)' [11] = '12:00' } function onLogin(cid) local d = days[os.date('*t').day] local os, h = os.date('%X'):sub(1, 5), {'', ''} if d then h[1] = os:sub(1, 2)..os:sub(-2) h[2] = d:sub(1, 2)..d:sub(-2)...
  19. L

    Solved Anti mc

    Lua Script Error: [CreatureScript Interface] data/creaturescripts/scripts/others/antimc.lua:eek:nLogout data/creaturescripts/scripts/others/antimc.lua:21: attempt to perform arithmetic on field '?' (a nil value) stack traceback: [C]: in function '__sub'...
  20. L

    Solved Anti mc

    -- player:isVip() function Player.isVip(self) return self:getVipTime() > os.time() and true or false end
Back
Top