#general

1 messages ยท Page 133 of 1

worldly carbon
#

i do the bare minimum

#

ignore the crash reports i havent been able to fix

twilit scarab
worldly carbon
#

lol

#

thats uh

neon jackal
#

Lmao

worldly carbon
#

not supposed to be like that

twilit scarab
#

great ui

worldly carbon
#

ah

#

that one is not finished

#

the other building types have good ui

#

use the sidebar button to instantly add 2000 draw calls

twilit scarab
#

"good"

worldly carbon
#

see

#

its perfect

#

what could possibly be improved?

twilit scarab
#

lol

#

that's running on PC

#

but what about mobile

worldly carbon
#

let me show

#

its not that bad

#

that said

#

really ought to make that description box fit at least 2 lines

#

probably 3

#

on my device

neon jackal
#

That textbox tho

worldly carbon
#

its still very readable

true lintel
#

Looks very cool

worldly carbon
#

and it even displays the default gui during construction

neon jackal
#

ppl are gonna use their thumbs to scroll that there is no way that will feel comfortable

worldly carbon
#

ill just scale it to be 3 lines

neon jackal
#

Ah then that's alright

night sentinel
#

@worldly carbon could you provide some assistance

worldly carbon
#

look at that intuitive gui

night sentinel
#
    else if(a > 0) {
        for(int c = 1; c <= a; c++)
        {
            if(c <= a/2) {
              b = a % c;
            if(b == 0) {
                cout << "The number is divisible by " << c << "." << endl;
                prime = prime + c;
            }  
            }
            
        }
        
    }
``` will this work properly for division by two
neon jackal
worldly carbon
#

now that i look at it

worldly carbon
#

i wrote that

neon jackal
#

It works

worldly carbon
#

i thought it was funny

worldly carbon
#

aaaaaaa

#

the materials needed box is 1 pixel wider

#

i will punch a child

#

this must have to do with padding

#

ah right

#

hadestia's code

#

i cant decypher these

twilit scarab
#

lol

night sentinel
#
#include <iostream>

using namespace std;

int main()
{
    //variables for calculation
    int a, b;
    int prime = 0;
    //number input
    cout << "Please enter a number." << endl;
    cin >> a;
    //error message if user enters 0
    if(a == 0)
    {
        cout << "Division by 0 is not possible!" << endl;
    }
    //checks if integer is positive, if yes, displays all possible divisors
    else if(a > 0) {
        for(int c = 1; c <= a; c++)
        {
            if(c <= a/2 || c == a) { //division cap
              b = a % c;
            if(b == 0) {
                cout << "The number is divisible by " << c << "." << endl;
                prime = prime + c;
            }
            }
        }
    }
    //same sht but for negative numbers
    else if(a < 0)
        for(int c = -1; c >= a; c--) {
            {
            b = a % c;
            if(c >= a/2 || c == a) { // division cap
                if(b == 0) {
                    cout << "The number is divisible by " << c << "." << endl;
                    prime = prime + c;
            }
            }
        }
        }

    if(prime == a+1 || prime == a-1) { //displays if prime number
        cout << "This number is a prime number!" << endl;
    }
    //input if user wants to enter another number
    string inp;
    cout << "Do you want to enter another number? (Y = yes, any other character = no)" << endl;
    cin >> inp;
    if(inp == "Y" || inp == "y" || inp == "Yes" || inp == "yes") main();
    else return 0;
}
worldly carbon
#

yea can i get a

#
        -- create rows on column2
        local rows = GuiUtils.createLayouts{
            parent = cols[2],
            amount = 2,
            vertical = false,
            sizes = { 0.35, 0.65 },
            contentPadding = {
                0, {2, 0, 2, 2}
            }
        }
        -- output info on row1
        GuiUtils.addLineValue {
            parent = rows[1],
            --output name
            label = resource.name,
            --produce per day
            value = string.format('+%d/day', output.produces),
            alignLabel = { 0.06, 0.7 },
            alignValue = { 0.5, 0.7 },
            color = { 230, 230, 230 }
        }
night sentinel
#

even better code

worldly carbon
#

???????

#

documentation? you wish

#

does hadestia even know what they do?

#

sadly lua annotations do not have a good way to document table arguments

night sentinel
#

is it better to overdocument or underdocument your code

worldly carbon
#

over

#

rather be reading too much than too little

#

that said

#

if its not meaningful, i dont want to see it

#

like

#
--output name
label = resource.name,
#

yea, i know

#

its right there

#

CI does need more documentation

#

tbh

#

been working on that

#

its already a big improvement

#

not that hadestia can take advantage of it with his mobile ide

night sentinel
#
//variables for calculation
    int a, b; //this specific line states that there will be two variables of integer type, a and b, used in the calculation part
    int prime = 0; //this line states that there is a variable titled 'prime', which is of integer type and equals to zero
    //number input
    cout << "Please enter a number." << endl; //outputs text "Please enter a number", inquiring the user to enter the number
    cin >> a; //the user gets to enter the number
    //error message if user enters 0
    if(a == 0) //this if statement, i'm gonna call him billy, says that if variable a, which you enter, equals to zero, something will happen
    { //this is where billy starts
        cout << "Division by 0 is not possible!" << endl; //outputs text "Division by 0 is not possible!", which tells the user that division by 0 is not possible
    } //this is where billy ends
#

erk

#

how's the documentation

worldly carbon
#

its like you asked chatgpt for documentation

night sentinel
#

oh yeah

worldly carbon
#

actually

#

lets get it to document some lua

night sentinel
#

chatgpt explained what the } is for

#

i love this ai

worldly carbon
#

the ai has spoke

#

is has documented ```
function IndustriBuilding.ofType(type)
---@type table<industriBuilding>
local result = {}
for id, building in pairs(IndustriBuilding.buildings) do
if building.type == type then
result[id] = building
end
end
return result
end

