#off-topic
1 messages · Page 86 of 1
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?
^
Not yet?
Interesting.
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
Anyway, Pterodactyl is basically a free server management panel that you access via a nice Web UI.
https://pterodactyl.io/
Pterodactyl is an open-source game server management panel built with PHP, React, and Go. Designed with security in mind, Pterodactyl runs all game servers in isolated Docker containers while exposing a beautiful and intuitive UI to end users.
Along with it super useful for sharing server access, it also has a backup system that you can also create schedules to trigger.
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 ^^
Just make you lock everything down correctly
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.
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
I would just try it on a test server and see.
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?
I would learn basic java, and then do simple plugins and only then work on these, asking chatgpt is like the biggest no no lol
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.
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
?paste
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
....
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.
@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
Thank you! I do a lot of custom stuff like this
It's funny cos this has been possible since 1.14.4
Nobody had the idea to go rogue
Very true, very few had some custom stuff back then
Noxcrew did a bit of custom stuff a while back, for example
https://www.youtube.com/watch?v=wOomdwEPOWg
MCStrike was a server gamemode created by the Noxcrew based on making guns feel fun in Minecraft! It's adrenaline-pumping, it's chaotic and it's awesome!
tbf Counter Strike has been a gamemode in hypixel for quite a while, although this looks way more elaborated
@toxic lance what are you planning to run through Pterodactyl?
A Minecraft server
AWS is really cost inefficient for Minecraft, what plan do you have on AWS?
Free tier
Ah.
oracle vps :))
selfhost 🫨
🫨
so cool. now it's so common to see! i love it
#1246323105719124028 message
this one is wild
@fallow crow quick question, do you accept parts of a plugin?
for 4 bucks - fees I can do like a class
💀
Did they made the game for hypixel?
Nah, it was its own server
I see
8k dollars? Tbh I think it is a scam
#1246323105719124028 message
if i had 8k i d leave my country 💀
@junior dagger you a scammer?
💀
too low and its a scam
too high and its a scam
😩
I mean it's a lot of money for pixel artist
@solar sinew Ignoring the mac user, opinion rejected, how th does that work? Texturepacks or...?
texture pack
text display entities
and custom font
hmm interesting, is that all automatically generated by the sprites?
how do you do the sprites then?
and you provide the sprite and json font file and it generates all the alpha values
what in the world
so it generates a zip with 256 variations
that's actually nice, is this built-in the plugin or some type of app?
ah so it's kinda hard coded?
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
8k is a lot for pixelarts indeed 💀
eh but I am questioning myself why bother with all this? can't you do this with some type of animated model instead?
u could even commission larkyy w that much money and make your server better than mccisland even 
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
that sounded like a shade tbh 💀
assuming it's like 60k? (sounds average) per year that's more than enough to have a wealthy life in portugal lol
my point is that with investing 8k on a server it will for sure come out something good out of it
60k/year is like 5k per month, which is like 5x the minimum wage in portugal
it's really a lot lol

not u doxxing where he lives 
think that's common knowledge

