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

    Lua [TFS 1.x]Monster scale on player entry amount

    Anyone know or got a script that basically would spawn monster that has scalable health and damage or at least one of it, could be action script or movementscript if there is X players on screen or lets say it checks if players stand in square of x,y,z [could be zone check if players are in zone...
  2. Lopaskurwa

    Programmer Would buy some cool spells

    Hello, I’d like to see some cool spells that involve actual mechanics not just pressing attack and thats it. They should have timing elements or require being used in the right situations or w/e. Could be implemented with OTClientV8 features like shaders or something else mainly to enhance PvP...
  3. Lopaskurwa

    TFS 1.X+ Is there any commit that adds custom item attributes

    Hello anyone know any cool new item attribute commits like for example <attribute key="skillsword" value="5"/> but unique ones like something like lifesteal or some sort other cool shit
  4. Lopaskurwa

    TFS 1.2 persist conditions doesnt work

    Hello using scrolls that increaes max health by 20% for x period of hours but after death the boost disappears the issue is that for some reason in my server, persist conditions do not remain after death and disappears. Is it known problem in tfs 1.2?
  5. Lopaskurwa

    TFS 1.X+ How to improve this code

    Anyone got any optimization improvements this is Rekzais party module. creaturescript local OPCODE_PARTY = 160 function onThink(creature, interval) -- only players have parties if not creature:isPlayer() then return true end local party = creature:getParty() if not...
  6. Lopaskurwa

    TFS 1.X+ Is there a better way to add combat check?

    Right now im using this logic if player:getCondition(CONDITION_INFIGHT, CONDITIONID_DEFAULT) then player:sendTextMessage(MESSAGE_STATUS_CONSOLE_BLUE, "You are in combat!") return false end But this got a flaw if player fought a monster he gets a condition in fight so...
  7. Lopaskurwa

    TFS 1.X+ Where is located magic forcefield cooldown?

    Where can i find magic forcefield teleport cooldown i mean like entry so you wouldnt be able to stack on teleports every milisecond. My timeBetweenActions is set to zero for particular reasons so cannot do anything in config.lua, and writing action script for movement probably isnt the best...
  8. Lopaskurwa

    Lua Missle spell that travels

    Anyone, got a monster spell that executes for example 3 random missles that goes in random straight directions quite slowly until it colides to something and disappears or reaches traveled distance limit, intention is that player suppose to move away from it
  9. Lopaskurwa

    Lua TFS 1.2 Full set Bonus

    Does anyone have a full set bonuses script? Trying to create a script that if you wear head,armor,legs,feet you unlock the bonus of increased experienced/loot so setting storage and i assume and doing something like for experience boost if getStorageValue(Storage.SetBoost) >= 1 then...
  10. Lopaskurwa

    TFS 1.X+ Spell execute cooldown

    Hey got a question for example lets say you get target by bunch of monsters so you spam heal spell but when you spamming the heal you cant use any spells how can i make sure that even if the player spams heal he can still cast the spell. And yes heal and spell uses seperate groups one is group...
  11. Lopaskurwa

    Lua Life Steal item

    Does anyone have life steal item? if you wear for example item it lifesteals x % of health from hit so for example legs life steal like 0.5% health armor life steals 0.5% so now you have like 1% lifesteal from hit and so on. TFS 1.2
  12. Lopaskurwa

    Lua TFS 1.2 clicking switch

    Anyone got a switch system with this feature. 4 switches that have to be pressed at the same time by 4 players, can be a small delay or something but basically all 4 switches have to be clicked so X item is removed from the game and after 2 minutes switches go back to their original presset and...
  13. Lopaskurwa

    TFS 1.X+ Allow specific spell to be casted on spam

    Hey, so basically if you spam a spell like crazy anykind like non stop it wont allow you execute another spell in a background, but i wonder if its possible to walk past it and allow specific spell to be executed? Because its like an escape spell and i noticed sometimes you cant execute the...
  14. Lopaskurwa

    TFS 1.X+ About bouncing spell

    I have a question about this bouncing spell. Instead of making the spell bounce between monsters, how can I make it so that the spell casts multiple blasts from the player, with a 200-unit interval between each blast? The spell should be based on a maximum of 6 targets, meaning if there are 6...
  15. Lopaskurwa

    TFS 1.X+ How do you add simple aggresive condition to a action script

    Quite a simple question i know :D
  16. Lopaskurwa

    TFS 1.X+ TFS 1.2 How to achieve spiked or bladed rotating trap

    Hey i have a sprite of this spiked or bladed rotating trap that has 51 frames and im thinking how can i achieve this bladed rotating trap, that you would need to cross otherwise you get one tapped if you touch the blade.
  17. Lopaskurwa

    Attempt to call method 'sendExtendedOpcode' (a nil value)

    Getting this attempt to call method 'sendExtendedOpcode' (a nil value) on my spell, strangely i noticed for some reason it happens only for few people but for some it works perfectly, for some people are just executing the spell that does nothing just applies cooldown, but for some works...
  18. Lopaskurwa

    Lua tfs 1.2 action script door

    How can i create brand new doors with id XXXXX that has action id X with level/item requirement and when you click on it it teleports infront of it?
  19. Lopaskurwa

    OTClient Center Auras and Wings

    Hello, so im facing a problem that some of my outfits are bigger than others and etc, so for some reason my Auras are centered fine because of g_game.enableFeature(GameBigAurasCenter) and since there is no such thing for wings they are not centered so maybe someone has a module that you could...
  20. Lopaskurwa

    TFS 1.2 Share exp doesnt split exp

    Hello, after a while noticed that share exp doesnt split the exp if they kill monster they all get the same exp for example if monster gives 1000exp they all get 1000exp and it doesnt split in parts for example if its 4 people that killed monster it should be 250exp each, but it in this...
Back
Top