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

    Lua Create monster two times

    I am trying to make a raid from globalevents using date but this script summons two bosses at same time Could someone help me? local raids = { ['Saturday'] = { ['22:28'] = {raidName = 'The Horned Fox', position = Position(2163, 2362, 6)} } } function onThink(interval...
  2. icekis

    Onuse Delay

    Hi folks I have this script and i want to add a delay function based on events to prevent miss click function onUse(cid, item, frompos, item2, topos) local player = Player(cid) if player:getStorageValue(Storage.Quest.DjinnDoor) > 1 then...
  3. icekis

    Target Training Monk

    I would like to know if it is possible when i attack a training monk gain only 50% of the skill, as training offline I am using OTX 3.9 based on TFS 1.2
  4. icekis

    TFS 1.X+ Error Item Protection

    I am using OTX 3.9 based on TFS 1.2 and my server doesn't respect item attributes. For example magma legs, 100% absorbPercentFire and it doesn't work <item id="7894" name="magma legs"> <attribute key="weight" value="1900" /> <attribute key="armor" value="8" />...
  5. icekis

    Task count more than one monster

    How can i change this script to count more than one monster. I want to count drillworms and giant spiders at the same task local config = { ['drillworm'] = {amount = 220, storage = Storage.Quest.Quest.TaskDrillWormCount, startstorage = Storage.Quest.Quest.TaskDrillWorm, startvalue = 1} }...
  6. icekis

    Change log folder

    I would like to know how i can save GM logs outside of the data folder
  7. icekis

    Might Ring Charges

    I use an OTX 3.9 engine and on my server might ring don't remove the charges. It is declared in movements with onEquipe and onDeEquip and in items.xml it has the normal attributes, but ingame does not spend charges. I already tested might ring creating item, buying by NPC and drop monster...
  8. icekis

    Player death blessings

    I use an OTX 3.9 engine and would like to change two situations when the player die. When a player dies to monster, loses all blessings, even twist of fate When a player dies for another player, he also loses all blessings, but he should lose only twist of fate. Could anyone help me change...
  9. icekis

    Custom PT Shared

    I would like to know how can I configure pt shared for 6 players with any vocation. My idea is, each player add 15% and 6 would be the maximum with 90% exp gain If players are from the same guild they win + 10% Can anybody help me? my party.lua file function Party:onJoin(player) return...
  10. icekis

    Question about mounts/addons

    I would like to know where mount and addon information are stored in the database. Are they in storage?
  11. icekis

    Question about monster drop

    I'd like to understand better about the drop chance of the monsters. For example cyclops <item name = "halberd" chance = "1003" /> What would be the chance of 1003? If i want add 100% chance, how can i do this?
  12. icekis

    Droploot and Twist of Fate

    On my server(OTX3.9) if player only has twist of fate and dies for another player, it loses loot anyway. How can I do this check? My droploot: function onDeath(player, corpse, killer, mostDamage, unjustified, mostDamage_unjustified) if getPlayerFlagValue(player, PlayerFlag_NotGenerateLoot)...
  13. icekis

    AAC ZnoteAAC serverstatus bug

    I'm using ZnoteAAC on my server with the metroblue template. In serverstatus widget shows my server with 60 players online being actually 28, and every time I refresh the page serv save countdown restart. Can anybody help me?
  14. icekis

    Task counting on party sharing

    I'm trying to set up my server's task system to count to the last hit and the most damage players. I use this system of tasks: NPC - [TFS 1.1] Monster Tasks (https://otland.net/threads/tfs-1-1-monster-tasks.230942/) Could someone help?
  15. icekis

    Show magic dmg increase

    In my server promotions receive a magic damage increase. MS and ED magDamage is 1.5 while without promotion is 1.0 I would like a magic effect that shows this increase in % maybe Can someone help me?
  16. icekis

    Increase Spell Damage

    How can I increase magic(spells) damage for a specific vocation, can i use the function Player: onCombatSpell? How about if i want x vocation to have a greater defense against the others?
  17. icekis

    Change in PvP system

    I'm looking for a way to modify the PvP system. If target is same level or higher, attacker receives a % of the total XP of the target's death. Can anybody help me?
  18. icekis

    TFS 1.X+ Tibia Client 11

    Some developers are able to change the client logo, background image and remove the battleye message. Does anyone know how to do this?
  19. icekis

    AAC Znote loginWebService error

    I am using OTX 3.9 with Tibia Client 11.49 and i installed Znote as account creator. When i try to log ingame got an error "failed to establish connection to the game server" Could someone helps me?
  20. icekis

    TFS 1.X+ Nologout tile

    I've got an OTX3 based on TFS1.2 and have got a problem with the nonlogout tile. I have a prison system that takes the player to jail and I need him to not logout so it doesn't bug the system that keeps track of jail time. The issue is that when the user exits it's logging him off. Even...
Back
Top