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,413
best part of the leak so far.
brainDamage.jpg
 
Accuses that those who got unbanned from the subreddit, and made a statement that 50% of them will spam the subreddit again... even though most of them most likely don't give a shit and moved on. Of course, there's no evidence.

I mean to be fair they aren't completely wrong here. r/yandere_simulator has basically devolved into just mindless spam after the hack.
 
  • Like
Reactions: José Mourinho
I mean to be fair they aren't completely wrong here. r/yandere_simulator has basically devolved into just mindless spam after the hack.
Yeah almost like hacking the sub is incredibly boring and the focus should have been on digging through all the emails. Hey @Not Based or Redpilled, you actually going to copy all those emails and post a download source so the autists can dig through for every nugget of retardation or are you gonna keep sitting there, happy with your fifteen minutes of fame and fuck this up for us?
 
Yeah almost like hacking the sub is incredibly boring and the focus should have been on digging through all the emails. Hey @Not Based or Redpilled, you actually going to copy all those emails and post a download source so the autists can dig through for every nugget of retardation or are you gonna keep sitting there, happy with your fifteen minutes of fame and fuck this up for us?
He already fucked up by not using a checkout on the repository. The assets are missing, but at least it is proven that little Alex can't code for shit.
 
What's more likely to happen at this point- Alex trying to get the subreddit back and then throwing a massive tantrum and insulting everyone before leaving or will he go to the other subreddit that he made the first time he had a tantrum?
 
What's more likely to happen at this point- Alex trying to get the subreddit back and then throwing a massive tantrum and insulting everyone before leaving or will he go to the other subreddit that he made the first time he had a tantrum?
I say the former. KotakuInAction subreddit which once got shutdown by its insane owner managed to get reopened without the owner thanks to the help of the admins, so I don't think it'd be difficult for Alex to get help of the admins later to get the subreddit back and clean it up.
 
He already fucked up by not using a checkout on the repository. The assets are missing, but at least it is proven that little Alex can't code for shit.
He is right. GitHub has a strict file size limit of 100mb. To get around that, large files are stored on a different server and only linked in the repo. This is common practice and nothing out of the ordinary.

For example, the file "gym_exterior_texture.bmp" doesnt actually contain an image, but a link to an image.

Content of "gym_exterior_texture.bmp".
Code:
version https://git-lfs.github.com/spec/v1

oid sha256:93769aac478ab2f75494093d6b54d3f642e82adffc3ca44891da1bf28c38e384

size 786488

By not cloning it, all those reference are lost to us. Thus the project is missing most textures, audio and video. They all can be extracted from an actual build, but thats a lot of work.

Next time please secure all data first and then make your activity known.
 
This is phenomenal. I go away for a while and come back to this amazing shitstorm.

I say the former. KotakuInAction subreddit which once got shutdown by its insane owner managed to get reopened without the owner thanks to the help of the admins, so I don't think it'd be difficult for Alex to get help of the admins later to get the subreddit back and clean it up.

Yeah, I think Alex will get the subreddit back sooner rather than later, but this is yet another blow to his psyche. He's a control freak and we've all seen how he can't handle getting made fun of and not being able to control the narrative. This is like the Discord ban speedruns times 10, because unlike the Discord Alex spent 3k on the subreddit to turn it into his hugbox.
 
Is anyone else having trouble downloading the source from Mega? It's going at like 100 bytes per second for me.
 
I say the former. KotakuInAction subreddit which once got shutdown by its insane owner managed to get reopened without the owner thanks to the help of the admins, so I don't think it'd be difficult for Alex to get help of the admins later to get the subreddit back and clean it up.
Well, in any case, he can buy it again.
 
  • Like
Reactions: José Mourinho
Here is an excerpt from the StudentScript.cs. It relates to Osana.

