Remove the first line (object oStone = ....) and change this:
if (oActivated == oStone)
To this:
if (GetTag(oActivated) == "br_blink")
GetObjectByTag() isn't useful here. In cases where there are multiple objects with that same tag, it just grabs the first one it finds -- which often is not the one you wanted.
Hope this helps!
Modifié par Invisig0th, 14 septembre 2010 - 03:34 .