#off-topic

1 messages · Page 86 of 1

native elm
#

Doesnt matter

#

Im actually new into coding and trying my best

#

Actually a bash running on linux via .sh script in the backround of the system which check the time stamp would be enough i guess?

#

What do you think?

twin dune
#

^

native elm
#

Not yet?

twin dune
#

Interesting.

native elm
#

Well, we are recoding the most plugins with allownes into folia

#

And code ourself folia plugins

#

But with other stuff i dont really have to do yet

twin dune
#

Anyway, Pterodactyl is basically a free server management panel that you access via a nice Web UI.
https://pterodactyl.io/

#

Along with it super useful for sharing server access, it also has a backup system that you can also create schedules to trigger.

native elm
#

Oh well no thanks! We are using a few dedicated servers and working with ftp and file transfer between them

#

Dont need some extra software!

#

Thought it was a programm that handle this ^^

frank pasture
#

Just make you lock everything down correctly

twin dune
# native elm Oh well no thanks! We are using a few dedicated servers and working with ftp and...

You can link multiple dedicated servers together with it, anyway here is my bash script:

#!/bin/bash

# Source folder containing the files to be zipped
source_folder="FROM_FOLDER"

# Destination folder where the zip file will be placed
destination_folder="TO_FOLDER"

# Timestamp for the zip file name
timestamp=$(date +"%Y%m%d%H%M%S")

# Zip file name
zip_file="archive-$timestamp.tar.gz"

# Change directory to the source folder
cd "$source_folder" || exit

# Zip all files in the source folder
tar -czvf "$destination_folder/$zip_file" .

echo "Files zipped successfully to $destination_folder/$zip_file"

# Check if there are three archive files and delete the oldest one if necessary
if [ $(ls -1 "$destination_folder" | grep -c "^archive-.*\.tar\.gz$") -ge 4 ]; then
    oldest_file=$(ls -1t "$destination_folder" | grep "^archive-.*\.tar\.gz$" | tail -1)
    rm "$destination_folder/$oldest_file"
    echo "Deleted oldest file: $destination_folder/$oldest_file"
fi
#

I have this on a cronjob to trigger nightly.

#

It stores 3 backups then deletes the oldest when a new one is made.

native elm
#

Interesting

#

I will test this on our test network later

#

Currently wating for someone!

#

I had this one by chatgpt, does this seem correct to you?

#

One sec

#

Minecraft Plugin (Java)

Das Minecraft-Plugin ermöglicht es Spielern, über den Befehl /backup *WELTENNAME* *WUNSCHUHRZEIT* ein Backup zu planen oder sofort auszulösen.

package com.example.backupplugin;

import org.bukkit.Bukkit;
import org.bukkit.World;
import org.bukkit.command.Command;
import org.bukkit.command.CommandSender;
import org.bukkit.entity.Player;
import org.bukkit.plugin.java.JavaPlugin;

import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.text.DateFormat;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;

public class BackupPlugin extends JavaPlugin {

    private static final DateFormat TIME_FORMAT = new SimpleDateFormat("HH:mm");

    private static final String TRIGGER_FILE_PATH = "/path/to/trigger/backup-now";

    @Override
    public void onEnable() {
        // Plugin startup logic
    }

    @Override
    public void onDisable() {
        // Plugin shutdown logic
    }

    @Override
    public boolean onCommand(CommandSender sender, Command command, String label, String[] args) {
        if (command.getName().equalsIgnoreCase("backup")) {
            if (args.length < 1) {
                sender.sendMessage("Usage: /backup <worldname> [<time|jetzt>]");
                return false;
            }

            String worldName = args[0];
            String time = args.length > 1 ? args[1] : null;

            if (!(sender instanceof Player)) {
                sender.sendMessage("This command can only be executed by a player.");
                return false;
            }

            Player player = (Player) sender;
            if (!player.hasPermission("backup.use")) {
                player.sendMessage("You do not have permission to use this command.");
                return false;
            }

            World world = Bukkit.getWorld(worldName);
            if (world == null) {
                player.sendMessage("World \"" + worldName + "\" not found.");
                return false;
            }

            if (time == null || time.equalsIgnoreCase("jetzt")) {
                createBackup(world);
                player.sendMessage("Backup of world \"" + worldName + "\" created.");
            } else {
                try {
                    Date scheduledTime = TIME_FORMAT.parse(time);
                    scheduleBackup(world, scheduledTime);
                    player.sendMessage("Backup of world \"" + worldName + "\" scheduled for " + TIME_FORMAT.format(scheduledTime) + ".");
                } catch (ParseException e) {
                    player.sendMessage("Invalid time format. Use 'jetzt' or 'HH:mm'.");
                    return false;
                }
            }

            return true;
        }
        return false;
    }

    private void createBackup(World world) {
        // Logik zum Erstellen eines Backups für die übergebene Welt
        // Hier könnte Code stehen, um das Backup zu erstellen oder ein externes Script zu triggern
        writeTriggerFile(world.getName(), "jetzt");
    }

    private void scheduleBackup(World world, Date scheduledTime) {
        // Logik zum Planen eines Backups für die übergebene Welt zu einer bestimmten Uhrzeit
        // Hier könnte Code stehen, um das Backup zu einem späteren Zeitpunkt auszuführen
        writeTriggerFile(world.getName(), TIME_FORMAT.format(scheduledTime));
    }

