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

    Lua Script to "replace" source spell cooldown

    Yes, create a script in creaturescripts/scripts, name it cooldownreducer.lua or however you like In creaturescritps.xml <event type="kill" name="CooldownReducer" script="cooldownreducer.lua"/> and in login.lua player:registerEvent("CooldownReducer")
  2. M4rcin

    Lua Script to "replace" source spell cooldown

    Instead of remove() you can getTicks(), substract and setTicks() as Azakelis said local conditions = {CONDITION_SPELLGROUPCOOLDOWN, CONDITION_SPELLCOOLDOWN} local monsters = {"Troll", "Rat"} local removeCondition = true local ticksToBeRemoved = 200 function onKill(player, target) if not...
  3. M4rcin

    Lua Script to "replace" source spell cooldown

    local conditions = {CONDITION_SPELLGROUPCOOLDOWN, CONDITION_SPELLCOOLDOWN} local monsters = {"Troll", "Rat"} function onKill(player, target) if not target:isMonster() then return true end if (monsters and isInArray(monsters, target:getName()) or true) and math.rand(10) == 1 then...
  4. M4rcin

    Lua Script to "replace" source spell cooldown

    I mean removing/shortening the condition that blocks the spells from being cast here Its not impossible You can just store the time of an event (a timestamp) and compare it with the current time.
  5. M4rcin

    Lua Script to "replace" source spell cooldown

    What? He wanted to shorten/remove the cooldown after a kill - what's wrong with changing/removing the cooldown condition to do so?
  6. M4rcin

    Lua Script to "replace" source spell cooldown

    You can, why wouldn't you? The only problem is the fact that it won't only affect flam hur but all spells that belong to this cooldown.
  7. M4rcin

    have you noticed that monsters are very dumb in tfs 1.x in comparision with older releases?

    https://otland.net/threads/weird-monster-behaviour-in-tfs-1-1.228021/#post-2200365
  8. M4rcin

    Cancel walk (while holding an arrow key) when you press another arrow key (without releasing the previous arrow key)

    Only Developers version, it's a version without optimization but allows you to create your own features and PR them. After they get merged they end up in the release version (the one that you cannot compile yourself if you don't have paid access). But changes like you mentioned don't even...
  9. M4rcin

    [France] [7.4+] Valoria Online | NEW WORLD STARTING 04.06 | RL Map | ANTIBOT | NO WIPES | also on Android devices ⭐⭐⭐⭐⭐

    To answer these implications above - it was an issue with the status server. As you can see, it would occasionally display Endless status or nothing at all. Due to various attacks (which didn't reach the actual game server), I had to rewire part of the Valoria network, rewriting the login...
  10. M4rcin

    Cancel walk (while holding an arrow key) when you press another arrow key (without releasing the previous arrow key)

    If you want to change the behavior of your movement keys, you need to look for a place where the walk is being called, not at the walk method itself. To do so, google grep if you are on Linux or "find all references" if you are using Visual Studio. Anyway, the repo you are referring to is 5...
  11. M4rcin

    [France] [7.4+] Valoria Online | NEW WORLD STARTING 04.06 | RL Map | ANTIBOT | NO WIPES | also on Android devices ⭐⭐⭐⭐⭐

    Client update! 1. Another, long awaited feature is here - Impact tracker ala "Recount"! From on, you can track how impactful your teammates are. 2. You can now unlock your FPS to 500. Daily Task changes! 1. Finishing a task in time will reward you with 3 rerolls, while finishing it after...
  12. M4rcin

    [France] [7.4+] Valoria Online | NEW WORLD STARTING 04.06 | RL Map | ANTIBOT | NO WIPES | also on Android devices ⭐⭐⭐⭐⭐

    It's more complicated than getting a message that you can easily script an answer to. I doubt you will be cautious enough to dodge the system if you are bragging about that on the forum. Can't wait for your update about being deleted!
  13. M4rcin

    [France] [7.4+] Valoria Online | NEW WORLD STARTING 04.06 | RL Map | ANTIBOT | NO WIPES | also on Android devices ⭐⭐⭐⭐⭐

    Thats Adpossum Thats also Adpossum Will your posts start making any sense anytime soon or are we just bumping the thread? :D
  14. M4rcin

    [France] [7.4+] Valoria Online | NEW WORLD STARTING 04.06 | RL Map | ANTIBOT | NO WIPES | also on Android devices ⭐⭐⭐⭐⭐

    Any kind of aimbot/autoheal/cavebot is going to be deleted when detected. But as long as the software is not reacting to the environmental changes (things like autologout are forbidden), nor helping you actively while you play, you can use any software. You can use: Tasker to fish, make runes...
  15. M4rcin

    [France] [7.4+] Valoria Online | NEW WORLD STARTING 04.06 | RL Map | ANTIBOT | NO WIPES | also on Android devices ⭐⭐⭐⭐⭐

    This is rather an insult, not a critique. The fact you quit Morgana after a week didn't make the OT dead nor it caused me to shut it down, it's still online and if you want to play your Morgana character - it has been merged with Endless server which is online 24/7, with hosting paid for next 36...
  16. M4rcin

    [France] [7.4+] Valoria Online | NEW WORLD STARTING 04.06 | RL Map | ANTIBOT | NO WIPES | also on Android devices ⭐⭐⭐⭐⭐

    Even if there were 40 players in total I would be proud because popularity comes and goes and it has nothing to do with money. It's always the same story with you haters, if there are 250 players online then 200 is standing in depot/runemakers/on trainers, or in this case - in houses. You are...
  17. M4rcin

    [France] [7.4+] Valoria Online | NEW WORLD STARTING 04.06 | RL Map | ANTIBOT | NO WIPES | also on Android devices ⭐⭐⭐⭐⭐

    That is not an issue as it is an incentive for players to finish their tasks as soon as possible. The problem begins when it gets out of hand as it did with the example you've provided - but no worries, it is all fixed now ;)
  18. M4rcin

    [France] [7.4+] Valoria Online | NEW WORLD STARTING 04.06 | RL Map | ANTIBOT | NO WIPES | also on Android devices ⭐⭐⭐⭐⭐

    Oh, he didn't finish the infernalists task, my bad. About the issue and issues in general - they are an inseparable part of the development - the problem is not the fact if it occurs, but if it's being handled properly, which it was since he couldn't use the advantage he gained through an...
Back
Top