• 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 Allan Silva

  1. A

    OTClient Use all Stacked Items

    Hi @Danger II, thanks for replying I liked alternative solution you suggested, as I found this part of script at server base in game.cpp I need to create a new condition here? If so, can you help me by giving me an idea of what this condition could be?
  2. A

    OTClient Use all Stacked Items

    Hi community, I am trying to implement an option in the game interface to use all stacked items at once when clicking the "use all ..." button, as shown in the image. Here is the part of the code in otcv8 gameinterface.lua: after menu:addOption(tr('Use'), function() g_game.use(useThing)...
  3. A

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

    Maybe you have a problem mentioned in this topic Multiple onequip buh.
  4. A

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

    this is working on canary, you need make some changes
  5. A

    Lua Rare name item in Broadcast Message

    Script: Roulette System by Xikini Hello everyone! I'm using Xikini roulette system and I made a small change, the roulette generates items with rarities (rare, epic, legendary). The rarity is assigned to item normally, but rarity prefix does not appear in message, only name of item, as shown...
  6. A

    Remove Player Condition Attributes

    Thank for help, I joined the discord group. Thanks for trying to help. I used information about equip/deequip to understant canary code. I agree with you, site is called otland and not tfsland. It's really sad that there are people who don't want to answer questions because it's a different...
  7. A

    Remove Player Condition Attributes

    Canary - Version 3.1.1 OTCv8 - 11.00 System Attributes: [TFS 1.X] Rarity Rolls & Custom Attributes Library (https://otland.net/threads/tfs-1-x-rarity-rolls-custom-attributes-library.268888/) Hi everyone! I'm adding the rarity script to server. The script is working on canary server, creatures...
  8. A

    Help with loot description.

    I can't open link. Can you send it again? I have same problem. Thanks Edit: how to remove this error. Open container.cpp and search fo this line: os << "{" << item->getID() << "|" << item->getNameDescription() << "}"; change for: os << item->getNameDescription(); message after...
  9. A

    Show additional skills on client

    I made changes and now it's working. Thank you for help and sharing script!
  10. A

    Show additional skills on client

    Hi @Ramirow I'm trying to implement a skill using the OTC mehah and TFS 1.5 version, using your two topics. After following step by step instructions of two tutorials you created, I found following error in the OTC terminal. Error Message ERROR: ProtocolGame parse message exception (4207 bytes...
  11. A

    TFS 1.x Game.sendTextOnPosition(message, position[, effect = false])

    How can I do to script repeat " position:sendMagicEffect(effect)" for each 2 seconds for 5 times?
  12. A

    Lua Change the animated text effect and color

    Hi I'm using TFS 1.3 with script rarity roll. [TFS 1.X] Rarity Rolls & Custom Attributes Library (https://otland.net/threads/tfs-1-x-rarity-rolls-custom-attributes-library.268888/) When you drop a loot automatic send animated text on loot, look the picture below. When you have a loot of...
  13. A

    Lua How to put actions in 12.64

    revscriptsys is written in .lua. You need to see the folder "scripts" and open some scripts..
  14. A

    TFS 1.X+ Rarity Rolls: Set new Attributes

    Edit: how can I make the buff of attack speed from attribute "attackspeed" in items.xml? The attack speed is working perfectly.
  15. A

    TFS 1.X+ Rarity Rolls: Set new Attributes

    EDITED: Solution if k == 18 then if player:getCondition(CONDITION_HASTE, CONDITIONID_COMBAT, offset) == nil then local condition = Condition(CONDITION_HASTE) condition:setParameter(CONDITION_PARAM_SUBID, offset)...
Back
Top