Where to get Molotov Cocktails in GTA Online?

Publish date: 2024-05-27

There are two main ways to get Molotov Cocktails in GTA Online. First, one can call Merryweather to drop an ammo crate for them. Second, they can find this weapon spawning in specific spots. Unlike most other guns and explosives, Ammu-Nation does not sell this item.

The whole process of obtaining a Molotov Cocktail is quite simple, although it might be unknown to somebody who doesn't know that this weapon is in this game. This guide will reveal how players can get this rare but handy incendiary, starting with the Merryweather method and then briefly talking about specific spawn locations.

This is how GTA Online players can get Molotov Cocktails

Select the first option (Image via Rockstar Games)

The first method to cover here is the Merryweather option. Here is a step-by-step guide to how this method works:

  • Bring up your phone.
  • Go to Contacts.
  • Call Merryweather.
  • Select Ammo Drop (which costs $1000).
  • Wait for the crate to be dropped at your location.
  • Walk over it.
  • It's incredibly simple and is helpful for GTA Online players, regardless of which location they're at in the overworld. Keep in mind that others in the lobby can steal the Ammo Drop.

    This is what the crate looks like (Image via Rockstar Games)

    A small green dot on the minimap will indicate where the ammo crate will be. Generally speaking, it will be placed near where the player made the request. Remember to walk over it to collect the ammo.

    This method will only award players with a few Molotov Cocktails, so one has to do it multiple times to hit the max limit.

    Spawn locations

    It spawns in the Kosatka too (Image via Rockstar Games)

    Molotov Cocktails also have specific spawn locations that can be easy to miss for new GTA Online players. The most notable location is inside the Kosatka's dining hall, as shown in the above image. This weapon will flash white periodically, letting one know that they can pick it up.

    They're also available in the Bunker near the Shooting Range. However, arguably the best spawn is available via deathmatches.

    This YouTube video demonstrates a job where PlayStation players can pick up several Molotov Cocktails for almost no hassle. It's worth noting that the specific job shown here isn't the only example of a mission where one can acquire this coveted weapon.

    Nonetheless, some players might want this job. Here is a link for PlayStation users:

    The final miscellaneous method to talk about includes Motorcycle Clubs. More specifically, there is a position in the club known as Sergeant-at-Arms. Whoever has this rank can drop Molotov Cocktails for other GTA Online players, but it will cost them $200.

    Since this method relies on others, it might not be the most desirable option. Still, it's something to consider, especially if the other ways to get this weapon don't seem that appealing to the reader.

    To summarize each method:

  • Call Merryweather and request an Ammo Drop.
  • Find this weapon in specific locations (including player-created Survival jobs)
  • Have a Sergeant-at-arms drop it.
  • A few other jobs give GTA Online players some Molotov Cocktails, such as the Torched Clubhouse Contract.

    Poll : Do you wish that this weapon was easier to buy in mass quantities?

    85 votes

    '; }); pollOptions.innerHTML = pollOptionsDom; pollCount.innerHTML = totalVotes + ' votes'; } function updatePollCountOnAnswer(selectedOption) { var pollData = pollDataDefault; renderPollWidget(pollData, selectedOption, true); } function renderPollWidget(pollData, selectedOption, isAnswered) { if (!pollData) return; pollData.option1_count = pollData.option1_count || 0; pollData.option2_count = pollData.option2_count || 0; pollData.option3_count = pollData.option3_count || 0; pollData.option4_count = pollData.option4_count || 0; if (isAnswered) { if (selectedOption == "option1") pollData.option1_count += 1; if (selectedOption == "option2") pollData.option2_count += 1; if (selectedOption == "option3") pollData.option3_count += 1; if (selectedOption == "option4") pollData.option4_count += 1; } if (isAnswered || selectedOption) { var predictorPromotionalBannerContainer = $(".predictor-contest-banner-container.Article-poll"); if (predictorPromotionalBannerContainer) { removeClass(predictorPromotionalBannerContainer, "hidden"); } } var totalVotes = Number(pollData.option1_count + pollData.option2_count + pollData.option3_count + pollData.option4_count); if (totalVotes && !Number.isNaN(totalVotes)) { var option1Percent = pollData.option1_count / totalVotes * 100; var option2Percent = pollData.option2_count / totalVotes * 100; var option3Percent = pollData.option3_count / totalVotes * 100; var option4Percent = pollData.option4_count / totalVotes * 100; var optionPercentages = [option1Percent, option2Percent, option3Percent, option4Percent]; var pollOptions = $("#poll-options"); var pollCount = $("#poll-count"); var pollOptionsDom = ''; var optionsArray = ['option1', 'option2']; if (pollData.option3 !== "" && pollData.option3 !== null) { optionsArray.push('option3') } if (pollData.option4 !== "" && pollData.option4 !== null) { optionsArray.push('option4') } optionsArray.forEach(function (option, index) { var clickHandler = 'onclick="answerPoll(event, \'' + option + '\')"'; var optionClass = ['poll-option']; if (selectedOption) { optionClass.push('poll-option-answered'); clickHandler = ''; } if (selectedOption === option) { optionClass.push('poll-option-selected'); } pollOptionsDom += ''; if (selectedOption) { var widthPercentage = optionPercentages[index] < 5 && optionPercentages[index] != 0 ? 5 : optionPercentages[index]; if (selectedOption === option) { if (widthPercentage > 97) { pollOptionsDom += ''; } else { pollOptionsDom += ''; } } else { if (widthPercentage > 97) { pollOptionsDom += ''; } else { pollOptionsDom += ''; } } } pollOptionsDom += '

    ' + pollData[option] + '

    '; if (selectedOption) { pollOptionsDom += '

    ' + Math.round(optionPercentages[index]) + '%

    '; } pollOptionsDom += ''; }); pollOptions.innerHTML = pollOptionsDom; pollCount.innerHTML = totalVotes + ' votes'; if (totalVotes > 10) { pollCount.classList.remove("hidden"); } } trackArticlePollImpression(pollData); } function answerPoll(e, selectedOption) { e.preventDefault(); updatePollCountOnAnswer(selectedOption); var isDesktop = "1"; var gaPayload = { "question" : pollDataDefault.question, "answer" : e.target.textContent, "answer_option" : selectedOption.replace("option", "Option "), "category": "GTA", "page_location": window.location.href, } if (pollTaglinePosition && pollTaglinePosition != "") { gaPayload["poll_position"] = pollTaglinePosition; } if (isDesktop) { gaPayload["device"] = "Desktop"; } else { gaPayload["device"] = "Mobile"; } gtag("event", "ARTICLE_POLL_RESPONSE", gaPayload); var url = 'https://a-gotham.sportskeeda.com/polls/23167/response'; var data = { "poll_type": "article", "option": selectedOption } pureJSAjaxPost(url, data, onPollResponseSuccess.bind(this, selectedOption), onPollResponseFail.bind(this, selectedOption), null, false); } function trackSponsoredLinkClick(e) { var pollTheme = "default"; gtag('event', 'click', { 'event_category': 'PollSponsoredLink', 'event_label': pollTheme }); } var articlePollImpressionTracked = false; function trackArticlePollImpression(pollData) { var pollElement = $("#poll"); var intersectionObserverForArticlePoll = new IntersectionObserver( function(entries) { entries.forEach(function(entry) { if (articlePollImpressionTracked) return; if (!entry.target || !entry.isIntersecting || entry.intersectionRatio < 0.5) return; setTimeout(function() { if (isInViewport(entry.target)) { articlePollImpressionTracked = true; var isDesktop = "1"; var gaPayload = { "question" : pollData.question, "category": "GTA", "page_url": window.location.href, } if (isDesktop) { gaPayload["device"] = "Desktop"; } else { gaPayload["device"] = "Mobile"; } if (pollTaglinePosition && pollTaglinePosition != "") { gaPayload["poll_position"] = pollTaglinePosition; } gtag("event", "ARTICLE_POLL_IMPRESSION", gaPayload); intersectionObserverForArticlePoll.unobserve(entry.target); } }, 1000); }); }, { threshold: 0.5 } ); if (pollElement){ var isAnswered = pollElement.querySelector(".poll-option-answered"); if (!isAnswered) { intersectionObserverForArticlePoll.observe(pollElement); } } }

    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": 1220375, "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(1220375); 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(1220375) >= 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(1220375) .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 }); })();

    ncG1vNJzZmivp6x7tLzOq6uso5WasaJ6wqikaJ%2Bklny4tMSrnGaflal6rrvLqKuorl2YvKS305qgpatdnMGiec6no6KmlQ%3D%3D