All contact dunk requirements in NBA 2K24

NBA 2K24 is available worldwide, and the MyCareer mode has an all-new system with its own contact dunk requirements. The popular game mode allows players to fulfill their dreams of becoming an NBA superstar, albeit in the virtual form, and there's plenty for them to explore.

In fact, 2K Sports has made some interesting changes that allow a lot of freedom to the community. The contact dunk requirements are of vital importance irrespective of the position and body type one opts for.

In NBA 2K24, players can opt for default builds, which are modeled on actual NBA superstars. However, they can also choose to create their own builds without the use of a template.

'; }); pollOptions.innerHTML = pollOptionsDom; pollCount.innerHTML = totalVotes + ' votes'; if (totalVotes > 10) { pollCount.classList.remove("hidden"); } } function trackBetsTodayPollImpression() { var intersectionObserverForArticlePoll = new IntersectionObserver( function(entries) { entries.forEach(function(entry) { var pollId = entry.target.getAttribute("data-poll-id"); if (POLLS_BY_ID[pollId]['impression_tracked']) return; if (!entry.target || !entry.isIntersecting || entry.intersectionRatio < 0.5) return; setTimeout(function() { if (isInViewport(entry.target)) { POLLS_BY_ID[pollId]['impression_tracked'] = true; var isDesktop = "1"; var gaPayload = { "question" : POLLS_BY_ID[pollId]['question'], "category": "Basketball", "page_url": window.location.href, "option1": POLLS_BY_ID[pollId]['option1'], "option2": POLLS_BY_ID[pollId]['option2'], } if (isDesktop) { gaPayload["device"] = "Desktop"; } else { gaPayload["device"] = "Mobile"; } gtag("event", "BETS_TODAY_POLL_IMPRESSION", gaPayload); intersectionObserverForArticlePoll.unobserve(entry.target); } }, 1000); }); }, { threshold: 0.5 } ); var pollElements = document.querySelectorAll('.bets-today-poll'); pollElements.forEach(function(pollElement) { var isAnswered = pollElement.querySelector(".poll-option-answered"); if (!isAnswered) { intersectionObserverForArticlePoll.observe(pollElement); } }) } return { answerPollX: answerPollX, }; }();

Knowledge of the dunk requirements are must to ensure that their created persona can dunk properly in matches. Naturally, these requirements will vary based on what kind of dunk the players want, and what their body types are.

youtube-cover

Two-foot Contact Dunk requirements in NBA 2K24

  • Small: Driving Dunk 86+, Vertical 85+, Height under 6'5"
  • Pro: Driving Dunk 87+, Vertical 75+
  • Elite: Driving Dunk 94+, Vertical 82+

One Foot Contact Dunk requirements in NBA 2K24

  • Small Driving Dunk 93+, Vertical 85+, Height under 6’5”
  • Pro Driving Dunk 89+, Vertical 78+
  • Elite Driving Dunk 96+, Vertical 86+

Standing Contact Dunk requirements in NBA 2K24

  • Pro Standing Bigs Standing Dunk 80+, Vertical 60+, Height at least 6’10”
  • Elite Standing Bigs Standing Dunk 90+, Vertical 75+, Height at least 6’10”

Alley Oops Contact Dunk requirements in NBA 2K24

  • Small Driving Dunk 86+, Vertical 85+, Height under 6’5”
  • Big Standing Dunk 85+, Driving Dunk 70+, Vertical 60+, Height at least 6’10”
  • Pro Driving Dunk 84+, Vertical 70+
  • Elite Driving Dunk 92+, Vertical 80+

It's worth noting that these are the mere requirements that will be required for the players to perform dunks with their creations. Players will still need to perform the actions manually, with the help of the correct commands.

Additionally, there are other aspects of a build that players have to concentrate on. Attributes like strength, speed, and more, are just some of the many vital factors on which the success of your dunks will depend.

youtube-cover

Alternatively, players can choose pre-built templates as well for their MyCareer creation. This option will be available when players choose to create their MyCareer character.

The templates greatly simplify the character building process by eliminating the need for players to manually set the various parameters. Instead, the game assigns points based on the NBA superstar featured in the selected template.

