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

TFS 1.X+ Healing runes(ultimate and intense) can heal monsters and familiars

zapo

Member
Joined
Nov 10, 2020
Messages
129
Solutions
3
Reaction score
11
Hi guys,
Can use healing runes to heal monsters and your familiars summon.
Someone knwo how to change it?
otservbr
tfs 1.3
 
Solution
Hello Zapo, how are you?
I suggest you everytime you ask for something, you post at least the script you are asking about.

By the way, I solved this problem.

Lua:
function onCastSpell(creature, var, isHotkey)
    if Monster(var:getNumber(1073762188)) then
        return false
    end
        return combat:execute(creature, var)
end

You change the last function of the rune script for this one.
Hello Zapo, how are you?
I suggest you everytime you ask for something, you post at least the script you are asking about.

By the way, I solved this problem.

Lua:
function onCastSpell(creature, var, isHotkey)
    if Monster(var:getNumber(1073762188)) then
        return false
    end
        return combat:execute(creature, var)
end

You change the last function of the rune script for this one.
 
Solution
Back
Top