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

  1. andu

    [list] CIPSoft lazy solutions

    Paladin:
  2. andu

    [list] CIPSoft lazy solutions

    Mapper: lazy or poor mapping skills OT owner: it looks just terrible, but as long as I have profits I don't care Random player: another photo from zao, boring
  3. andu

    Thief system ideas

    speed="0"
  4. andu

    Storage for Teleport

    You also don't need 5 seperate storages. You can use one storage. Boss A sets storage value to 1 + old storage. Boss B sets storage value to 10 + old storage. Boss C sets storage value to 100 + old storage. etc Player with storage value equal to 11011 have killed Boss A, B, D and E. To be able...
  5. andu

    Lua Rain Arrow tfs 1.5 7.72

    CONST_ANI_ARROW is a number 2 You can find all in data/lib/constant.lua local arrows = {1, 2} Original script is using randomly arrows or bolts per shot. 1 is bolt, 2 is arrow. You can change 1, 2 to CONST_ANI_BOLT, CONST_ANI_ARROW. Also that line should be fixed to: doSendDistanceShoot({ x =...
  6. andu

    Lua Rain Arrow tfs 1.5 7.72

    Thanks for sharing my video. Here's the original script from 0.3 TFS, also it works on my 1.3, maybe it will work on 1.5 too. --local cfg = { -- time = 120, -- cooldown in seconds -- id = 60947 --} local arrows = {1, 2} local arr = { {0, 1, 1, 1, 0}, {1, 1, 1, 1, 1}, {1, 1, 3, 1, 1}, {1...
  7. andu

    old exhaust system.

    There were two exhaustions. Spells and onUse. Most of OTS are using it wrongly because of not implemented onUse exhaustion and these servers are using combat/heal exhaustion which is a totally wrong. In real: Using a rune was triggering both onUse and spell exhaust and runes were affected by...
  8. andu

    Thief system ideas

    Make a monster what cannot see invisible, that monster casts every second a aoe spell. If non-invisible player is in that spell's range then that player is teleported to xyz. Spell needs a loop to check tiles for players and another loop to check for stacks of players on one tile. Quite simple...
  9. andu

    Forum's profile edit

    How to edit this part of profile?
  10. andu

    Monster with damage based on owner (for summoner)

    Maybe you are using different server's distro. The original code was written for TFS 0.3 If you are using TFS 1.0+ then you have slightly adjust code to the new TFS. Of course it is possible to make it able to use SKILL_AXE also.
  11. andu

    [list] CIPSoft lazy solutions

    We are using OTC, open source client.
  12. andu

    Lua (TFS 0.4) How to make player not able to cast spells?

    if you dont want to edit sources or edit every spell's lua this is the only way edit below Xikini shown you what to do if you decide to go with editing spells
  13. andu

    Lua (TFS 0.4) How to make player not able to cast spells?

    local muted = createConditionObject(CONDITION_MUTED) setConditionParam(muted, CONDITION_PARAM_TICKS, 3000) function.... return doAddCondition(target, muted) end
  14. andu

    [Quick Showoff] Post your latest maps!

    Changed water sprite's alpha level from 255 to 195
Back
Top