yuh it's on his github
what?
how would an animated model do anything here
😂
@long summit buy us the ahri skin?
you make an animated model of that explosion, you spawn the model, does animation, despawn it? I am not too familiar with these
fr 🙏
people be getting bullied in game for that
I would even accept the unsigned one
even on arena mode 💀
price aside, the skin itself is fking awesome...
like, def. worth the tier above ultimate
no?
50 bucks a 2 item valentines bundle
I wish the battle pass was unlimited 😭
wdym there is no models, I assume you can do animated models of mobs, right? Why can't it be an explosion?
and it can be cached ofc to not generate everything at runtimes
the pass is the only thing decent lol
well yes but that's not what my project is
I finished it like 5 days ago and I’m bored 😔
yeah, I see that, but I was wondering if you could do it that way
and if yes, isn't that technically easier than your project?
bro... league addict.
but that's not what my project is?
yes, sure, but I am asking xD
i deleted league (again) and trying to stay away from it 💀
I'm not doing animations of mobs exploding
skill issue?
Listen bro, when you’re playing with the homies, anything is fun
they don't need to be mobs, just an animated model of an explosion, just like you do models of furniture, etc.
how is this even related 😭
that's not a particle system
sounds like it :/
I'm making a particle system
ic
it's not??
mhmm sure
????
if you say so
the gaslighting goes crazy
I should probably do that too but like... have you seen the new PVE mode?!
what gaslight
We play league, siege, Minecraft, terraria, plate up, valorant, overwatch, etc.
nop, i try to stay away from league 💀
It’s like Overcooked but more fun
go look at it, it's not in league yet anyways
And in a roguelike format
besides overcooked food
What?!?
people be picking teemo vayne on top w no front line
bro... I am not even in plat
It’s a coop isometric cooking game
like, who is gonna peel for ya buddy? ints, lose
I am uncultured lol
I play Minecraft mods for a living
(not actually)
yuh that sounds like a skill issue :/
indeed
even my smurfs r in plat
💀
Star ban him
Yeah well I would look into it, it’s very fun. I think I’ve bought like 7 copies of the game total for my friends and stuff lol
he's harrassing me
Lmao
:/ cry about it?
will check
rude
i m sure i can get one of the helpchats staff to unban me
:3
Learn to enjoy the other parts of the game? I don’t ever play solo queue, that shit is depressing. Just play with friends or do ARAM, that’s how to have fun
fr Aram is underrated, there was a time I only played it, it was hella fun
all my friends are back in EUNE
Mental diff I’m afraid
I always play an aram per day
💀 i just spam shaco pyke and kayn on the arena mode
jokes on u, I am EUW, but you broke my heart
Idk girls would be more interested in ARAM than a solo queue tryhard in my experience lol
that is actually fking true.
I don't play flex even
it's sad to say it but it is indeed hella true
seems waste of time
real
Swiftplay bro
many people prefer aram instead of soloq
Only thing I play in Val
haven't tried that one
So, that means you are single?
Heard kristopher is free btw
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
nah i m kinda getting back w my ex tbh
who said that lie tho
wait wut
yeah, makes sense
gl
my mental is destroyed i can't even play draft without getting mad to someone else
i ve been playing soloq for soooooooooo long
Yeah I mean it just kinda sounds like a mental diff lol
back in 2019 i had 2.5k games in soloq
Jesus
Well hey now there’s 3 splits a year so you can experience the climb triple!
I HATE THAT 💀
Yeah same
but it's easier to climb
Cool for updates though
since the gap between master and gm and gm to chall can't be that huge as it used to be
The crit item changes a few patches ago were amazing
i also now dislike that master players can duo
Bro hates fun and friendship?
more elo boosting 
YES!
Friends are overrated tbh
nothing is worse than a premade jun w a top laner
I mean surely if they’re boosted, it’s going to be easier for you to win?
that roams only him
not when they end up in your team 💀
Ah
Random idea 💡 Time to make City Skylines inside minecraft
What role do you play Kris
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
i have mains on every lane that i used to play in the past even
besides top, cause top is boring
Play someone fun, like Kayle or Singed or something lol
i have "mains" on every lane besides top
true I recently found some fun as adc
nuh uh, top is boring
Not if you’re playing a weird champ
when i get top i ask for mid
if they not give it to me i insta kata
no! i can only do 1v9 w katarina
games like these make me lose my sanity https://www.leagueofgraphs.com/match/euw/6978529267#participant8
bot fed jun, jun got gapped

gay skin
no u
waait a minute
Hello
hello!
hi
hello IVAN
@faint ridge what was your generative model trained using?
Hey, so I'm looking to buy a graphic tablet. Any recommandations?
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
nice flex pookie
500,000 books removed from the Internet Archive’s lending library after publisher lawsuit: ebook licensing for libraries continues to be far too expensive and restrictive https://www.techdirt.com/2024/06/20/500000-books-have-been-deleted-from-the-internet-archives-lending-library/
That's just.... oof
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
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

