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

    Lua Barbrian Arena [ORTS] problem.

    it's not what he said
  2. P

    Elarion Online - Where Tibia 7.4 holds a special place in our hearts

    dude, u forgot to remove the gpt suggestion here: "However, be aware that advanced users can change MAC addresses."
  3. P

    TFS 1.X+ hidden health showing itself to the player

    you will have to make changes client side, probably in otcv8 it doesnt show if it's set to hidden but u cannot move, also ^^
  4. P

    xodet not giving first wand

    what msg the npc says if u say 'first rod' or 'first wand' ? 1693492068 this is the full script? if so, add it at the end: npcHandler:setCallback(CALLBACK_MESSAGE_DEFAULT, creatureSayCallback) npcHandler:addModule(FocusModule:new())
  5. P

    Lua Warn to gods when a player log in to the game

    onlineMods = onlineMods or {} local cLogin = CreatureEvent("weON") function cLogin.onLogin(player) if player:getGroup():getAccess() then onlineMods[player:getName()] = true else local msg = ('%s has logged in.'):format(player:getName()) for name, _ in pairs(onlineMods) do...
  6. P

    Lua Warn to gods when a player log in to the game

    onlineMods = onlineMods or {} local cLogin = CreatureEvent("weON") function cLogin.onLogin(player) if player:getAccountType() >= ACCOUNT_TYPE_GAMEMASTER then onlineMods[player:getName()] = true else local msg = ('%s has logged in.'):format(player:getName()) for name, _ in...
  7. P

    Lua Task count even if people in party are far away, also only in party..

    probably some other thing, not this simple lower.. but, i've edited the first post, copy again.
  8. P

    Lua Task count even if people in party are far away, also only in party..

    change local mName = target:getName() to local mName = target:getName():lower() 1692994434 but in your config, you have to put all monsters names in lower case example WRONG: [5] = {killsRequired = 400, raceName = "Dragons", level = {1, 6656}, premium = false, creatures = {"Dragon", "Dragon...
  9. P

    Lua Task count even if people in party are far away, also only in party..

    sorry ^^ change player:setStorageValue(current) for player:setStorageValue(KILLSSTORAGE_BASE + id, current) 1692992834 edited first post with all fixes
  10. P

    Lua Task count even if people in party are far away, also only in party..

    change all table.find to table.contains in this code OR put it in the end of global.lua table.find = table.contains
  11. P

    Lua Task count even if people in party are far away, also only in party..

    not tested local config = { countInParty = true, checkMembersDistance = true, maxRange = 30, countOnlyIfSharedEnabled = false, } local function taskKill(player,monsterName) local started = getPlayerStartedTasks(player) if started and type(started) == 'table' then for _, id in...
  12. P

    Lua Task count even if people in party are far away, also only in party..

    how u want it to be? count for every party member in x range? count for every member if shared exp is active? count for every player that dealt dmg to the mob?
  13. P

    Error in console when in console when try to fill pot

    if the script is not been executed, is because you did not registered the item id to this script in the actions.xml
  14. P

    Error in console when in console when try to fill pot

    and what error are u getting now? if no errors, start debugging your code, it's basic. insert some prints along the code and see if its been executed and where it stops if so. then u come here and ask for help with some information about it. the first error u've sent was about another code, now...
  15. P

    Error in console when in console when try to fill pot

    https://github.com/nekiro/TFS-1.5-Downgrades/blob/7.72/data/actions/scripts/other/fluids.lua
  16. P

    Error in console when in console when try to fill pot

    this code is for potions, not fluids. search for the fluids script and register this item in the correct script.
Back
Top