C#:
//Osana
      else if (this.StudentID == 11)
      {
        //Anti-Osana Code
        #if UNITY_EDITOR

        this.SmartPhone.transform.localPosition = new Vector3(-0.0075f, -0.0025f, -0.0075f);
        this.SmartPhone.transform.localEulerAngles = new Vector3(5.0f, -150.0f, 170.0f);
        this.SmartPhone.GetComponent<Renderer>().material.mainTexture = this.OsanaPhoneTexture;

        this.IdleAnim = AnimNames.FemaleTsunIdle;
        this.WalkAnim = AnimNames.FemaleTsunWalk;

        this.TaskAnims[0] = AnimNames.FemaleTask33Line0;
        this.TaskAnims[1] = AnimNames.FemaleTask33Line1;
        this.TaskAnims[2] = AnimNames.FemaleTask33Line2;
        this.TaskAnims[3] = AnimNames.FemaleTask33Line3;
        this.TaskAnims[4] = AnimNames.FemaleTask33Line4;
        this.TaskAnims[5] = AnimNames.FemaleTask33Line5;

        this.LovestruckTarget = 1;
        this.PhotoPatience = 0;

        if (this.StudentManager.Students[10] == null)
        {
          Debug.Log("Raibaru has been killed/arrested/vanished, so Osana's schedule has changed.");

          ScheduleBlock newBlock2 = this.ScheduleBlocks[2];
          newBlock2.destination = "Mourn";
          newBlock2.action = "Mourn";

          ScheduleBlock newBlock7 = this.ScheduleBlocks[7];
          newBlock7.destination = "Mourn";
          newBlock7.action = "Mourn";

          this.IdleAnim = this.BulliedIdleAnim;
          this.WalkAnim = this.BulliedWalkAnim;
        }
        else if (PlayerGlobals.RaibaruLoner)
        {
          Debug.Log("Raibaru has become a loner, so Osana's schedule has changed.");

          ScheduleBlock newBlock2 = this.ScheduleBlocks[2];
          newBlock2.destination = "Patrol";
          newBlock2.action = "Patrol";

          ScheduleBlock newBlock7 = this.ScheduleBlocks[7];
          newBlock7.destination = "Patrol";
          newBlock7.action = "Patrol";

          this.PatrolAnim = "f02_pondering_00";
        }

        this.OriginalWalkAnim = this.WalkAnim;
        #endif

        #if !UNITY_EDITOR
        Destroy(this.gameObject);
        #endif

"#if UNITY_EDITOR" is a compile time macro. It changes the script depending on whether it is compiled for the unity editor or for a standalone build.
Essentially,, from the unity editor point of view, the code looks like this:

C#:
//Osana
      else if (this.StudentID == 11)
      {
        this.SmartPhone.transform.localPosition = new Vector3(-0.0075f, -0.0025f, -0.0075f);
        this.SmartPhone.transform.localEulerAngles = new Vector3(5.0f, -150.0f, 170.0f);
        this.SmartPhone.GetComponent<Renderer>().material.mainTexture = this.OsanaPhoneTexture;

        this.IdleAnim = AnimNames.FemaleTsunIdle;
        this.WalkAnim = AnimNames.FemaleTsunWalk;

        this.TaskAnims[0] = AnimNames.FemaleTask33Line0;
        this.TaskAnims[1] = AnimNames.FemaleTask33Line1;
        this.TaskAnims[2] = AnimNames.FemaleTask33Line2;
        this.TaskAnims[3] = AnimNames.FemaleTask33Line3;
        this.TaskAnims[4] = AnimNames.FemaleTask33Line4;
        this.TaskAnims[5] = AnimNames.FemaleTask33Line5;

        this.LovestruckTarget = 1;
        this.PhotoPatience = 0;

        if (this.StudentManager.Students[10] == null)
        {
          Debug.Log("Raibaru has been killed/arrested/vanished, so Osana's schedule has changed.");

          ScheduleBlock newBlock2 = this.ScheduleBlocks[2];
          newBlock2.destination = "Mourn";
          newBlock2.action = "Mourn";

          ScheduleBlock newBlock7 = this.ScheduleBlocks[7];
          newBlock7.destination = "Mourn";
          newBlock7.action = "Mourn";

          this.IdleAnim = this.BulliedIdleAnim;
          this.WalkAnim = this.BulliedWalkAnim;
        }
        else if (PlayerGlobals.RaibaruLoner)
        {
          Debug.Log("Raibaru has become a loner, so Osana's schedule has changed.");

          ScheduleBlock newBlock2 = this.ScheduleBlocks[2];
          newBlock2.destination = "Patrol";
          newBlock2.action = "Patrol";

          ScheduleBlock newBlock7 = this.ScheduleBlocks[7];
          newBlock7.destination = "Patrol";
          newBlock7.action = "Patrol";

          this.PatrolAnim = "f02_pondering_00";
        }

        this.OriginalWalkAnim = this.WalkAnim;
}

From the release build point of view however, the code looks like this:
C#:
//Osana
      else if (this.StudentID == 11)
      {
Destroy(this.gameObject);
}

This is stuff, you have no way of knowing about, when just looking at the decompiled version of the code. Comments wouldn't be there either.
Interestingly, this hints at a way to get rid of raiberu, by making her into a "loner".

Also dear god, in the name of the Omnissiah, i declare the studentscript to be heretical. A middle finger to all machine spirits.
IT HAS 21768 LINES OF CODE. 21K LINES!!
 
"Everywhere else is full of cringy retards but I assumed the internet TMZ forum _I_ hang out on was the one place full of nothing but alpha chads with 6 packs and 200+ IQ each, like me, of course."

I bet most people here are bigger weirdos than most of the cows, but they just aren't e-famous like a cow. I mean, I'm lowering lotion to the girl I have captive in a pit as I type this.
I just thought people who frequent KF would know enough about what is retarded and cringe/cow-worthy and what happens to those who are to at least keep their retardation under wraps.
 
So Not Based sent me the password but I was not anticipating how autistically bad mail.com is. Anyone have any quick insight into how to backup from this dumpster fire? I think Yandev is trying to retrieve his email, so fast would be good.
 
Back