How to play Lester Contact Missions in GTA Online (2x bonus this week) (2024)

With every weekly GTA Online update, Rockstar brings various opportunities for players to make lots of money in the game by completing various activities in Los Santos. This week, players can earn double the rewards on a range of in-game activities, including Lester Contact Missions.

Lester Crest is a central character in GTA Online. Players were first introduced to Lester in 2013, upon achieving rank 10 in the game. The players first meet him at his residence, and at the end of the meeting, Lester informs players about the variety of activities they should do. Similar to every other major character in the game, players can play and complete Lester Contact Missions as well.

Everything players should know about Lester Contact Missions in GTA Online

How to play Lester Contact Missions in GTA Online (2x bonus this week) (2)

In GTA Online, Lester offers various tasks to players, most of which involve assisting the Protagonist. However, players can play Lester Contact Missions only after achieving rank 14. They can start a Lester contact mission by simply calling and asking him for a mission. Alternatively, players can also go to the pause menu, followed by the online option, and scroll through the list of jobs available.

Before starting a contact mission, players will have to complete the ’Fleeca Job - Scope Out’ Heist setup. This requires them to monitor security at the Fleeca Bank and collect Paige along with some equipment from the factory.

Best Lester Contact Missions in GTA Online to earn cash

1) Crime Scenester

How to play Lester Contact Missions in GTA Online (2x bonus this week) (3)

This is one of the easiest Lester Contact Missions and can be unlocked by achieving level 20. In this mission, players simply have to recover some cash that has been taken by corrupt LSPD Police Officers at a crime scene on a narrow street in La Mesa, Los Santos.

Lester will also inform the players that there is another bag of cash in the alley that they have to retrieve. Upon recovering both the bags, players have to lose the 3-star wanted level given to them and return the cash to Lester at his warehouse.

2) Hack and Dash

Hack and Dash is another easy mission given by Lester, and in this mission, players will have to hack a terminal that leads them to the FIB garage compound on Clinton Avenue in West Vinewood. From there, they have to retrieve two cars, FIB Buffalo and FIB Granger, from the garage and take them to Lester's warehouse.

This must be done by evading the wanted level that players are given when they start hacking. The Hack and Dash missions can be unlocked upon achieving level 60.

3) Docks to Stock

How to play Lester Contact Missions in GTA Online (2x bonus this week) (5)

This is another Lester Crest mission and can be unlocked upon achieving level 70. Players have to steal a Cargobob from the army base inside Fort Zancudo for which they will be given a wanted level. After losing the wanted levels, they have to arrive at Elysian Island, land the cargobob, and eliminate the Merryweather guards protecting a shipping container containing high-tech weapons, which is located under the bridge.

Players will then need to extract the container, hook it up to the cargobob, and take it to Lester’s warehouse.

4) Four Trailers

How to play Lester Contact Missions in GTA Online (2x bonus this week) (6)

Four Trailers is another very easy Lester Contact Mission. It can be unlocked by achieving level 45, and in this mission, players first have to first take down some heavily armed guards who are patrolling the area on South Shambles Street.

After eliminating all of them, players have to acquire two trucker cabs, steal the trailers, and deliver them to Lester's warehouse, with several SUVs on their tail.

Lastly, Lester Contact Missions provides players with an efficient way to earn money and respect while moving up the ranks in the game. The rewards for these missions depend on the time required to complete them. There are a number of similar missions in GTA Online, and throughout this week, players can make the most of them by earning double rewards.

For The Biggest GTA 6 Map Leaks, Click Here.

Quick Links

More from Sportskeeda

Edited by Mayank Shete

Feedback

Thank You!

";modalText += "

";modalText += "

";modalText += "

";modalText += "

";modalText += "

";modalText += "

";modalText += "

"modalText += "

Please select an option.

Please provide your feedback.

"modalText += "

"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": 1149363,"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(1149363);var expiryTime = new Date();expiryTime.setMonth(expiryTime.getMonth() + 12); // Expiry after 1 yearsetCookie("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(1149363) >= 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(1149363).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 });})();

How to play Lester Contact Missions in GTA Online (2x bonus this week) (2024)
Top Articles
Latest Posts
Article information

Author: Gov. Deandrea McKenzie

Last Updated:

Views: 6389

Rating: 4.6 / 5 (66 voted)

Reviews: 89% of readers found this page helpful

Author information

Name: Gov. Deandrea McKenzie

Birthday: 2001-01-17

Address: Suite 769 2454 Marsha Coves, Debbieton, MS 95002

Phone: +813077629322

Job: Real-Estate Executive

Hobby: Archery, Metal detecting, Kitesurfing, Genealogy, Kitesurfing, Calligraphy, Roller skating

Introduction: My name is Gov. Deandrea McKenzie, I am a spotless, clean, glamorous, sparkling, adventurous, nice, brainy person who loves writing and wants to share my knowledge and understanding with you.