TheoTown Forum Chatbox

Here you can talk about everything you want.
User avatar
yusuf8a684

Re: TheoTown Forum Chatbox

#5061

Post by yusuf8a684 »

[*]İ CANT :fire READ AND İTS MAKİNG :fire LAG FOR MY PHONE

User avatar
-LeoLeo-
Inhabitant of a Solar System
Posts: 1624
Joined: 08 Jul 2017, 12:46
Location: Usa
Plugins: Showcase Store
Version: Beta
Contact:

Plugin Creator

Platform

Re: TheoTown Forum Chatbox

#5062

Post by -LeoLeo- »

yusuf8a684 wrote:
20 Dec 2017, 19:23
[*]İ CANT :fire READ AND İTS MAKİNG :fire LAG FOR MY PHONE
My apologies.

:D :lol:

User avatar
Lobby
Developer
Posts: 3719
Joined: 26 Oct 2008, 12:34
Plugins: Showcase Store
Version: Beta

Platform

Re: TheoTown Forum Chatbox

#5063

Post by Lobby »

No more stacking :bb

User avatar
CommanderABab
AB
Posts: 11245
Joined: 07 Jun 2016, 21:12
Plugins: Showcase Store
Version: Beta

Plugin Creator

Platform

Re: TheoTown Forum Chatbox

#5064

Post by CommanderABab »

Hi everyone!

User avatar
CommanderABab
AB
Posts: 11245
Joined: 07 Jun 2016, 21:12
Plugins: Showcase Store
Version: Beta

Plugin Creator

Platform

Re: TheoTown Forum Chatbox

#5065

Post by CommanderABab »

Ok! I removed snow from my signature. Really slowed the phone down!

User avatar
Ahmad Nur Aizat
TheoTown Veteran
Posts: 8260
Joined: 25 Oct 2016, 15:20
Location: Johor Bahru
Plugins: Showcase Store
Version: Beta
Contact:

Plugin Creator

Platform

Re: TheoTown Forum Chatbox

#5066

Post by Ahmad Nur Aizat »

It's chilling in the forum

User avatar
Lobby
Developer
Posts: 3719
Joined: 26 Oct 2008, 12:34
Plugins: Showcase Store
Version: Beta

Platform

Re: TheoTown Forum Chatbox

#5067

Post by Lobby »

Have some magic (JavaScript):

Code: Select all

let c=document.getElementById("mysnowcanvas");
c.width=c.clientWidth;
c.height=c.clientHeight;
let width = c.width;
let height = c.height;

class Flake {
  constructor(x,y,r) {
    this.x=x;
    this.y=y;
    this.r=r;
    this.speedx=0.2*Math.random();
    this.speedy=0.5*Math.random()+1;
  }
  update() {
    this.x+=this.speedx;
    this.y+=this.speedy;
    if (this.x>width+this.r) this.x=-this.r;
    if (this.y>height+this.r) this.y=-this.r;
  }
  draw(ctx) {
    ctx.beginPath();
    ctx.arc(this.x,this.y,this.r,0,2*Math.PI);
    ctx.fillStyle='rgba(255,255,255,0.8)';
    ctx.fill();
  }
}

let flakes = [];
for (let i = 0; i < Math.min(width*height/2000,200); i++) {
  let r = Math.random()*20+10;
  flakes.push(new Flake(Math.random()*(width+2*r)-r,Math.random()*(height+2*r)-r,r));
}

function animate() {
  requestAnimationFrame(animate);

  var ctx=c.getContext("2d");
  ctx.clearRect(0,0,c.width,c.height);


  for(let flake of flakes) {
    flake.update();
    flake.draw(ctx);
  }
}

animate();

User avatar
JustAnyone
Developer
Posts: 3582
Joined: 23 Jul 2017, 12:45
Location: Easter Island
Plugins: Showcase Store

Platform

Re: TheoTown Forum Chatbox

#5068

Post by JustAnyone »

Looks like people think that I am the developer of TheoTown in discord.

User avatar
Lobby
Developer
Posts: 3719
Joined: 26 Oct 2008, 12:34
Plugins: Showcase Store
Version: Beta

Platform

Re: TheoTown Forum Chatbox

#5069

Post by Lobby »

That means less work for me :space

User avatar
JustAnyone
Developer
Posts: 3582
Joined: 23 Jul 2017, 12:45
Location: Easter Island
Plugins: Showcase Store