#
--- Finds all industriBuilding objects of the given type.
---@param type string @The type of industriBuilding to find.
---@return table<string, industriBuilding> @A table of industriBuilding objects, with their id as the key.
function IndustriBuilding.ofType(type)
    -- Initialize an empty table to store the result
    ---@type table<industriBuilding>
    local result = {}

    -- Iterate over all buildings in IndustriBuilding.buildings
    for id, building in pairs(IndustriBuilding.buildings) do
        -- If the building's type matches the given type, add it to the result table
        if building.type == type then
            result[id] = building
        end
    end

    -- Return the result table
    return result
end
#

honestly

#

not bad

#

-- Return the result table
return result

#

amazing

#

lets see if it can remove redundant comments

#

it simply removed all the comments

#

kinda cool that it understands how to write the annotations

#

i have gotten it to generate the industribuilding class from its annotations alone

#

the fact it understood that disposed buildings should be removed from the buildings table

gritty sand
#

I just saw a restaurant in lusail

#

selling beer

night sentinel
twilit scarab
#

forgot about this game

worldly carbon
#

a classic

unborn panther
#

I made grave mistakes

night sentinel
#

whoa whoa whoa now

shrewd jay
#

Amsterdam looks good

twilit scarab
nimble shoal
#

Canannal time

night sentinel
#

Lubiฤ™ dzieci

nimble shoal
#

๐Ÿคจ

gritty sand
night sentinel
#

๐Ÿ‘

unborn panther
#

Give me your money @night sentinel

night sentinel
gritty sand
#

There's a building in lusail that looks like 2 PS5's lolllllll

unborn panther
#

How?

night sentinel
#

i am poor

#

man nepatinka vaikai

unborn panther
nimble shoal
#

So true.

twilit scarab
#

Nelauลพyk taisykliลณ

unborn panther
#

Lithuania is real estate

twilit scarab
#

Kitaip bus blogai

night sentinel
#

nu gerai

#

i don't really know any active aussies here

unborn panther
#

Not at all why you think that?

nimble shoal
#

No, ask equador about their killing spree of goats.

night sentinel
#

i may or may not have misread the second last wrod

unborn panther
#

I mean

#

This is a cat pfp

night sentinel
#

true

nimble shoal
#

?

full jasper
#

๐Ÿค”๐Ÿค”

unborn panther
#

Why you think this?

nimble shoal
#

when you try your best to understaaaaand

unborn panther
#

This girl in this pfp

#

Is a cat

#

But the picture I don't wanna send rn

worldly carbon
#

i know what i got

nimble shoal
#

Living in Haandersive district.

twilit scarab
unborn panther
#

Maybe

twilit scarab
#

no

unborn panther
#

Hmm

#

I'll dm it instead

twilit scarab
#

do not

#

wasn't asking

nimble shoal
#

me no brain try to not try understand

worldly carbon
unborn panther
#

I can't even send it anyway

twilit scarab
#

good

unborn panther
#

Send something cooler instead

twilit scarab
#

discord explicit filter working wonders

unborn panther
#

Go look buddy

worldly carbon
#

i could tell you the name if i cared

twilit scarab
#

I'll do you one better

worldly carbon
#

if i wasnt rewriting a couple functions

unborn panther
#

Hmm

worldly carbon
unborn panther
#

@worldly carbon wanna eat jezus?

worldly carbon
#

yes

#

gib

unborn panther
#

Alright

#

gibs

#

Nah

nimble shoal
#

Nobody is using Internet explorer ๐Ÿ˜ข

unborn panther
#

It's Belgium

worldly carbon
unborn panther
twilit scarab
unborn panther
#

Nice fix

twilit scarab
#

runs TheoTown just fine

unborn panther
#

Kek

nimble shoal
#

it has nice small jiteery tabs, and a fantastic easteregg.

twilit scarab
#

think Microsoft word still uses IE

full jasper
night sentinel
unborn panther
#

This pfp i have rn

#

It's for one day only

full jasper
#

๐Ÿค”

unborn panther
#

๐Ÿ˜…

nimble shoal
#

๐Ÿคจ

unborn panther
#

Don't mind it

full jasper
#

Yeah no wonder why i have the nickname for you

unborn panther
#

No wonder too

twilit scarab
#

do not be horny

unborn panther
#

I'm not

twilit scarab
#

Do something worthwhile

#

Like make a new JavaScript framework

