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

    TFS 0.X Rune without runes exausted

    also don't work what are u mean? the only script i found here using this is: https://otland.net/threads/mod-metin-stone-system-100-automatic.142739/ and they used createCombatArea 1610649565 hmmm there is an error on console using: local targetArea = createCombatArea{ {0, 1, 1, 1...
  2. sabodden

    TFS 0.X Rune without runes exausted

    it hits only one
  3. sabodden

    TFS 0.X Rune without runes exausted

    it stills target damage :(
  4. sabodden

    TFS 0.X Rune without runes exausted

    oh fuck i'm so dumb XD thank you so much one last thing how play with this area stuff? i tried to do like fireball rune: doCombatAreaHealth(cid, COMBAT_HOLYDAMAGE, getPlayerPosition(target), AREA_CIRCLE2X2, -min, -max, CONST_ME_HOLYDAMAGE) but it is only target attack :/
  5. sabodden

    TFS 0.X Rune without runes exausted

    did u know why is printing 37.5 75 but damage was 24 --- i also tried: local min = 100 local max = 200 print(min) print(max) doTargetCombatHealth(cid, target, COMBAT_HOLYDAMAGE, -min, -max, CONST_ME_HOLYDAMAGE) but damage was 84,81,64 why?
  6. sabodden

    TFS 0.X Rune without runes exausted

    i tried, but got some strange stuffs: if i add local min = ( (((getPlayerMagLevel(cid)) * 10) * 0.5 ) + (40) ) local max = ( (((getPlayerMagLevel(cid)) * 10) * 1.0 ) + (40) ) print(min) print(max) doTargetCombatHealth(cid, target, COMBAT_HOLYDAMAGE, min, max...
  7. sabodden

    TFS 0.X Rune without runes exausted

    u guys know how to make a rune in actions do damage? the others stuffs are details, but that problem: "you can kill another player without make damage, so you can just kill a guy and don't gain a injust" is so broken, is anyone know a way to fix this?
  8. sabodden

    TFS 0.X Get monster storage on sources

    runs ;) ty!!
  9. sabodden

    TFS 0.X Get monster storage on sources

    So that is script is not working? Because monsters are saying "Cursed!"
  10. sabodden

    TFS 0.X Get monster storage on sources

    I want to finish this script: https://otland.net/threads/how-to-make-a-spell-in-area-that-set-a-storage-to-eveyone-around-for-10-seconds.273711/#post-2640188 That make players and monsters with storage 668 recive more damage Searching on forum examples i manage to do on game.cpp...
  11. sabodden

    OpenTibia Sprite Pack

    this project is the future of OT :)
  12. sabodden

    TFS 0.X How to make a spell in area that set a storage to eveyone around for 10 seconds

    That is it! Thank you so much! 1609462174 Did u know how to check target storage on weapons/scripts/swords.lua local combat = createCombatObject() setCombatParam(combat, COMBAT_PARAM_BLOCKARMOR, 1) setCombatParam(combat, COMBAT_PARAM_TYPE, COMBAT_PHYSICALDAMAGE) function...
  13. sabodden

    TFS 0.X Rune without runes exausted

    there is other easy way to make attack runes can be used together? i did this to make this runes combo with sd, gfb it create a new amazing dynamic for a new vocation, just have to fix that points :(
  14. sabodden

    TFS 0.X Rune without runes exausted

    bump
  15. sabodden

    TFS 0.X How to make a spell in area that set a storage to eveyone around for 10 seconds

    I did not add nothing, only doCreatureSay(cid, "Cursed!", TALKTYPE_MONSTER, false) to test
  16. sabodden

    TFS 0.X Spell that buff your summons hp

    god! thank you!
  17. sabodden

    TFS 0.X Spell that buff your summons hp

    The problem was that i have rateMonsterHealth = 1.5 in my config.lua i just had to change to targetMaxHealth local targetMaxHealth = getMonsterInfo(getCreatureName(target)).healthMax + (getMonsterInfo(getCreatureName(target)).healthMax / 2) There is a better way to do that? So i can not...
  18. sabodden

    TFS 0.X Spell that buff your summons hp

    Tried the copy paste then: local function resetMonsterMaxHealth(cid) if not isMonster(cid) then return true end local maxHealth = getMonsterInfo(getCreatureName(cid)).healthMax setCreatureMaxHealth(cid, maxHealth) local targetCurrentHealth = getCreatureHealth(cid)...
Back
Top