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

    Lua Bear trap causes paralyze in creatures.< TFS 0.3.6 >

    Now that I've read the error, it seems a little obvious to me, but that's how we learn from the mistakes! Thank you.
  2. Misterion

    Lua Bear trap causes paralyze in creatures.< TFS 0.3.6 >

    I was trying to add the effect of paralysis on the creature that step on item (id 2579), here is the script I am using and the error: Script: function onStepIn(cid, item, pos) if(item.itemid == 2579) then if(not isPlayer(cid)) then local condition =...
  3. Misterion

    Lua Limit spell range when targeting

    Seems to be perfect ! Thanks alot. Heare's the final code: local condition = createConditionObject(CONDITION_INVISIBLE) setConditionParam(condition, CONDITION_PARAM_TICKS, 5000) local function isWalkable(cid, pos) pos.stackpos = 253 if doTileQueryAdd(cid, pos) == 1 then -- checks if we...
  4. Misterion

    Lua Limit spell range when targeting

    Thank alot heare is the full script for those who want to solve something like this local condition = createConditionObject(CONDITION_INVISIBLE) setConditionParam(condition, CONDITION_PARAM_TICKS, 5000) local function isWalkable(cid, pos) pos.stackpos = 253 if doTileQueryAdd(cid, pos)...
  5. Misterion

    Lua Limit spell range when targeting

    Yep, but how can i use this as condition, heare is how o did try: local condition = createConditionObject(CONDITION_INVISIBLE) setConditionParam(condition, CONDITION_PARAM_TICKS, 5000) local function isWalkable(cid, pos) pos.stackpos = 253 if doTileQueryAdd(cid, pos) == 1 then --...
  6. Misterion

    Lua Limit spell range when targeting

    there is some kind of "if target is in area" ?
  7. Misterion

    Lua Limit spell range when targeting

    not in this case, its works like a buff. Just after u target the enemy teleport to behind the target;
  8. Misterion

    Lua Limit spell range when targeting

    EDIT: I forgot, im using TFS 0.3.6 I know it sounds like a simple question but it's for a custom spell, where the caster becomes invisible and sneaks up on the enemy when he clicks to attack. I wonder if there is any function to activate this only if the enemy is melee. Explaining the spell...
  9. Misterion

    Lua Problem with NPC Script: attempt to compare number with boolean

    Hello! I'm getting this error when trying to talk with a NPC. Heres the script below: local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) local talkState = {} -- OTServ event handling functions start function...
  10. Misterion

    AAC How can I edit the 'changelog' (news page) in modern aac?

    Its not working, I suppose. You can try by accessing temeris.zapto.org:8080. Seems like some configuration - maybe - is out of place, or I'm being pretty dumb.
  11. Misterion

    AAC How can I edit the 'changelog' (news page) in modern aac?

    Thank you for the explanation. Just a title... Well, yes, indeed, a title only. But so how can post there then?
  12. Misterion

    AAC How can I edit the 'changelog' (news page) in modern aac?

    Yes, here's how it looks like: http://i.imgur.com/pJONi3u.jpg I cant click in the forum board.
  13. Misterion

    AAC How can I edit the 'changelog' (news page) in modern aac?

    Thank you!! Very simple!! :x So, I know I should create another topic, but I'm gonna ask here anyway. The forum seems to be... bugged. I dont know, I see the forum boards but I cant acess them. Why is that? The acess is marked to "player". Maybe its something in config.php too. I'll look into it.
  14. Misterion

    AAC How can I edit the 'changelog' (news page) in modern aac?

    Its ZNOTE AAC, not MODERN AAC.
  15. Misterion

    AAC How can I edit the 'changelog' (news page) in modern aac?

    Hello!! So i'm using ZNOTE AAC with Tibia oldschool template by HalfAway. But even with page_acess 3 I'm not able of editing the news (called changelogs in the site). How can I post something there?
  16. Misterion

    Lua Whats the ID for nothing on item slot TFS 0.3.6 CD

    So, I've been trying to make a tile where only if the player has no item on his feet he can pass. I tried using the following function: if getPlayerSlotItem(cid, 8) == 0 then
  17. Misterion

    Lua Is there a way to hide Spell name when using it?

    Exactly what Demonatti said. I've activated emote spells as a 2cond option, but what I truly wishes is that no word at all is said.
  18. Misterion

    Lua Is there a way to hide Spell name when using it?

    Is there a way to hide spell name when using it, like a function or something? In tibia 8.6, The Forgotten Server version 0.3.6.
  19. Misterion

    Use bucket in water elemental and get water

    So, I wish to make a system where I use an item on a creature and I get this item full of water, like a bucket in a water elemental, for example, or a bucket in a wolf where I get his milk. But all I can do is use item on non creature objects. How am I supposed to use an item on a creature...
  20. Misterion

    Lua Spell problem TIBIA 860 Distro Crying Damson

    Bump ! I did not get anywhere! Can someone make it compatible?
Back
Top