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

    auto teleport to temple

    This should fix the globalevent. function onThink(interval, lastExecution, thinkInterval) local c = { storage = 1337, pos = getPlayerMasterPos(cid) } for _,cid in ipairs(getPlayersOnline()) do if getPlayerStorageValue(cid, c.storage) == 1 and isPlayerPzLocked(cid) == true...
  2. Optus

    auto teleport to temple

    Movement on tiles: function onStepIn(cid, item, frompos, itemEx, topos) local c = { storage = 1337 } if getPlayerStorageValue(cid, c.storage) == -1 then setPlayerStorageValue(cid, c.storage, 1) else return false end end global event function onThink(interval, lastExecution...
  3. Optus

    Change target.

    It COULD be done in LUA but i think it would be a long script.
  4. Optus

    auto teleport to temple

    If you know how to script, make a onstepin with a storage, then if they have that storage for more than 5minutes it teleports them to temple and removes the storage. I cant do it for you now because im busy but yeah thats how i would do it...
  5. Optus

    NPC that executes /clean

    selfSay wont clean...It will just make the npc say "/clean." doCleanMap()
  6. Optus

    Monster script..

    doRemoveCreature(cid)
  7. Optus

    Paralyze stops u for 2seconds REP++

    http://otland.net/f82/paralyze-rune-just-like-rl-delay-added-31363/
  8. Optus

    Scripting for tiles in my temple at home fun server private use

    Movement with doCreatureAddHealth(cid, 100000000000) etc? or global event?
  9. Optus

    NPC gives STORAGE (travel) for the items

    Change these elseif(msgcontains(msg, 'volcano') to whatever
  10. Optus

    Custom Promotion

    <vocation id="20" name="Super Sorcerer" description="a super sorcerer" gaincap="20" gainhp="5" gainmana="30" gainhpticks="7" gainhpamount="12" gainmanaticks="8" gainmanaamount="85" manamultiplier="1.1" attackspeed="600" soulmax="200" gainsoulticks="15" fromvoc="5"> <formula meleeDamage="1.0"...
  11. Optus

    [LUA] How to make a simple spell script.

    Looks like you have spent a fair bit of time on this, congrats to that!
  12. Optus

    Gaming [Refugia] The Tibian Life of a little druid

    Im guessing he has mains in that world or a lot of money to purchase gold. Also, this is discontinued?
  13. Optus

    Bows & Crossbows Dont need bolts/arrows

    Copy assassin star and put it over the bow? Just leave the ID and name and edit it how you like.
  14. Optus

    NPC gives STORAGE (travel) for the items

    Ill fix it for you now, give me a moment. local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) local talkState = {} function onCreatureAppear(cid) npcHandler:onCreatureAppear(cid) end...
  15. Optus

    Mindrage's Animated SpellMaker!

    Well look at the year it was made, i dont think your going to get an update.
  16. Optus

    How have mount on start ?

    Make an onLogin script with it giving the player the mount.
  17. Optus

    Custom Promotion

    fromvoc="0"> Set that to your master sorcerer ID then you can use setPlayerPromotionLevel
  18. Optus

    Help please.

    Insert image -> URL?
  19. Optus

    [HELP]Lever creates npc

    We can try two scripts this one creates the NPC: (Action script) function onUse(cid, item, fromPosition, itemEx, toPosition) local c = { standPos = {x=1000, y=1000, z=1000}, -- Position player stands to use lever. itemPos = {x=1000, y=1000, z=1000, stackpos=255}, -- Position of the place...
Back
Top