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

    [OTX 2.9] (8.6) need WeaponDamage Oldschool 7.4

    Please Help, i need in my otserver with only hit melee oldschool... when the player will level up the higher the level the more hit he gives in the monsters...
  2. Loremaster7

    [OTX 2.9 - 8.6] Parcel Trap uh 7.4

    I need to block passage if there are 2 boxes or 2 parcels.. Just like in the past: (Client 8.6) distro: OTX 2.9
  3. Loremaster7

    How to do spell "ultimate explosion" with paralyze?

    LOL this work!!!! thank you hehe ;)
  4. Loremaster7

    How to do spell "ultimate explosion" with paralyze?

    Sorry Apollos, my distro is The OTX Server Version: (2.X.S - 4) Otserver 7.72 not work.. Wait, i go make other test, i'am GM i don't see this...
  5. Loremaster7

    How to do spell "ultimate explosion" with paralyze?

    "exevo gran mas vis" para "exevo gran mas ina" não funciona o paralyze ... (my distro is The OTX Server Version: (2.X.S - 4) Otserver 7.72) my code: local combat = createCombatObject() setCombatParam(combat, COMBAT_PARAM_EFFECT, CONST_ME_MAGIC_RED) setCombatFormula(combat...
  6. Loremaster7

    How to create a lever with time? (exausted)

    (and a message appears to get to know it's does work) message = "wait 10 seconds to be able to click the stone again" (my distro is The OTX Server Version: (2.X.S - 4) Otserver 7.72) Lever need time here: local time = 10 local tempo = 10 local lever_pos = {x = 2730, y = 2672, z = 7...
  7. Loremaster7

    How to create a lever with time? (exausted)

    Is this a unique way to get the effect? Because I have another code with many functions and I do not understand how can add in it a way to work this (have more stones and other functions) more simple only in one area? In this example, I do not use a lever, I use a stone, and for a "stone" =...
  8. Loremaster7

    How to create a lever with time? (exausted)

    In my code, clicking on the lever removes a stone, and the stone comes back in 10 seconds, but if you keep clicking on the lever an error occurs, I would need the lever works again only after 10 seconds. if the player clicks before 10 seconds the lever would not perform any function. (my distro...
  9. Loremaster7

    How to create an item and then remove it with certain time? (using addEvent)

    Muito Obrigado Apolo, funcionou perfeitamente!
  10. Loremaster7

    How to create an item and then remove it with certain time? (using addEvent)

    I created a lever, and I need it to disappear after 3 seconds ... My code 1 : function onUse(cid, item, frompos, item2, topos) time = 3 lever = {x = 2892, y = 2687, z = 8, stackpos=1} getlever = getThingfromPos(lever) if item.uid == 60115 and item.itemid == 1945 then...
  11. Loremaster7

    Script Remove 2 Stone with time and make a new lever (help)

    My code: function onUse(cid, item, frompos, item2, topos) time = 5 rock1 = {x=2892, y=2687, z=8, stackpos=1} rock2 = {x=2891, y=2687, z=8, stackpos=1} rock3 = {x=2891, y=2686, z=8, stackpos=1} rock4 = {x=2892, y=2686, z=8, stackpos=1} getrock1 = getThingfromPos(rock1) getrock2 =...
  12. Loremaster7

    Script Remove 2 Stone with time and make a new lever (help)

    The OTX Server Version: (2.X.S - 4)
  13. Loremaster7

    Script Remove 2 Stone with time and make a new lever (help)

    Hello, my friends, how are you? I'm trying to make a lever that removes a stone and under that stone another lever appears and that lever removes another stone, but the 2 stones with a time of 5 seconds to go back (stones) and remove the lever that was created under the first stone ...
  14. Loremaster7

    Npc with CONVERSATION_PRIVATE OTserver 7.72 (help)

    Good afternoon friends, After a long time without working with it, I decided to stick a guy in an old school project and I would like to implement the style of talking with NPC present from version 8.2, the one where the NPC only talks to you and this allows the NPC to talk with more than one...
  15. Loremaster7

    The Bug Exp Otserver (help)

    Hello friends, how are you? I have a problem on my server, when I open the "skills" to see the character level, if be bigger than 400 a bug happens and closes the tibia.
  16. Loremaster7

    Lua False Quest, lose health... Help!!

    Yes!!! now It worked!!! Thank You Very Much!!! Yes!!! now It worked!!! Thank You Very Much!!!
  17. Loremaster7

    Lua False Quest, lose health... Help!!

    Same error again =( [28/11/2017 6:2:35] [Error - Action Interface] [28/11/2017 6:2:35] data/actions/scripts/Renigmard/false/777.lua:onUse [28/11/2017 6:2:35] Description: [28/11/2017 6:2:35] data/actions/scripts/Renigmard/false/777.lua:9: attempt to call global 'doPlayerAddHealth' (a nil...
  18. Loremaster7

    Lua False Quest, lose health... Help!!

    Hi Magista, thank you for help... but this script don't work... [28/11/2017 5:52:44] [Error - Action Interface] [28/11/2017 5:52:44] data/actions/scripts/Renigmard/false/777.lua:onUse [28/11/2017 5:52:44] Description: [28/11/2017 5:52:44] data/actions/scripts/Renigmard/false/777.lua:16...
  19. Loremaster7

    Lua False Quest, lose health... Help!!

    When the player clicks on the box, he will lose blood and have 1 hp ... Help!!! ************** Script: function onUse(cid, item, frompos, item2, topos) msg = "Die!" posplayer = getPlayerPosition(cid) hit = math.random(50,150) doPlayerSendTextMessage(cid, 22, msg) if item.uid == 65457...
Back
Top