    private void writeTriggerFile(String worldName, String time) {
        File triggerFile = new File(TRIGGER_FILE_PATH);
        try (FileWriter writer = new FileWriter(triggerFile, true)) {
            writer.write(worldName + " " + time + System.lineSeparator());
            getLogger().info("Trigger file entry created successfully for world: " + worldName + " at " + time);
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}
#

A plugin that hooks into the skript

#

Shell-Skript (backup.sh)

Das Shell-Skript liest die Einträge aus der Trigger-Datei und führt entsprechend Backups aus, einschließlich der Möglichkeit, auf andere Server im Netzwerk zuzugreifen.

#!/bin/bash

# Basisverzeichnis der Minecraft-Welten auf dem aktuellen Server
LOCAL_WORLD_DIR="/path/to/local/minecraft/worlds"

# Basisverzeichnis der Minecraft-Welten auf anderen Servern im Netzwerk
REMOTE_WORLD_DIR="/path/to/remote/minecraft/worlds"

# Zielverzeichnis für die Backups
BACKUP_DIR="/path/to/backup"

# Dateiindikator für sofortiges Backup und Weltenname
TRIGGER_FILE="/path/to/trigger/backup-now"

# Anzahl der zu behaltenden Backups pro Quellordner
NUM_BACKUPS=3

# Funktion zum Erstellen und Verwalten von Backups
create_backup() {
    SOURCE_NAME="$1"
    SOURCE_DIR="$2"
    TIMESTAMP=$(date +%d-%m-%y_%H-%M)
    BACKUP_NAME="${SOURCE_NAME}_${TIMESTAMP}.zip"
    BACKUP_PATH="$BACKUP_DIR/$BACKUP_NAME"

    # Backup erstellen und komprimieren
    zip -r "$BACKUP_PATH" "$SOURCE_DIR"

    # Alte Backups löschen, sodass nur die neuesten NUM_BACKUPS Backups behalten werden
    BACKUPS=($(ls -dt $BACKUP_DIR/${SOURCE_NAME}_*.zip))
    if [ ${#BACKUPS[@]} -gt $NUM_BACKUPS ]; then
        for ((j=$NUM_BACKUPS; j<${#BACKUPS[@]}; j++)); do
            rm -f "${BACKUPS[$j]}"
        done
    fi
}

# Endlos-Schleife, die das Skript im Hintergrund laufen lässt
while true; do
    CURRENT_TIME=$(date +%H:%M)

    # Prüfen, ob es 11:00 Uhr oder 23:00 Uhr ist
    if [ "$CURRENT_TIME" == "11:00" ] || [ "$CURRENT_TIME" == "23:00" ]; then
        while IFS= read -r line; do
            WORLD_NAME=$(echo "$line" | cut -d' ' -f1)
            SCHEDULED_TIME=$(echo "$line" | cut -d' ' -f2)
            
            if [ "$SCHEDULED_TIME" == "jetzt" ] || [ "$CURRENT_TIME" == "$SCHEDULED_TIME" ]; then
                if [ -d "$LOCAL_WORLD_DIR/$WORLD_NAME" ]; then
                    create_backup "$WORLD_NAME" "$LOCAL_WORLD_DIR/$WORLD_NAME"
                elif [ -d "$REMOTE_WORLD_DIR/$WORLD_NAME" ]; then
                    # Beispiel: Hier könnte Code stehen, um das Backup von einem Remote-Server abzurufen
                    # ssh user@remote-server "sh /path/to/remote/backup_script.sh $WORLD_NAME"
                    echo "Backup von Remote-Server noch nicht unterstützt."
                else
                    echo "Welt \"$WORLD_NAME\" nicht gefunden."
                fi
            fi
        done < "$TRIGGER_FILE"
        
        # Nach dem Verarbeiten das Trigger-File leeren
        > "$TRIGGER_FILE"
    fi

    sleep 1  # Überprüfe jede Sekunde die Uhrzeit und den Dateiindikator
done
#

Well a few things are in german, sorry for that!

#

If it needed, i can translate it into english

twin dune
#

I would just try it on a test server and see.

native elm
#

I wanted a diffrent skript off the servers and a plugin that hooks into the skript so i can do ingame command

#

It works like creating a file to let the skript know that it should take now a backup

#

Well, i would love if you have 15min for me and we can do that together on the network via screenshare if you are fine with that. Alone, i almost oversee problems.

#

Well, if you have time

#

Like in 30mins?

blazing oar
#

java is not Skript, chatgpt might work with Skript, but bukkit it most of the time won't.

#

AI is there to assist, not give solutions.

native elm
#

i know, but till now it helped me to understand problems so far.

#

#!/bin/bash

Konfigurationsparameter

SOURCE_DIRECTORIES=("path/to/world1" "path/to/world2" "path/to/world3")
BACKUP_PATH="/path/to/backup/"
REMOTE_USER="username"
REMOTE_IP="192.168.1.100"
REMOTE_DIR="/path/to/remote/backup/"
MAX_BACKUPS=4

Aktuelles Datum und Uhrzeit

CURRENT_DATE=$(date +%d-%m-%y)
CURRENT_TIME=$(date +%H-%M)

Backup und Upload Funktion

backup_and_upload() {
local folder_name=$1
local folder_path=$2

# Erstelle ZIP-Datei
zip_file="${folder_name}_${CURRENT_DATE}_${CURRENT_TIME}.zip"
zip -r "${BACKUP_PATH}${zip_file}" "${folder_path}"

# Übertrage die ZIP-Datei auf den Remote-Server
scp "${BACKUP_PATH}${zip_file}" "${REMOTE_USER}@${REMOTE_IP}:${REMOTE_DIR}"

# Aufräumen auf dem Remote-Server
ssh ${REMOTE_USER}@${REMOTE_IP} << EOF

cd ${REMOTE_DIR}
if [ $(ls ${folder_name}*.zip 2>/dev/null | wc -l) -gt ${MAX_BACKUPS} ]; then
ls -t ${folder_name}
*.zip | tail -n +$((${MAX_BACKUPS}+1)) | xargs rm --
fi
EOF
}

Backups für alle definierten Verzeichnisse erstellen und hochladen

for dir in "${SOURCE_DIRECTORIES[@]}"; do
folder_name=$(basename "$dir")
backup_and_upload "$folder_name" "$dir"
done

#

oh damn

blazing oar
#

?paste

honest thistleBOT
#
FAQ Answer:

Paste Services
When asking for help with a config/menu/code issue please use our paste bin:
(we prefer it over pastebin.com)
HelpChat Paste - How To Use

blazing oar
#

....

blazing oar
# native elm i know, but till now it helped me to understand problems so far.

The issue is you will become dependent on it to know what X or Y does, and that's not actual real knowledge, because if AI is removed from your hands, you won't be able to do anything, and that's not a position you want to be. There is a similar talk rn in #development but TLDR; learn things and do not skip steps, basic java and the early steps of the bukkit api are very important even if they look like nothing.

mellow wedge
#

@sterile thunder wow, minecraft is just such a different game than it used to be. It's so amazing the things I'm seeing in the TD.

The placing overlay is epic! And the build animation... great job, it really looks amazing

#

they've added so much creative freedom to the game beyond just being a sandbox and it's soo fucking cool to see

sterile thunder
sterile thunder
#

Nobody had the idea to go rogue

long summit
blazing oar
twin dune
#

@toxic lance what are you planning to run through Pterodactyl?

twin dune
toxic lance
#

Free tier

twin dune
#

Ah.

sullen sorrel
#

oracle vps :))

analog marlin
#

selfhost 🫨

sullen sorrel
#

🫨

mellow wedge
true stirrup
blazing oar
#

@fallow crow quick question, do you accept parts of a plugin?

#

for 4 bucks - fees I can do like a class

unreal venture
#

💀

boreal escarp
long summit
#

Nah, it was its own server

boreal escarp
#

I see

trim tinsel
unreal venture
#

if i had 8k i d leave my country 💀

blazing oar
#

@junior dagger you a scammer?

tacit nova
sullen sorrel
#

too low and its a scam
too high and its a scam
😩

trim tinsel
blazing oar
#

@solar sinew Ignoring the mac user, opinion rejected, how th does that work? Texturepacks or...?

solar sinew
#

text display entities

#

and custom font

blazing oar
#

hmm interesting, is that all automatically generated by the sprites?

solar sinew
#

yes

#

in the project there's a default thing

blazing oar
#

how do you do the sprites then?

solar sinew
#

and you provide the sprite and json font file and it generates all the alpha values

blazing oar
#

what in the world

solar sinew
#

so it generates a zip with 256 variations

blazing oar
#

that's actually nice, is this built-in the plugin or some type of app?

solar sinew
#

plugin

#

a gradle task generated the zip

blazing oar
#

ah so it's kinda hard coded?

solar sinew
#

sort of? but to just add sprites you add it into resources folder with a XXX in its name somewhere

#

rn emitters are created with a series of providers for different values

#

so once I create enough defaults it could be made to read from json files

#

like for example for the explosion smoke, there's a Simple direction location provider which takes in a speed provider and direction provider

#

and each can be tweaked individually

#

but it could be swapped out for a different type of location provider to allow for more complex movement

#

like for flow mechanics

unreal venture
#

8k is a lot for pixelarts indeed 💀

blazing oar
unreal venture
#

u could even commission larkyy w that much money and make your server better than mccisland even sideeye

blazing oar
#

ehh

#

lets not go that far

#

mcc islands has big funding

#

matt's paycheck is not small

#

Well, for where he lives, it's probably A LOT lol

unreal venture
#

that sounded like a shade tbh 💀

blazing oar
#

assuming it's like 60k? (sounds average) per year that's more than enough to have a wealthy life in portugal lol

unreal venture
blazing oar
#

60k/year is like 5k per month, which is like 5x the minimum wage in portugal

#

it's really a lot lol

boreal escarp
unreal venture
blazing oar
#

think that's common knowledge

unreal venture
blazing oar
#

well, not common knowledge

#

but public

unreal venture
#

yuh it's on his github

blazing oar
#

yeah

#

he is brazilian but lives in portugal

#

Portugal superiority 😎

unreal venture
#

not u doxxing his salary

blazing oar
#

that's just an assumption

#

lol

solar sinew
#

how would an animated model do anything here

blazing oar
#

seems like I am wrong lmao

#

it's more

unreal venture
blazing oar
#

😂

unreal venture
#

@long summit buy us the ahri skin?

blazing oar
blazing oar
unreal venture
#

people be getting bullied in game for that

blazing oar
#

I would even accept the unsigned one

unreal venture
#

even on arena mode 💀

blazing oar
#

price aside, the skin itself is fking awesome...

#

like, def. worth the tier above ultimate

unreal venture
#

yuh dude imagine paying 400 or minimum 50 💀

#

and getting something shit

blazing oar
#

has happened before

#

lmmao

#

tell that valorant

blazing oar
#

50 bucks a 2 item valentines bundle

solar sinew
#

there's no models

#

it's just text displays with sprites

unreal venture
young mortar
blazing oar
#

wdym there is no models, I assume you can do animated models of mobs, right? Why can't it be an explosion?

solar sinew
#

and it can be cached ofc to not generate everything at runtimes

blazing oar
solar sinew
young mortar
#

I finished it like 5 days ago and I’m bored 😔

blazing oar
#

yeah, I see that, but I was wondering if you could do it that way

unreal venture
#

IN 5 DAYS?

#

bro

blazing oar
#

and if yes, isn't that technically easier than your project?

blazing oar
solar sinew
blazing oar
#

yes, sure, but I am asking xD

unreal venture
#

i deleted league (again) and trying to stay away from it 💀

solar sinew
#

I'm not doing animations of mobs exploding

unreal venture
young mortar
blazing oar
#

they don't need to be mobs, just an animated model of an explosion, just like you do models of furniture, etc.

solar sinew
unreal venture
solar sinew
#

I'm making a particle system

blazing oar
#

ic

solar sinew
unreal venture
#

mhmm sure

solar sinew
#

????

unreal venture
#

if you say so

solar sinew
#

the gaslighting goes crazy

blazing oar
unreal venture
#

what gaslight

young mortar
#

We play league, siege, Minecraft, terraria, plate up, valorant, overwatch, etc.

blazing oar
#

same!

#

minus plate up

#

no idea tf that is

unreal venture
young mortar
#

It’s like Overcooked but more fun

blazing oar
young mortar
#

And in a roguelike format

blazing oar
#

no idea what overcooked is neither

#

lol

unreal venture
#

i can't even get out of d1 and climb to master in soloq

#

so i m just done

blazing oar
#

besides overcooked food

young mortar
unreal venture
#

people be picking teemo vayne on top w no front line

blazing oar
young mortar
#

It’s a coop isometric cooking game

unreal venture
#

like, who is gonna peel for ya buddy? ints, lose

blazing oar
#

I play Minecraft mods for a living

#

(not actually)

unreal venture
blazing oar
#

indeed

unreal venture
#

even my smurfs r in plat

blazing oar
#

yo

#

stop bullying me

unreal venture
#

💀

blazing oar
#

Star ban him

young mortar
blazing oar
#

he's harrassing me

young mortar
#

Lmao

unreal venture
#

:/ cry about it?

blazing oar
unreal venture
#

i m sure i can get one of the helpchats staff to unban me

blazing oar
#

💔

#

not from my heart

unreal venture
#

:3

young mortar
unreal venture
#

what friends

#

aram is boring

blazing oar
#

fr Aram is underrated, there was a time I only played it, it was hella fun

unreal venture
#

all my friends are back in EUNE

young mortar
#

Mental diff I’m afraid

blazing oar
#

I always play an aram per day

unreal venture
#

i m alone in EUW

#

i moved my acc cause the soloq in eune is even worse

blazing oar
#

"Play an aram per day to keep the girls away"

#

they say

unreal venture
#

💀 i just spam shaco pyke and kayn on the arena mode

blazing oar
young mortar
unreal venture
blazing oar
#

it's sad to say it but it is indeed hella true

unreal venture
#

seems waste of time

blazing oar
#

even in valo

#

I find more girls than anything in unrated

#

lol

young mortar
unreal venture
#

many people prefer aram instead of soloq

young mortar
#

Only thing I play in Val

blazing oar
#

So, that means you are single?

#

Heard kristopher is free btw

young mortar
#

It’s shorter, you basically don’t have to worry about eco, it’s great

#

Makes the game much more enjoyable than a 40 minute unrated match where you’re stuck with freaks the whole time

unreal venture
#

who said that lie tho

blazing oar
#

wait wut

blazing oar
unreal venture
#

i ve been playing soloq for soooooooooo long

young mortar
#

Yeah I mean it just kinda sounds like a mental diff lol

unreal venture
#

back in 2019 i had 2.5k games in soloq

young mortar
#

Jesus

unreal venture
#

in a season

#

hardstuck in the middle of master n gm

young mortar
#

Well hey now there’s 3 splits a year so you can experience the climb triple!

unreal venture
#

I HATE THAT 💀

young mortar
#

Yeah same

unreal venture
#

but it's easier to climb

young mortar
#

Cool for updates though

unreal venture
#

since the gap between master and gm and gm to chall can't be that huge as it used to be

young mortar
#

The crit item changes a few patches ago were amazing

unreal venture
#

i also now dislike that master players can duo

young mortar
#

Bro hates fun and friendship?

unreal venture
#

more elo boosting pensivecry

unreal venture
blazing oar
#

Friends are overrated tbh

unreal venture
#

nothing is worse than a premade jun w a top laner

young mortar
#

I mean surely if they’re boosted, it’s going to be easier for you to win?

unreal venture
#

that roams only him

unreal venture
young mortar
#

Ah

blazing oar
#

Random idea 💡 Time to make City Skylines inside minecraft

young mortar
#

What role do you play Kris

unreal venture
#

only mid

#

2nd jun

young mortar
#

Ah I see

#

Maybe you should try exploring the other roles

#

See what else league has to offer you

#

Could reignite that spark in you

unreal venture
#

i have mains on every lane that i used to play in the past even

#

besides top, cause top is boring

young mortar
#

Play someone fun, like Kayle or Singed or something lol

unreal venture
#

i have "mains" on every lane besides top

blazing oar
unreal venture
#

nuh uh, top is boring

young mortar
#

Not if you’re playing a weird champ

unreal venture
#

when i get top i ask for mid

blazing oar
#

yuumi top

#

ez

unreal venture
#

if they not give it to me i insta kata

young mortar
#

This is what I’m saying, you gotta try new things

#

Get out of your comfort zone

unreal venture
#

no! i can only do 1v9 w katarina

#

bot fed jun, jun got gapped

unreal venture
atomic lichen
unreal venture
atomic lichen
#

waait a minute

rain kelp
#

Hello

latent mauve
#

hello!

olive wing
#

hi

analog marlin
#

hello IVAN

sterile thunder
#

@faint ridge what was your generative model trained using?

atomic lichen
#

Hey, so I'm looking to buy a graphic tablet. Any recommandations?

vague walrus
#

Ipad

#

Despite my opposition to Apple products

atomic lichen
#

i already have a macbook

#

a pc

#

idk, an ipad

#

seems more expensive

#

as a gadget

#

when i only want a graphic tablet to connect at my mac

#

like this one

unreal venture
magic summit
#

That's just.... oof

vague walrus
#

That's sad

#

Also, why in the modern Era do libraries not have infinite copies of books for lent.
I mean I know the reason, but I hate it

wary willow
#

Are there multiple lawsuits or am I missing something? I thought they were getting sued because they purchased only few copies of a book but lent to more people at the same time than they had copies

#

Hmm. Seaching for this I can't find anything. Everything I find is about them turning print books into e-books. If that's the case, this is absolutely shit

atomic lichen
junior dagger
magic summit
wary willow
magic summit
#

ok

#

Still crap that IA lost here

#

I hope the appeal will works

full atlas
#

🤦 just spent the past few hours wondering why my item builder class kept having the same item just by using the same material only to realize its because of my class that holds versioned materials returning the same item instead of a clone.

unreal venture
#

I should quit minecraft jeez

vague walrus
#

I'll give you a lawsuit

knotty nebula
#

My name is Paul, and I am looking for a reliable and honest USA-based collaborator for long-term work. The work requires good English-speaking skills. If you are interested or know someone who might be, please feel free to reach out to me. Thank you!

magic summit
#

@proper pond That thumbnail bruh...

#

And title

#

Gotta love youtubers clickbaiting the shit out of a title

ocean wagon
#

ah shit.

vagrant pike
#

L

chilly brook
#

find out what resistor or smth it is and solder it back

#

ez

ocean wagon
#

do you think i can solder it 😦
i dont even have the soldering iron

chilly brook
#

soldering iron costs like 30 euros + solder

#

certainly cheaper than a new cpu

#

either way

#

if you like fck it up, you would be buying another cpu anyway

ocean wagon
#

though i brought it from my father's office 😅

#

it isnt of my pc

#

ill try to get it soldered tmrw

chilly brook
#

do you have the missing piece?

#

like it got broken off somehow

#

it did land somewhere

ocean wagon
#

it was already broken

chilly brook
#

do you have any similar cpu laying around?

ocean wagon
#

yes

#

but its working

#

.

chilly brook
#

ohh

ocean wagon
#

i mean its in my main pc

#

dont wanna risk it lol

chilly brook
#

obviously

#

ok then idk

ocean wagon
#

ill ask the TV repairing guy if he has something like that

chilly brook
#

yes

ocean wagon
#

was curious if i could upgrade my current cpu cause it has the same socket type (just got to know yesterday)

chilly brook
#

ok i found out on the internet that they are actually chip capacitors

#

so you need to find the same one

#

idk where search for the right one

fallow crow
#

Hello

misty arrow
#

Hellooo

noble kayak
#

.

cerulean plover
#

gm

vague walrus
#

gn

analog marlin
young relic
#

hi

wise lily
#

yo

quick lantern
#

hi my discord was hacked and stolen

vague walrus
#

Sucks

#

?not-discord

honest thistleBOT
#
FAQ Answer:

Looking for discord support?
HelpChat is a Minecraft plugin and development support server and is not affiliated with discord in any way.
If you require support from discord, we recommend you to visit their official support website at https://support.discord.com
On this website, you can read their FAQs, or open a support ticket if necessary.

trim raft
full atlas
#

You actually entered payment information for a "trial"?

Did you at least use a "dud card"?

vague walrus
#

Sometimes you have to.
Sometimes you can't use "valid but not real" cards either

sullen sorrel
#

it charges $1 to verify so a dud card won't work

full atlas
#

They charge it but refund.

vague walrus
#

$5 might set me back some

twin dune
#

@full atlas have you gotten the latest discord ui change? SCGpain

full atlas
#

Not that I'm aware of.
But on pc discord has been having loading issues. I'll tab into it or click on it and it takes a few seconds to update.

twin dune
#

It now just switches the button to a Message button so I thought someone auto-accepted my friend request when they hadn't lol.

#

They changed status tf

#

github vibes

full atlas
#

Ah no I haven't noticed that. Usually I don't add people they add me lol.

long jasper
#

isnt that just MCCI stuff..

long summit
long jasper
#

i went inside the server to double check and its literally MCCI 💀

long summit
#

Yeah, that model and the lockers are inside the firefighter building, the trash cans, cones, etc are all around :')

slate hill
#

and i thought stealing traffic cones was reserved for drunk teenagers

long summit
#

The board one is interesting, it kinda looks like the board we used to have for news and stuff like that on the old spawn, but I don't remember anymore

slate hill
#

looking at it now, yeah it's exactly the same as our one just without the extra textures on top

long summit
#

@hushed delta they aren't disliking your models :)

hushed delta
long jasper
#

lmfao how many mcci devs here

kind lagoon
#

at least 2 i'd say 🤔

sleek quiver
kind lagoon
long jasper
faint kernel
trim raft
#

@tribal oracle you plan on making that open source?

naive agate
trim raft
naive agate
trim raft
naive agate
tribal oracle
frank pasture
#

Woah @long summit I didn’t realise you did models?! These look fkn brilliant

long summit
frank pasture
#

Still look so cool to the artists, talented people

long summit
frank pasture
#

I’ve seen Violet around, she’s very talented - you guys have such a great team

#

I peeped MCC last week, I was so blown away by how much things have changed 😂 so many more things

long summit
#

It's very cool, and this weekend MCC will be live at Twitchcon which is quite exciting

magic summit
#

Not gonna lie, I dislike MCC a lot

unreal venture
#

i was shocked when i found out that he is not doing pixels but instead dev work OKK

frank pasture
long summit
unreal venture
long summit
#

We lost our artist a few months ago so I had to do some assets myself, like the banners on the login menu and the animation for the 2 currencies we added recently

#

Lmao

#

Yeah it is identical to that one

unreal venture
#

🧐 sus

unreal venture
# long summit

oooh i just noticed the post that says for the board 💀

#

yeah i ve seen this dude on our discord asking for support for the discord

vague walrus
hushed delta
# long summit

Hey, I messaged chase about this yesterday but It might not have made it to you. I did not make those models- but they also are not stolen from MCCIslands texture pack. The inspiration is clear, but currently I understand how that inspiration seems like a direct copy. I have reached out to the designer and he is working to make them more original. Once again, I’m sorry that this may have effected you and they are being updated.

vague walrus
#

Inspiration be like ctrl+c ctrl+p

hushed delta
#

Ill agree, when this project was started the intention was to make everything feel as if it was designed in the MCC style. I never told them to stray from that- and all I can do is continue to update them.. .

long summit
hushed delta
#

Agreed, once again Im sorry.

craggy kraken
#

Hello

fiery acorn
#

Hello I am man.

solar sinew
#

@worldly pike so it's his action of talking about porn which is bad, right?

#

what about being immature in a harmless way

worldly pike
#

nah mate i really dont care right, im just gonna go do something else

#

cause all your doing is going "waa why" and ignoring what im saying

solar sinew
#

your sense of right and wrong isn't inherent, it comes from experiences and subjectivity

#

you should be able to explain why you think something is bad to the level of explaining the reasoning of holding that belief and why it makes you feel that way

#

if you view all immaturity is bad, that implies you believe that being immature leads to some sort of harm or frustration

#

someone being immature cannot be the cause of frustration if it doesn't affect you, unless you simply are frustrated with human nature. it must be the actions of immaturity that cause your frustration

#

what is wrong with harmless immaturity?

#

what is wrong with making an immature joke which hurts no one?

#

for someone dismissing others for being immature, you yourself are displaying the same behavior with insults and an inability to explain your own beliefs

vagrant pike
#

lol

solar sinew
#

perhaps I wasted my time with this individual

vague walrus
#

@worldly pike I don't think legal boundries have a place here

unreal venture
#

i smell free ahri skin

worldly pike
unreal venture
#

why is zodd always involved in drama smh

vague walrus
#

Brain development vs instutitional adulthood, idk man I guess one just makes more sense to me

worldly pike
#

do you think the age of consent should be 25 then

vague walrus
#

Could be

#

But that's a legal placehold

worldly pike
#

yeah im not gonna take you seriously lol

vague walrus
#

You know minors can have sex right?

#

14+ in US in a lot of states legally*

worldly pike
#

doesnt mean they should 😭

vague walrus
#

So you agree that the law doesn't agree with what should be all the time

worldly pike
#

idc about the current laws

#

i really dont

vague walrus
#

Age of consent is a legal question

unreal venture
worldly pike
#

idk what language your speaking tho

#

so

#

¯_(ツ)_/¯

solar sinew
vague walrus
#

I'm not arguing age of concent

#

that's actually my point

#

It's fine where it is

#

I'm saying developmentally you're an adult at 25

#

ish

worldly pike
vague walrus
#

You're strawmanning so hard rn

solar sinew
worldly pike
#

lol

#

im not taking u seriously

solar sinew
worldly pike
#

so im just wasting ur time

solar sinew
#

and states

solar sinew
worldly pike
vague walrus
#

Actually that's true and so funny

solar sinew
worldly pike
#

gonna ask again, turn off the pings

#

thank you

vague walrus
#

Does that actually work

solar sinew
#

or block me

#

which I would prefer

vague walrus
#

That's so fucking funny lmaoooo

#

but to be clear age of consent is still 18+ in most places

solar sinew
sullen sorrel
#

🍿

unreal venture
sullen sorrel
#

Hot take popcorn is overrated

unreal venture
#

its always Ixume or zodd that is involved with some kind of drama

vague walrus
#

You're just conflict avoidant

unreal venture
solar sinew
solar sinew
#

"yea we use ai in our hiring process"

#

ive figured out the ultimate job search tactic

vague walrus
#

AHAHAH

solar sinew
#

chat

#

women often say

#

they'd pick the bear over the man

#

I know this sounds unreasonable at first

#

but consider the possibility

#

what if the man is French?

#

a terrifying thought.

vagrant pike
#

🤨

pseudo sigil
#

Sounds like a free virus

ocean wagon
#

isnt this possible though

#

i mean whats wrong (i have no programming experience)

kind sorrel
#

Yeah

tacit nova
naive barn
#

literally all it does

#

Good if you want to get a reverse shell to your host

#

other than that, not really

vagrant pike
tacit nova
pale oak
#

Hi. Can anyone help me on how to make a sub GUI menu on Deluxe menus?

naive agate
boreal escarp
wary willow
#

If you have a free slack workspace, back up your stuff

naive agate
#

I deleted my account a while back

vague walrus
#

Jython remains on top

analog marlin
solar sinew
#

mf is tryna commit illegal activity

vague walrus
#

Help

object `=` {
    fun `!`() {}
}

fun `~`() {
    `=`.`!`()
}
#
fun help() = `fun fun help() {}(){}`()

fun `fun help() {}`() { help() }

fun `fun fun help() {}(){}`() { `fun help() {}`() }

It's just so silly, I love kotlin

boreal escarp
#

@abstract bramble what is this supposed to mean, lol?

"I'm not the owner but I got roles ig"

idle galleon
rugged fable
#

Hello

tacit nova
vague walrus
#

l8

vague walrus
#

Ahaha that's good

rugged sleet
#

hello!

#

none is here?

#

can't I talk to anyone?

vague walrus
#

Hewwo

analog marlin
#

no

#

office hours are 3-4 pm est

vague walrus
#

Presidential debate opening felt like a wrestling match intro it's so funny

worldly pike
#

shocked biden didnt shit himself

#

bro literally said beleraus was in nato

#

like he doesnt even know who were posed to be against

vague walrus
#

It wasn't a very strong display. I didn't expect much from it FWIW

worldly pike
#

"we finally <mumblin> beat medicare!"

"yeah he beat medicare to death" fire trump line

worldly pike
vagrant pike
#

I'm not murrican', but Biden is bad, Trump is worse

worldly pike
#

nah trump was solid during his presidency

vague walrus
#

That's a hot take that I wont elaborate on

vagrant pike
#

that's a very hot take indeed

#

bring back Obama-care

worldly pike
#

obama care was a failure

#

increase the health of healthcare and health insurance whilst people struggle to live?

#

right

#
  • america isnt a government reliant country
#

americans dont like to rely on the government

#

it isnt another europe and it never will be

vague walrus
#

Aren't you like, not American

worldly pike
#

no but i can study another country

vagrant pike
worldly pike
#

and i can understand another country's culture

vague walrus
#

I'm just finding it odd that you're making broad assumptions about a country you're not in or from

#

To someone that is

worldly pike
#

why do you think universal healthcare works in europe

smaller population, more densly populated, less individualism

vagrant pike
#

The only one thing that's bad in america that it isn't europe

worldly pike
#

america is based of individualism

vague walrus
#

You're conflating social services with government

worldly pike
#

its based of the american dream

worldly pike
#

social services are a government service

vague walrus
#

Also a lot of that has historical precident

worldly pike
#

nhs, ias, rds all not government branches?!?!?

worldly pike
#

also obamacare was much more expensive than anticipated, people aint rich my guy

#

some americans sometimes gotta choose between fuel in the car and dinner

vague walrus
#

I'm actually not getting into this with you. I literally live here 🥺

worldly pike
#

ya know obama care isnt the answer, getting more money in the pockets of americans is

#

yeah and ima move to texas some day

vague walrus
#

Hmu when you do then

#

Until then 🤐

worldly pike
#

im actually meeting a texan government senior soon cause he knows my uncle and hes coming over to celebrate pride in my city

worldly pike
worldly pike
vague walrus
#

Ok

worldly pike
#

after ive been in the royal navy

vague walrus
#

Then don't

#

I really do not care

worldly pike
#

i know you dont im not saying you do

vague walrus
worldly pike
#

its not funny people struggling

#

but thats ur sense of humour ig

vague walrus
#

Yeah maybe Texas shouldn't do that or something

#

idk I'm just a silly guy

worldly pike
#

nah texas is the best state ever

#

i love texas

vague walrus
#

That's actually me where'd you get that

fair python
#

Why is it “Room 2 ½” not “Room 9 ¾” 😔

vague walrus
#

huh

blazing oar
#

Random pic I took yesterday

frank pasture
blazing oar
#

I wanna come back next year ngl

#

Its one hell of an experience

frank pasture
#

luckyy

blazing oar
#

Indeed I am

vagrant pike
#

@zenith mauve ayo

magic summit
#

I feel like Steam tries to establish a anime character...

vague walrus
#

We love steam girls

idle galleon
blazing oar
idle galleon
#

Just Paris

#

Although is Disney fun for people above like 16? I remember the one in Florida wasn't much fun for adults like 10 years ago (or maybe just the places we went)

ocean wagon
#

no

blazing oar
spare rock
#

huh

#

a reverse request

#

asking for money

blazing oar
naive agate
daring vale
#

bro what rule did i break

naive agate
frank pasture
#

(Those in here from back iin the day will remember the name)

chilly brook
#

that raymond guy

frank pasture
twin dune
#

Analyticus always on top. 😛 (jk)

frank pasture
twin dune
frank pasture
#

Analyse, always the 🐐

vale ferry
#

hi

zenith mauve
unreal venture
vague walrus
#

real

spiral sparrow
#

Yo I was wondering if there was a way to get unbanned from a server. It was a misunderstanding with two different mods telling me to do pposite things and I was banned by one and I changed my account

honest thistleBOT
#
FAQ Answer:

Looking for discord support?
HelpChat is a Minecraft plugin and development support server and is not affiliated with discord in any way.
If you require support from discord, we recommend you to visit their official support website at https://support.discord.com
On this website, you can read their FAQs, or open a support ticket if necessary.

mystic shale
#

Hi

elfin cobalt
#

hi

abstract bramble
#

bor

#

wher is the paid request ?

ocean wagon
abstract bramble
#

why

#

?

honest thistleBOT
abstract bramble
kind sorrel
#

if only this question could be answered by reading

shut halo
#

Hii

unkempt maple
#

hii

shut halo
#

Ugh who knows how to switch from basic to main nitro

still mason
#

hi

magic summit
shut halo
#

Add me if you know how

magic summit
#

Would apreciate if a ecloud staff can approve latest release of formatter expansion.

unreal venture
abstract bramble
abstract bramble
unreal venture
#

barry you smell

#

how do u even get it to reply

#

@honest thistle hello

#

L bot

ocean wagon
trim raft
magic summit
# unreal venture how do u even get it to reply

It's most likely a slash command that has an ephemeral response, meaning it's only visible for the command executor.
Has the beneficial side-effect that others won't know about it being executed.
Or funnycube has another method available to just perform replies

unreal venture
#

aa_cat_stare interesting

ocean wagon
#

shit, wyd in this situation

vagrant pike
#

shit

unreal venture
frank pasture
#

Finally got that glider from Fortnite Reload, there’s so many sweats on Reload

vague walrus
vague walrus
#

I play not often, but only on nobuilds when I do, so I'm usually out of the loop

sturdy bobcat
#

uhm

#

them figuring out

#

wait people hate our current decisions for the game

#

what if we just............. go back to season 1 forever lol

vague walrus
#

Oh that's terrible, happy for those people I guess

sturdy bobcat
#

basically a few months? ago they did something where they changed the game to be the og map and eventually like

#

rolled out every update they ever did

vague walrus
#

Yeah I played the OG map when they first (the second time) released it, Just got back into it and it's a whole new map

sturdy bobcat
#

they hit the most players they had in years

#

so yeah its just a gamemode dedicated to the og map

vague walrus
#

RIP I hated that map

frank pasture
#

It’s basically an OG mode, but it’s really hard and full of sweaty people

#

Took me ages to get it

#

But when you get a victory royale you get a limited time glider

sturdy bobcat
#

it'll be sweaty because all of the original players will be flocking to it

ocean wagon
frank pasture
#

You also respawn if you die, but only if your squad mates are still alive

#

I think for the first 5-10 mins of the game you auto respawn/“reboot”

#

It’s fun in itself, just full of people trying to try hard 😂

vague walrus
#

Rough, may pick it up with a group

frank pasture
#

Yeah worth doing as a group of people you can talk to

chilly brook
vale condor
#

h

solar sinew
chilly brook
vocal glade
#

helo

solar sinew
sullen sorrel
#

hey I use edge too :)

magic summit
#

@obtuse fjord I feel like carpets would look better than wool blocks... If you're using display entities, that is.

twin dune
#

@restive prawn Do you under the value of $5? It's literally nothing.

tacit nova
#

You should be used to this by now

solar sinew
#

@restive prawn you might wanna 200x that budget 😂

full atlas
#

Am I reading this right?
"Make me a server with 10 fully custom plugins for $5"

solar sinew
#

yes lmfao

lime torrent
#

Especially for 5$ yikes

vague walrus
#

$7

analog marlin
#

wow

#

there are many unhinged posts in request paid but, just wow

solar sinew
#

[Service] Minecraft Developer
[Request] Need someone to create a small minigame server for me, including minigames such as skyblock, bedwars, sky wars, duels, crystal pvp, vanilla, factions, anarchy, shooter, hide n seek, runescape, everything needs to be CUSTOM MADE NO LIBRARIES because i don't want to deal with copyright, needs to have perfect latency uptime and i will sue you if there is any bugs ever. i also need you to reserve the domain minecraft.net just so that we can get good trafick. i need this done by next tuesday and it needs to support bedrock AND java edition.
[Budget] half eaten crayon (non negotiable)

lime torrent
#

NO WAY

#

I’m taking that :3

solar sinew
lime torrent
#

UwU

lime torrent
solar sinew
#

no you confused ME

#

the name is clicking in the wrong place in my brain

lime torrent
#

LOL

#

How

#

(I hope not bad loool)

solar sinew
#

you share name with my gf

lime torrent
#

Yikes

solar sinew
#

it is striking

lime torrent
#

Rip

#

Yeah I’m vibing in my own little world

solar sinew
#

truly

lime torrent
#

I need to learn how tf YouTrack works

#

We just swapped off Jetbrains Space and I got TOO used to it and all its little quirks and now Jetbrains is like nah fuck you im killing it off

solar sinew
#

why does jetbrains have multiple project management tools

lime torrent
#

Space was a huge all in one

#

It also stored repos, and a fuck load of other stuff too

#

Idk why they killed it off aside from it maybe not making as much money as they expected it too

forest oriole
#

hi

lime torrent
#

Hi

muted lily
#

hi

twin dune
#

Wild spam.

lime torrent
#

Me too

twin dune
#

My guy has evolved.

stark comet
#

Hey

ocean wagon
obtuse fjord
vagrant pike
#

cool

#

thx

#

i just got 2 gazzilion dollars

tough folio
#

defo not hacked

proper jungle
#

@boreal escarp can you do something w that bot? xD

boreal escarp
#

done

proper jungle
#

ty ❤️

frank pasture
#

Just an FYI, @shut halo is a fake “woman” from Lagos, Nigeria trying to scam people into buying them gift cards

frank pasture
# blazing oar how did that happen? lol

Randomly got added and messaged by someone here saying hi, just being nice and said hi back, and then not long into the convo they asked me to buy them steam card

#

I said no, convo continued, they exposed living in Lagos 😂

unreal venture
#

💀

blazing oar
#

lol

lime torrent
frank pasture
#

They accidentally posted this which showed the location lol

lime torrent
#

LOL

magic nymph
#

Hey, if anyone have Discord Support already and 2 minutes of spare time please up-vote: https://support.discord.com/hc/en-us/community/posts/360057754891-YouTube-Music-Integration Prayge I'm a bit tilted they add stupid paid animated profile icons and stuff but they neglect any other music integration aside Spotify. Welp, maybe they are paid by them? Sadge || If it feels like advert (it doesn't to me ; i don't spam all the channels; nor its scam link) please don't be mad mods peepoShy||

blazing oar
magic nymph
#

no, or idk

#

Spotify presence works even without app and works even if you play game/have other activity meanwhile listening

#

special priviliges Madge

blazing oar
#

first comment shows an alternative

solar sinew
versed hedge
#

Hello

ocean wagon
#

@coarse vale dyk how to fix this o_O

coarse vale
#

lol

unreal venture
coarse vale
#

no idea

ocean wagon
#

finnda download that .dll

ocean wagon
#

i downloaded this from archieves 😬

#

nvm, worked when i installed the x86 version of vcredist. even though i have x64 bit 😞

#

lmao wtf is this SEGA intro

#

bro

#

i dont understand the controls of this game 🥲

stark comet
#

Guys, i clicked cancel nitro then pressed re subscribe would that mean i payed again?

sullen sorrel
#

cancel nitro means that it'll cancel your auto-pay, not the actual nitro

sullen sorrel
#

uhhh can you ask here? 🤨

stark comet
#

no photos allowed😓

honest thistleBOT
#
FAQ Answer:

You won't be able to upload images here directly to avoid spam, so please use https://imgur.com/upload to upload images/screenshots.
You can also use a screenshot service like gyazo or jinx and post those links here.

sullen sorrel
#

or ig

#

hold on

#

@stark comet u can dm the image

#

i had dms off before

#

uhhhh

#

I'm not really sure

#

i have no idea how subscription credit works

#

oh also

honest thistleBOT
#
FAQ Answer:

Looking for discord support?
HelpChat is a Minecraft plugin and development support server and is not affiliated with discord in any way.
If you require support from discord, we recommend you to visit their official support website at https://support.discord.com
On this website, you can read their FAQs, or open a support ticket if necessary.

sullen sorrel
#

just wanted to say that

stark comet
sullen sorrel
stark comet
#

i did but they always say the same thing. So im trying to ask members

junior hill
#

Any Germans ?

tacit nova
#

dafaq

full atlas
#

Why is "Technoblade"'s channel doing a "premiere"?

vague walrus
#

They found a Ouija board

solar sinew
#

i don't like that he's doing that tbh

#

i wish it was left as its own thing

trim raft
lime torrent
#

Hi how is everyone today :D

solar sinew
#

good :D

vague walrus
#

Blursed

lime torrent
#

That’s good

#

Tbh fair

vague walrus
#

Trying to figure out how to get the children of "folders" in Google drive

unreal venture
lime torrent
#

Kris :D

#

:(

unreal venture
lime torrent
#

Yeah I’m procrastinating doing work rn tbh

#

Discord is my excuse not too :D

unreal venture
#

felt that

vague walrus
#

Just a semi-secure drop box for image dumps to process

lime torrent
#

Ah

solar sinew
#

the particle library i'm writing has so many Supplier objects i'm wanting to kill myself

lime torrent
#

Oof

vague walrus
#

Should've used Kotlin

solar sinew
#

i technically don't even need to write this in java

lime torrent
#

I’m doing a mix of coding more content for my server and writing up more complex docs to give to the lead dev.

vague walrus
#

Should've used Rust then

solar sinew
#

i actually could have

#

if i knew rust

lime torrent
#

💀

solar sinew
#

or haskell, which im learning

vague walrus
#

It's a tough one to learn

#

It's easy once you get it tho

solar sinew
#

ill learn ocaml and rust after i get the hang of haskell

#

which will probably take a long time

vague walrus
#

Not that anyone was concerned, but apparently you check if the files have a parent rather than checking for children of a folder.

vague walrus
#

Uhhh idk

gloomy briar
#

hello im looking for plugin help

restive belfry
#

Hello. I make plugins.

viscid quarry
#

hello

#

guys'

#

can anyone help me plaese

#

i really need help

#

could you join this server

#

for a giveaway

#

aw man

#

cant send link

#

😔

restive belfry
#

You're not allowed to advertise other servers unless the channel permits.

viscid quarry
#

dang

#

😔

restive belfry
#

I looked at the server that you posted and it is completely unrelated to this server so wouldn't be advertisable here anyway.

solar sinew
#

stop it!

vague walrus
#

Real

restive belfry
solar sinew
#

what sane person would write minecraft plugins

chilly brook
#

You dont like getting paid, do you?

vague walrus
#

Writing plugins is for suckers

chilly brook
#

Ai

#

ㅤᵕ̈

vague walrus
#

I will piss on your AI grave 🙂 ✨

marble radish
#

Hi, I write AI.

ocean wagon
#

👆 @honest thistle

vague walrus
solar sinew
solar sinew
chilly brook
#

True

vague walrus
#

Finally got the drive share link from api for images processed into Vision API -- It's decently accurate, this was the first test image.

twin dune
#

Who wakes up on a Monday and goes... "you know what? I want to spam the SpigotMC forums today as a productive use of my time.".

vague walrus
#

Gotta hit the comment quota to sell resources or something

lime torrent
twin dune
ocean wagon
unreal venture
ocean wagon
#

yeah

#

and, the

#

THE TRIAL?

#

trial or trail?

#

.

#

trial chamber

unreal venture
ocean wagon
#

no

ocean wagon
unreal venture
#

i hate that they added more copper stuff 💀

ocean wagon
#

bruh its so messy now

#

the recipes

#

it doenst feel like minecraft now

#

look at this spinning shit

unreal venture
#

well, i have a custom crafting system, meaning i ll have to add the recipes manually to my server pensivecry

#

and its gonna be an annoying process

ocean wagon
#

theres an item called breeze, it can blow ur player upto 8 blocks

unreal venture
#

my crafting table is basically deluxemenus

ocean wagon
#

oh shit.

unreal venture
#

yuh OKK

ocean wagon
#

cant u use like

#

just enough items mod with dm

#

and also theres a new crafting table.

unreal venture
#

yuh i aint gonna use that on my server 💀

vagrant pike
#

for the love of god just add some simple animals and more foliage stuff, thats all that everyone wants

ocean wagon
#

yeah 😭

#

hey @Minecraft please add aether portal

lime torrent
#

They do that

#

All would be good in the world

frank pasture
#

Y’all seen that RealismCraft thing on bedrock?

proper jungle
#

huh

storm cradle
#

hello

frank pasture
severe delta
#

is 1.21 support coming?
for deluxe menus?

proper jungle
#

boooring

#

xD

frank pasture
unreal venture
severe delta
long summit
#

If anyone enjoy MCC I recommend watching the VOD from twitchcon, this one was so good!

unreal venture
severe delta
#

y not

true stirrup
#

is it me or request paid is getting wilder and wilder with the prices

vague walrus
#

Summer hosts, it'll even out when they go back to school

true stirrup
#

:D

#

good point

blazing oar
#

Did you work on it too?

long summit
#

I was there yeah

weary pelican
#

Hey i am looking into buying a Ubuntu Server which i can host minecraft servers on what hoster and packet would you guys reccomend ?

austere pendant
#

e

vague walrus
#

Nice try!

analog marlin
#

e

sullen sorrel
#

¯_(ツ)_/¯

naive agate
#

@lyric matrix Don't bump read the rules your posts are being removed don't repost or you will be service muted.