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

  1. Z

    Rarity items tfs 1.5 7.72

    trying to implement [TFS 1.X] Rarity Rolls & Custom Attributes Library (https://otland.net/threads/tfs-1-x-rarity-rolls-custom-attributes-library.268888/) on nekiro tfs 1.5 772 everything working with some changes to source and script but when i use element damage it doesnt work. The damage...
  2. Z

    [TFS 1.X] Rarity Rolls & Custom Attributes Library

    finally got it to work! Now it seems i got the same problem as people above also have. Lua Script Error: [CreatureScript Interface] data/creaturescripts/scripts/attributes.lua:onHealthChange data/creaturescripts/scripts/attributes.lua:418: attempt to call global 'doTargetCombatCondition' (a...
  3. Z

    Action [TFS 1.X] Cursed Chests

    your repo dont have sendanimatedtext. i wish someone could help me add animatedtext to source or just simply help me replace code to sendtextmessage? something like this? data.pos:doCreatureSay("Get your reward!") or data.pos:creature:sendTextMessage(MESSAGE_INFO_DESCR,("Get...
  4. Z

    Animated Text Support for OT Client 10.98/99 - TFS 1.3

    sendAnimatedText is removed on my repo what can i replace it with? data.pos:sendAnimatedText("Get your reward!") data.pos:sendAnimatedText(string.format("Boss Fight\n%s", data.chest.boss.name))
  5. Z

    7.72 nekiro 1.5

    how do i enable all new magic effects on 7.72? been trying to change to uint16_t in soruce and otclient but with no success. probably missed some rows?
  6. Z

    Lua Damage and Loot Log

    anyone using 1.5 wanna quickly solve this?
  7. Z

    OTClient OTCv8 tfs 1.5 7.72 Loot channel message

    did you solve it? got the same problem
  8. Z

    Unhandled onTextMessage message mode 0

    tfs 1.5 772 downgrade tested both with otclient and otv8
  9. Z

    [TFS 1.X] Rarity Rolls & Custom Attributes Library

    Got it to slightly work! But I now have to relog to update changes. Please help! Using tfs 1.5 772
  10. Z

    Action Advanced Monster Arena TFS 1.2

    anyone wanna help add gold cost on use? function checkPlayer(player) if player:getStorageValue(2101) <= 0 then return true else player:sendTextMessage(MESSAGE_STATUS_CONSOLE_BLUE, "You already completed Greenhorn Arena") return false end end
  11. Z

    monsters drop empty bags

    im using nekiro/forgottenserver (https://github.com/nekiro/forgottenserver/tree/8.6-downgrade)
  12. Z

    monsters drop empty bags

    crashes client:confused: i also tried doing the old <inside> but that does not work either
  13. Z

    monsters drop empty bags

    Lua Script Error: [Event Interface] data/events/scripts/monster.lua:Monster@onDropLoot data/events/scripts/monster.lua:12: attempt to index a nil value stack traceback: [C]: in function '__index' data/events/scripts/monster.lua:12: in function <data/events/scripts/monster.lua:1>
  14. Z

    monsters drop empty bags

    function Container.isContainer(self) return true end function Container.createLootItem(self, item) if self:getEmptySlots() == 0 then return true end local itemCount = 0 local randvalue = getLootRandom() if randvalue < item.chance then if...
Back
Top