Cultcow EvaXephon / Yanderedev / Alex Mahan / Alexander Stuart Mahan / cannotgoogleme - Edgy weeaboo coomer with pedo tendencies and 15+ years internet history as a lolcow, now known as a disaster developer behind eternal debug build called "Yandere Simulator", confirmed groomer and dollfucker

The end of EvaXephon?


  • Total voters
    2,408
Personally I think it is possible to stream game developing in an interesting and educational way. For example: IndieHorrorDev (the guy who made Welcome to the Game). You just need to take a teacher-like role to it.
Alex has streamed himself coding before, that's how we found out that he knows that there are better methods to write his if-else monstrocities, but he refuses to use them, because "I'm just not used to it".

Mutahar from Someordinarygamers will be making a video about the false copyright claim on TheGameSleuth. And oh boy, he didn't like it one bit. He even got a little mad on stream. He said he'll even get the video sponsored to help TheGameSleuth financially if possible.
Is Alex going to strike that too, how do you think?
 
Like, there are over 100 fields that are references to animations, even though you can presumably only be using one animation on any given frame.

Oh boy do I ever have a terrifying revelation for you.

So unity's animator system (and most modern ones I assume) have the ability to interpolate between multiple animations at once based on weights. It's not uncommon for a player charcter's animation rig to have a separate layer dedicated to legs, arms, head and face so all of them can be doing different things. It's basically evaluating a bezier curve to figure out each bone position based on its weight/position in each involved animation. All of this is set up via a nice drag-and-drop state machine editor so you can just feed in a couple variables about how fast the character is moving or whatever you need and it'll swap animations around depending on the rules you've defined without you having to worry about it.

Alex doesn't understand state machines though so instead of doing it as intended he made an animator with every possible animation on it active simultaneously. He then modifies the weights on this abomination manually in studentscript, ie the exact busywork that the animation system is set up to prevent. I'm not sure how many layers the animator has since we don't have the actual file for it but iirc last time I looked at the script there was evidence for at least 20 based on the indexing in his assigments where he was modifying the weights.

That's a 20+ term bezier equation being solved every frame, for every student, for every bone.
 
Alex doesn't understand state machines though so instead of doing it as intended he made an animator with every possible animation on it active simultaneously and just modifies their weights in studentscript, ie the exact busywork that the animation system is set up to prevent. I'm not sure how many layers the animator has but iirc last time I looked at the script there was evidence for at least 20 based on the indexing in his assigments where he was modifying the weights.

That's a 20+ term bezier equation being solved every frame, for every student, for every bone.
i swear i said in here that alex only makes shit harder for himself, and things like this is exactly what i mean. thanks for explaining this though, this is interesting
 
