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

    Beta testers wanted!

    Running another test period. +Party Buffs based on your Spirit attribute +Self Buffs based on Spirit attribute +Modular windows as an option to simplify gameplay. +First part of the Druid summoning system. +First part of the Quest system
  2. Giddran

    Is there any disableExhaustion or disableCooldown function?

    Its possible to do a workaround if you use storage based exhaustions. Abit of work but may do the trick if you deem worth it. In the spell you use to remove cooldowns exhaustion.set(cid, REMOVECOOLDOWNSTORAGE, SECONDS) Intop of spells just under function. if exhaustion.check(cid, SPELLSTORAGE)...
  3. Giddran

    Is there any disableExhaustion or disableCooldown function?

    Reduces cooldown by 5 seconds?
  4. Giddran

    Spell conditions based on storage values

    I want the storage values to be dynamic parts of formula, so any would do.
  5. Giddran

    Spell conditions based on storage values

    I'm trying to make some of the buff spells based on storage values but i have no idea how to setcombatparams within functions. TFS 1.0 For example: setConditionParam(conditionAttrib, CONDITION_PARAM_TICKS, xxx) setConditionParam(conditionAttrib, CONDITION_PARAM_SKILL_DISTANCEPERCENT, xxx)...
  6. Giddran

    TFS 1.0 - Exhuastion Login/Logout

    Thank you, working perfectly and precicely as i desired, cheers! I did change true to false to remove the mana cost, made a poof effect and added the exhaust function in seperate lib to keep track. Hopefully i got it right. if exhaustion.check(cid, 51100) then...
  7. Giddran

    TFS 1.0 - Exhuastion Login/Logout

    Hey guys, i'm tinkering abit with some custom spells that have minute to hour cooldown, however when a character relogs the exhuastion reset. Anyone got any suggestions on the best way to solve this? / Got any examples f.e storage based cooldown Thanks in advance
  8. Giddran

    Rune Merge spell REQUEST

    <talkaction words="adevo mas" script="mergerune.lua" /> function onSay(cid, words, param) -- Rune Merger Spell by Alreth, v1.02. -- Last updated 2007-04-25 13:00, by Alreth. -- Edit these variables so they fit to your map and server settings. -- runesidmin = 2261 -- Itemid of...
  9. Giddran

    assassin star

    if its max hit chance, which means unless you dont got enought distance you will still miss now and then.
  10. Giddran

    Beta testers wanted!

    Looking for a few testers to test out the gameplay. Alot of changes and cleaned the database. Running another test period is order to get my numbers right and make small changes in order to make the gameplay smooth. A few of the notable changes: Remade Birthsign system with different rewards...
  11. Giddran

    Solved [TFS 1.0] Databasequery/Maxhealth/Npc

    Thanks, didint get the database query to work but the second one went smoothly
  12. Giddran

    Solved [TFS 1.0] Databasequery/Maxhealth/Npc

    Hey guys, i'm trying to create a npc that can got the ability to raise values like health, cap, mana. I reconize that i got barely no clue how to query the database and make changes. I tried adding the function below which only gave me "attempt to call field 'executeQuery <a nil value>'...
  13. Giddran

    Beta testers wanted!

    Its up :) Been working on the Paladin and Knight spells abit to find some better numbers. I'm also testing out some new changes to the spell system which will be based on mainly. Sorcs 1.5 seconds cd Paladins 2 seconds cd Knights 3 seconds cd I'm going to implement the Vitality/Spirit stats...
  14. Giddran

    Beta testers wanted!

    Put some work down and created an advanced crafting system. You can buy or find special books or scroll with unique that contains. At the moment there are 3 types of different recipes. A book that contains several recipes and can be crafted as much as you want, assuming you have the resources...
  15. Giddran

    Beta testers wanted!

    Get in touch and we work something out :)
  16. Giddran

    Beta testers wanted!

    I didint know how to make them when i started, but i'm dedicated! Currently looking for Knight and Paladin players willing to test out some of the basic gameplay. One of the new additions in preparation for the new spell system.
  17. Giddran

    CTRL+RIGHTARROW

    dominique120 - Sorry, i'm using several of the 10.31 TFS 1.0 Distros. I've tried a couple of them and still got the same problem. I'm going to try find some more different compilations to check, but i'm starting to believe its not based on the .exe I had this problem -> Solved it by loaded a...
  18. Giddran

    CTRL+RIGHTARROW

    .bump
  19. Giddran

    CTRL+RIGHTARROW

    The CTRL+RIGHTARROW command to make your character look to the right -> doesnt work for me, all the other directions work. Anyone know what could cause this? I got no clue where to start.
  20. Giddran

    Lua Assassin star doesn't end?

    rand = math.random(1,5) if rand >= 10 and rand < 11 then You are randoming a number between 1 and 5 1 2 3 4 5 But the number needs to be 10 to remove the item. (10 or more, and less than 11) One of theese should work: if rand >= 5 and rand < 6 then if rand == 5 then function onUseWeapon(cid...
Back
Top