HaHaHa ! Bazaar go brrrrrrrr

2 instances of camping kit in same item group, lol, They REALLY want you to buy it.

7 Likes

Not Funcom’s finest moment. I’d guess one might be swapped out when the daily bazaar items are rotated

1 Like

The quality we have come to expect.

Keep that image next time there is a suggestion thread to add a full catalogue rather than a needlessly limited selection page.

Ayesh, at least pretend you want money…

7 Likes

Is it the camping kit they REALLY want you to buy , or is it the stone bench within it ? :thonk: :speak_no_evil: :hear_no_evil: :see_no_evil:

4 Likes

They have so many left, because too few bought it for the price of two DLC’s.
Their cloud must be full of it, and they have to sell it out, to make space for new items…

Edit: Typo

4 Likes

Thank you for bringing this to our attention.
I’ve passed this over to the rest of the team and they are currently looking into it.

Has any of those broken items been fixed or are they still selling them broken?

4 Likes

Still + still more priced then actual game for some regions xD

3 Likes

Here is a very basic example C# code snippet for Funcom to avoid double items in a list or dictionary:

var bazaarItems = new Dictionary<int, BazaarItem>();

while(bazaarItems.Count < 7)
{
	var nextBazaarItem = await GetRandomItem(); // Make sure this returns more than 7 unique items. You might want to implement another loop condition to avoid endless loop

	var bazaarItemHash = nextBazaarItem.GetHash();
	if(!bazaarItems.ContainsKey(bazaarItemHash))
	{
		bazaarItems.Add(bazaarItemHash, nextBazaarItem);
	}
}
3 Likes

it would be funny if there was a price difference between the offers

8 Likes

If AI took over and that’s the result…
that would be scary.

AI can’t figure out how many fingers people have. Not worried yet.

1 Like

Theres a problem with your code. Im not a C# programmer but you most likely meant to Add() your item to the bazaarItems dictionary instead of to some random non declared hashList. So your code would likely result in an endless loop as bazaarItems.Count would remain at 0 forever.

On the upside, you’d fit right in at Funcom, congratulations your hired!

1 Like

Tbh, when I read the title https://m.youtube.com/watch?v=NvIJvPj_pjE

1 Like

To my dying day, I will never forget the day I experienced an SU-25 air strike as a young private on a military exercise, which is basically the Eastern equivalent of the A-10.
The first strike was 2x SU-25 3x Hind , 100 missiles each but then the guns came in and the “ripping blanket” sound was pretty similar to the A-10 in the video.

2 Likes

Czech/Slovak army by any chance?

GSh-30-2 dual barrel auto cannon, a couple of secondary gun pods and a whole lot of rockets for the Frogfoot if memory serves me.

Czech , as a conscript in 98/99

Yes, we call it a “rake”

2 Likes

The code won’t compile. I renamed the variable from “hashList” to “bazaarItems” and forgot to rename the last 2 occurences. This happens when you write code out of your head in a forum text editor and don’t put much effort into it, because this company does not deserve it.

The message of the post is still the same though.

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.