Just something i came up with using new Map.Find(ID, X, Y, Z, Range, OnlyTopItem?) macro
To spot location of fresh dragon lord corpse (has diferent ID for first 10 seconds)
and if it has Map.ItemOnTop.ID a fire field on it to Map.UseOn destroy field on that corpse
where 5984 is DL corpse ID, 2123 is Fire field ID and 3148 is destroy field ID
To spot location of fresh dragon lord corpse (has diferent ID for first 10 seconds)
and if it has Map.ItemOnTop.ID a fire field on it to Map.UseOn destroy field on that corpse
Code:
Map.Find(5984, :X, :Y, :Z, 3, :false)
Map.ItemOnTop.ID(!Found.X, !Found.Y, !Found.Z)==2123
Map.UseOn(3148, 2123, !Found.X, !Found.Y, !Found.Z, 4)
where 5984 is DL corpse ID, 2123 is Fire field ID and 3148 is destroy field ID