unborn panther
twilit scarab
#

that's bad influence on others

unborn panther
#

So?

night sentinel
#

ja

unborn panther
#

They think I'm there girlfriend

twilit scarab
night sentinel
#

do you agree with the decision to make 7th graders learn vectors

twilit scarab
#

yes

night sentinel
#

my math teacher doesn't

unborn panther
#

Ja, hallo waar is de pindakaas
Het in de vriesvak
Okay doei gapper

nimble shoal
#

Lists to do in netherlands: 1. Apetrots

twilit scarab
#

I was recently explaining how to do a specific thing in math

#

But then realized they don't know vectors yet

#

i was crippled

night sentinel
#

๐Ÿ‘€

#

i had to teach my class chemistry because they can't chemistry

unborn panther
#

@full jasper now this picture is better

full jasper
#

๐Ÿ‘

nimble shoal
#

"vectors are overrated" ๐Ÿ˜Ž

unborn panther
#

Only my communist catgirl doesn't work on my phone for some reason

twilit scarab
night sentinel
#

eastern european python developer

nimble shoal
#

i bet on the eastern europa one.

worldly carbon
#

remind me to bully kulche about paper factory animations

night sentinel
#

not only the python developer spends 5 hours automating 5 minute tasks, the code takes 5 days to run

nimble shoal
unborn panther
#

It's not

#

Clearly

twilit scarab
nimble shoal
#

See! I was right.

night sentinel
#

minecraft modder

#

is the hottest

unborn panther
#

@twilit scarab which pfp better communist catgirl or murderous catgirl

worldly carbon
#

ok that was too much

unborn panther
#

What

nimble shoal
twilit scarab
worldly carbon
#

perfect

unborn panther
#

No

twilit scarab
#

this man

#

and his RF machines

worldly carbon
#

watch me add a rocket parts chain to it

night sentinel
#

erk

#

how dare you do work

#

that's illegal

worldly carbon
#

youre right, im off the clock

night sentinel
#

working overtime?

#

not on my watch!

twilit scarab
#

what is this noelle main doing ganyu things

unborn panther
#

Is erk even getting paid

twilit scarab
#

in exposure

#

to radioactive cesium

worldly carbon
twilit scarab
#

I am

#

I will now take my leave

unborn panther
#

Hmm

full jasper
#

๐Ÿค”๐Ÿค”

night sentinel
worldly carbon
#

thats enough work for 1 day

#

maybe ill add some functionality

#

one day

night sentinel
#

i've commented on your commit twice

worldly carbon
#

but today is not that day

night sentinel
#

that's like

night sentinel
#

500 times more than the usual work i do for ci

worldly carbon
worldly carbon
#

we need to bully kulche into updating the paper factory's animations

twilit scarab
worldly carbon
#

or i could learn animation dev tool

#

however

#

i choose not

night sentinel
#

@ivory bone i will give you a buzzcut if you do not update the paper factory's animations

night sentinel
worldly carbon
#

@ivory bone what he said

#

ive already written like

#

most of the jsons that are in the plugin rn

#

i even wrote documentation so you guys can figure out how to make CI drafts

#

only for me to be the only person writing them

#

speaking of

#

theres a lot of truck work still to be done

#

but i dont wanna

night sentinel
#

@rough tusk that's like your job

worldly carbon
#

he just draws them

#

but we do require more resource trailers

#

the trucks are pretty modular now

twilit scarab
worldly carbon
#

but theres only like 1 trailer per resource

night sentinel
#

Well then

#

๐Ÿƒ

full jasper
twilit scarab
rotund idol
#

Some kind of plug in?

worldly carbon
#

hey gamers have you heard of complex industry

#

its just this little plugin were working on

worldly carbon
#

weve been shtposting about this for like a year now

twilit scarab
#

lol

rotund idol
#

uhhh of course i know ๐Ÿ‘€

worldly carbon
#

there is a server if youd like access

twilit scarab
#

No self advertising

worldly carbon
#

not my post

twilit scarab
#

it's a punishable offense

#

You're advertising still

#

It's only allowed for staff ||NOT|| to advertise

worldly carbon
#

i didnt do any advertising

twilit scarab
#

you said where to look to join a discord server

worldly carbon
#

just pointed someone to the complex industry plugin by the complex industry team

#

of which i claim no affiliation

twilit scarab
#

pointers are illegal in this side of memory safety

rotund idol
#

Here comes the garbage collector

worldly carbon
#

at least i dont leave them dangling

twilit scarab
#

or so you've thought

shrewd jay
#

Only in dubai ๐Ÿ’€

rotund idol
#

God I love that gif

worldly carbon
#

its good

rotund idol
unborn panther
#

Oop

fluid frigate
candid heart
#

I have no faith in the local governor

oblique sleet
fleet bone
#

How to made tunnel ingame?

shrewd jay
rough tusk
latent wraith
#

@winged kettle the channel isn't dead

#

lmao

winged kettle
#

Wha-?

latent wraith
#

the message history was hidden on purpose

winged kettle
#

ร„ahh

#

I see

latent wraith
gleaming orchid
#

okay

latent wraith
#

