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

    Canary NPC Trade Category

    Hello folks. I'm trying to create an NPC similar to "Rock in a Hard Place"'. However, this NPC will sell imbued items, and the idea is to open the trade window according to what the player wants to buy. But it's not working. I searched through the functions.cpp for another way to accomplish this...
  2. Belfahar

    RevScripts Create doom event to Boss

    Good morning, everyone! I'm creating an event for the boss where, upon reaching 80% of its health, it teleports to the center of the room, notifies players that it's about to unleash a spell. In the initial phase, warning tiles for the magic area are created. Afterward, the actual magic is...
  3. Belfahar

    Lua How to create spell warning area?

    Hey everyone, how's it going?! First, I want to thank you for all the support I've been receiving! The server will be launched on the next 15th! Today, I'm trying to create a spell that has that 'where it's going to fall' effect, like a warning for the player to have 2 seconds to dodge. I've...
  4. Belfahar

    RevScripts Boss with Enraged and Tiles Deal Damage

    Good evening! I am creating a boss with a mechanic where, when it reaches 90% HP, it gains a 25% damage buff (this already works using onThink). And an event is triggered where random tiles are generated within the room that deal 5K damage to the player stepping on them (this works using...
  5. Belfahar

    RevScripts Conditions for Itens

    Hi everyone, I opened another topic because the last one was about Attributes, and they are different things. Let's get into it; I'm dealing with the item upgrade script. I managed to reach a solution, and the item receives the condition, and when the player equips it, it works. Now my problem...
  6. Belfahar

    RevScripts setAttribute on itens

    Hey guys! Now i'm trying to create a very simple system. The player uses the hammer (37171) on the demon shield and it receives some attributes. However, it doesn't work. local ForgeCreation = Action() function ForgeCreation.onUse(player, item, fromPosition, target, toPosition, isHotkey)...
  7. Belfahar

    RevScripts Addon chest with math random

    Hello everyone, how are you? I'm looking for a script where the player can click on a chest every 20 hours.In this chest he has a 10% chance of getting an outfit and a 90% chance of getting crystal coins. Does anyone know how to do it for Canary?
  8. Belfahar

    RevScripts Craft table

    Hi everyone, it's me again! I appreciate all the support and help you have given, I am learning little by little. Today i trying to create an item crafting system, the player clicks on the statue and opens the modal window for interaction, but the script is not working. local forgeExal =...
  9. Belfahar

    RevScripts Kill monster and get storage

    Hello everyone! The idea is that the player, when killing the Brokul, receives storage 640001 and each time he kills he receives the value +1 in this same storage. The message on the screen is just to confirm that the script works. But it is not working. local killingBrokul =...
  10. Belfahar

    RevScripts Some scripts for Canary 13.21x

    Hello everyone, how are you?! I've been dedicating myself to a project for the last few months. And I need help with some scripts for creating quests. 1- A lever that, when pulled, teleports the player to a room. Creatures spawn in 3 waves with 60 second intervals each wave. At the end of the...
  11. Belfahar

    TFS 1.X+ Problem with changing items

    I'm changing the status of some items on my server. And I wanted to create new trinkets. I made changes to items.xml and unscripted equipments. The server opens normally, but the changes do not apply. In the event the necessary level was applied but the item cannot be placed in the ammo slot.
  12. Belfahar

    [TFS 0.4] Battlefield Event

    globalevents/scripts/battleglobalstart.lua function onStartup() setGlobalStorageValue(_Lib_Battle_Info.TeamOne.storage, 0) setGlobalStorageValue(_Lib_Battle_Info.TeamTwo.storage, 0) setGlobalStorageValue(_Lib_Battle_Info.storage_count, 0) return true end
  13. Belfahar

    [CreatureScript] Inquisition Bosses Error

    creaturescripts/scripts/inquisitionPortals.lua local monsters = { ["Ushuriel"] = {teleportPos = {x = 366, y = 254, z = 5, stackpos= 1}, toPos = {x = 437, y = 325, z = 7}}, ["Annihilon"] = {teleportPos = {x = 794, y = 356, z = 7, stackpos = 1}, toPos = {x = 823, y = 436, z = 8}}, ["Hellgorak"] =...
Back
Top