sallem
Member
- Joined
- Nov 18, 2024
- Messages
- 20
- Reaction score
- 14
Can someone fix this script to attack monsters, it's only working when it attacks players?
and switch to tfs 0.3.6
local config = {
weapons = {
-- [ID] = LIFE STEAL %,
[8602] = 10,
},
-- Vocations number
-- 1, 5 = Druid, Elder Druid
-- 2, 6 = Sorcerer, Master Sorcerer
-- 3, 7 = Paladin, Royal Paladin
-- 4, 8 = Knight, Elite Knight
-- others
vocations = {4, 8},
}
function onLogin(cid)
registerCreatureEvent(cid, "LifeSteal")
return true
end
function onStatsChange(cid, attacker, type, combat, value)
if not isPlayer(attacker) then
return true
end
if not isInArray(config.vocations, getPlayerVocation(attacker)) then
return true
end
for slot = 0, 9 do
for id, perc in pairs(config.weapons) do
if (getPlayerSlotItem(attacker, slot).id == id) then
return doCreatureAddHealth(attacker, math.ceil(value / perc))
end
end
end
return true
end
and switch to tfs 0.3.6
local config = {
weapons = {
-- [ID] = LIFE STEAL %,
[8602] = 10,
},
-- Vocations number
-- 1, 5 = Druid, Elder Druid
-- 2, 6 = Sorcerer, Master Sorcerer
-- 3, 7 = Paladin, Royal Paladin
-- 4, 8 = Knight, Elite Knight
-- others
vocations = {4, 8},
}
function onLogin(cid)
registerCreatureEvent(cid, "LifeSteal")
return true
end
function onStatsChange(cid, attacker, type, combat, value)
if not isPlayer(attacker) then
return true
end
if not isInArray(config.vocations, getPlayerVocation(attacker)) then
return true
end
for slot = 0, 9 do
for id, perc in pairs(config.weapons) do
if (getPlayerSlotItem(attacker, slot).id == id) then
return doCreatureAddHealth(attacker, math.ceil(value / perc))
end
end
end
return true
end