As of revision 22ea0bb the function arguments have changed (sorry). If you don't have any custom code using onMobDeath or onMobDeathEx, you can ignore this post.
_________________________
If you are good with regex you can do this all in a single find+replace..If anyone would like to contribute that to the thread, knock yourself out. why didn't I save the regex I used, sigh. Include the spaces when performing these instructions!
Find this string:
Code: Select all
ally:
Code: Select all
player:
Code: Select all
(ally
Code: Select all
(player
Code: Select all
onMobDeath(mob,killer,ally)
Code: Select all
onMobDeath(mob, player, isKiller)
Code: Select all
onMobDeath(mob, killer, ally)
Code: Select all
onMobDeath(mob, player, isKiller)
Code: Select all
, ally
Code: Select all
, player
Code: Select all
,ally
Code: Select all
,player
Code: Select all
if (isKiller == true) then
your Code here
end