function ADVR.onLoad() achievement.psvrID = 21 achievement.hideDescription = false achievement.unlocksItem = relics.NEEDLE_OF_OROBOROUS TimesHit = 0 achievement.predecessors = {achievements.DEEP_CUT} achievement.category = "combat" end function ADVR.onRangedHitEntity(infos) if infos.entity == nil then return infos.damage end TimesHit = TimesHit + 1 if TimesHit >= 25 then achievement.Unlock() end return infos.damage end function ADVR.onRangedWeaponCollide(knife,collision) local enemy = collision.transform.gameObject.GetComponent_EnemyBase_() if enemy == nil then TimesHit = 0 end end