• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Search results

  1. VitoxMaster

    [TFS 1.5] Loot Extractor

    Hello everyone! I decided to share resource implemented on my server. Script refers to an item with a 'use with' option, which allows us to extract and pack specific loot from any container with the 'pickupable' attribute. Below will be brief description how to implement it. PART I - data...
  2. VitoxMaster

    [TFS 1.5] Loot Extractor

    VitoxMaster submitted a new resource: [TFS 1.5] Loot Extractor - Usable item to extract and pack your specific loot from containers Read more about this resource...
  3. VitoxMaster

    [Poland] [Custom 8.6+] Vitox OTS

    Rule of Server Gala thread to inform about protocol. It was stated that sprites are from higher versions. It still has couple of 8.6 flavours. If it's misleading and you know better way to inform about that in a thread topic then I will apply for a change.
  4. VitoxMaster

    [Poland] [Custom 8.6+] Vitox OTS

    Lately few guys joined us so I decided to share news. New 4 outfits were added: Boss Hunter Crystalline Fiery Cults Dragon Slayer Every available outfit in the game can be obtained by turning in dedicated items to an NPC. Bonuses can be applied separately to addons or to the entire outfit...
  5. VitoxMaster

    [Poland] [Custom 8.6+] Vitox OTS

    With today update I increased number of available tasks from 90 up to 109. Additionally, these items became more accessible as task rewards: More informations here: Vitox OTS (https://vitox-ots.eu/tasks.php)
  6. VitoxMaster

    Helmet ideas

    Hi, thanks for sharing. I tested it with 2 webapges: Remove PNG Background (https://onlinepngtools.com/remove-png-background) - to remove white background -> Then Resize multiple PNGs for free! (https://www.iloveimg.com/resize-image/resize-png) to resize to 32x32 -> Result visible in GIMP...
  7. VitoxMaster

    TFS 1.X+ NPC trade window with filter based on item attribute

    Hi there, I skipped C++ part and focused on callbacks in Lua. I'm not sure how it is done in 8.0 but probably you will have to find method called in shop module during sell event. Here is my full solution where I can't sell items which have custom improvements (getObjLevel function returns...
  8. VitoxMaster

    [10.98-8.0] Hero castle by DemoniC

    For plain 8.0 it's quite impressive. Good job!
  9. VitoxMaster

    [Poland] [Custom 8.6+] Vitox OTS

    I appreciate honest opinion. Thanks.
  10. VitoxMaster

    [Poland] [Custom 8.6+] Vitox OTS

    To be honest, I should say that bot only acceptable in terms of gaming is the one built-in client: That's all, I just don't want to force people to use macro to train mana :|
  11. VitoxMaster

    Szukam developera

    Co masz na myśli postawić OTS od A do Z? Odpalić gotowca czy długoterminowo go ulepszać? Z mojej perspektywy, gdzie siedzę już w temacie jakiś czas to trochę jak "Mam super, pomysł, tylko brakuje mi programisty do stworzenia czegoś genialnego". Moim zdaniem warto by było dorzucić w poście...
  12. VitoxMaster

    [Poland] [Custom 8.6+] Vitox OTS

    Hi everyone! I've been around for quite a while, and I finally decided to share some info about the OTS project I'm currently working on. This is a project that my friends and I originally started back in 2008 (good old Crying Damson 0.3.4 times!), but we eventually abandoned it. A couple of...
  13. VitoxMaster

    TFS 1.X+ NPC trade window with filter based on item attribute

    Ended up using function below in callbackOnSell. function getPlayerItemsById(cid, itemId) local containers = {} local items = {} local sitem = getPlayerSlotItem(cid, CONST_SLOT_BACKPACK) if sitem.uid > 0 then if isContainer(sitem.uid) then...
  14. VitoxMaster

    TFS 0.X [TFS-0.3.6 - 8.60] AUTOMAP FULL CLIENT CLASSIC TIBIA HELP!

    Check this: https://otland.net/threads/otclient-that-unpack-map-otbm-to-png-files-v4-0.271255/ This soft made by gesior can create minimap for your client.
  15. VitoxMaster

    [VIDEOTUTORIAL] Learning how to compile TFS 1.5 on Windows (8.60 downgraded by Nekiro)

    @MosheElmakayes you don't have to migrate your server/data/world. You can open remere and browse directory to find a map in that directory. To set Remere to open specific dat and spr you have to run Remere go File->Preferences -> Client Version
  16. VitoxMaster

    [VIDEOTUTORIAL] Learning how to compile TFS 1.5 on Windows (8.60 downgraded by Nekiro)

    @MosheElmakayes make sure you have proper tibia.dat and tibia.spr corresponding to the version of a map. Red missing tile means they cannot be found in your dat&spr file and are marked as broken. If you have map for 8.6 then make sure you open this map as a 8.6 version with proper dat&spr...
  17. VitoxMaster

    RevScripts BOOS Check - monster check - TFS 1.5 DOWNGRADE NEKIRO 8.0

    Have you tried with this? https://otland.net/threads/1-x-boss-system-with-checker-auto-respawn-and-day-configuration.281920/ I've implemented it without any problem and works great, exactly as you want. If you don't want to make any engine changes then you can attach script to a monster with...
  18. VitoxMaster

    [10.98] Small epic quest by DemoniC

    I like the design, but gotta be honest such demon density is total overkill for my server standards. Good base map to implement dexterity type of quest maybe with range shooters and spawning / disappearing fields doin' damage overtime. Keep it up, nice work!
  19. VitoxMaster

    Block sending parcel to rookgaard TFS 1.3

    Hello! I was looking for something like that on a forum and couldn't find any solution. I managed to make it work, but it's a solution based on TFS 1.5 downgrade 8.6 - so version where there were many cities with separate depots. Navigate to the mailbox.cpp code, we will refer to the function...
  20. VitoxMaster

    TFS 1.X+ Dynamic depot's depotid [8.6]

    Old thread but I found the solution later. Maybe it will be useful for someone. local depot = Game.createItem(2591, 1, position) if depot then setDepotId(depot:getUniqueId(), 9) position:sendMagicEffect(CONST_ME_MAGIC_RED) else player:sendCancelMessage("There...
Back
Top