function ADVR.onLoad() achievement.predecessors = {achievements.MOSQUITO_BITE} achievement.category = "exploration" achievement.showProgressBar = true end --TOOLTIP: This unlocks NG Plus function ADVR.onVersionUpgrade(oldVersion, newVersion) if player.TotalWins >= 3 then achievement.Unlock() end end function ADVR.onPlayerDeathOrRunComplete() if player.TotalWins >= 3 then achievement.Unlock() end end function GetProgressInfo() local wins = player.TotalWins return wins, 3 end