Negative
IA is like your normal library. They buy or get donated books (digital or print) and lent them at a 1:1 ratio. So if they have 3 copies, 3 people can lent it.
They apparently even use the same tech eBook vendors or whatever use to avoid downloads and similar, yet they get sued for piracy, which is just a sad joke.
It seems to be a bit more different than what you mention. It seems that the lawsuit was about them buying print books and lending them in digital form (which was decided was illegal which I think should be made legal), but also during covid, they lent more copies at a time than they had.
🤦 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.
me thinking ItemAdder had a lawsuit 
I should quit minecraft jeez
I'll give you a lawsuit
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!
stop spamming channels
@proper pond That thumbnail bruh...
And title
Gotta love youtubers clickbaiting the shit out of a title
ah shit.
L
do you think i can solder it 😦
i dont even have the soldering iron
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
though i brought it from my father's office 😅
it isnt of my pc
ill try to get it soldered tmrw
do you have the missing piece?
like it got broken off somehow
it did land somewhere
do you have any similar cpu laying around?
ohh
ill ask the TV repairing guy if he has something like that
yes
was curious if i could upgrade my current cpu cause it has the same socket type (just got to know yesterday)
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
Hello
Hellooo
.
gm
gn
this seems sketchy 🤔 #1246323112178487306 message
hi
yo
hi my discord was hacked and stolen
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.
Art
You actually entered payment information for a "trial"?
Did you at least use a "dud card"?
Sometimes you have to.
Sometimes you can't use "valid but not real" cards either
it charges $1 to verify so a dud card won't work
I just buy a $5 gift card.
They charge it but refund.
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.
You know when you click the Add Friend button on a profile then it says Friend Request Sent where that button was, right?
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
Ah no I haven't noticed that. Usually I don't add people they add me lol.
They could have at least edited it at least a bit lmao
"just the board" isn't theirs 
i went inside the server to double check and its literally MCCI 💀
Yeah, that model and the lockers are inside the firefighter building, the trash cans, cones, etc are all around :')
and i thought stealing traffic cones was reserved for drunk teenagers
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
looking at it now, yeah it's exactly the same as our one just without the extra textures on top
@hushed delta they aren't disliking your models :)
Its a joke lol, Im already having them redo a few
lmfao how many mcci devs here
at least 2 i'd say 🤔
there's no way to know really
could even be 3!
Reminds me of a mod with clay soldiers XD
@tribal oracle you plan on making that open source?
you and your open source 😛
adam im gonna

