Jump to content
GTAForums does NOT endorse or allow any kind of GTA Online modding, mod menus, tools or account selling/hacking. Do NOT post them here or advertise them, as per the forum rules.

Weekly Event (17th Apr 2025) - Celebrate 4/20 with Bonuses and Rewards Across Everything Weed Related, a Twist on Hunting Pack with Lamar Davis & More!


Recommended Posts

LD Organics youga custom van now spawns near Lamar's LD Organics warehouse.

BTW, new Hunting Pack (Get Lamar) Adversary Mode missions don't count towards career progress adversary challenge, for now at least.

Edit: Tez2 corrected me below.

Spoiler

20250417.thumb.png.adc45a587e92ba9d93f4644509b9773b.png202504171.thumb.png.5c7771a7583f0bd0f2649c7a63121063.png

 

Edited by FirsU
  • Like 16
maxon1196
6 minutes ago, FirsU said:

LD Organics youga custom van now spawns near Lamar's LD Organics warehouse.

  Reveal hidden contents

20250417.thumb.png.adc45a587e92ba9d93f4644509b9773b.png

 

@BrightSideOfTheSun here's the lost icon хD

SqualidCoyote
15 hours ago, Grinch of Los Santos said:

NO COP OUTFITS .... NOT PLAYING 
image.jpeg.7cee55d7cdb4d8a749caa7d7106718dd.jpeg

 

Getting a little bit tedious now...

kapushka
15 hours ago, Spider-Vice said:
    • Yeti Earth Day Outfit

It's actually a hoodie, not an outfit.

you can find it in Tops - special tops - seasonal.

 

  • Like 3

https://www.rockstargames.com/newswire/article/39288k9a3a5135/smoke-lamar-in-the-new-hunting-pack-remix
 

Another cool week with a lot of quite easily unlockable stuff.

 

Like always, I am very grateful that I can still enjoy those weekly events with you guys 👍

 

Have a wonderful week everybody.

 

image.gif.a1d88e6d82a07d6a50e7316867710de0.gif

Edited by Filip
Talentoso23
3 hours ago, FirsU said:

LD Organics youga custom van now spawns near Lamar's LD Organics warehouse.

BTW, new Hunting Pack (Get Lamar) Adversary Mode missions don't count towards career progress adversary challenge, for now at least.

  Reveal hidden contents

20250417.thumb.png.adc45a587e92ba9d93f4644509b9773b.png202504171.thumb.png.5c7771a7583f0bd0f2649c7a63121063.png

 

It also spawns there in the drift race called gangs all here too. Pretty sweet 

  • Realistic Steak! 2
gnomefromnome
41 minutes ago, JimmysDoubleChin said:

What is the max sell value in solo for weed with GTA plus? Public?

FYI this was a private lobby, no sale bonus

 

Edited by gnomefromnome
edit text
  • Like 2
Salty_Yote aka SeaWallTx

Hey, just FYI, you dont have to sell MC stuff to get the hoodie, you can unlock it by helping someone else sell theirs. Good news for ppl without the businesses.

I just got mine for helping @SMILEYBRYAN, so im not touching my MC then, lol

Edited by Salty_Yote aka SeaWallTx
ESaraivaF

Question! 🙋‍♂️

What is more worthwhile, selling acid to drug dealers scattered around the map or making a single, complete delivery of acid using the usual method? Also taking into account that drug dealers are paying double this week...

Edited by ESaraivaF
5 hours ago, FirsU said:

LD Organics youga custom van now spawns near Lamar's LD Organics warehouse.

I'm really surprised Rockstar let us ride it. 👍

  • Like 2
GTA Hurricane
20 minutes ago, ESaraivaF said:

Question! 🙋‍♂️

What is more worthwhile, selling acid to drug dealers scattered around the map or making a single, complete delivery of acid using the usual method? Also taking into account that drug dealers are paying double this week...

The answer depends on whether or not you have GTA+ as it currently has double money on acid lab sell missions. If you don't have GTA+ then street dealers pay more regardless of premium, but if you do have GTA+ then only sell acid to street dealers if it's on premium.

6 hours ago, FirsU said:

BTW, new Hunting Pack (Get Lamar) Adversary Mode missions don't count towards career progress adversary challenge, for now at least.

It does. It counts as part of the original Hunting Pack adversary mode. The remix version is also part of the original mode.

 

