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

    OpenTibia OT Manager 1.5.3

    OT Manager, is (for now) a text editor (like notepad + +) that supports lua files and makes easy to edit or create script for open tibia. Features: * Autocomplete * Auto-organize (order a part or all the script by itself) * Syntax Highlight * Grouping (grouped blocks "{}", functions, and some...
  2. leyendario

    getPlayerItems(cid)

    this is a function that returns a table with all items that the player currently have. it doesn't count depot. function getPlayerItems(cid) local items = {} local function checkContainer(uid) local container = getContainerSize(uid) - 1 for a = 0, container do...
  3. leyendario

    Action Message of items inside a bp.

    Message of items inside a bp. it send a message to the player when open the backpack/bag or any other item-container type if you want to. actions.xml <action itemid="1988" event="script" value="bp.lua"/> add any other bp/bag id that you want to have this function. bp.lua function...
  4. leyendario

    get a globalevent time left from a talkaction

    hey! is there a way to get the time left to start an globalevent from a talkaction? i mean and sends a text to the player saying the time left. like:
  5. leyendario

    Monster Summon heal master and party.

    i have seen many request about this particular monster.. so i made it and this is what it does. its a summon that heals the master everytime he use a spell. and if he is in party all the party members will be heal too. xml of the monster <?xml version="1.0" encoding="UTF-8"?> <monster...
  6. leyendario

    Help with boss system!.

    ok my problem is that i want an action script that teleport 3 players to a room and when it happens summon a boss... no chest quest.. only that, teleport and boss summoned! i make a script following some guides... but i cant make it works... it looks like an anihi.. This is my script...
Back
Top