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

  1. icekis

    Lua Create monster two times

    Worked. Thank you
  2. icekis

    Lua Create monster two times

    Thank you for reply! I got this error on my console: [Error - GlobalEvents::think] Failed to execute event: Raid System [Error - GlobalEvents::think] Failed to execute event: raids
  3. 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...
  4. 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...
  5. icekis

    Custom PT Shared

    @Westwol Bro i got this error now: data/events/scripts/party.lua:Party@onShareExperience data/events/scripts/party.lua:29: attempt to index a nil value stack traceback: [C]: in function '__index' data/events/scripts/party.lua:29: in function <data/events/scripts/party.lua:13>...
  6. icekis

    MyAAC v0.8.13

    I tried this change but nothing happens
  7. icekis

    MyAAC v0.8.13

    Hello @slawkens and thank you for continuing this project. Is it possible to divide the list of highscores in pages? for example, i would like to display 20 per page
  8. icekis

    [8.60] Latest forgottenserver 1.3/1.4. Clean downport.

    Ive got this error: How can i fix? Thanks!! --EDIT I removed the line 8 from globalevents->startup.lua db.asyncQuery("DELETE FROM market_history WHERE inserted <= " .. (os.time() - configManager.getNumber(configKeys.MARKET_OFFER_DURATION))) I removed the line Is there any problem?
  9. icekis

    Target Training Monk

    You mean this? function Player:onGainSkillTries(skill, tries) local target = self:getTarget() if target and target:getName() == "Training Monk" then tries = math.ceil(tries / 2) end if APPLY_SKILL_MULTIPLIER == false then return tries end if skill ==...
  10. 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
  11. 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" />...
  12. icekis

    Task count more than one monster

    thank you!
  13. 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} }...
  14. icekis

    AAC ZnoteAAC serverstatus bug

    I have this code in my creturescripts>scripts>login.lua db.query('INSERT INTO `players_online` (`player_id`) VALUES (' .. playerId .. ')')
  15. icekis

    Change log folder

    Thanks
Back
Top