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

    Action Working Demon Oak Quest

    This script was created for/in TFS 0.3.6pl1 and tested on it. Mystic Spirit is similar to TFS but not in all functions
  2. Darkhaos

    Dont trust "tibea1022"

  3. Darkhaos

    Action Working Demon Oak Quest

    Go to data/lib open file 032-position.lua and replacE: function isInRange(pos, fromPosition, toPosition) return (position.x >= fromPosition.x and position.y >= fromPosition.y and position.z >= fromPosition.z and position.x <= toPosition.x and position.y <= toPosition.y and position.z <=...
  4. Darkhaos

    NPC Grizzly Adams (Killing in the name of... Quest) All tasks, more real-tibia

    You can add a storage-reward. This'll give a storage to the player and you can add an action id to teleports checking if player has that storage
  5. Darkhaos

    [New system for npc] All npc-scripts in one file?

    I changed the whole system, now it works like this one YasirTrade = --table containing trade info ({id = ?, sell = ?, buy = ?[,name = ""]} { {id = 11213, sell = 10}, {id = 11214, sell = 50}, {id = 5883, sell = 120}, } Y = Npc:new("Yasir") Y.type = 146 Y.head = 85 Y.body = 7...
  6. Darkhaos

    [New system for npc] All npc-scripts in one file?

    Hello, i've been working on a new system, that let's you create all npc-scripts in just one file. With this you don't need to create a file for each npc in folder data/npc/scripts... All npcs will use the same file, but the actions will change of course (transcripts, trade, travel, etc)...
  7. Darkhaos

    Action Working Demon Oak Quest

    The problem is that the names in script aren't the same as you monster.xml file In Script...........................................In your monster.xml file Hand Of Cursed Fate...........................Hand of Cursed Fate Bonebeast.........................................BoneBeast Anyways...
  8. Darkhaos

    GlobalEvent An example of how implement World Changes

    This is an example script that i made to implement world changes. This one will create NPC Yasir in Liberty Bay, Ankrahmun or Carlin (Note that the script will creates only the npc, not the whole ship). Also, this shows you how to change the position of Rashid, depending of the day. The script...
  9. Darkhaos

    NPC Yasir (All creature products)

    I was using your script at first time.. but then is a lot of work writing all item names. So i copied the items list from tibia.wikia.com, pasted it on a .txt file and then i made a script that reads the file, (I added commas to separate names from price and other fields) checks every item and...
  10. Darkhaos

    NPC Yasir (All creature products)

    This NPC buys all creature products in game.. Yasir.xml <npc name="Yasir" script="yasir.lua" walkinterval="2000" floorchange="0" access="3"> <health now="150" max="150"/> <look type="146" head="85" body="7" legs="12" feet="19" addons="2"/> <parameters> <parameter key="message_greet"...
Back
Top