So please don't say anything else in there unless it's a roast

fluid frigate
#

meanwhile in the west coast It rarely floods

fluid frigate
#

mfw about:blank

flat forum
latent wraith
#

@tawdry scroll @flat wave what's with all the alts

flat forum
#

Both are tryhard to become alts

#

And idk which one which

#

Even though they have different tag number

latent wraith
#

You should see the list

rough tusk
flat forum
#

Alright now i pretty sure that was something lol

#

There are 5 of them

latent wraith
#

Now I await response

flat forum
#

Do it belkan style

fluid frigate
#

im legit so dumb

#

I was copying theotown files and I deleted theotown in the middle of copying

latent wraith
#

Oh

#

rip

abstract geode
#

right?

fluid frigate
#

I managed to get managed plugins and plugins files only

dense hare
#

@rough tusk
Are you taking the exam?

flat forum
#

Just realize my father send me the picture of my cat get inside the washing machine

flat forum
rough tusk
#

@dense hare

rough tusk
neon jackal
#

Tomorrow I only have 2 relatively ez exams so I was able to sleep a bit

#

And if everything goes fine, I wont have to go to school on Thursday

flat forum
rough tusk
#

Sydney is undebatably one of the cities on earth

left kelp
#

That block

#

The observation tower was in the back and surrounded with tall buildings

iron sand
#

My building I downloaded are not showing up can I get some

#

Tips

flat forum
fluid frigate
thorn forum
#

Hello chat

true lintel
thorn forum
true lintel
#

Hi Bastinade

iron sand
#

I'll ess

thorn forum
#

Or this

rough tusk
#

My mom wore my dog some clothes

iron sand
#

That's the place but then the links are not showing up

rough tusk
#

now it looks like a lizard

iron sand
#

I can't seem to see the buildings to use them

true lintel
#

Because itpf it was from the forum you need to move the files into the plugin folder

iron sand
#

O

true lintel
#

Ptag files

sinful peakBOT
# true lintel Ptag files

TheoTown files are located under such directories:

โ–ช๏ธŽ Windows: C:\Users(insert username)\TheoTown
โ–ช๏ธŽ Linux: /home/$USER/TheoTown
โ–ช๏ธŽ MacOS: /user/TheoTown
โ–ช๏ธŽ Android: /storage/emulated/0/Android/data/info.flowersoft.theotown.theotown/files
By default you should be in /storage/emulated/0/
Reinstalling the game for Android will delete all files, unless you decide to keep the files when prompted by uninstaller.

Alternatively, you can access the files through in-built TheoTown file manager, accessible through the in-game menu.

You can find your plugin, music, region and city files there as well as logs for debugging purposes.

true lintel
#

Follow this and check your plugin folder and see if it is there

fleet bone
#

I put some fence in rear of the road what do you guys think?

iron sand
#

I am on my phone

fluid frigate
# left kelp

revolutionary car ๐Ÿ˜ฑ๐Ÿ˜ฑ๐Ÿ˜ฑ๐Ÿ˜ฑ๐Ÿ˜ฑ

rough tusk
#

anyway happy 50th anniversary of "Dien Bien Phu in the air" victory

fluid frigate
#

banana guy jumpscare

fleet bone
#

Did you just respond a bot?

latent wraith
#

@iron sand can you screenshot the plugin tab?

fleet bone
#

You know bot don't respond your question right?

latent wraith
#

It wasn't much of a question...

#

It quite literally says Fun Fact

fleet bone
#

Yeah miss click

#

My bad

iron sand
latent wraith
#

You have to click download

flat forum
dense hare
latent wraith
#

It's not installed

fleet bone
flat forum
fluid frigate
#

vietnam language

flat forum
fleet bone
#

I know

#

Because im Vietnamese

#

Heinz bean

dense hare
#

ฤแป thi

fleet bone
#

It more like you read ramdon words

iron sand
#

Thanks

latent wraith
#

You're welcome

dense hare
fleet bone
#

Boi im in 2000s

rough tusk
#

B52 and TU95 are probably my favourite bombers

fleet bone
#

What your in

rough tusk
flat forum
fleet bone
flat forum
#

My area would be B-58 hustler and B-1

rough tusk
rough tusk
fleet bone
#

No Mig?

#

What bout Mig 26?

dense hare
flat forum
rough tusk
dense hare
rough tusk
#

Yes

dense hare
rough tusk
#

i think the exam is different for each city and province

fleet bone
rough tusk
dense hare
rough tusk
left kelp
#

That's huge

rough tusk
#

it's huge indeed

fleet bone
#

Nah i suppose to talk about this

left kelp
#

That's support helicopter ?

fleet bone
#

Maybe

dense hare
rough tusk
#

we only had this

#

Mil 6

#

which is now in the museum

left kelp
#

Huge

rough tusk
left kelp
#

However i don't think huge heli could get into battle

rough tusk
rough tusk
#

it wont go into battle

#

it's a transport heli

fleet bone
left kelp
#

Yeah that was very vulnerable on rpg

rough tusk
left kelp
rough tusk
fleet bone
left kelp
#

Uhhh

rough tusk
#

