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

    Lua Advanced functions in Jiddo's npcs

    Here I've seen that I can create greetCallback which will do something when something. npcHandler:setCallback(CALLBACK_GREET, greetCallback) Is there any way to create custom callbacks or I can only use callbacks from Jiddo's system? Can I create something like CALLBACK_TRADE to do something...
  2. Vanitas

    TFS source code structure.

    Hi, I'm quite good in C++ programming but every time I try to create something new and add it to source I just don't knwo WHERE to write it (in which file?). My problem is I don't know a structure of TFS and I would like to ask if someone can write a tutorial about it. Thanks in advance.
  3. Vanitas

    Making OTS under FreeBSD

    I would like someone to write tutorial "how to make ots under FreeBSD". It would include how to compile TFS, install some applications (apache, mysql), everything using ssh. Thanks in advance.
  4. Vanitas

    What do you want to remove/add to Tibia?

    On holidays I'll made OT server so I want to know what things I should change in Tibia to make players happy :p In this threat everyone can write which thing should be deleted/added/modified BUT witch sense, not only I don't like stamina - REMOVE IT!!!!!! Prepositions: Remove health/mana...
  5. Vanitas

    Adding my script into Jido's npc system

    I tried to do something like that: local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) function onCreatureAppear(cid) npcHandler:onCreatureAppear(cid) end function onCreatureDisappear(cid)...
  6. Vanitas

    Bug using example82.lua from TFS

    I tried to use example82.lua from TFS for handler NPC, but NPC is always saying "Sorry, but you don't have space to take it." even if I have space in bp. NPC is also saying that when my first bag is full and I have second bag inside first one. In both options I get item. This is lua file...
  7. Vanitas

    How to get player conditions

    How can I get player conditions and: if he's on fire delete fire if he's poisoned delete poison etc.
  8. Vanitas

    NPC selling houses. Buying by house name.

    I tried to make NPC selling houses but I want that player will be saying name of house which he want to buy. I just don't know how to "change" name of house to his ID. I have table of houses and IDs: local houseName = { -- abdendriel ["Coastwood 1"] = 1...
  9. Vanitas

    New event: dieplayer

    I found nice script: when player dies in his body appears some item (depend on lvl) but I can't find sources for that, I have only lua scripts. creaturescripts.xml <event type="dieplayer" name="DIE_PLAYER" script="die1.lua" /> die1.lua function onDiePlayer(cid, corpse) doPlayerSay(cid...
Back
Top