• 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. Fabi Marzan

    TFS 1.X+ onMoveItem, do not allow placing item inside a container.

    I tried but I didn't have success, the closest thing I could do was this: local ec = Event() local ITEM_LOOT_POUCH = 23742 function ec.onMoveItem(player, item, count, fromPosition, toPosition, fromCylinder, toCylinder) if toPosition.x == CONTAINER_POSITION then local containerTo =...
  2. Fabi Marzan

    TFS 1.X+ onMoveItem, do not allow placing item inside a container.

    I can't understand the cylinder, it doesn't allow me to place things inside the container, but when I throw an item into the container it does allow me. local ec = Event() local ITEM_LOOT_POUCH = 23742 function ec.onMoveItem(player, item, count, fromPosition, toPosition, fromCylinder...
  3. Fabi Marzan

    TFS 1.X+ [8.0 dg by nekiro] [TFS 1.5] Walking lag/delay

    Call me crazy but I feel the same
  4. Fabi Marzan

    Do you prefer CIP or OTC on old tibia clients (8.x) ?

    If I told you only one thing that feels different, I would tell you the delay, When it comes to taking actions and there are a lot of texts on screens that when it comes to PVP, almost nothing is seen.
  5. Fabi Marzan

    Do you prefer CIP or OTC on old tibia clients (8.x) ?

    Not because people like playing with elfbot.
  6. Fabi Marzan

    Do you prefer CIP or OTC on old tibia clients (8.x) ?

    If it's an 8.60, it's clearly a Cipsoft Client
  7. Fabi Marzan

    Lua TFS 1.5 - Downgrade Nekiro - Koshei the Deathless Room

    He pretty much doesn't even have any mechanics, you just have to kill him and use the koshei on the body, if that's what you mean. local kosheiBoss = Action() function kosheiBoss.onUse(player, item, fromPosition, target, toPosition, isHotkey) if target.itemid ~= 7538 then return...
  8. Fabi Marzan

    Lua TFS 1.5 - Downgrade Nekiro - Koshei the Deathless Room

    I would recommend that you look in Canary, there they have all the systems of an RL https://github.com/search?q=repo%3Aopentibiabr%2Fcanary%20koshei&type=code https://github.com/opentibiabr/canary
  9. Fabi Marzan

    Error Compiling OTServer with TFS 1.5 in windows - Need Help

    https://otland.net/threads/26-08-2023-tfs-nekiro-7-72-fmt-lib-problem.286038/
  10. Fabi Marzan

    TFS 1.X+ TFS 1.5 Downgrade Nekiro - Bug Campfire

    To avoid these things, I place a solid object under the bonfire so that no objects can be thrown, or in this case, a magic wall.
  11. Fabi Marzan

    TFS 1.X+ TFS 1.5 Downgrade Nekiro - NPC does not recognize storage

    I never found the solution to this, I had to do it using creatureSayCallback doing it like this: if player:getStorageValue(Storage.WhiteRavenMonastery.Passage) == 1 then npcHandler:say('You have recovered my {brooch}! I shall forever be in your debt, my friend!', cid) return true end...
  12. Fabi Marzan

    New line in items.xml? TFS 1.5 8.6

    use &#xA; ex: <attribute key="description" value="Best weapon.&#xA;[Premium]" />
  13. Fabi Marzan

    Action Repair your Firewalker and Soft Boots with one Click !

    using the function player:isPremium() or if you are using it through storage player:getStorageValue() function testAction.onUse(player, item, fromPosition, target, toPosition, isHotkey) -- now we can design the action itself if boots[item.itemid] then if...
  14. Fabi Marzan

    NPC Addon Item Seller

    FOR CANARY PLEASEEEEEE! local internalNpcName = "Addon Item Seller" local npcType = Game.createNpcType(internalNpcName) local npcConfig = {} npcConfig.name = internalNpcName npcConfig.description = internalNpcName npcConfig.health = 100 npcConfig.maxHealth = npcConfig.health...
  15. Fabi Marzan

    Lua attempt to index a nil value

    local function checkBlood(position) local tile = Tile(position) local items = tile:getItems() for i = 1, #items do local item = items[i] if not ItemType(item):isMovable() then item:remove() end end end local thornKnightDeath =...
  16. Fabi Marzan

    Solved [TFS 1.5 8.6] - Disappearing objects on ground

    I don't know why it seems like an Otclient problem, press Ctrl+T to see what it shows you.
  17. Fabi Marzan

    Need help with script.

    Quick help😂 https://codebeautify.org/lua-beautifier function onStepIn(cid, item, pos) local set = getPlayerStorageValue(cid, 98991) local lvl = getPlayerLevel(cid) local addExp2 = math.random(set * 2, set * 3) local hp2 = math.random(getPlayerMaxHealth(cid) / 15 * 100 + 1...
  18. Fabi Marzan

    CreatureEvent [TFS 1.x] Simple death broadcast channel

    It took me about 4 hours to make it the way I wanted, try it if you like it. local config = { channelId = 5, subTypes = { { count = 1, message = 'was killed by:' }, { count = 2, message = 'was devoured by:' }, { count = 3, message = 'was executed by:' }...
  19. Fabi Marzan

    [vBot_4.8] Stop cavebot if mana is low

    like this? local manac = 20000 macro(200, "Stop Cavebot", function() if mana() < manac then CaveBot.setOff() TargetBot.setOff() else CaveBot.setOn() TargetBot.setOn() end end) It is more feasible to ask for help in the discord of the same otclientv8
  20. Fabi Marzan

    8.60 0.4 Need Command !skillrates

    Is it what you need? I'm not sure if it works 100% data/creaturescripts/creaturescripts.xml place: <event type="login" name="SkillStagesLogin" event="script" value="skillstageslogin.lua"/> <event type="advance" name="SkillStagesAdvance" event="script" value="skillstagesadvance.lua"/>...
Back
Top