• 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 How to make a spell in area that set a storage to eveyone around for 10 seconds

    I also tried this: local combat = createCombatObject() setCombatParam(combat, COMBAT_PARAM_EFFECT, CONST_ME_MAGIC_RED) setCombatParam(combat, COMBAT_PARAM_EFFECT, CONST_ME_HITAREA) setCombatParam(combat, COMBAT_PARAM_AGGRESSIVE, false) local area = createCombatArea(AREA_SQUARE1X1)...
  2. sabodden

    TFS 0.X Spell that buff your summons hp

    This is it? local combat = createCombatObject() setCombatParam(combat, COMBAT_PARAM_EFFECT, CONST_ME_MAGIC_BLUE) setCombatParam(combat, COMBAT_PARAM_AGGRESSIVE, false) local condition = createConditionObject(CONDITION_ATTRIBUTES) setConditionParam(condition, CONDITION_PARAM_TICKS, 10000)...
  3. sabodden

    TFS 0.X How to make 2 promotes possibles?

    ok then, thanks ;)
  4. sabodden

    TFS 0.X How to make 2 promotes possibles?

    what should i do? give up the fromvoc="1"? and use fromvoc="4" on vocation 4, fromvoc="5" on vocation 5?
  5. sabodden

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

    Idk, is it possible? What i wanna do is: Add a storage in a monster and in a player so i can deal with this as a debuff So those monsters/players recive more dmg i tried this local combat = createCombatObject() setCombatParam(combat, COMBAT_PARAM_EFFECT, CONST_ME_MAGIC_RED)...
  6. sabodden

    TFS 0.X Spell that buff your summons hp

    What do i doing wrong? before use the spell 23:31 You see a dragon. Health: [1500 / 1500]. Position: [X: 1034] [Y: 1047] [Z: 6]. 23:31 You see a dragon. Health: [1500 / 1500]. Position: [X: 1036] [Y: 1045] [Z: 6]. When i use the spell 23:32 You see a dragon. Health: [3000 / 1500]...
  7. sabodden

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

    For players and monsters, i wanna make something like new sorcerer spell (curse) Is it possible with LUA? https://github.com/Fir3element/3777/blob/master/src/luascript.cpp
  8. sabodden

    TFS 0.X Spell that buff your summons hp

    How to create a spell that when use add 2x more health for all your summons But can only set 2x MAX HP for each monster, i mean, if u use 2x,3x,4x only set 2x hp monsters to monster that don't have been affected
  9. sabodden

    TFS 0.X How to make 2 promotes possibles?

    You a knight can be promoted to Paladin or Barbarian How to do it? Knight <vocation id="1" name="Knight" description="a knight" needpremium="0" gaincap="25" gainhp="15" gainmana="5" gainhpticks="2" gainhpamount="1" gainmanaticks="2" gainmanaamount="1" manamultiplier="3.0"...
  10. sabodden

    TFS 0.X Rune without runes exausted

    This rune is working together to SD I was trying to do 2 attack runes works at almost same time (less then 2 secs exausted) It almost working, but not like should be There are a few problems 1- There is no distance effect 2- There is no dmg element 3- When it attacks, it don't show any damage...
  11. sabodden

    TFS 0.X Rune without runes exausted

    even 1 of this items would help a lot :(
  12. sabodden

    Action Rod/Wand with attack like other weapons

    sources edits in 0.4: item.cpp Change else if(it.weaponType != WEAPON_AMMO && it.weaponType != WEAPON_WAND) To else if(it.weaponType != WEAPON_AMMO)
  13. sabodden

    TFS 0.X Rune without runes exausted

    i want to make some runes that are alloweds to use together with attack runes (i mean, this rune + sd or hmm)? i've tried this: local maglv = 3 function onGetFormulaValues(cid) local min = ( (((getPlayerMagLevel(cid)) * 10) * 0.5 ) + (40) ) local max = ( (((getPlayerMagLevel(cid)) *...
  14. sabodden

    TFS 0.X Use with on action

    :D Good, i think there is no best answer anymore, now its "Mark as solution"
  15. sabodden

    TFS 0.X Use with on action

    I did it wrong?
  16. sabodden

    TFS 0.X Use with on action

    THANK U :)
  17. sabodden

    TFS 0.X Use with on action

    The problem to use this is: I have to be close to the target If for example i'm 2 sqms far for the target, it shows: "Too far away."
  18. sabodden

    TFS 0.X Use with on action

    I wanna make UH as action, not spell, but i got a problem: How get useWith, target I mean, it u use this UH in other player, not yourself local target = cid -- 1 how to check if rune was used in a real player? i mean, not only cid, others players/monsters if target == 0 then...
  19. sabodden

    TFS 0.X UH/IH together to EXURA/EXANA MORT

    No, the rune i want to work at the same time with SD is the rune 2 (it is a holy HMM) The heal rune i just want to make possible to use in others players and monsters
Back
Top