• 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!

Recent content by Critico

  1. Critico

    TFS 0.X [MOD 7.72]Autoloot problem

    First CREATE an EMPTY FOLDER called "autoloot" in DATA/LOGS, looking like this:
  2. Critico

    Lua TFS 0.x - Get guild ID from offline Player

    worked!!! Thanks alot man <3
  3. Critico

    Lua TFS 0.x - Get guild ID from offline Player

    I need guild ID from player offline '-' but, thanks man!! SQL... do you have any idea how to do this query? function onSay(cid, words, param) local t = param:lower() if (param == "") then doPlayerSendCancel(cid, "invalid") return true end local id =...
  4. Critico

    Lua TFS 0.x - Get guild ID from offline Player

    Tibia 8.60 Version: 0.3.6 ~ 0.4x can someone tell me if there is a function that return GUILD ID an offline players? exemple: "getPlayerGuildId" but offline.
  5. Critico

    TFS 1.X+ skills limit

    if player:getSkillLevel(v.skill) >= v.lim or (player:getSkillLevel(v.skill) + v.incre) > v.lim then player:sendCancelMessage("Você não pode comprar esse skill.") return true end
  6. Critico

    Lua This free inventory check script won't work.

    function getAllContainerFree(cid) local containers,soma = {},0 local sitem = getPlayerSlotItem(cid, 3) if sitem.uid > 0 then if isContainer(sitem.uid) then table.insert(containers, sitem.uid) soma = soma + getContainerSlotsFree(sitem.uid)...
  7. Critico

    TFS 1.X+ skills limit

    change if player:getSkillLevel(v.skill) >= v.lim or (v.lim - player:getSkillLevel(v.skill)) < v.incre then player:sendCancelMessage("Você não pode comprar esse skill.") return false end to if player:getSkillLevel(v.skill) >= v.lim or (v.lim - player:getSkillLevel(v.skill)) < v.incre then...
  8. Critico

    [OTX] New Auto Loot Unlimited Edition 2.0

    ## VERSION 2.0 UPDATE ## [ + ] Bugs: [ - ] Warn BP slot and Gols Bank Colleting Fixed's
  9. Critico

    [OTX] New Auto Loot Unlimited Edition 2.0

    [ + ] Description: Autoloot remade for OTX VERSION and added some other functions that I will be explaining throughout the topic. [ + ] Command image: [ + ] Bugs: [ - ] Warn BP slot and Gols Bank Colleting Fixed's [ + ] Features: [ - ] You can activate or deactivate the autoloot as often...
  10. Critico

    Lua [8.6] attempt to call global 'getTileThingByPos'

    Can anyone help me with this error: attempt to call global 'getTileThingByPos' function: function corpseRetireItems(cid, pos) local check = false for i = 0, 255 do pos.stackpos = i tile = getTileThingByPos(pos) if tile.uid > 0 and isCorpse(tile.uid) then...
  11. Critico

    NPC Npc Auction [8.6]

    CreatureScript npc_shop.lua function onLogin(cid) if getPlayerStorageValue(cid, _config_npc_shop.WithDraw_storage) == -1 then setPlayerStorageValue(cid, _config_npc_shop.WithDraw_storage , 0) end local query = db.getResult("SELECT `id`, `item_id`, `count` FROM `shop_npc`...
  12. Critico

    Chest that requires items to open

    function doHaveItemsFromList(cid,items) local count = 0 if table.maxn(items) > 0 then for i = 1, table.maxn(items) do if getPlayerItemCount(cid,items[1]) >= items[2] then count = count + 1 end end end return count == table.maxn(items) and...
  13. Critico

    Solved [TFS 1.1] Function doPlayerSendMailByName

    solved, thanks for all!
Back
Top