This is an excellent option for people who are new to the game and are experiencing their first MyCareer mode.

More from Sportskeeda

" modalPopup.closeOnEsc = false; modalPopup.setHeader("Why did you not like this content?"); modalPopup.setContentText(modalText); modalPopup.addCancelOkButton("Submit", resetRatingAndFeedbackForm, sendRating); modalPopup.removeCloseModalIcon(); modalPopup.disableDismissPopup(); modalPopup.open(); } else { sendRating(index); } } function sendRating() { var requestPayload = { "post_id": 1662754, "rating_value": ratingValue } if (ratingValue > 3) { requestPayload.rating_feedback_type = null; requestPayload.rating_feedback = null; } else { if (!$('input[name="drone"]:checked') || !$('input[name="drone"]:checked').value) { showErrorMessage('option'); return; } if (!$(".post-rating-feedback-note textarea") || !$(".post-rating-feedback-note textarea").value) { showErrorMessage('note'); return; } var selectedOption = $('input[name="drone"]:checked').value; var feedbackNote = $(".post-rating-feedback-note textarea").value; requestPayload.rating_feedback_type = selectedOption; requestPayload.rating_feedback = feedbackNote; } pureJSAjaxPost(addratingAPI, requestPayload, onsaveRatingSuccess, onsaveRatingFail, function() {}, true); } function resetRatingAndFeedbackForm() { var activeStars = Array.from($all('.rating span.rating-star.active')); for (var i=0; i < activeStars.length; i++) { activeStars[i].classList.remove("active"); } if ($('input[name="drone"]:checked')) { $('input[name="drone"]:checked').checked = false; } var userNote = document.querySelector(".post-rating-feedback-note textarea"); userNote.value = ''; modalPopup.close(); } function onsaveRatingSuccess() { modalPopup.close(); savePostIdInUserRatedPostsCookie(); $("#post-rating-layout").classList.add("hidden"); $("#post-rating-message").classList.remove("hidden"); window.setInterval(function showMessage() { $("#post-rating-widget").classList.add("hidden"); }, 3000); } function onsaveRatingFail() { console.error('Saving post rating failed!'); modalPopup.close(); } function savePostIdInUserRatedPostsCookie() { userRatedPostIds.push(1662754); var expiryTime = new Date(); expiryTime.setMonth(expiryTime.getMonth() + 12); // Expiry after 1 year setCookie("user_rated_post_ids", JSON.stringify(userRatedPostIds), expiryTime); } function isPostRatedByUser() { var userRatedPostIds = getCookie('user_rated_post_ids'); if (userRatedPostIds) { try { userRatedPostIds = JSON.parse(userRatedPostIds); } catch (err) { console.error(err); return false; } } else { return false; } if(userRatedPostIds.indexOf(1662754) >= 0) { return true; } else { return false; } } function getRatingCountByPostId(postId) { return new Promise(function(resolve, reject) { pureJSAjaxGet( getRatingCountBaseURL + postId + '/rating/count', function(data) { try { data = JSON.parse(data); if (data.meta_value) { resolve(data.meta_value); } reject("Failed to fetch rating count for the post:" + postId); } catch (err) { reject("Failed to fetch rating count for the post:" + postId); } }, function(err) { reject("Failed to fetch rating count for the post:" + postId); }, true); }); } function showErrorMessage(messageType) { var messageContainerId = '#' + messageType + '-error'; $(messageContainerId).classList.remove('hidden'); window.setInterval(function () { $(messageContainerId).classList.add("hidden"); }, 5000); } (function() { var callFired = false; function lazyLoadPostRating() { if (callFired) return; callFired = true; if (!isPostRatedByUser()) { getRatingCountByPostId(1662754) .then(function(ratingCount) { if (ratingCount < 10) { $("#post-rating-widget").classList.remove("hidden"); } }) .catch(function(err){ console.error(err); }); } } document.addEventListener("scroll", lazyLoadPostRating, { passive: true, once: true }); document.addEventListener("mousemove", lazyLoadPostRating, { passive: true, once: true }); document.addEventListener("touchmove", lazyLoadPostRating, { passive: true, once: true }); })();

You Might Also Like