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

    Lua Djinn Quest

    hmm not sure but, replace this line: npcHandler:addModule(focusModule:new()) to: local focusModule = FocusModule:new() focusModule:addGreetMessage('djanni\'hah') npcHandler:addModule(focusModule)
  2. D

    TFS 1.X+ Set free account outfit when premium ends

    I would just set in function that remove premium for player set the citizien looktype with colours that he had
  3. D

    OTClient Editing login panel otclientv8

    Servers = { Localhost = "127.0.0.1:7171:1098" --- ip, port, protocol version }
  4. D

    OTClient Editing login panel otclientv8

    because you have empty server list from the table
  5. D

    OTClient Editing login panel otclientv8

    its this. my bad. i suggest to be more focused on what you are doing. You have straight in comment what it does
  6. D

    OTClient Editing login panel otclientv8

    init.lua, line smth like "allow custom client" - set to false
  7. D

    Compiling ERROR WHEN TRYING TO INSTALL VCPKG

    when i have problems with this shitty thing written in paint i always remove Visual Studio, VCPKG then reinstalling everything, thats sad but in 90% of cringe random errors that shouldnt never happen it just solve. welcome in microsoft.
  8. D

    TFS 1.X+ Npc doesnt remove defined item

    elseif msgcontains(msg, "test") then if player:getItemCount(15682) >= 5 then doTeleportThing(cid, prisonPos) npcHandler:say("Teleported to the cave.", cid) else npcHandler:say("You don't have enough crystals.", cid) end elseif...
  9. D

    RME Crashing

    TFS Version? Tibia Version? Items.orb / map version? its custom distro? 0 details brother, hard to help
  10. D

    Lua Add Canary Base NPC

    copy any npc file change name and its literally thats it, you have a new npc. its registering itself with this file, so u dont need to use xml or smth, its deleted in canary.
  11. D

    Thread 2 "tfs" received signal SIGSEGV, Segmentation fault. help plzz

    addEvent script that trying to access to creature that doesnt exsists (like offline)
  12. D

    Thread 2 "tfs" received signal SIGSEGV, Segmentation fault. help plzz

    Ok, for me it trying to access to creature that doesnt exsists (addEvent in some of your lua scripts), not sure to be honest.
  13. D

    Lua Trophy Room

    you can fetch outfit informations directly from players table "lookType", "lookFeet" and so on.
  14. D

    Linux Compiling issue in Linux

    can u share that cmake file? pretty sure youare looking for wrong one.
  15. D

    TFS 1.X+ Boss room TFS 1.2X

    replace file with onUse function local config = { actionId = 5900, -- ActionID da alavanca bossName = "Dorufin [BOSS]", bossPosition = Position(515, 963, 7), -- Posição onde o boss aparecerá bossArea = { fromPos = = { 511, 960, 7 }, -- Canto superior esquerdo da sala...
  16. D

    TFS 0.X ProtocolGame errors

    not working properly extended op codes.
  17. D

    TFS 1.X+ Looking for a guild war system for tfs 1.2 - 8.0

    If you are using OTClient yes its possible.
  18. D

    TFS 0.X ProtocolGame errors

    not sure, maybe just this line replace: if(caster && caster->getPlayer() && target->getPlayer()) to: if(caster && caster->getPlayer() && target && target->getPlayer())
  19. D

    C++ Please can someone help me put Life Leech And Mana Leech Life e Mana Absorb For TFS 0.3.6 Tibia 8.60

    move both to c++ in func onHealthChange or w/e its called located in game.cpp
  20. D

    New here, Website error

    usualy few changes in database must be done in gesior account maker, try myacc it should install without some required changes
Back
Top