prepare to be open sourced
cap
Maybe, I still need to finish some things
Woah @long summit I didn’t realise you did models?! These look fkn brilliant
I don't do them, that was just a petty post because earlier someone posted our models claiming it was made by them in that exact way, so I posted the original ones :)
Ahh that’s why 😂 I didn’t see the previous ones
Still look so cool to the artists, talented people
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
It's very cool, and this weekend MCC will be live at Twitchcon which is quite exciting
Not gonna lie, I dislike MCC a lot
that's what he does, he wants to trick us 
i was shocked when i found out that he is not doing pixels but instead dev work 
You folks are always making big moves 😂 So cool to see a brand do something big though, ps. add me ingame, i had everyone until that friend wipe thing
But I have done some of that too!
why does the board look like this one
https://polymart.org/resource/dailyquest-ui-vanilla-friendly.4358

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
🧐 sus
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
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.
Inspiration be like ctrl+c ctrl+p
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.. .
I find hard to believe some of them were inspired as they are very much identical, but you're changing it, that's fine no hard feelings from anyone, just gotta watch out about how close you make them
Agreed, once again Im sorry.
Hello
Hello I am man.
@worldly pike so it's his action of talking about porn which is bad, right?
what about being immature in a harmless way
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
I don't ignore you, I'm trying to figure out what your deeper motivations are
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
lol
perhaps I wasted my time with this individual
lawsuit!
@worldly pike I don't think legal boundries have a place here
i smell free ahri skin
yeah but if your definition what an adult is with ur reasoning, ill do the same
why is zodd always involved in drama smh
Brain development vs instutitional adulthood, idk man I guess one just makes more sense to me
do you think the age of consent should be 25 then
yeah im not gonna take you seriously lol
doesnt mean they should 😭
So you agree that the law doesn't agree with what should be all the time
no what im asking you is if you think being 25 makes you an adult, should the age of consent be 25
idc about the current laws
i really dont
Age of consent is a legal question
what language is that? very long way to say yes or no
idk what language your speaking tho
so
¯_(ツ)_/¯
age of consent is a line that has to be placed somewhere, it's always gonna be disputed by some
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
so you say minors should be able to have sex?
You're strawmanning so hard rn
there's a level to things which usually are said to require different levels of maturity
yeah ik
lol
im not taking u seriously
they are in many countries
so im just wasting ur time
and states
your supposed dislike of immaturity is ironic
if your gonna keep replying to me, turn off the pings, cheers
Actually that's true and so funny
you can turn on DND
Does that actually work
That's so fucking funny lmaoooo
but to be clear age of consent is still 18+ in most places
always
Hot take popcorn is overrated
its always Ixume or zodd that is involved with some kind of drama
You're just conflict avoidant
yeah i only like lighting up the fire n then observe 
drama is an interesting way to describe it
"yea we use ai in our hiring process"
ive figured out the ultimate job search tactic
AHAHAH
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.
Sounds like a free virus
Yeah
It runs python scripts
literally all it does
Good if you want to get a reverse shell to your host
other than that, not really
real
It's probably to exploit your MC host for additional computing power
Hi. Can anyone help me on how to make a sub GUI menu on Deluxe menus?
never I love docker
If you have a free slack workspace, back up your stuff
I deleted my account a while back
Jython remains on top
mf is tryna commit illegal activity
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
#dev-general please
@abstract bramble what is this supposed to mean, lol?
"I'm not the owner but I got roles ig"
hes just trying to test the "hackability" of his server, definitely not someone else's
Hello
ahhhhhhh ofc ofc
oh my god #1246323105719124028 message
l8
Throwback to this #showcase message
Ahaha that's good
Reminds me of emojicode
Hewwo
Presidential debate opening felt like a wrestling match intro it's so funny
shocked biden didnt shit himself
bro literally said beleraus was in nato
like he doesnt even know who were posed to be against
It wasn't a very strong display. I didn't expect much from it FWIW
"we finally <mumblin> beat medicare!"
"yeah he beat medicare to death" fire trump line
cause it was overly biased for biden it was never gonna be a trump victory, but this has been a biden disaster
nah trump was solid during his presidency
That's a hot take that I wont elaborate on
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
Aren't you like, not American
no but i can study another country
real
and i can understand another country's culture
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
why do you think universal healthcare works in europe
smaller population, more densly populated, less individualism
ummmm nope! how many americans you know go "i love the government!!!"
america is based of individualism
You're conflating social services with government
its based of the american dream
nope!
social services are a government service
Also a lot of that has historical precident
nhs, ias, rds all not government branches?!?!?
i wonder why im using it then hmmm
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
I'm actually not getting into this with you. I literally live here 🥺
ya know obama care isnt the answer, getting more money in the pockets of americans is
yeah and ima move to texas some day
im actually meeting a texan government senior soon cause he knows my uncle and hes coming over to celebrate pride in my city
so i cant wait for that cause i like talking about texas
nah ill most likely forget you by then cause it will be in 6 ish years
Ok
after ive been in the royal navy
i know you dont im not saying you do
When texas had that power outage and texans were forced to pay expensive bills I thought that was funny of Texas
That's actually me where'd you get that
Why is it “Room 2 ½” not “Room 9 ¾” 😔
huh
Random pic I took yesterday
You was at Disney?
Yes, visited paris and disney
I wanna come back next year ngl
Its one hell of an experience
luckyy
Indeed I am
@zenith mauve ayo
I feel like Steam tries to establish a anime character...
We love steam girls
I'm going to Paris next summer, any places you recommend?
Specifically paris or disney too?
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)
no
The night shows are extremely good. Walt Studios is more for "adults" and there are still some cool stuff for grown ups, we went with a small child so ye
But ye not much I can do, only tips I can give is to watch out in the metro, quite sucks, and yeah, i just went to the typical eiffel tour, louvre, sacre coeur and yeah, was mostly at disney
@naive agate #1246323105719124028
@daring vale Your post is removed from #1246323105719124028 read the rules!
bro what rule did i break
Request paid is to request a service
The man, the myth, the legend is back on BuiltByBit, https://builtbybit.com/threads/looking-to-sell-website-upload-works.724290/
(Those in here from back iin the day will remember the name)
that raymond guy
yess 😂
Analyticus always on top. 😛 (jk)
If only /s
Analyse, always the 🐐
hi