i remember this jet now

fleet bone
#

Back them is was the most advanced thing Soviet Air Froce have

#

Until that accident

rough tusk
#

yep

#
#

i did watch a vid about it

fleet bone
#

Imagine without that accident the jet gonna become the most powerful jet ever esxit

rough tusk
#

it's gonna become the jet that is rumored to be the most powerful jet*

fleet bone
#

Can say US are lucky at some point

rough tusk
#

the accident just finally revealed the west the real power of the mig 25

fleet bone
#

Yeah

rough tusk
#

omfg where's my shader

fleet bone
#

Cool house

rough tusk
#

thhanks

fleet bone
#

Now dig tunnel

rough tusk
#

watcha think of my skin

rough tusk
#

nah dont make that joke lol

gritty sand
#

don't ๐Ÿ˜จ๐Ÿ’€

gritty sand
fluid frigate
#

i find it disrespectful

fluid frigate
latent wraith
#

@fleet bone yeah let's not.

fleet bone
fleet bone
latent wraith
#

Stereotyping won't be tolerated either

fleet bone
spring thorn
fleet bone
lofty pine
#

But don't make a joke of it i hate to see that.

rough tusk
#

lol i wont

#

update

lofty pine
#

Interior?

rough tusk
#

nope havent done

candid heart
candid heart
rough tusk
#

lol

fleet bone
rough tusk
#

chill

candid heart
#

what's wrong with saying 'walla habibi' ??

proud void
#

Huh?

lofty pine
#

I am Muslim myself but i feet some threat will come.

rough tusk
proud void
#

Ah , it's a swering to god

rough tusk
#

just end the topic here

proud void
#

Yep

lofty pine
#

Good

#

Aight time to put several Nuclear Power Plant in my town

candid heart
#

good

fluid frigate
#

very normal

#

polluted air hardcore

lofty pine
#

Now it's under construction and now i need nukes

proud void
#

Ah he'll no

#

Not again

fluid frigate
#

roblox anime hair ๐Ÿ’€๐Ÿ’€๐Ÿ’€๐Ÿ’€๐Ÿ’€๐Ÿ’€๐Ÿ’€๐Ÿ’€๐Ÿ’€

proud void
#

When we start to make highways, we find the grave of a random knight with his horse from hundreds of years

fluid frigate
#

same

#

I will break my finger for the hair

dense hare
#

@rough tusk
My dog

#

She so cute

nimble shoal
#

dog

#

is god ๐Ÿ˜Ž

worldly carbon
#

like the semi trailer with planks

nimble shoal
#

oversized trailers are just carrages for locomotives.

#

taking something wity you in a public or industrial vehchiles is called a cargo, yet taking something with you in a car (private) is called a shipment.

rough tusk
rough tusk
gritty sand
#

So leafs suggestion:

rough tusk
#

I don't get it

gritty sand
#

Shaky shaky building

#

Shaka laka hips don't lie buildings

rough tusk
#

I don't think we need it shaky

#

just make it move down through the ground very fast while adding smoke animations

gritty sand
#

Ah, I misunderstood lol

rough tusk
#

np

grim arch
#

[racist word]

gritty sand
#

[german]

grim arch
#

[racist slur]

#

๐Ÿฅธ

gritty sand
#

[jail]

full jasper
#

[ban]

night sentinel
#

I love racing

left kelp
rough tusk
#

wow

left kelp
winged kettle
flat forum
#

Im in international Airport

rough tusk
#

cant belive duolingo just called me an ะธะดะธะพั‚

true lintel
#

well duolingo is weird

#

yeah, no. That comes off like an insult.

flat forum
#

Lol

#

I think i feel weird when learn Japan does to me

#

I now could read airport sign in Japanese properly

true lintel
#

duo said that the apple speaks Dutch~

compact dragon
rough tusk
#

yes

true lintel
#

ive been trying to skip the whole unit after completing it halfway

#

but duo doesnt make the unit skippping test easy at all

rough tusk
#

lol

true lintel
#

learning direct word translation is easy enough, word order and sentence structure are not tireddisappoint

rough tusk
true lintel
#

nice

#

my houses are never that detailed

#

creative mode?

rough tusk
#

nope survival

true lintel
#

leaf you got a new rank role just now :0

true lintel
rough tusk
rough tusk
true lintel
#

even on survival mode i use cheats xD

junior iron
#

nice house

true lintel
#

i dont think ive ever played a single world without cheats on

rough tusk
rough tusk
#

yo

#

our gas price dropped to 0,84 usd finally

night sentinel
#

Hi leaf

rough tusk
#

hi

night sentinel
#

๐Ÿƒ ๐Ÿ‚ โ˜˜ ๐Ÿ ๐Ÿ€

rough tusk
#

fr

#

๐Ÿƒ to ๐Ÿ to ๐Ÿ‚

#

that should be a life of a leaf

night sentinel
#

From leaf to canada to brown leaf

rough tusk
#

yes

#

canada is part of the leaf's circle of life

night sentinel
#

๐Ÿƒ ๐Ÿ‚ โ˜˜ ๐Ÿ ๐Ÿ€ ๐ŸŒฟ

