• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Search results

  1. Sasyia

    Source of 12.x clients

    Thanks you so much :)
  2. Sasyia

    Source of 12.x clients

    bump
  3. Sasyia

    Client 12.4 /10 i have problem on login the gamę

    Can't see details, use imgur.com
  4. Sasyia

    [Quick Showoff] Post your latest maps!

    Abandoned laboratory
  5. Sasyia

    Client 12.4 /10 i have problem on login the gamę

    Post it on imgur or something
  6. Sasyia

    Source of 12.x clients

    Hey, is here any source of 12.x client? I have been looking specify for 12.30 but only managed to found 12.64. Thanks in advance
  7. Sasyia

    Lua doSendMagicEffect

    I don't know if it's possible using doSendMagicEffect, but you can use doAreaCombatHealth and pass damage as 0 local area = createCombatArea(arr) doAreaCombatHealth(creature.uid, COMBAT_ICEDAMAGE, position, area, 0, 0, CONST_ME_ICETORNADO) Tell me if it's not what you need :D
  8. Sasyia

    Lua doSendMagicEffect

    Just pass position as first paramter and effect as second ex: doSendMagicEffect(Position(x, y, z), CONST_ME_TELEPORT)
  9. Sasyia

    Lua Press lever it transforms item

    Edited my last code post, thanks for your vigilance @Sarah Wesker @Tbol
  10. Sasyia

    Disable raids TFS 1.3

    Thanks ;3
  11. Sasyia

    Disable raids TFS 1.3

    Would be great to see one.
  12. Sasyia

    Disable raids TFS 1.3

    Thanks for both answers! @FenX I can't execute Yeti eventin my lua script if entire line will be deleted :p @StreamSide Ye I wan't to execute it using globalevents, but still need to register them in raids.xml <globalevent name="SpawnRaid" interval="5000" script="spawn/raids.lua"/>
  13. Sasyia

    Lua Press lever it transforms item

    Also fixed my one - remember to change Positions and itemids function onUse(player, item, fromPosition, target, toPosition, isHotkey) local firstItem = Tile(Position(32393, 32191, 7)):getTopDownItem() local secondItem = Tile(Position(32394, 32191, 7)):getTopDownItem() if firstItem...
  14. Sasyia

    Lua Press lever it transforms item

    I thought that two items on same position, but at this moment no time to fix this ;[
  15. Sasyia

    Lua Press lever it transforms item

    Try: function onUse(player, item, fromPosition, target, toPosition, isHotkey) local itemCounter = 0 local stackItems = Tile(Position(32393, 32191, 7)):getItems() -- Tile with items to combine if item.itemid == 1946 then item:transform(1945) return false end...
  16. Sasyia

    Disable raids TFS 1.3

    Hello, I'm wanna trigger raids by using lua script instead of automatic XML one, but dunno how to disable it. Already tried: <raid name="Yeti" file="Carlin/yeti.xml" interval2="1" margin="1" enabled="no" /> or <raid name="Yeti" file="Carlin/yeti.xml" interval2="1" margin="1" enabled="0" /> But...
  17. Sasyia

    Rme search

    It depends what you want to do, ctrl + f is for searching items in map (already placed - showing empty result if here is no item of that type in map). For searching in your palettes use ctrl + j
  18. Sasyia

    [Quick Showoff] Post your latest maps!

    Just a desert dragon lair
  19. Sasyia

    Lua [TFS 1.2] How to make npc that gives free gold

    No clue about making it one time per account, but about message, just add else with npcHandler:say("message", cid) at 24 line
  20. Sasyia

    Lua [TFS 1.2] How to make npc that gives free gold

    This is my code of NPC (tested and working):
Back
Top