Platform

Re: TheoTown Forum Chatbox

#5070

Post by JustAnyone »

Of course... :fire

User avatar
JustAnyone
Developer
Posts: 3582
Joined: 23 Jul 2017, 12:45
Location: Easter Island
Plugins: Showcase Store

Platform

Re: TheoTown Forum Chatbox

#5071

Post by JustAnyone »

OMg im so stupud.
"id"$terrorbomb"
instead of
"id"$tarrorbomb"

User avatar
JustAnyone
Developer
Posts: 3582
Joined: 23 Jul 2017, 12:45
Location: Easter Island
Plugins: Showcase Store

Platform

Re: TheoTown Forum Chatbox

#5072

Post by JustAnyone »

Can I become "Developer" on April 1st?

User avatar
-LeoLeo-
Inhabitant of a Solar System
Posts: 1624
Joined: 08 Jul 2017, 12:46
Location: Usa
Plugins: Showcase Store
Version: Beta
Contact:

Plugin Creator

Platform

Re: TheoTown Forum Chatbox

#5073

Post by -LeoLeo- »

former member wrote:
20 Dec 2017, 20:23
While on YouTube and Google+, everyone thinks Kingtut is a developer.
i once thought the same. haha

User avatar
JustAnyone
Developer
Posts: 3582
Joined: 23 Jul 2017, 12:45
Location: Easter Island
Plugins: Showcase Store

Platform

Re: TheoTown Forum Chatbox

#5074

Post by JustAnyone »

@Josh you may want to change your role on discord. (Remove yourself from moderator)

User avatar
malsa
Inhabitant of a Multiverse
Posts: 5085
Joined: 10 Feb 2017, 17:40
Location: Malaysia
Plugins: Showcase Store
Version: Beta

Platform

Re: TheoTown Forum Chatbox

#5075

Post by malsa »

Ahhh just remember the old day
JustAnyone,Leo and Fennekin didn't know who am i in old day
I was a bowling guy but now I am manglish guy btw
"Let's go bowling"

User avatar
malsa
Inhabitant of a Multiverse
Posts: 5085
Joined: 10 Feb 2017, 17:40
Location: Malaysia
Plugins: Showcase Store
Version: Beta

Platform

Re: TheoTown Forum Chatbox

#5076

Post by malsa »

What happen in Dec 19

User avatar
Ahmad Nur Aizat
TheoTown Veteran
Posts: 8260
Joined: 25 Oct 2016, 15:20
Location: Johor Bahru
Plugins: Showcase Store
Version: Beta
Contact:

Plugin Creator

Platform

Re: TheoTown Forum Chatbox

#5077

Post by Ahmad Nur Aizat »

@Fireout I added toilets in TT

Just like Jeb adding toilets in Minecraft

User avatar
BetterBear
Inhabitant of a Galaxy Cluster
Posts: 2896
Joined: 18 Apr 2017, 09:03
Location: In a place you don't expect.
Plugins: Showcase Store
Version: Beta

Platform

Re: TheoTown Forum Chatbox

#5078

Post by BetterBear »

@Matison
Would have freaked out if that happened to me. That's scary!

User avatar
Ahmad Nur Aizat
TheoTown Veteran
Posts: 8260
Joined: 25 Oct 2016, 15:20
Location: Johor Bahru
Plugins: Showcase Store
Version: Beta
Contact:

Plugin Creator

Platform

Re: TheoTown Forum Chatbox

#5079

Post by Ahmad Nur Aizat »

If I get error message like that, I could only imagine of me taking LSD

User avatar
BetterBear
Inhabitant of a Galaxy Cluster
Posts: 2896
Joined: 18 Apr 2017, 09:03
Location: In a place you don't expect.
Plugins: Showcase Store
Version: Beta

Platform

Re: TheoTown Forum Chatbox

#5080

Post by BetterBear »

Me be like:
Note: This is downloaded from an online source, in other words, I do not own this at all. This is Lore from the upcoming HeartBound game. This is his surprised sprite.
Note: This is downloaded from an online source, in other words, I do not own this at all. This is Lore from the upcoming HeartBound game. This is his surprised sprite.
Lore_surprised.gif (8.3 KiB) Viewed 4116 times

Post Reply Previous topicNext topic

Return to “Smalltalk”