#

Here is what my phone recommends to put when i type "leaf"

rough tusk
#

intelligent

night sentinel
#

Smart

rough tusk
#

intercontinental

night sentinel
#

Phone ๐Ÿ“ฑ ๐Ÿ“ฒ โ˜Ž๏ธ ๐Ÿ“ž ๐Ÿ“ณ ๐Ÿคณ has the brain ๐Ÿง  ๐Ÿ˜‘ ๐Ÿ‘Œ ๐Ÿ™„ ๐Ÿ˜ ๐Ÿ˜ณ

#

Peak intelligence

rough tusk
#

yes

night sentinel
#

Pure intellect

#

Starmphone

rough tusk
#

star

night sentinel
#

Rate the ground of the bus i'm on

#

It's the articulated part

rough tusk
#

that looks like a plane window

#

are you in an airbus

grim arch
night sentinel
#

Top tier ground

grim arch
#

our microbuses's floors are made out of wood with metal

true lintel
#

hows the snow today?

grim arch
#

๐Ÿ’€

grim arch
night sentinel
true lintel
#

slipperyy

#

dont fall yall

night sentinel
#

Very slippery still

grim arch
#

oh damnnn

night sentinel
#

So far my day's been pretty good though

grim arch
#

-11ยฐc

#

so warm

#

finally

night sentinel
grim arch
#

not the -30

night sentinel
#

2ยฐC here

grim arch
true lintel
night sentinel
#

Yep

night sentinel
true lintel
#

atleast it isnt 38 degrees anymore

night sentinel
#

Feels like -3ยฐC apparently

grim arch
night sentinel
#

But it's 2ยฐC

#

I'm sad because our christmas will most likely not have any snow

true lintel
#

feeels like is usually more accurate

night sentinel
#

Quite ironic because the whole december we've had snow and negative temperatures

#

And now as christmas comes no snow and no negative temperature

grim arch
#

My city probably wouldn't have the winter festival and ice town because of war

true lintel
#

im waiting for that one day we get snow pleaeeeese

night sentinel
#

How's the propaganda ther- actually wait that's political

gritty sand
#

It's 23ยฐ here, it feels freezing rather than hot

grim arch
true lintel
true lintel
night sentinel
#

Nuclear winter is needed

gritty sand
#

Pov: Qatari weather

night sentinel
#

I feel like my heat tolerance is at an all-time low

rough tusk
#

i thought it will be like 30

true lintel
night sentinel
#

I've already had like 2 or 3 heat strokes this year's summer

true lintel
#

but i do love the 0% rain over there. cant even go to school without a raincoat or umbrella?

true lintel
night sentinel
#

Horrid

#

That's the onlt way to describe it

#

I still remember the one time i went kayaking and i got a 2nd degree sunburn

grim arch
#

I like mole tincture ๐Ÿ˜‹

night sentinel
#

Molar tincture

night sentinel
gritty sand
true lintel
#

yikes

naive ice
#

Hi

night sentinel
true lintel
#

our bodies were built for where we live i guess

#

ive been in the sun all day and never got a sunburn in my life

night sentinel
#

After that kayaking experience i've started really liking clouds

true lintel
#

clouds are nice

night sentinel
#

Oh and then my mind was set from "oh, the sun! cool!" to "f-ck the sun (both the celestial body and the news source)"

rough tusk
#

celeste

naive ice
#

I used to think you get sunburned when you go to the beach and take a dip in the water

#

Because salt water

night sentinel
#

Salt ๐Ÿง‚ ๐Ÿš ๐Ÿง‚ ๐Ÿš

gritty sand
#

I thought the red ones were rice

true lintel
#

i mean the sun is nice but clouds are nicer. but clouds are unnice when it starts to rain

gritty sand
#

how dare

night sentinel
#

Why does my phone recommend the rice emoji when i write salt ๐Ÿง‚ ๐Ÿ˜’ ๐Ÿ™ƒ ๐Ÿ˜ ๐Ÿ˜‘ ๐Ÿ™„

true lintel
#

our school uniform is almost entirely white if i get wet its like see through ๐Ÿ˜ญ

night sentinel
#

Our school uniform is dark

#

Which mean during summer

naive ice
#

Unlucky for women

night sentinel
#

AAAAAAAAAAAA

naive ice
#

No spamming.

gritty sand
#

Ocean water is so cold here ๐Ÿ˜ญ๐Ÿ˜ญ

night sentinel
#

It gets uncomfortably hot

true lintel
#

lmao not lucky xD
id rather not wear a school uniform which is see through, plus its a pain when the girls are on their periods

gritty sand
#

pain

true lintel
#

and our skirts man, if they get wet they take forever to dry

night sentinel
#

I'd love a light colored uniform

rough tusk
#

our uniform is white

true lintel
#

but not WHITE

night sentinel
#

Our usual school dress code is normal shoes, jeans and uniform

gritty sand
#

S.E.A White uniform gang wya

true lintel
#

rtobby the uniform we wore from 1-10 sucked

rough tusk
true lintel
#

but its specific as hell

night sentinel
#

You must wear a this and this of that color

#

