Animation Id to check.
Bool flag of whether an override entry exists.
-- Overrides player dancing emote with bow emote
osrs.setAnimationOverride(866, 858)
-- Uses isAnimationOverridden to check if specific emotes have their animation overridden
danceOverridden = tostring(osrs.isAnimationOverridden(866))
bowOverridden = tostring(osrs.isAnimationOverridden(858))
-- Prints: Dancing Emote Overridden: true
-- Prints: Bow Emote Overridden: false
osrs.print("Dancing Emote Overridden: " .. danceOverridden)
osrs.print("Bow Emote Overridden: " .. bowOverridden)
Checks if animation id is being overridden by a value in the animation override dictionary. Check game vals documentation to see what animations line up with what id.