Quote:
Originally Posted by camelotcrusade
Hi - turns out I got a save right smack in front of the guy who casts Doom, so I just tested and the bug is still happening. Then I realized the zip file has addon_arena.lua, not arena.lua, so I didn't have the fix installed. So I went into the arena.lua file to mod it myself, but I don't quite understand how to do it. At 553 (and the next few after) it says:
Code:
if receiver_human and not receiver_glot then
kritProb = kritProb - skill_power("weakness_lore", 2)
if kritProbRnd < kritProb then
iskrit = false
is_weakness_lore = true
Where do I make the changes? Am I adding that line you show right after it?
|
He is saying change:
Code:
if receiver_human and not receiver_glot then
to
Code:
if receiver_human and not receiver_glot and (skill_power("weakness_lore", 2) > 0) then