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

    Solved Looking for Map Editor for Tibia 10.36

    I tried to do that, but I have console error in tfs ;/ Maybe I try compile server tfs based on 10.35 better
  2. xardas33

    Solved Looking for Map Editor for Tibia 10.36

    It doesn't support 10.36, only 10.35 or 10.55 ;/
  3. xardas33

    Solved Looking for Map Editor for Tibia 10.36

    Hello. I'm looking for map editor for tibia 10.36 :)
  4. xardas33

    Solved Golden Key gain - Rookgaard graves script

    Awesome, working perfect. Thanks for all your work =]
  5. xardas33

    Solved Golden Key gain - Rookgaard graves script

    function onUse(cid, item, fromPosition, itemEx, toPosition) local skullcheck = itemEx.itemid if item.itemid == 2006 and item.type == TYPE_BLOOD and getTileItemById(toPosition, 8059).uid == 60007 then if getPlayerStorageValue(cid, 50021) ~= 8 then return doPlayerSendCancel(cid, "You need to...
  6. xardas33

    Solved Golden Key gain - Rookgaard graves script

    Ah... Yes, now it's working with 8059 :) But i need fire efect on central grave, script working but my console shows (when i gain golden key): [16/09/2014 20:55:14] [Error - Action Interface] [16/09/2014 20:55:14] data/actions/scripts/liquids/containers.lua:onUse [16/09/2014 20:55:14]...
  7. xardas33

    Solved Golden Key gain - Rookgaard graves script

    Central grave: 15:26 You see a grave. ItemID: [8059], UniqueID: [60007]. Position: [X: 31981] [Y: 32142] [Z: 10]. Other graves don't have uniqueid.
  8. xardas33

    Solved Golden Key gain - Rookgaard graves script

    But why console doesn't say any errors? i adden any my console says when I use vial of blood on central grave: [16/09/2014 10:25:46] Fitula has logged in. [16/09/2014 10:25:48] 2006 [16/09/2014 10:25:48] 2 [16/09/2014 10:25:48] 0
  9. xardas33

    Solved Golden Key gain - Rookgaard graves script

    Yes my character have StorageValue 50021,8 - I checked it. Okey I will check now you script Nothing happened as you see... ;/ maybe this script cannot work ?
  10. xardas33

    Solved Golden Key gain - Rookgaard graves script

    local DISTILLERY = {5513, 5514, 5469, 5470} local ITEM_RUM_FLASK = 5553 local ITEM_POOL = 2016 local TYPE_EMPTY = 0 local TYPE_WATER = 1 local TYPE_BLOOD = 2 local TYPE_BEER = 3 local TYPE_SLIME = 4 local TYPE_MANA_FLUID = 7 local TYPE_LIFE_FLUID = 10 local TYPE_OIL = 11 local TYPE_WINE = 15...
  11. xardas33

    Solved Golden Key gain - Rookgaard graves script

    It's part with added script in containers.lua setConditionParam(poison, CONDITION_PARAM_MINVALUE, -50) -- Minimum damage the condition can do at total setConditionParam(poison, CONDITION_PARAM_MAXVALUE, -120) -- Maximum damage setConditionParam(poison, CONDITION_PARAM_STARTVALUE, -5) -- The...
  12. xardas33

    Solved Golden Key gain - Rookgaard graves script

    Now I really don't know what I should do... nevermind, it's too hard script to make.
  13. xardas33

    Solved Golden Key gain - Rookgaard graves script

    Like that? function onUse(cid, item, fromPosition, itemEx, toPosition) local graves = { {pos = {x=31978, y=32142, z=10}, id = 2320}, {pos = {x=31979, y=32142, z=10}, id = 2320}, {pos = {x=31980, y=32142, z=10}, id = 2320}, {pos = {x=31981, y=32142, z=10}, id = 5669}, {pos =...
  14. xardas33

    Solved Golden Key gain - Rookgaard graves script

    I tested script and I see it doesn't work... Just nothing happened. If I add any item, it doesn't work. And when I trying to add in actions.xml itemid=2006, normal script with vials stops working. I need to use on central grave vial of blood, and getPlayerStorageValue(cid,50021) == 8
  15. xardas33

    Solved Golden Key gain - Rookgaard graves script

    TFS 0.3.6 V8.2 On six graves i need item id = 2320 and on central (seventh) grave item id = 5669
  16. xardas33

    Solved Golden Key gain - Rookgaard graves script

    Hello guys. I want to make script to get Golden Key like in this film: watch from 0:57 to 1:10 But I want to do that in my own version: You put six same items (with same id) on graves, and put other item in central grave, later using on central grave vial of blood, items are removed and you...
  17. xardas33

    Solved NPC - Console and talk problem

    Really thanks, now i understand better when I should use if/else/elseif. Now it's work perfect :)
  18. xardas33

    Solved NPC - Console and talk problem

    @kikos - thanks, just small mistake :) @Limos - I just wanted to do: exmaple, if quest need 6 items, you have 5 items, it's checking and if you have 0,1,2,3,4 or 5 items npc says about "you need more", making quest not completed. I removed that and now it's working good :) Limos, now only one...
  19. xardas33

    Solved NPC - Console and talk problem

    Hello guys. I have problem with my script, first look at script part with error: if msgcontains(msg, 'humble') then if getPlayerStorageValue(cid,50021) == 3 and getPlayerStorageValue(cid,50022) <= 0 and talkState[talkUser] == 1 then selfSay("To become humble you need to kill 50...
Back
Top