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

    OpenTibia MapTracker (Clients 10+)

    Can be used on any otserver with a 10 client.
  2. aqubjukr

    RME: Is there a way to automatically add smooth borders between terrains?

    The function of automating borders, will work with some ids (those that are already registered). Several new (or old) floors are without this function, so you will have to do it manually or add the border to the file: borders.xml (inside your version folder).
  3. aqubjukr

    Bounac 12.40

    Oh yes, I didn't know about that option 👍
  4. aqubjukr

    Bounac 12.40

    That's nice man. This bounacClientID.otbm use another items.otb? I'm not able to open it, the other one is correctly. Btw, thx for the contribution.
  5. aqubjukr

    TFS 0.X how to define X many skills/lvls loss when player death

    This is very poorly written and I believe that you will not be able to do what you want with it. There is a lot of strange thing about it. Like: doPlayerSetLossSkill(cid, 0) -- Will run without loss skills...
  6. aqubjukr

    Lua TFS 1.3 Addon and Mount NPC Seller Request

    Use the script that the guy fixed ... And to do something about mounts, just change the items, add new storages and put the keywordHandler. To change the player to get a mount instead of the addon just change: player:addOutfitAddon(addon.ID) player:addMount(mount.ID)
  7. aqubjukr

    Lua onthink question

    You can do it in movements. I believe if you do something related to getGlobalStorageValue is the easiest thing to do. Spawn the boss when getting the storage or using an addEvent to summon. EDIT: Another function that you can use to achieve your search is (activated whenever a player enters...
  8. aqubjukr

    TFS 0.X how to define X many skills/lvls loss when player death

    I don't have much experience in tfs 0.4, but I believe you can do this by putting something like (in death function): Example for maglvl: Use this to get the current magic level: getPlayerMagLevel And put a variable that you must configure before (I'll use mllose as an example)...
  9. aqubjukr

    Znote Shop items.xml issue

    Why don't you download your own items? Item Image Frames Generator - OpenTibiaLibrary (https://item-images.ots.me/generator-animated-items/)
  10. aqubjukr

    Lua spell monster not damage

    You only use COMBAT_FORMULA_LEVELMAGIC for player spells (as it depends directly on the magic level). In monster spells, COMBAT_FORMULA_DAMAGE is used, to don't execute the Magic level parameter. In your case, I believe that if you change this, the spell will work...
  11. aqubjukr

    TFS 1.X+ Daily reward

    Are u using save server? bcos otbr use this to give a new reward.
  12. aqubjukr

    PHP Get item name in gesior

    up
  13. aqubjukr

    OTServBR-Global 12x console error

    opentibiabr/otservbr-global (https://github.com/opentibiabr/otservbr-global/blob/develop/data/migrations/4.lua)
  14. aqubjukr

    PHP Get item name in gesior

    Would anyone have the feature of showing the name of the item when leaving the mouse over it in the gesior? I was trying to find some post / github but I wasn't successful. If anyone has a base for management, I would appreciate it. (I was trying to adapt myacc, but I couldn't).
  15. aqubjukr

    Lua Storages Login

    No, the script has a storage that checks if the player has already acquired his quests. CHECK: if player:getStorageValue(123123) == 1 then If the player doesn't already have this storage, the script will set all the established quests. And if the script verifies that the player already has...
  16. aqubjukr

    Lua Storages Login

    Here: local freeQuests EXAMPLE: Storage 123 value 4 and storage 124 value 6. local freeQuests = { {storage = 123, value = 4}, {storage = 124, value = 6}, } function onLogin(player) if player:getStorageValue(123123) == 1 then return true end for i = 1, #freeQuests do...
  17. aqubjukr

    Lua Storages Login

    As TFS wasn't mentioned, I passed the script based on TFS 1.3, but it is very easy to adapt it. In creaturescripts: The first script has a check that occurs only at the first login of the character. If there are already registered players, you can use the second option. Use lastLogin: local...
  18. aqubjukr

    Remere's Map Editor - Can you move walls to another floor?

    You can use the shift + left button to select the area. After that, you can ctrl + c to copy the area and paste it in the desired location. Ps: I believe there is no way to move to floors above or below.
  19. aqubjukr

    ERROR TFS 1.3

    local function removeVortex(pos, itemId) local portal = Tile(pos):getItemById(itemId) portal:remove(1) end function onKill(creature, target, item) if not creature or not creature:isPlayer() then return true end if not target or not target:isMonster() then return true...
  20. aqubjukr

    TFS 0.X TFS 0.4 Serve 8.6 / exchange skills names

    Do you refer to the client? If so, just edit it using a text editor (such as notepad ++), completing the spaces, if necessary.
Back
Top