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

    RevScripts [TFS 1.5] Use items to gain mounts

    I have this script that when an item is used it gives the mount but I would like it to be necessary to use these items for the mount to be given: 04 Spectral Horseshoes Spectral Horseshoe 01 Spectral Horse Tack Spectral Horse Tack 01 Spectral Saddle The idea here is to revscript the Phastamal...
  2. bolachapanco

    Lua Upgrade Items

    Closed Topic (Solved)
  3. bolachapanco

    Lua Exercise Weapon

    Does anyone have or could create a script that, when purchasing an item and using it, automates the exercise weapon. This means that when you finish charging one exercise weapon, it starts the other automatically. I'm using a Canary Base but it could also be for TFS 1.3+
  4. bolachapanco

    RevScripts Transform boss room into hunt

    How would you make this script a hunt instead of a boss room? local config = { actionId = 5900, -- ActionID to use in the lever bossName = "Demon", bossPosition = Position(3111, 1846, 7), -- Position where the boss will appear bossArea = { fromPos = Position(3101, 1845...
  5. bolachapanco

    RevScripts [RevScripts] Cooldown

    Could you help me to put a time counter that shows how much time is left to summon the npc again. Base Canary: https://github.com/opentibiabr/canary local refiller = Action() local timeToDisapear = 120 * 1000 function refiller.onUse(player, item, fromPosition, target, toPosition, isHotkey)...
  6. bolachapanco

    Lua Hunt for lever with time

    Guys needed a script that when pulling the lever with position for 4 players they were teleported to a hunt and it remains there for an hour after that the player will be teleported back to the temple. but if the player dies during the hunt or the player leaves the hunt is canceled for the player.
  7. bolachapanco

    RevScripts Lever by time

    How to create a script that when pulling the lever for 4 player is moved to a coordinate and after one hour is moved again to another coordinate. local config = { hunt = { name = "Hunt Cloak", position = Position(31923, 32363, 7), maxHuntTime = 30 * 60 }...
  8. bolachapanco

    RevScripts add cooldown

    How could I add a cooldown to this script and show a message about how much time is left before I can use the item again local config = { { name = "Ab'Dendriel", position = Position(32732, 31634, 7) }, { name = "Ankrahmun", position = Position(33194, 32853, 8) }, { name = "Carlin"...
  9. bolachapanco

    Task Acess

    I needed a script that when performing 3 tasks and killing a boss I could access a portal and get a reward. Boss storeage: Storage.Quest.U12_40.SoulWar.GoshnarMegalomaniaKilled Task script 👇 taskConfiguration = { {name = "Rotworm", color = 40, total = 250, type = "once", storage = 190006...
  10. bolachapanco

    NPC Addoner - Canary Source

    Does anyone have an npc script that exchanges items for outfit? Base: GitHub - opentibiabr/canary: Canary Server 13.x for OpenTibia community. (https://github.com/opentibiabr/canary) Version: 2.6.1 1692574130 I found this script but I couldn't link it to an npc. local keywordHandler =...
  11. bolachapanco

    Item that gives tibia transferable coins

    I have this script that when using the item it gives tibia coins, but I would like it to give tibia coins (transferable). it's possible? local addCoins = Action() function addCoins.onUse(player, item, fromPosition, target, toPosition, isHotkey) local coins = 25 db.query("UPDATE `accounts` SET...
  12. bolachapanco

    Add collect money and cooldown

    How do I put a collection of money when using and add a cooldown in this script? local config = { { name="Ab'Dendriel", position = Position(32732, 31634, 7) }, { name="Ankrahmun", position = Position(33194, 32853, 8) }, { name="Carlin", position = Position(32360, 31782, 7) }, {...
  13. bolachapanco

    Teleport Ring

    Can anyone help me create an item that opens a window (Modal) and chooses the city I want to teleport to. https://github.com/opentibiabr/canary I'm based on canary in version 2.6.1
  14. bolachapanco

    Lua Add Canary Base NPC

    How do I add an npc to this base? -- Can someone help me? Base: GitHub - opentibiabr/canary: Canary Server 13.x for OpenTibia community. (https://github.com/opentibiabr/canary)
  15. bolachapanco

    NPC No Walk

    I have this npc script but I can't make it walk, can anyone help me? Base: GitHub - opentibiabr/canary: Canary Server 13.x for OpenTibia community. (https://github.com/opentibiabr/canary) local internalNpcName = "Harlow" local npcType = Game.createNpcType(internalNpcName) local npcConfig = {}...
  16. bolachapanco

    Teleport GOD

    I need a script to go to position X Y Z through a command for example / teleport 1000, 1000, 7 I'm using this base: GitHub - opentibiabr/canary: Canary Server 13.x for OpenTibia community. (https://github.com/opentibiabr/canary)
Back
Top