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

Canary Bakragore taints

trosko93

New Member
Joined
May 17, 2020
Messages
17
Reaction score
2
I have Bakragore mini bosses and final boss working, except when you kill Bakragore, ALL mini boss taints are removed, and you do not get the final Bakragore taint. Can someone explain how to fix this?

After defeating Bakragore you should have his taint so you can fight him again without needing to do the mini bosses every time.
 
All this taint talk getting me excited.
Not too familiar with canary though but sounds like it should be a creaturescript
Something like this:

LUA:
local taintKill = CreatureEvent("BakragoresTaint")

function taintKill.onKill((player, target)
    if target:getName():lower() == "bakragore" then
        --Add_Taint_To_Player
    end
    return true
end

taintKill:register()
 
Back
Top