Implying KiwiFarms takes sides.
About that...
Assuming we're running in x86 mode and a pointer is 4 bytes. (Is this true?)
x86 is a family of instruction set architectures (there's a 16-bit ISA, a 32-bit ISA, and 64-bit ISA), but when people talk about x86 nowadays, they're usually referring to the 32-bit ISA. So in that case, pointers would have a width of 4 bytes (32 bits). However, Alex has discontinued the 32-bit version of Yandere Simulator because it kept crashing in more recent builds (32-bit pointers limit you to a 4 GiB address space, and the game now requires more than 4 GiB of addressable memory). So there's not really much of a point in talking about x86 as far as Yandere Simulator is concerned, because it requires a 64-bit ISA like x86-64.
So, how would yanderedev realistically go about fixing this?
Bold of you to assume that Alex can fix anything.
 
Alex has streamed himself coding before, that's how we found out that he knows that there are better methods to write his if-else monstrocities, but he refuses to use them, because "I'm just not used to it".
Yeah, I know about that. But it's just so easy to make a game dev stream entertaining for everyone, yet he finds new excuses to not do the right thing.
Well, it's nothing new, that's just Alex being himself.

Also:
odpo.png

"go completely silent", yeah, like that's going to happen.
 

I don't see how would Alex benefit from making a stream just for him coding. He did admit he's not good at it hence the partnership with Tinybuild to begin with which he won't be confident at coding let alone even streaming about it, and if he were to stream himself doing so, it'd just encourage unfunny :epik: trying to do unfunny speedruns in chat spamming cum chalices trying to get his attention, thus delaying his shit. If he turned chat off it would destroy the whole purpose of streaming yourself coding. If I were him and if I were to prove I was working daily to give a better image, what I'd do is making short daily progress reports in a form of tweets, preferably with a screenshot or video.

Mutahar from Someordinarygamers will be making a video about the false copyright claim on TheGameSleuth. And oh boy, he didn't like it one bit. He even got a little mad on stream. He said he'll even get the video sponsored to help TheGameSleuth financially if possible.
Although I personally wouldn't call TheGameSleuth to be innocent (A Google Doc showing the shit he has done, archive), he doesn't deserve to get copyright striked, and I'm surprised Alex has escalated to the point of back to doing copyright strikes to any videos making fun of him. Surprised he hasn't tried doing so on videos that get millions of views, but perhaps likely doing so would just get him to get called out further, which even then trying to copyright strike videos with less views would still backfire as well as being more scummy.

That being said, even SidAlpha is jumping on it too:




1595595298268.png
1595595310250.png
 
He never actually went silent on youtube, he's telling that to his kids audience to not expose them to the BITC crossovers and cringy vids he uploads.
As someone pointed out a while ago he added nemesis to that game.
oh, so thats where that science saki clip came from.
its for another stupid porn crossover.
man, this is just sad at this point
 
"I decided to 'ban' myself from YouTube"
>Takes down TheGameSleuth's video.
😂

"The No Man's Sky strategy"
Glad to see you don't suddenly hate Bijuu Mike. 🤔
But on a serious note, Alex, you're no Sean Murray.
 
  • Like
Reactions: José Mourinho
Yeah, I know about that. But it's just so easy to make a game dev stream entertaining for everyone, yet he finds new excuses to not do the right thing.
Well, it's nothing new, that's just Alex being himself.

Also:
View attachment 1470169
"go completely silent", yeah, like that's going to happen.
The "No Man Sky strategy" revolved around compiling the major complaints about the game and improve it based around that criticism while staying silent on social media since the constant promises were one of the main reasons why the game was hated and disapointing on release.
Yandere Dev is not only completely ignoring criticism but he is also going out of his way to censor and ban people who criticize his game.
 
This is what the LL discord sends to you after banning you. For some reason the breasts are larger than her head?
View attachment 1470261
The admins were even more autistic than I thought.
Also, an anime girl's titties being larger than her head is kinda normal for anime at this point.
 
Alex has streamed himself coding before, that's how we found out that he knows that there are better methods to write his if-else monstrocities, but he refuses to use them, because "I'm just not used to it".


Is Alex going to strike that too, how do you think?
He'd be in a bigger shitshow if he attempts to copystrike a large YouTube channel like Muta. Muta would make a statement for the false claim and his cumface would be on Scarce's news if that shit happens.

This is what the LL discord sends to you after banning you. For some reason the breasts are larger than her head?
View attachment 1470261
That is some big retarded ass shit I saw. Why's her tits huge? This shit ain't hentai. Bow-chan needs to be that pretty fashionable girl at school. They probably on drugs when they made this shit.
 
It's strange that Alex was essentially a self admitted incel, because he wasn't bad looking when he was 20. He could have gotten a cute girlfriend if he had more confidence.

I'm the same way. I remember how self loathing and insecure I was when I was 19, but now I'm shocked how handsome I actually was.
To be fair, he isn't even that bad looking right now even. That one popular picture of him right now with the Ao Oni comparison suffers from shitty lighting, but if you see his face anywhere else, he just looks like a normal 30 year old. He would probably look even better if he bothered to actually exercise, get good sleep, and stop living such a stressful life.
Of course, his life is stressful because he isn't programming Yandere Simulator, and he is going to continue being stressed as long as he keeps up the deception and doesn't finish his game, which at this point is indefinitely.
majority of incels are completely average looking dudes, just like majority of normies.
that's where stuff like personality, social skills, grooming, fashion, etc, become important.

alex wouldn't be a sexless loser only if he was a completely different person. but alas
Ngl personally I would choose a broke but handsome mother fucker than a fugly millionaire
handsome millionaires only for this gal
 
This is what the LL discord sends to you after banning you. For some reason the breasts are larger than her head?
View attachment 1470261
If they ever want to pretend they're professional in the future, this just might come back to haunt them.

2030 pages later, I'm glad I'm doing my own shit that isn't Yan-Chan & The After-School Stabby Girls Clan.
 
This is what the LL discord sends to you after banning you. For some reason the breasts are larger than her head?

They're working on making a game, but they still have time to make a 30-second animation and a dance and a music track?
Also, why the fuck would they send that, when they could instead avoid telling people they were banned?
:autism:
 
its not their music (i think its from persona or some shit, but the music and dance is a meme so i know they didnt make the music)
P4D specialist remix. The autistic admin ruining a decent and sometimes good meme from persona community. Seriously put the effort for your own game not for a ban message at discord
Edit:
Now,I believe Love letter discord mod can be the same level autistic with Yandev discord mod
 
Back