Completing either of them will count as one adversary mode.

 

Spoiler
bool IS_THIS_ROCKSTAR_MISSION_NEW_VS_HuntingPack(int iHash, bool bIncludeStuntingPack, bool bIncludeGetLamarPack)
{
	int iLoop;
	
	if (bIncludeStuntingPack)
	{
		if (G_FMMC_STRUCT.iAdversaryModeType == ciNEWVS_STUNTING_PACK) //Hunting Pack Remix
		{
			return true;
		}
	}
	if (bIncludeGetLamarPack)
	{
		if (IS_THIS_ROCKSTAR_MISSION_NEW_VS_HuntingPack_Get_Lamar(G_FMMC_STRUCT.iAdversaryModeType, 0)) //Hunting Pack (Get Lamar)
		{
			return true;
		}
	}
	if (iHash == 0)
	{
		return false;
	}
	iLoop = 0;
	while (iLoop <= 6)
	{
		if (iHash == g_sMPTunables.iHuntingPack[iLoop]) //Original Hunting Pack
		{
			return true;
		}
		iLoop++;
	}
	return false;
}

 

  • Like 7
MilesFox92
1 hour ago, Tez2 said:

It does. It counts as part of the original Hunting Pack adversary mode. The remix version is also part of the original mode.

 

Completing either of them will count as one adversary mode.

 

  Hide contents
bool IS_THIS_ROCKSTAR_MISSION_NEW_VS_HuntingPack(int iHash, bool bIncludeStuntingPack, bool bIncludeGetLamarPack)
{
	int iLoop;
	
	if (bIncludeStuntingPack)
	{
		if (G_FMMC_STRUCT.iAdversaryModeType == ciNEWVS_STUNTING_PACK) //Hunting Pack Remix
		{
			return true;
		}
	}
	if (bIncludeGetLamarPack)
	{
		if (IS_THIS_ROCKSTAR_MISSION_NEW_VS_HuntingPack_Get_Lamar(G_FMMC_STRUCT.iAdversaryModeType, 0)) //Hunting Pack (Get Lamar)
		{
			return true;
		}
	}
	if (iHash == 0)
	{
		return false;
	}
	iLoop = 0;
	while (iLoop <= 6)
	{
		if (iHash == g_sMPTunables.iHuntingPack[iLoop]) //Original Hunting Pack
		{
			return true;
		}
		iLoop++;
	}
	return false;
}

 

 

They've internally named the remixed Hunting Pack as a "Stunting Pack"? That's some fun and clever wording, now I kinda want it to become an official one

Aragorn71
1 hour ago, JimmysDoubleChin said:

Anyone know the weed value in public lobby?

Good question!

 

I've set it up for the first time, and my three sales (in an invite lobby, far location) have been 449k, 559k and 472k.  The first one was the initial "setup business" runs, the other two were a 75k resupply purchase.

 

..and in each case I am certain the supplies had been fully used up.  Weirdly inconsistent

Clayverlags
4 hours ago, JimmysDoubleChin said:

Anyone know the weed value in public lobby?

Have you tried GTAWeb toolkit? You can also see the High Demand bonus for any number of rival players.

Shall be $1,417,500 with both upgrades, distance sell and at least 20 rival players.

Edited by Clayverlags
  • Like 2
Spider-Vice
3 hours ago, Lexiture said:

Even with 4x the adv mode rewards are ASS 

110-130K for 3-4 rounds with 4 people (what I played personally) is definitely not sh*t for an Adversary Mode 😭 

 

6 hours ago, krotex said:

I'm really surprised Rockstar let us ride it. 👍

I do hope they start teasing things like dripfeed vehicles or otherwise hard to obtain vehicles like this. You can't store it, can't mod it, etc of course, but you can demo it.

  • Like 2

By the way, I hope you appreciate this artistry that Rockstar Games always shows on Newswire. We are talking about the beautiful banners made using the parallax technique.

 

www.rockstargames.com_newswire_article_39288k9a3a5135_smoke-lamar-in-the-new-hunting-pack-remix.thumb.png.65a5824833c8a4d2a4dd25c71490b979.png

www.rockstargames.com_newswire_article_39288k9a3a5135_smoke-lamar-in-the-new-hunting-pack-remix-2.thumb.png.a60691ca71c047b7bd8873091173a586.png

Edited by Filip
  • Like 6