steam femboys r far more superior
real
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
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.
Hi
hi
no
If you are unable to see the service channels, you were most likely banned for breaking the service request rules.
who are u a person or a bot ?
if only this question could be answered by reading
Hii
hii
Ugh who knows how to switch from basic to main nitro
hi
Oh I wonder.....
??
Add me if you know how
Would apreciate if a ecloud staff can approve latest release of formatter expansion.
done
by paying 
bro i know that but im asking how does a bot know to reply to me after a while i msg that and yk looked like a person
AI go brr.
bruh i feel like ur a real one
there are, many. ways 🫢
A glimpse of what's to come: Bundles! This inventory-space-saving item will make it easier than ever to add, view, or withdraw items.
See more about it in our latest Minecraft Monthly: https://t.co/vua5f5DU8y
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
interesting
shit, wyd in this situation
shit
is this edge?
Finally got that glider from Fortnite Reload, there’s so many sweats on Reload
o
Uhh unzip it and play Sonic Mania wyd
What is reload?
I play not often, but only on nobuilds when I do, so I'm usually out of the loop
uhm
them figuring out
wait people hate our current decisions for the game
what if we just............. go back to season 1 forever lol
Oh that's terrible, happy for those people I guess
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
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
they hit the most players they had in years
so yeah its just a gamemode dedicated to the og map
RIP I hated that map
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
it'll be sweaty because all of the original players will be flocking to it
yes
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 😂
Rough, may pick it up with a group
Yeah worth doing as a group of people you can talk to
is this edge? 🤮
h
better than chrome
you probably fan about windows recall too
helo
what?
hey I use edge too :)
@obtuse fjord I feel like carpets would look better than wool blocks... If you're using display entities, that is.
That is a wild request with a tiny budget: #1246323105719124028 message
@restive prawn Do you under the value of $5? It's literally nothing.
You should be used to this by now
hes trolling
@restive prawn you might wanna 200x that budget 😂
Am I reading this right?
"Make me a server with 10 fully custom plugins for $5"
yes lmfao
Especially for 5$ yikes
$7
[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)
you keep CONFUSING ME
UwU
You confused me >:(
you share name with my gf
Yikes
it is striking
truly
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
why does jetbrains have multiple project management tools
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
hi
Hi
hi
Wild spam.
Me too
My guy has evolved.
Hey
yes
Mhm, i will definitely test that today, thanks for your suggestion 🙂
defo not hacked
@boreal escarp can you do something w that bot? xD
done
ty ❤️
Just an FYI, @shut halo is a fake “woman” from Lagos, Nigeria trying to scam people into buying them gift cards
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 😂
💀
lol
I figured since they also randomly added me probably just went through the server list adding people
Yeah I assumed they was adding lots, as it seemed random to just add me
They accidentally posted this which showed the location lol
LOL
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
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?
|| 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
||
does yt music even have an app?
no, or idk
Spotify presence works even without app and works even if you play game/have other activity meanwhile listening
special priviliges 
first comment shows an alternative
dealing with ladyboys is easier than with women, bring them on
Hello
@coarse vale dyk how to fix this o_O
LOL
lol
try to reinstall the program, it may fix that problem 
no idea
finnda download that .dll
this suits better when downloading using steam or any other games store
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 🥲
Guys, i clicked cancel nitro then pressed re subscribe would that mean i payed again?
i think re subscribe means that it'll auto-pay when your nitro runs out
cancel nitro means that it'll cancel your auto-pay, not the actual nitro
ohh okay
Can i dm u a question?
uhhh can you ask here? 🤨
no photos allowed😓
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.
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
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.
just wanted to say that
?
this
i did but they always say the same thing. So im trying to ask members
Any Germans ?
dafaq
Why is "Technoblade"'s channel doing a "premiere"?
They found a Ouija board
his dad runs it
i don't like that he's doing that tbh
i wish it was left as its own thing
british youchuber tommyinnit compiled clips for a new video on technoblades channel
"Now I am become Technoblade, the Destroyer of Worlds"
Technoblade Never Dies!
Merch at: technoblade.com
Thumbnail artist:
https://x.com/fotricxing
Maximum possible thanks go to @TommyInnit for helping @MrTechnodad track down this footage. Tommy handled the entire process of editing this into shape and getting it ready for everyone to see! T...
Hi how is everyone today :D
good :D
Blursed
Trying to figure out how to get the children of "folders" in Google drive
depressed as always 💀
Oh?
why google drive
felt that
Just a semi-secure drop box for image dumps to process
Ah
the particle library i'm writing has so many Supplier objects i'm wanting to kill myself
Oof
Should've used Kotlin
indeed
i technically don't even need to write this in java
I’m doing a mix of coding more content for my server and writing up more complex docs to give to the lead dev.
Should've used Rust then
💀
or haskell, which im learning
ill learn ocaml and rust after i get the hang of haskell
which will probably take a long time
Not that anyone was concerned, but apparently you check if the files have a parent rather than checking for children of a folder.
Uhhh idk
hello im looking for plugin help
Hello. I make plugins.
hello
guys'
can anyone help me plaese
i really need help
could you join this server
for a giveaway
aw man
cant send link
😔
You're not allowed to advertise other servers unless the channel permits.
I looked at the server that you posted and it is completely unrelated to this server so wouldn't be advertisable here anyway.
Real
awww
what sane person would write minecraft plugins
You dont like getting paid, do you?
Writing plugins is for suckers
I will piss on your AI grave 🙂 ✨
Hi, I write AI.
👆 @honest thistle
Double for you
cringe
what kinda person would write minecraft plugins for money
True
Finally got the drive share link from api for images processed into Vision API -- It's decently accurate, this was the first test image.
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.".
Gotta hit the comment quota to sell resources or something
😭
on fucking god
It's a fresh account haha, registered today.
😏
i swear they coming up w the most random advancements 
oh thats in 1.21?
it came in 1.17 i think
i hate that they added more copper stuff 💀
bruh its so messy now
the recipes
it doenst feel like minecraft now
look at this spinning shit
well, i have a custom crafting system, meaning i ll have to add the recipes manually to my server 
and its gonna be an annoying process
theres an item called breeze, it can blow ur player upto 8 blocks
what
didnt get it
my crafting table is basically deluxemenus
oh shit.
yuh 
cant u use like
just enough items mod with dm
and also theres a new crafting table.
yuh i aint gonna use that on my server 💀
why do they keep adding this shit
for the love of god just add some simple animals and more foliage stuff, thats all that everyone wants
Y’all seen that RealismCraft thing on bedrock?
huh
hello
is 1.21 support coming?
for deluxe menus?
just bedrock?
boooring
xD
Yeah haha sadly, would’ve been so cool for Java too
download the latest dev build
o i wanna use it on aternos
If anyone enjoy MCC I recommend watching the VOD from twitchcon, this one was so good!
dont
y not
is it me or request paid is getting wilder and wilder with the prices
Summer hosts, it'll even out when they go back to school
link? Also, you were there?! pog
Did you work on it too?
twitchrivals went live on Twitch. Catch up on their Special Events VOD now.
I was there yeah
Hey i am looking into buying a Ubuntu Server which i can host minecraft servers on what hoster and packet would you guys reccomend ?
e
Nice try!
e
i mean theres oracle free vps
¯_(ツ)_/¯
@lyric matrix Don't bump read the rules your posts are being removed don't repost or you will be service muted.

