• 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. Lucas Durais

    Client 10/11 Problem

    Hello guys I'm trying to make my server run with tibia client 10 or client 11+, but it doesn't work. I already tried to change the definitions.h source to: static constexpr auto CLIENT_VERSION_MIN = 1000; static constexpr auto CLIENT_VERSION_MAX = 1110; static constexpr auto...
  2. Lucas Durais

    How to stop multiple events

    Hello guys I want to know if there is a way of stopping a lot of events in the same time without creating a lot of stopEvent functions... I tried to do like: for i = 1, 100 do stopEvent(event+[i]) end But I get nil value for event Thanks!
  3. Lucas Durais

    Solved addBuyableItem Problem

    Hello guys I'm trying to make my npc only sell some items if the player have one storage. I've tried a lot of different ways and none of them worked for me... In my last attempt I did as it follows: local function greetCallback(cid) if getPlayerStorageValue(cid, Storage.Quest.Rank) >= 1...
  4. Lucas Durais

    Lua How to automatically change spawn

    Hello guys I'm interested in make a global event that starts up one time each 2 weeks. When this event starts, I need an entire cave respawn be changed to different monsters. There is anyway I can do that?? My tfs version is 1.2 Thanks!!
  5. Lucas Durais

    Multiple Message Greet

    Hello guys I'm trying to make my npc says more then one message using selfSay when I greet him... I already succeeded in making him saying using npcHandler:say but it takes forever... How can I do this with selfSay?? This is how I managed to do it with npcHandler: local function...
  6. Lucas Durais

    Item desappears if moved

    Hello otland! How can I make a item desappears if the player moves it inside the backpack or if he take it out of the backpack?? My tfs version is 1.2 Thanks!!
  7. Lucas Durais

    Stop an action event with movement

    Hello guys My problem is: I'm using a full carpet that transforms into a small carpet and starts an event. In 10 seconds, it will transform to the original full carpet. But if you step in one tile, it will transform the item I used to the original id before the event. That way, if another...
  8. Lucas Durais

    Items.otb Question

    Hi guys! I was wondering if there is a way that I can edit my items.otb adding new items of rl tibia without make my client debug. For example, my tibia version is 10.99 and tibia recently released some 11.02 items and I want to put them in my server. How am I able to do that with the usual...
  9. Lucas Durais

    If player is in certain area then give storage

    Hello guys! I am trying to make my script gives a x if I use a certain item in a square area. But I only managed to do it in a straight line. My script is : function onUse(player, item, fromPosition, target, toPosition, isHotkey) if item.itemid == x then if...
  10. Lucas Durais

    onUse transform item to monster animation

    Hiho guys I would like to know how can I make one item, like a tree, transform to a monster animation, like a huanted treeling, when I use an item. Thanks!
  11. Lucas Durais

    Problem with new parcel

    Hello otland My problem is that I want to make a new parcel for the vip people and that will only be sold in the npc of vip area. I already compiled the tfs so it will send trough the mailbox, the problem is that when i send it, i receive in the mailbox in the depot a item with the id of the...
  12. Lucas Durais

    Create item and magic effect on chance

    Hello guys I really want to know if I can, by chance, create in a specific tile, two different types of items and a magic effect. In my script, it only creates the two items, and I don't know how to put the const effect among them. This is how it looks: Game.createItem(math.random(item1...
Back
Top