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

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

    Oooh thanks for that. The scripts worked perfectly for me, thank you. I used it for another container I had and it worked great for me.
  2. Fabi Marzan

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

    Using lua I couldn't solve it, it entered the sources and container.ccp in Container::queryAdd what I did was add this: // loot pouch: allow item autoloot if (getID() == ITEM_LOOT_POUCH) { if (actor && dynamic_cast<Player*>(actor)) { return...
  3. 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 =...
  4. 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...
  5. Fabi Marzan

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

    Call me crazy but I feel the same
  6. 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.
  7. Fabi Marzan

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

    Not because people like playing with elfbot.
  8. 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
  9. 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...
  10. 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
  11. 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/
  12. 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.
  13. 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...
  14. Fabi Marzan

    New line in items.xml? TFS 1.5 8.6

    use &#xA; ex: <attribute key="description" value="Best weapon.&#xA;[Premium]" />
  15. 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...
  16. 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...
  17. 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 =...
  18. 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.
  19. 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...
  20. 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:' }...
Back
Top