Do not wear this and this and that color!

rough tusk
#

wow such specific

night sentinel
#

if(wear == bad)
cout >> "bad"

#

Forgot semicolon

naive ice
#

Only rule i know here in my school is no other color shirt, no inappropriate clothing (this is just common sense) and no shorts for men

true lintel
rough tusk
#

our school dress code is white shirt and dark colour trouser

naive ice
#

Same

#
  • school ID
true lintel
#

this was our uniform from grade 1-10. Im not in the photo :3

rough tusk
#

i see

naive ice
#

Wtf all white

true lintel
#

ALL WHITE for girls

gritty sand
#

one green guy

naive ice
#

Even shoes?

gritty sand
#

I'm convinced he's a cactus

true lintel
#

that guy had PE that day

true lintel
gritty sand
#

interesting

naive ice
#

Wtf that's just making it harder to clean

true lintel
#

cant count the number of times i got blood stains on the damn skirt

#

hard to get off too cri

naive ice
#

Is it possible for old scars to open up again, like deep wound scars

rough tusk
true lintel
#

luckily now we have a blue skirt

#

dark blue

rough tusk
#

that must be suck

true lintel
#

but it doesnt dryyyy

naive ice
#

I need to buy a vest someday

#

Not a Combat vest

gritty sand
#

I'd wear sweatshirts in 24ยฐ weather

true lintel
naive ice
#

I'd wear full combat gear in 40ยฐ weather

true lintel
gritty sand
#

dang

rough tusk
#

@gritty sand do yo have uniform

#

imagine not having uniform

#

skill issue

night sentinel
#

@rough tusk i wanna cry

rough tusk
#

nice house in the middle of ice land

night sentinel
#

small hut

fleet bone
night sentinel
fleet bone
#

Speedddddddd

fleet bone
compact dragon
unborn panther
compact dragon
#

Lobbu

junior iron
#

๐Ÿซ˜

compact dragon
#

๐Ÿ‡ณ๐Ÿ‡ฑ

proud void
#

@rough tusk Santa has a new toy

rough tusk
#

nice

flat forum
#

Hello again

#

The airport stuff was pretty sore

#

Smiling JU-87

true lintel
#

thats creepy

rough tusk
#

my first field is done and it's time to plant some wheats

unborn panther
lunar cove
true lintel
#

sato man, ive been getting better with dutch :3

flat forum
rough tusk
#

inter

#

esting

compact dragon
#

I thought your pfp was wide putin walking at first

unborn panther
#

Let's murder someone

flat forum
#

Ilyushin-76 Smile tho

true lintel
unborn panther
#

Alright

unborn panther
#

This ju87 saw some things

true lintel
unborn panther
#

Hmm

#

What is the Deal with live

#

Vandaag is het rood

#

I don't use a translator

#

I just use my keyboard

#

And suggested words

#

Keybone

compact dragon
#

Metam

unborn panther
#

Meton

compact dragon
#

Metal

true lintel
unborn panther
#

Wtf bunny

#

That is so wrong

true lintel
#

xD

unborn panther
#

Vandaag is Today

#

Rood is red

compact dragon
#

I love metal!!

true lintel
#

oh lol

unborn panther
#

So Today it's red

junior iron
#

which eye is better

unborn panther
#

Bunny you really need to use an different app to teach you

#

Become this isn't working

true lintel
#

in my defense i forgot what vandaag was and i havent leant the word for red yet

unborn panther
#

You keep learning about how to call someone a apple

#

Or pear

#

Or orange

spring thorn
#

Pabji mobail

true lintel
junior iron
true lintel
#

ill do better

rough tusk
#

1st looks goofy

worldly carbon
unborn panther
worldly carbon
#

get a better one

spring thorn
#

Kal of daiti mobail

worldly carbon
#

also

#

where light tank

true lintel
gritty sand
#

@compact dragon record yourself saying "vykorystovuvatymemo"

rough tusk
#

ah-hyuck

junior iron
#

i rarely use panther

spring thorn
#

General momen

junior iron
#

because i suck

unborn panther
#

Use a light tank

rough tusk
unborn panther
#

You idiot

gritty sand
worldly carbon
#

ofc you suck

#

your lineup is 2 tiger 2's

#

youre setting yourself up for pain

unborn panther
#

Tiger 2 line up, such a bad suggestion

true lintel
#

that better sato? or even better, "jij bent een kat meisje"

unborn panther
#

Idk bunny girl

true lintel
#

lol

unborn panther
#

I'm just a communist catgirl

worldly carbon
#

it should be supplemented with at least a panther a and the m41

rough tusk
unborn panther
#

And maybe a better plane

true lintel
worldly carbon
#

i dont care about the plane

unborn panther
#

Lol

worldly carbon
#

also i'd tell you to get jagdpanther but its a bit late for that now

#

its not good anymore at 6.7

#

only at 6.3

unborn panther
#

Why isn't there a Ju-87 in there

#

Such better in tank rb

worldly carbon
#

nah

junior iron
#

its slow

unborn panther
#

Shhh erk

#

Why you bringing up the truth

worldly carbon
#

quin you didnt get above 3.3

