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

  1. leyendario

    CreatureEvent AOL Reminder

    if it reminds you.. then it should buy it for you at once...
  2. leyendario

    getPlayerItems(cid)

    if it gets all the items in a container it is not far at all to get all the items of a player :)
  3. 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...
  4. leyendario

    Open TibiaME Server with sources

    wow! super!... im learning c# too.. this looks awesome!
  5. leyendario

    getPlayerItems(cid)

    tried with all kind of containers and i didnt give any error. anyways it was looping 21 slots instead of 20 as Shinmaru said. i fixed that...
  6. leyendario

    getPlayerItems(cid)

    what?.
  7. 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...
  8. leyendario

    Monster Summon heal master and party.

    lets bump this.
  9. leyendario

    Transform item on use with 10% chance

    local itemid = 2177 local pos = {x=1000, y=1000, z=7, stackpos=255} function onUse(cid, item, fromPos, itemEx, toPos) local itempos = getThingFromPos(pos) if itempos.itemid ~= itemid then return true end local i = math.random(100) if (i <= 10) then doTransformItem(itempos.uid...
  10. leyendario

    Action Message of items inside a bp.

    it just tells you that there's a backpack.. I did not want the script go through all the backpacks that the player could possible have inside of another bp, becouse of the mass spam that could generate.
  11. leyendario

    MoveEvent Slot system - Multi slot (No crashes)

    in config. maxSlotCount=2 and no, the players cant remove the slot
  12. 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...
  13. leyendario

    New tibia flash client

    open tibia is going to change to flash? as tibia is going to do? or would stay with c++ and Lua?
  14. leyendario

    Character Lottery.

    Your story is very similar to mine, take a look to my nickname xD it speaks by itself haha just 4 numbers to go btw.
  15. leyendario

    Character Lottery.

    they think you wrote wrong your name when registering =/
Back
Top