An article with actual examples instead of an endless string of jargon! Thank you!
Only 300? XD
That game is nothing but grind after like 20 hours.
That makes sense! The list of dark games probably is most helpful to be like “here’s a list of games made to be addictive, what features that we spoke about are present in the games on this list?”
100%, it’s why I’m more pulled towards RTS games these days.
Like to “catch up” and compete in say a card game… you have to spend money. They are not designed for you to catch up on time.
An rts though? I can catch up to most of the folks if I want to.
I mean, games without memory didn’t. Because once you turned off the game, it was all gone. This is more referring to if you have spent $200 on a game, and have like special event stuff in it, you’ll struggle to give it up.
But again, this is all part of bigger pictures. If it has this + grinding + time lock things + micro transactions it’s a problem. Games with just a couple of the features still have a high score of like 3+ and will be good games. Some of the things it asks about are only problems paired with other mechanics, while some categories are by themselves enough to be a problem.
Haha good call out, but yeah I play this way on purpose and jump from freemium game to freemium game. I’ve gotten pretty good at jumping as soon as it feels like money is the only way to make progress, but to be clear I used to not be good at it and have wasted a few hundred dollars on stupid p2w games. I really want to try to stick to these nicer games now that I have a cool website to help me find them.
Oof yeah I sometimes get drawn into idle games. It’s weird to be pulled into those, because just the constant feeling of accomplishing something short circuits my brain, combined with “Oh I should check in on my game once a day, or I’m not accomplishing things”. Usually once I stop playing for a few days I go “oh, why did I care?” But it feels real bad in the mean time.
Someone shared it with me the other day and I fell in love so had to share!
I’m sure it worked for some people, but for me my brain just picked up the super obvious patterns before picking up much spanish.
It really is, and it kills me when there are legit good games under there.
For a few months I played a cool monster catching game where it was like 5v5 style. The amount of cool combos you could do, the emergent game play with that many, each monster having own unique abilities and moves, etc. was so cool! PVP was really good because once you were proper placed, the games were close and often times came down to either a choice in game or realizing a mistake in team building “Why did I only bring one party member that can counter X?? As soon as they got focused down I got rolled by a team built around it!”
But the pve battles would get harder and harder, but the monsters you could catch weren’t getting stronger. So to continue in the main story you had to do events to get new ones, or… that lovely gacha shop. Eventually in the story the ability to catch new monsters was just removed. You could go back to the early parts to catch the old monsters, but there was maybe one in the main story that was any use once you were to where catching was disabled. Oh and evolving the monsters required you to do events which took… energy! Oh also chapter 1 of the story didn’t require energy to play, and had ability to catch monsters… but later on it did require energy.
So it opened with this really cool game where you could catch monsters, the fights were fair based on what you could catch, and overall was a fun time. Then slowly but surely every team member would need to be replaced by Gacha monsters (that could only be leveled up by gathering materials from events), and all the infinite play game modes would run out of content, leaving only the game modes that require energy.
UGH.
Yeah I did the Spanish for months and it was like “You’re so high level!” but I realized as soon as I stepped back that I mostly had just gotten good at playing their games because they were formatted where the answers were generally obvious, to where I felt like just memorizing key words then trying to read children’s books would have been more helpful.
So yeah they for sure use a dozen dark patterns. Making you feel like your account is valuable, making you feel bad for skipping, giving you bonuses for playing on their schedule, and making you feel better at the language than you are.
Oh no! That’s so annoying, maybe can help her quit by finding a better version of the game.
Like stupid match 3/candy crush trash has a million free clones.
They said they’ll expand to steam eventually, but sounds like they wanted to focus on mobile to start because it has biggest player base and most of the dark patterns are industry norms for mobile.
Very much so :( I’ve played some genuinely really fun games in the top list, but the instant you start playing you can feel what they are about.
Like I’ve been playing Warhammer 40k Tacticus. It’s really cool!.. I’ll probably play it for another week or two at most. Every action I take brings up a suggestion for me to buy something. Everything requires energy. There are about 50 different currency types. I get alerts that I’ve completed quests… that I can’t turn in because they are quests only available if you buy the premium Battle pass. Or the ULTIMATE battle pass. Like you unlock a new character and instantly it pops up like “Congrats on your new character, would you like to spend $20 to level them up so they’re not useless?”
It’s fun because I’m still unlocking more story content at a decent clip, but as soon as it’s a day between 20 second lore drops I’ll have to uninstall. Which sucks, because the game play is fun and interesting since it’s modeled after the mechanics of 40k with the customization of a video game.
So yeah, very sad.
I mean I think this site goes with “overly broad so you can pick what you want” approach.
Also the way I’m viewing it, is each individual item is a thread of a dark pattern. Weaved into normal game play it’s completely fine. It’s just when all the threads of a category come together is it a pattern designed to trigger addiction and over spending.
Like competition is listed under a category, but if that’s the only item in the category, it still has a stellar score and rightfully so and isn’t listed as a dark pattern.
Well 1 dark pattern doesn’t ruin their score or make a dark pattern game. Because like games with random loot where every piece is viable and goes for a fun build like a rogue like is wonderful, but it’s a thread of a dark pattern. Alone it’s not scary, and can be fun. Combined with time gates, terribly low drop rates, and pay to skip? Suddenly we have a very nasty dark pattern.
I mean it is a dark pattern. It drives us to play more even when we’re not having fun. How many times have we all done a dungeon 10+ times, not because it’s fun, but because we want it to drop the thing?
But at the same time, if that’s the “only” dark pattern, that’s probably fine! And it’ll most likely get a high score of 3+ on the positive side. But if you combine the random loot with time gate, pay to skip, pay to win, etc. then the score rightfully craters.
I think the site is good because it empowers us to pick what we actually want to deal with.
Yeah over simplifying it a bit, and that’s funny that the stupid thing I found wasn’t even stupid enough.
But was mostly trying to impart that we should be happy for modern languages, because for every line you write in a modern language, it’ll do a dozen things on the back end for you that in assembly you’d need to do by hand.
To send the point home even more, this is how in python you make a line of text display:
print("Hello World")
This is the same thing, in assembly (According to a blog I found. I can’t read this. I am not build better.)
org 0x100 ; .com files always start 256 bytes into the segment
; int 21h is going to want...
mov dx, msg ; the address of or message in dx
mov ah, 9 ; ah=9 - "print string" sub-function
int 0x21 ; call dos services
mov ah, 0x4c ; "terminate program" sub-function
int 0x21 ; call dos services
msg db 'Hello, World!', 0x0d, 0x0a, '$' ; $-terminated message
But python turns that cute little line up top, into that mess at the bottom.
I like python. Python is cute. Anyone can read python.
So would you say my description is accurate? Due to lack of documentation I’m mostly hoping to make sure I’m not completely misunderstanding