unborn panther
#

What

#

I got above 4.5

worldly carbon
#

or was it 4.7

unborn panther
#

Yes

worldly carbon
#

ah yes, .5

unborn panther
#

Yes

#

I don't like 6.0 tank rb

#

Rather stay at my beloved

#

Chu-Nu-II

junior iron
#

what

worldly carbon
#

you havent even experienced it my man

unborn panther
#

I know

worldly carbon
#

but you are right

#

theres nothing to be gained higher up

unborn panther
#

As you said to me

worldly carbon
#

except amx50 superbias

unborn panther
#

Above 5.5

#

Is pain

#

So i rather stay low

flat forum
unborn panther
#

I'm getting Better AA however

worldly carbon
#

i doubt you can tell me anything i dont know already

unborn panther
#

Erk knows too much about tanks

flat forum
#

Oh yeah i forget about that

unborn panther
#

My plane BR is 5.0 or 6.0

#

A7m2

#

B7a2

flat forum
#

I just stay in my belkan wizardry for now

unborn panther
#

Oh and i have the Death star unlocked :)

#

The most feared bomber in war Thunder

junior iron
#

ok

unborn panther
#

So feared everyone wants to kill it instantly

#

Hahaha

#

๐Ÿ˜…

#

It has USA camo to troll Sim RB

flat forum
unborn panther
#

But if i do that, My own team and my team NPC's will shoot at me

#

Which is funnier

flat forum
#

And then i again remember the fact that erusea using the Stolen plane against Osea just to troll them

unborn panther
#

It's funny to use the enemy plane against the enemy

#

Only it doesn't work all the time

#

For example Japanese Corsair, it has Japanese imperial Icons

flat forum
#

I mean if you get into the level of detail like erusea did you would not easily to be recognized by the enemy

unborn panther
#

Now wait for ace combat 8

flat forum
#

One of the Most funny covert ops was when the time germany try to turn their panther tank into M10 Wolverine TD

flat forum
unborn panther
#

Germany also gave many of their tanks USA camo to troll them

#

Would be funny if they added it in war painder

#

@worldly carbon did you find it funny they adding ww1 tanks now lol

#

Now ww1 planes

naive ice
#

Not all of there tanks

unborn panther
#

I didn't say All

#

Can't you read?

naive ice
#

There's one incident that a panther was face 2 face with a pershing and thought it was German because it looks strong

unborn panther
#

At the end of the war they gave some the camo to troll

naive ice
#

They didn't see the star roundel because its aimed at them too

#

Yes, like "m10" wolverine

unborn panther
naive ice
#

Or, m10 panther

unborn panther
#

Hm yes

#

Allies with good weapon?

#

Must be german

naive ice
#

Yeah that's what they thought it was

#

Only that incident H to

#

Took battle in cologne iirc

#

All tanks in ww2 are amazing

unborn panther
#

In the closing chapters of the war the German fortress city of Cologne needed to be taken. Ordered to get to the Rhine, Eagle 7 a brand new Pershing tank, went up against the might of the German Panther. Adam Makos wrote the excellent book Spearhead which details the war from the view of the crew of Eagle 7, and it's gunner, Clarence Smoyer. ...

โ–ถ Play video
#

Watch this

naive ice
#

Yeah i watched that

naive ice
#

I love yarnhub

wispy ridge
#

I won't

naive ice
#

Cool animations

proud void
#

@naive ice lets not put war footage here

wispy ridge
#

I used to watch Yarnhub when I used to be a free person

unborn panther
#

Pictures don't tell the story well, that guy does

naive ice
#

What the it's just pictured of a destroyed panther

#

No blood no gore no symbols

proud void
#

It's war footage

#

Rule 10 still applies

wispy ridge
#

Haha

naive ice
#

That was war thunder wth

compact dragon
#

1984

unborn panther
#

War Thunder isn't war footage lol

naive ice
#

Yeah it's a game

compact dragon
flat forum
#

And this was Challenger 2

#

The ammo was cooked inside the tank

naive ice
#

I feel like King has a grudge against me when he deleted war thunder thumbnail

compact dragon
naive ice
#

What is that wiggly thing called

unborn panther
#

When this war footage is allowed

#

But war thunder isn't

#

Hahaha

wispy ridge
unborn panther
#

Now it got deleted

fluid frigate
unborn panther
#

Took you too long innit

worldly carbon
#

controversial

unborn panther
#

Controversial

proud void
#

Just move to a different topic , not war

true lintel
wispy ridge
#

...

naive ice
#

Now that's war footage

flat forum
compact dragon
naive ice
#

I literally just said it was war thunder thunder

flat forum
#

I could not think about it

wispy ridge
#

Stop!

flat forum
#

But it was a plane

wispy ridge
#

Move to another topic

naive ice
#

Plone

true lintel
#

okay yall move onto food

naive ice
#

No

#

Why food

unborn panther
#

No

#

This ain't food

true lintel
#

because food ๐Ÿ˜‹

worldly carbon
#

tonk

unborn panther
#

No

wispy ridge
#

I haven't eaten anyways

compact dragon
naive ice
#

M10 wolverine or m10 panthera