• 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!

RevScripts antidote rune no work

bpm91

Intermediate OT User
Joined
May 23, 2019
Messages
931
Solutions
7
Reaction score
127
Location
Brazil
YouTube
caruniawikibr
Lua:
local spell = Spell(SPELL_INSTANT)

spell:needLearn(true)
spell:mana(50)
spell:magicLevel(5)
spell:soul(1)
spell:isAggressive(false)
spell:name("Antidote Rune")
spell:vocation("Druid", "Elder Druid")
spell:words("ad,ana, pox")

function spell.onCastSpell(creature, variant)
    return creature:conjureItem(50, 2260, 2266, 1)
end

spell:register()

local combat = Combat()
combat:setParameter(COMBAT_PARAM_EFFECT, CONST_ME_MAGIC_BLUE)
combat:setParameter(COMBAT_PARAM_DISPEL, CONDITION_POISON)
combat:setParameter(COMBAT_PARAM_TARGETCASTERORTOPMOST, true)
combat:setParameter(COMBAT_PARAM_AGGRESSIVE, false)

local rune = Spell(SPELL_RUNE)

function rune.onCastSpell(creature, variant)
    return combat:execute(creature, variant)
end

rune:cooldown(1000)
rune:runeMagicLevel(0)
rune:runeId(2266)
rune:charges(1)
rune:allowFarUse(true)
rune:blockWalls(true)
rune:isAggressive(false)
rune:needTarget(true)
rune:register()

i use but no remove poison


I found the problem, my monsters had poisoncycles, so I switched to poison, everything is fine now.
 
Last edited:
Back
Top