TheoTown Forum Chatbox

Here you can talk about everything you want.
User avatar
CommanderABab
AB
Reactions:
Posts: 11107
Joined: 07 Jun 2016, 21:12
Plugins: Showcase Store
Version: Beta

Plugin Creator

Platform

Re: TheoTown Forum Chatbox

#5051

Post by CommanderABab »

CommanderABab wrote:
20 Dec 2017, 08:36
If you see any more of my plugins or links with telegra.ph in them, let me know by PM. I will change them. Spent all day off and on updating the ones that I could find. Went through my entire show plugins list.

The new domain name for telegraph pages is graph.org. telegra.ph takes you to a phillipino (maybe) domain name reseller now.

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

Plugin Creator

Platform

Re: TheoTown Forum Chatbox

#5052

Post by Ahmad Nur Aizat »

Wow, really?

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

Platform

Re: TheoTown Forum Chatbox

#5053

Post by Lobby »


User avatar
BetterBear
Inhabitant of a Galaxy Cluster
Reactions:
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

#5054

Post by BetterBear »


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

Platform

Re: TheoTown Forum Chatbox

#5055

Post by Lobby »


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

Plugin Creator

Platform

Re: TheoTown Forum Chatbox

#5056

Post by -LeoLeo- »


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

Platform

Re: TheoTown Forum Chatbox

#5057

Post by Lobby »

Let it snow

User avatar
Brody Craft
Inhabitant of a Infinity
Reactions:
Posts: 8034
Joined: 24 Jan 2017, 11:15
Location: SE Asia
Plugins: Showcase Store
Version: Beta

Platform

Re: TheoTown Forum Chatbox

#5058

Post by Brody Craft »


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

Plugin Creator

Platform

Re: TheoTown Forum Chatbox

#5059

Post by -LeoLeo- »

❤οh mγ gοοdηεss❤

I knew it! @Lobby[Posts][PM] is a wizard!!
This has turned into an avalanche. Lol

User avatar
cesareborgia94
Reactions:

Re: TheoTown Forum Chatbox

#5060

Post by cesareborgia94 »

Wow how to do that? Its magical! :shock: :lol:

User avatar
yusuf8a684
Reactions:

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
Reactions:
Posts: 1624
Joined: 08 Jul 2017, 12:46
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
Reactions:
Posts: 3705
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
Reactions:
Posts: 11107
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
Reactions:
Posts: 11107
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
Reactions:
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
Reactions:
Posts: 3705
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
Reactions:
Posts: 3479
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
Reactions:
Posts: 3705
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
Reactions:
Posts: 3479
Joined: 23 Jul 2017, 12:45
Location: Easter Island
Plugins: Showcase Store

Platform

Re: TheoTown Forum Chatbox

#5070

Post by JustAnyone »

Of course... :fire

Post Reply Previous topicNext topic

Return to “Smalltalk”