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

    7.6 YurOts or Mazurski/Cafe ots sever?

    i have, send msg me!
  2. gianflogao

    Archive of Tibia files

    Could you share with me?
  3. gianflogao

    Lua damaging the other player Spells 7.6

    Thanks Bro <3
  4. gianflogao

    Lua damaging the other player Spells 7.6

    @Xikini Ei bro, can you take a look?
  5. gianflogao

    Lua damaging the other player Spells 7.6

    Hello guys, Here is the script, but I have a problem ... When the player is receiving the "mort" turn, if he has a ladder and has another player in the same SCM, both are affected by "mort". area = { {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, {0, 0, 0, 0, 0, 1, 0...
  6. gianflogao

    Lua System Storage - Door 7.6

    Thanks Bro <3
  7. gianflogao

    Lua Quest Lever 7.6

    doTransformItem(item.uid, item.itemid == 1945 and 1946 or 1945) This part he goes to 1946 but he returns to 1945 doing the quest again. I'll upload a picture ... Imgur
  8. gianflogao

    Lua Quest Lever 7.6

    now it worked!!!!!!!!!!!
  9. gianflogao

    Lua Quest Lever 7.6

    @Xikini look at an example of a leverage quest: function onUse(cid, item, frompos, item2, topos) piece1pos = {x=1027, y=1011, z=5, stackpos=2} -- Big Ruby piece2pos = {x=1028, y=1011, z=5, stackpos=2} -- Big Emerald piece3pos = {x=1029, y=1011, z=5, stackpos=2} -- Blessed Shield piece4pos =...
  10. gianflogao

    Lua Quest Lever 7.6

    It worked when you use the lever ... this part did not work: if getPlayerLevel(cid) < reqLevel then doSendMagicEffect(getThingPos(cid), CONST_ME_POFF) doPlayerSendTextMessage(cid, 22, "Require level " .. reqLevel .. " to use this object.") return true end and...
  11. gianflogao

    Lua Quest Lever 7.6

    yes, the lever moved, but the player did not win the item
  12. gianflogao

    Lua Quest Lever 7.6

    put an "if" to level too ... But to no avail: / function onUse(cid, item, frompos, item2, topos) local reqLevel = 666 if getPlayerLevel(cid) >= reqLevel then if item.uid == 5009 and item.itemid == 1945 then queststatus = getPlayerStorageValue(cid,5009) if queststatus ==...
  13. gianflogao

    Lua Quest Lever 7.6

    Uniqueid on the lever is "5009", there if you want to use a "storage" so you can not use more. The server you use is yurots 0.9.4f 7.6 That means you're more to me.
  14. gianflogao

    Lua Quest Lever 7.6

    function onUse(cid, item, frompos, item2, topos) if item.uid == 5009 and item.itemid == 1945 then queststatus = getPlayerStorageValue(cid,5009) if queststatus == -1 then doPlayerSendTextMessage(cid,22,"You have found a fear backpack.")...
  15. gianflogao

    Lua Quest Lever 7.6

    I need a quest by lever, when using the lever the player gains "x" item. Someone help me?
  16. gianflogao

    Lua System Storage - Door 7.6

    Hello guys, I'm trying to create a system for my Yurots 7.6 server, and I need help from some experienced. Since the server is XML, and does not have some current server roles, then I'll have to improvise. Item name: vip scroll Item Id: 2345 Storage: 5007 actions.xml <action itemid="2345"...
  17. gianflogao

    Door max level 20 enter!

    Thanks Bro, Do you want something in return for helping me?
  18. gianflogao

    Door max level 20 enter!

    It worked, but it's 20- (minus). lol
  19. gianflogao

    Door max level 20 enter!

    actions.xml <action uniqueid="5006" script="door/leveldoor.lua" /> actions/script/door/leveldoor.lua RME Map Editor Uniqueid:5006
Back
Top