• 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!

Recent content by Misterion

  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?
Back
Top