• 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. Il Knight

    How to make a larger background image

    You can't. You need to paste this above your photo (client-background). Elime's Pic Editor
  2. Il Knight

    °Server° Crown Adventures.

    Saved
  3. Il Knight

    °Server° Crown Adventures.

    Vocations!
  4. Il Knight

    °Server° Crown Adventures.

    Here in this thread i will post all the advancement of my last project Crown Adventures. °Tfs 1.3 with modifications. °Client 10.98 (Tibia.exe) with modifications(Pic, Spr, Dat, Exe) °This is not RL tibia version...
  5. Il Knight

    Tibia Crown Version.

    This project has been Selled.
  6. Il Knight

    Solved TFS [1.x] Is there a networkmessage byte code for opening container in game?

    thanks for reply whitevo, i solved removing this line in the end, player:addContainer(container) and adding it after if(not item:isContainer()) then the same line
  7. Il Knight

    Solved TFS [1.x] Is there a networkmessage byte code for opening container in game?

    this is good stuff. working at 100% only have 1 problem. if you click the tree, its remove the tree, create the tree with size, (add the apples), all okey, now the player open the tree (perfect) you can eat the apples etc, but if you click the tree to "close" it, not work because the script...
  8. Il Knight

    Otland staff

    this guy make me laugh for a while ajajaj bro nobody here has to answer your threads, less the staff. this is a forum.
  9. Il Knight

    How to use pagination on containers?

    Hello again Mkalo, im trying to add the FLAG_NOLIMIT only when the toCylinder get pagination true. do you know where it is? i do something on events onMove but is not working good. if item is container and size == 32 then (32 because on my tsf 32 vol= pagination true) item moveTo
  10. Il Knight

    Is this possible?

    data/events onLook. player:getTown() player:getGuid() function getHouseByPlayerGUID(playerGUID) for _, house in ipairs(Game.getHouses()) do if house:getOwnerGuid() == playerGUID then return house:getId() end end return nil end good luck
  11. Il Knight

    Tibia Crown Version.

    updating the main post, Added oramond , respawn, npc, task, quests, and the vocation tiles. please remove this.
  12. Il Knight

    Lua Equip item only if you have certain storage?

    function onEquip(cid, item, slot, boolean) if getPlayerStorageValue(cid, 5000) == 1 then return true end doPlayerSendCancel(cid, "Sorry not possible.") return false end
  13. Il Knight

    Client message in OTClient

    player:sendTextMessage(MESSAGE_STATUS_DEFAULT, "12345<")
  14. Il Knight

    C++ SendTutorial(tutorialId)

    Hi otlanders, today im stucked because the function player:sendTutorial(tutorialId) is not working with the latest version of tfs. that function is to send the windows when you start the tutorial of rookgard or dawnport. (editing your client.pic, you can change that images and do news tutorials...
  15. Il Knight

    Boss alive

    To add New items/Outfits you need custom client. the talkaction, im not good with 0.4 stuff
  16. Il Knight

    Compiling Orange Skull in 8.6 (0.4)

    that is not possible because the tibia client 8,6 doesnt have it. of course if you are using Otclient, then yes.
  17. Il Knight

    TFS 1.2 Raids

    you can add an event at the end of the raid. 60 * 1000 * 180 < 3hours creature:remove()
  18. Il Knight

    Click on tree, remove item and teleport

    i already added two lines using game.storage. you can do something like. when the player use the tree. addEvent() something like. local function clean area- that ones from warzones will work. i can do it for you. give me more parameters, and the pos from, to.
  19. Il Knight

    Click on tree, remove item and teleport

    local QuestItem = 1234 local Tree = 5678 xxx end return true end if the target.uid == Tree (local Tree above) = 5678< you can change the id for the item that you need.
  20. Il Knight

    Click on tree, remove item and teleport

    function onUse(player, item, fromPosition, target, toPosition, isHotkey) local QuestItem = 1234 local Tree = 5678 if target.uid == Tree and Game.getStorageValue(xxx) < 1 then if player:removeItem(QueatItem, 1) then player:setStorageValue(123, 1)...
Back
Top