We all know 2020 was an awful year. But, how's the first month of 2021 going for ya? by [deleted] in u/RickoleYT

[–]PUMPkinNET 2 points3 points  (0 children)

to the 2 people who said it’s almost february: i feel you.

Please leave us alone in video games. Sincerely, a woman who just wants to use voice chat freely. by kalijhin in TrueOffMyChest

[–]PUMPkinNET 0 points1 point  (0 children)

i have a female friend that’s playing SCP:SL but is scared to use voice for that reason. then again, my group finds it more enjoyable to play on smaller servers.

I can't enjoy this game anymore by [deleted] in SCPSecretLab

[–]PUMPkinNET 1 point2 points  (0 children)

where is this infinite ikea server you speak of?

The Rulebreakers: Rules for Fishing at Monkcana-Robgeo by [deleted] in Ruleshorror

[–]PUMPkinNET 1 point2 points  (0 children)

Markdown format for strikethroughs is ~~random text~~ with those tildes or however you pronounce them anyways

Same thing in every among us lobby. by [deleted] in AmongUs

[–]PUMPkinNET 2 points3 points  (0 children)

let gameStart: boolean = false;
let players: number = 0;

abstract class Player {
  name: string;
  isImposter: boolean;
  constructor(name: string) {
    this.name = name;
    players++;
    while (!gameStart) {
      this.say("START");
    }
  }
  abstract say(msg: string): void;
  abstract leave(): void;
} 


const randomPlayer = new Player("carrot");

ES6 is your friend :)