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

    x Level To Kill x Level

    function onCombat(cid,target) if not isPlayer(target) then return true end local c, t = getPlayerLevel(cid), getPlayerLevel(target) if (c - t => 200) or (c - t =< -200) then return false end return true end Credits to Summ, but i think this does what Dramix really wanted it to...
  2. E

    Lua [Spell] Heal another players Mana

    @up Well, at least im trying, not just trollin...
  3. E

    Crooked Animation!!

    Nope. The animation is too big, and can ONLY appear on the squares north, west or north-west of the animation it self. NEVER on the squares south, southeast or east of the targeted square. The thingy i made will work perfectly.
  4. E

    Freeze GEM

    local combat = createCombatObject() setCombatParam(combat, COMBAT_PARAM_EFFECT, 41) setCombatParam(combat, COMBAT_PARAM_AGGRESSIVE, false) local speed = createConditionObject(CONDITION_PARALYZE) setConditionParam(speed, CONDITION_PARAM_TICKS, 3000) setConditionFormula(speed, -1000, 56...
  5. E

    Freeze GEM

    Do like this: take this script, posted by Summ: function onUse(cid, item, fromPosition, itemEx, toPosition) if not(isPlayer(itemEx.uid)) then return doPlayerSendCancel(cid, "You can only target players." end doSendMagicEffect(getThingPos(cid), 41) doDisablePlayer(itemEx.uid, 3)...
  6. E

    Crooked Animation!!

    I guess if this is a spell then you have to make the animation to appear diagonaly right-beneath you like this: { {0, 0, 0}, {0, 3, 0}, {0, 0, 1} } You have to make it to 2 combats. one that affects only you and one that is like the one i sent and ONLY amkes tha animtaion appear. LIKE...
  7. E

    Lua How to read this formula?

    min = characters level divided with five then added to characters magic level times five max = characters level divided with five then added to characters magic level timse TWENTYfive e.g: character lvl 100 ml 60 min = 100 / 5 (= 20) + 60 * 5 (= 300) = 320 max = 100 / 5 (= 20) + 60 * 25 (=...
  8. E

    Runes bug?

    removeRuneCharges = false This is what needs to be changed. REP+
  9. E

    Lua [Spell] Heal another players Mana

    This is a try to help you, but I don't know if it works, and I'm to tired to really bother xD This doesn't take 75% of max mana, but 75% of current mana. Sorry about that... Save this as a .lua file somwhere in spells/scripts local combat = createCombatObject() setCombatParam(combat...
  10. E

    CreatureEvent PvP-Enforced system WITH skull system >Help<

    I don't really get your stetment here. Do you mean that in config.lua i can write BOTH pvp and pvp-e? It just doesn't sound right..
  11. E

    CreatureEvent PvP-Enforced system WITH skull system >Help<

    Hi! I am trying to make a script for my OT that gives the killer Exp when he kills a player. Since the servers world type is set to PvP people are getting skulls when tey are PK-ing. I have taken the formula from TibiaWiki - Quests, Items, Spells, and more but the script is not working: a...
  12. E

    Raids aren't working.

    @Valania This worked, but now i have 2 raids running simultaneously. In "margin", is it minutes, seconds or hours?
  13. E

    Raids aren't working.

    @Scofield: This does not work. I've done this with Ferumbras several times, but it won't come a raid by random. @loza: They do work, but I'll have to execute them by myself and no raid will come by random. @Valania: There were no errors, but will it work?
  14. E

    Raids aren't working.

    Hello. On my OT-server there are no random raids. Why isn't it? raids/raids.xml <?xml version="1.0" encoding="UTF-8"?> <raids> <raid name="Barbarian" file="Barbarian.xml" interval2="30" margin="1800" enabled="yes"/> <raid name="Demodras" file="Demodras.xml" interval2="35"...
  15. E

    Action Football field (scripts + maps)

    Can you make a simple script so that if i put the ball on a tile with aid 45010 then it tps to xxx, yyy, z. Please? :P
  16. E

    [SWE] [8.5] Nidoria.no-ip.org RL-Map 24/7

    I edited ;)
  17. E

    [SWE] [8.5] Nidoria.no-ip.org RL-Map 24/7

    It is a very good server :D
Back
Top