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

    Lua NPC that attack skulleds

    Thank you all, solved it with OOP
  2. B

    Lua NPC that attack skulleds

    Hello, I am having problem with a script I made. local config = { maxDistance = 20, followTimeout = 10, range = 5, damage = {min = 500, max = 1000}, messages = { onSpot = "We do not tolerate people like you, %s", onFlee = "I will catch you next time!", onTimeout =...
  3. B

    Monsterpack and spellpack for tibia 8.6 based on real tibia.

    Rehosted monster.rar - Speedy Share - upload your files here
  4. B

    /attr

    Heh... I was a premium user from OTLand and downloaded a rev of The Forgotten Server in private subversion :-) Whatever... REALLY THANK YOU Merkz, you helped me a lot. Rep+
  5. B

    /attr

    Why the "/attr" don't works properly on TFS 0.4? It doesn't edit attack, defense, name, description of items... I tried: /attr attack 80 /attr attack, 80 /attr set attack, 80 /attr set attack 80 And nothing... Can someone help me?
  6. B

    Lua doMoveCreature

    doMoveCreature(cid, getCreatureLookPosition(cid), 0) thanks people :)
  7. B

    Lua doMoveCreature

    This function moves creatures upon items that block path, walls and etcetera... there is a way to don't move the creature if the is a wall or item blocking its path?
  8. B

    Lua Patterns Tutorial

    Can someone recommend a good LUA patterns tutorial? How to use patterns in string.match and string.find. I know the meaning of all symbols, as: "%d+" or "%u". But I need some tips how to use them correctly. eg: How to select all four numbers in this string. local num = "30 50 60 90"
  9. B

    Lua How to short this script.

    bump
  10. B

    Lua How to short this script.

    Yeah. This works perfectly. If I want to create various recipes of differents items, how I can do it?
  11. B

    Lua How to short this script.

    no one can help me? Please...
  12. B

    Lua How to short this script.

    Hello, people. ^_^ I've found a script that I made a time ago and I tried to use for and tables to shorten it. It's a smithing system where you use a hammer in some stacked items to create another item, example: Magic Sword. I want to use a recipes table and for to short the script, but I'm...
  13. B

    TFS 0.4 - The NPCs don't say nothing in Farewell

    Help with this. In the TFS 0.4, none of NPCs say nothing when I say bye.
  14. B

    Movements crashing server. Rep+ for solution.

    No one can help me?
  15. B

    Movements crashing server. Rep+ for solution.

    Hello. I got TheForgottenServer 0.3.6pl1 and if I create an item with a movement script assigned and this item appears on his slot, the server crashes. I tried to make the movement script in Mods and don't got a fix. There is a way (source edition or lua code) to fix that? I rep+ anyone that...
  16. B

    Lua Problems with onEquip

    I already do this, heh... But is another problem ;P When the item is equipped and I logout and login the item give +50 a time ;\ So the item gives 50+50+...+50 =(
  17. B

    Lua Problems with onEquip

    I found that the onEquip execute all LUA code twice. If I put in the code: function onEquip(cid, item, slot) print("Equip") return true end The console shows: Equip Equip Heh... Function Bug?
  18. B

    Lua Problems with onEquip

    I know this can be made by a condition. But I want to make an attribute system (strenght, agility...) and this isn't a condition =) The script is only a example.
  19. B

    Lua Problems with onEquip

    Hello! I am having problems with the function onEquip, see this LUA script: local r = { [2467] = { slot = CONST_SLOT_ARMOR, } } function onEquip(cid, item, slot) local k = r[item.itemid] if(k and slot == k.slot) then setCreatureMaxHealth(cid, getCreatureMaxHealth(cid)+100) end...
  20. B

    NPCs and Stackable Items

    Oh, I am lucky! Downloaded the npc/lib from 0.3.6pl1 and the bug is corrected! Thanks anyway!
Back
Top