WALEAD99
13 hours ago, maxon1196 said:

@BrightSideOfTheSun here's the lost icon хD

for real man ? i m gonna check this in legacy and enhansed version of GTA V

2 hours ago, Spider-Vice said:

110-130K for 3-4 rounds with 4 people (what I played personally) is definitely not sh*t for an Adversary Mode 😭 

 

I do hope they start teasing things like dripfeed vehicles or otherwise hard to obtain vehicles like this. You can't store it, can't mod it, etc of course, but you can demo it.

they did this after agent of sabotage update you can get coquette d10 cop car and faction cop version for free but you cant mod it just to test it before you buy it

51 minutes ago, Filip said:

By the way, I hope you appreciate this artistry that Rockstar Games always shows on Newswire. We are talking about the beautiful banners made using the parallax technique.

 

www.rockstargames.com_newswire_article_39288k9a3a5135_smoke-lamar-in-the-new-hunting-pack-remix.thumb.png.65a5824833c8a4d2a4dd25c71490b979.png

www.rockstargames.com_newswire_article_39288k9a3a5135_smoke-lamar-in-the-new-hunting-pack-remix-2.thumb.png.a60691ca71c047b7bd8873091173a586.png

rockstar in artwork and music 10/10 that good at least

  • Like 2
maxon1196
9 minutes ago, WALEAD99 said:

for real man ? i m gonna check this in legacy and enhansed version of GTA V

Sure.

Sx4BHmV54d4.thumb.jpg.f09b42514ce9ff1ae5c304fa3a80de37.jpg

  • Like 2
maxon1196
1 minute ago, WALEAD99 said:

ah i see it i dont know if youga custom (the contract ) version or the hunting pack version

 

It's The Contract version, Hunting Pack one has different wheels.

  • Like 2
Grinch of Los Santos
13 hours ago, SqualidCoyote said:

 

Getting a little bit tedious now...

Then I'd start wishing those outfits release soon or else 

Out-of-the-Picture-140.thumb.jpg.cdbfe93dd781879df55e44ace487ec95.jpg

BrightSideOfTheSun

@Tez2 given the current week bonuses, I am curious about an oddity regarding the MC weed business that was also mentioned above by another poster, which is that the same amount of supplies seems to result in a different stock value every time. The other 4 businesses are consistent with their production rates and are documented in the wiki as such (e.g. a full supply bar of cocaine results in 4 units of stock), but for some reason weed always gives an inconsistent amount of stock given the same amount of supplies. Any idea on what is different with this business compared to the rest?

Arrows to Athens

So I've played a couple games of Hunting Pack already. So far, I am not really enjoying it (like with 99% of Adversary modes), but my question is, why are players ramming their own teammates? I literally had an asshole on my team ram into me every time I would pass him. Are these people blind? Or do they get enjoyment out of being an insufferable twat? Oh, and the lag. Don't even get me started on the lag!

Edited by Arrows to Athens
  • Like 2
Mikhail Arrow
1 hour ago, Arrows to Athens said:

So I've played a couple games of Hunting Pack already. So far, I am not really enjoying it (like with 99% of Adversary modes), but my question is, why are players ramming their own teammates? I literally had an asshole on my team ram into me every time I would pass him. Are these people blind? Or do they get enjoyment out of being an insufferable twat? Oh, and the lag. Don't even get me started on the lag!

You're a lucky guy. I can't even start this mode. Most of them are low lvl (1-87), one or two medium lvl (100-250). They join me, then we are in the lobby, where everyone chooses their team. And at that moment they start to leave, WHY DID YOU JOIN, YOU IDIOT, IF YOU JUST LEAVE THE GAME AFTERWARDS? I hate low lvls, God, they're so dumb. The dude was on Lamar's team (i.e., he was supposed to play for him), but thinking that in addition to ballas, he would also stand up to the families, he simply left the game. I was confused and thought, how do we start the game if Lamar has left the lobby and auto-balance is enabled in the game? As a result, the game didn't even start and it was like this every time I tried to create a lobby for the game. On the last attempt, I just freaked out and deleted gta online, because I didn't delete it at first for the sake of this mode.

  • Like 3

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • 0 User Currently Viewing
    0 members, 0 Anonymous, 0 Guests

×
×
  • Create New...

Important Information

By using GTAForums.com, you agree to our Terms of Use and Privacy Policy.