#minecraft
1 messages · Page 12 of 1
mind showing me step by step
short call?
bump
No
what you want to buy more specifically?
I was thinking about something like this
But i never worked with PebbleHost so i was looking around for opinions
ah shit. big dedicated machine
Yes
They have a 60s setup time wich is crazy, i really need a better hardware asap
I'm personally using Netcup VPS right now. I was told about it and so far it is working great. Not running anything large on it tho
https://www.hetzner.com/dedicated-rootserver/ax102 i ordered this from hetzner but it will take weeks because they fucked up something
Find your reliable dream server, optimized for high capacity use, ever-growing storage needs or rapid and parallel processing.
Any opinions about this dedicated?
- any opinions about pebblehost?
That's a great machine, quite expensive compared to hetzner but still good
have you looked at soyoustart
?
They used to have decent pricing for old ovh servers
I heard bad stories about it
how so?
it is an ovh reseller iirc, it should be pretty good
I had bad experiences with ovh
So i don't see how a ovh reseller could be better
lol
but that's just me you know
yeah fair
I think i'll go with the pebble one
The server is good
I contacted them on discord and they confirmed they can install it in 60 seconds
wich is good
I've personally only ever had good experiences with them. I was affected by the datacenter that burned (data wasn't lost but vps was offline for a week or so) and they gave me 2 extra free months and didn't make me pay for the 1 I used either.
I only dislike the setup fee about ovh, in rest they are nice
Ended up getting this
Already up and running
Pebble's ceo literally setted it up for me lol
Yeah, i was thinking the same
i think i'll just set up everything with it
Since i'm already trasnfering all datas
i take the chance and install ptero
it automatically set up dockers too right?
guys can u help me ?
public class Kit implements CommandExecutor {
public boolean onCommand(CommandSender sender, Command cmd, String commandLabel, String[] args){
World world = Bukkit.getWorld("ul_ffapvp");
Player player = (Player) sender;
if(sender instanceof Player) {
if (player.getWorld().equals(world)) {
Inventory inventory = Bukkit.createInventory(player, 18, ChatColor.RED + "sas!");
ItemStack item = new ItemStack(Material.NETHERITE_SWORD);
ItemMeta meta = item.getItemMeta(); meta.setDisplayName("Spada Goduriosa"); item.setItemMeta(meta); inventory.setItem(0, item); player.openInventory(inventory); } else{ player.sendMessage(ChatColor.RED + " " + ChatColor.BOLD + "Sorry! " + ChatColor.WHITE + "You cant perform this command here." ); } } if(!(sender instanceof Player)) { player.sendMessage(ChatColor.RED + " " + ChatColor.BOLD + "Sorry! " + ChatColor.WHITE + "You need to be a player to perform this command!" ); } return true; }} im trying to make objects unclickable, ima send part 2 now
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
okok
You can also use code blocks:
```code language goes here
code
goes
here
```
https://paste.helpch.at/uxucebacoq.java i think it's all correct but the event isnt cancelling, do you think that it's some sort of plugin that is not letting me cancel de event?
lol
Try printing the title and see if it matches
wdym by matches
Also, i suggest you to get rid of those pyramids (branching in branching in...)
If they are same, sry bad working 🙂
oke thanks, ima try
ill let you know in a minute
like, they are matching cus the title of the inventory is "ChatColor.RED + "sas!" and even name of the inventory in the event it's the same
so i don't think that's the problem
Your code
public class InventoryCancelEvent implements Listener {
@EventHandler
public void onInventoryClick(InventoryClickEvent event) {
Player player = (Player) event.getWhoClicked();
ItemStack item = new ItemStack(Material.NETHERITE_SWORD);
if(event.getView().getTitle().equalsIgnoreCase(ChatColor.RED + "sas!")){
if (event.isLeftClick() || event.isRightClick()){ // Branching goes brrr
Bukkit.broadcastMessage("YES");
event.setCancelled(true);
}
}
return; // Useless 😁
}
}
```could be turned into
```java
public class InventoryCancelEvent implements Listener {
@EventHandler
public void onInventoryClick(InventoryClickEvent event) {
Player player = (Player) event.getWhoClicked();
ItemStack item = new ItemStack(Material.NETHERITE_SWORD);
if(!event.getView().getTitle().equalsIgnoreCase(ChatColor.RED + "sas!")) return;
if (!event.isLeftClick() && !event.isRightClick()) return;
Bukkit.broadcastMessage("YES");
event.setCancelled(true);
}
}
i have plugins such as: mine, essentialsx, luckperms, grimac, placeholderapi, znpcs, vault, via version
ima try it
sorry im not really good at java loll
single line returns 🤮
doesnt work
idk why
i have the inventory's item right in my hand
it isn't cancelling the event
do you want screen share
??
even of the cod
code
that i wrote
What I've seen two days ago: https://cdn.discordapp.com/attachments/434007795709247488/1102628175604879482/image.png
oh yeah finna watch that defenetly😂
they were talking about the single line returns not the guarding clause or whatever it is called
loll
anyways, the event isn't cancelling still
It was not a fix, it was an optimalization
yeah but idk what's the problem like, wtf... this should be right
These look better for you?
public class InventoryCancelEvent implements Listener {
@EventHandler
public void onInventoryClick(InventoryClickEvent event) {
Player player = (Player) event.getWhoClicked();
ItemStack item = new ItemStack(Material.NETHERITE_SWORD);
if (!event.getView().getTitle().equalsIgnoreCase(ChatColor.RED + "sas!")) {
return;
}
if (!event.isLeftClick() && !event.isRightClick()) {
return;
}
Bukkit.broadcastMessage("YES");
event.setCancelled(true);
}
}
public class InventoryCancelEvent implements Listener {
@EventHandler
public void onInventoryClick(InventoryClickEvent event) {
Player player = (Player) event.getWhoClicked();
ItemStack item = new ItemStack(Material.NETHERITE_SWORD);
if (event.getView().getTitle().equalsIgnoreCase(ChatColor.RED + "sas!")) {
if (event.isLeftClick() || event.isRightClick()) {
Bukkit.broadcastMessage("YES");
event.setCancelled(true);
}
}
}
}```
Does it broadcast "YES"?
negaiton
if not -> return
same as if -> do
➡️ If it does, then there is any other plugin inhibiting it
➡️ If it does not, you either did not register the listener or the titles are not the same
⬆️
oh my god, it seems like i didnt register the listener🤦♂️
Happens to every beginner, no worries 🙂
wait a second
getServer().getPluginManager().registerEvents(this, this); did i register a listener with this
getServer().getPluginManager().registerEvents(new Listener(), this); or this, but "new Listener" is an error
the first line is
this refers to the object instance that you're calling it from
MyClass {
void doSomething() {
// this is MyClass instance
}
}
OtherClass {
void doSomething() {
// this is OtherClass instance
}
}
Must be name of the class where you listen to the events
⬆️
Your main class should not be a listener class.
There is an error, because
- You don't have
class Listener(or with an empty constructor, open to interpretation because 'error' can be anything). - You're trying to instantiate
Listenerand pass it toregisterEventsand it does not implementorg.bukkit.Listenerclass, which registerEvents expects - I'm pretty sure it has to be
new InventoryCancelEvent()in your specific case.
- Listener not MyListener 🙂
👍
Still once there 😁
who can help with the guilds plugin. The bottom line is that the economy only works through essentials, and I need to connect the economy through CMI, who knows how to do this?
Tom nook is great with that
The economy relies on Vault, which is also used by CMI and Essentials; scroll down to where it says Economy on this page https://www.zrips.net/cmi/
Link your account first
Hey everyone, I'm running a minecraft server on a local computer, everything worked fine until yesterday. There seems to have been a short power outage and thus the pc was shut down. When I launch the Minecraft server now, everything looks completely normal in the console. But when trying to connect to it, it prompts "Timed out, no further information".
The server is portforwarded to a domain, but I've also tried my direct IP and localhost, of which nothing works. So I feel like the problem is with the server pc, but I have no clue where to start looking. Any ideas?
have you checked to see if your ip has changed as a result of the outage
oh actually if you tried localhost then that shouldnt be the reason
you could make a temporary test server and see if you are able to connect to that; if you can then that probably means something is wrong with your server/world files
Check if the firewall settings allow for your server port and check the logs to see if anything could have caused that issue
The firewall settings are correct, logs are completely normal at startup. No logs from before the issue cus it was a power outage, so no normal shutdown procedure.
I'll do that, thanks
If the test server works then I’d say it’s the world file
are you sure the IP is still the same?
if there was a power outage, it could've changed the (public) IP
Looking for a mod that would add a new ui component to minecraft which would just let me know if my sprint is on or of (when using toggle mode) for 1.19.4 fabric
,
,
Suddenly everyone wants configurator after I'm busy
I uploaded the menu and added it to the config but it doesn't seem to appear on the server. What should I do?
sps
Can someone help me I’m looking for the placeholder for placeholder api for marriage master to display the partners name your married to or if not married says not married?
%marriagemaster_IsMarried%
i did that one it just says true or false
I'm looking for one that says partner name or not married
Then you must be looking for
%marriagemaster_Partner%
or
%marriagemaster_PartnerDisplayName%
Yes thank you so much
Also I am trying to sell a voucher on tebex using ultimate vouchers I am trying to do for example /give {username} 1 greenglow and when I do that nothing gets given or pops up
bing bong solar tweaks and bypassing mod lock on lunar client is gone
??
Wft is solar tweaks 😛
lunar client mod
ok
check console for errors it should says something
im pretty sure its the open_command
Hey, I need help! I have a Crystal PvP arena in my SMP and basically, it allows explosions and I'm wondering if there are any plugins that can reset the arena!
Please @ me if you have a response!
That very simple plugin to do using fawe api
structure blocks and command blocks 
@drifting thistle
any good chat plugins out there?
Those don't exist
does somewhat good exist?
Sorry i meant chat plugins don't exist.
Good luck
cap kkthx
they do
I'm not so sure
Hello!
are there any good chat plugins? I need it for my server
it gets 464 concurrent players daily at average, so I need some really good ones!
Alright thanks!
bro
help him already
someone
its been like 7 seconds
wheres the help
"help chat"
very innacurate name.
RO
I feel assaulted, lied, cheated, and scammed.
I feel so harassed.
I expected help.
I expected insta-help
yet it has been almost a minute and there is 0 help
stop assaulting him
its been over 30 seconds and still no help
yet the name is still "helpchat"
I'm so assaulted
im reporting this to discord.
yet so harassed.
💀
There aren't chat plugins sorry
bro there are
how do other servers get chat plugins kkthx
I'm not so sure
why'd he even get banned
No worries I'm here to help, replied
Does anyone know anything about the plugin ExcellentCrates ?
I don't
Nvm! I figured it out!
ye?
You Said Ping me when you have a Solution and the one guy over me Had IT @drifting thistle
oh ok thanks
sounds hard :/ can u send me a tutorial?
Add some background e.g. fancy clouds
Are you aware of google and youtube

Its really not that difficult.
Structure blocks are basically vanilla schematics.
Do you know a plugin that has /msg, /reply, /ignore with rank prefix support that is network wide? (Bungee)
now im confused
are you two together
and doing this on purpose
He was joking in my opinion, I'm taking it as irony.
considering they did this and vorbull just began harassing people in another discord
like exact same
in pufferfish host' discord
Oh, according to this message... They're just trolls and definitely in contact. #minecraft message
like fr
i dont know who allat is
he seems like a troller
I have a plugin!
if anyone knows about MineResetLIte
Is there a way to wipe a map without deleting anything in it?
it only deletes like the blocks that were placed
i need it really bad so it dosent wipe my map
cuz rn i need a way to reset my map when people build without deleting the whole thing
or a command to wipe blocks through console
because players can only acess certain blocks
?
1.8.8
1.12.2
1.16.5
1.17.1
1.18.2
v1.10.5
v1.13.5 - Latest
v1.13.5 - Latest
v1.13.5 - Latest
1.13.5 - Latest
nope
Please update for everyones sanity https://www.howoldisminecraft1710.today/
BRETT
We're reviving HCF and comp Factions with 1.20
1.8 PVP?

Modern pvp clear
gonna be time to revive SpigotMC Reviews
who can help me with something?
This website might help you a lot as the first: https://dontasktoask.com
did i get ghost pinged here
yes
@dapper drift I will correct these wrongs
what?
i still dont get it but thanks i guess for correcting the world
yeah place a kit or quests npc
How do i stop it showing stats on interactivechat when a players username is typed in chat?
.
My minecraft when i use 1.19.1 or 1.19.2 or 1.19.3 or any version at all runs 100% cpu
but when i use 1.19.4 only 25 to 35%
is it normal? also in 1.19.1 and 1.19.3 lag is unreal
how to fix?
Each version usually comes with performance improvements
100% cpu -> 25-35% is likely a different issue
but might as well just use latest version 🙃
they removed the bitcoin miner from 1.19.4
See dkim
The bloat they add kinda negates it though.
bloat?
Entities, mechanics, blocks etc...
Software bloat is a process whereby successive versions of a computer program become perceptibly slower, use more memory, disk space or processing power, or have higher hardware requirements than the previous version, while making only dubious user-perceptible improvements or suffering from feature creep.
Minecraft is adding features, not bloat
There are multiple definitions for bloat.
I'm just going off of the one google shows first for "bloat software"
¯_(ツ)_/¯
but iirc it means when the app has unneeded or unneccessary things
but when a game adds features, the majority likely does not think its unneeded or unneccessary
I get that. But necessary or not additions can still be called bloat.
People still like running 1.8.8 because it doesn't contain all the additional "features" which people could classify as "bloat"
true, I just meant majority but a lot of 1.8 pvpers don't like the 1.9+ pvp features
It's like with windows. People call it bloated because they keep adding features that some if not all users think is unnecessary.
ye thats what i meant by majority
although maybe majority isn't the right word anymore
bloat can mean multiple things ig 🙃
Yeah it's just opinion. I mean 1.8 will (for now) always run faster but it doesn't contain all the additional features. So it's what the users prefer.
I do only miss the old pvp mechanics
I don't technically "play" minecraft, I prefer 1.8.8 but I work with versions 1.8.8 to latest. 🤷
That's homosexual behavior, if we were in a universe in which homosexuals behaved that way.
In this universe it's just frowned upon.
hey
@empty matrix
so im having issues with my ip forwarding and its coming up with this error ill send it to you in dms
https://www.spigotmc.org/wiki/bungeecord-ip-forwarding/
have you modified both the config.yml and the spigot.yml?
The home of Spigot a high performance, no lag customized CraftBukkit Minecraft server API, and BungeeCord, the cloud server proxy.
what happens if you try connecting to the spigot server using the ip in config.yml
instead of through bungee
so the bungee ip works
nvm
yes
in here
ok lemme see
yup i change the bungee to true
IP forwarding must be manually enabled on both the proxy and Spigot
what does this mean
spigot on the hub server or what
or on the bungee server
and you restarted them all?
ill try them
i think i have no
tho
ive restarted all of them
nothing has changed
the player list comes up
but it doesnt let me join
@empty matrix
wdym
restarting bungee
yup
i did
is there a fix because server is releasing in 10 days
and im nervous
if i can fix it
@empty matrix
ive looked i havent seen this befoe
for the ip for the ip forward i use the bungee ip correct
where?
you only have to do ip_forward: true
and in spigot config, bungeecord: true
wait
yeah
just to clear things up
ip forwarding and port forwarding are completely different
im doing ip forwarding
ok then you shouldn't be putting any IPs anywhere besides the normal bungee setup
or
can u send spigot.yml and config.yml in dms?
not spigot.yml
actually just config.yml
wb now
for me every single version of mc 100% cpu 1 fps
i tried all 1.17 1.18 even 1.19.1/.2/.3 and 1.20 pre same issue
1.19.4 only this one doesnt:
25% cpu 100 fps
eventhough my pc is good predator laptop
i use original legacy launcher
what causes this?
how to fix it?
HELP
Someone got op on my server idk how
while i was using ploudos and is in gamemode c
please help me
@buoyant haven
why ping a admin
"free host", "someone got op"
is it offline mode
wdym
have u tried turning it off and on again
im gonna kill my self (Joke)
your using a free host, a random one at taht
lol
you cant be expecting the highest quality or security
and is your online-mode setting in server.properties set to false?
@fickle sun The hands are weird, everything else looks great ✨
Make them thin?
Thinner, maybe slightly longer and bend them a bit (idk if it's the right word to say 😄)
.
chillibean
wut
chilibean
becomes a server owner has to do one thing that takes literally seconds if mysql "im lazy this takes too long"
kek
VoteParty
then look further
yeah cuz they are free and there's no incentive to keep on working on them for the devs
either choose from the existing free ones or buy a premium resource
someone can help me?
?
?help
» Give the helpers some details
» Ask suitable questions
» Be polite
» Wait
How can I disable end gateways (the portals that are being opened when someone kills the dragon players use these portals to get elytra from end city)
@drifting thistle
can someone help me
If I want my server to range from 1.8-latest, what version should I base the server on?
1.8
Simplest question in the west
?help
» Give the helpers some details
» Ask suitable questions
» Be polite
» Wait
??????
someone know how to fix placeholder errors?
#placeholder-api maybe?
Hey guys i want to ask why at my server its not working right the DeluxeTags plugin. I use the essentialschat plugin for the chat
Erm.. .. I don’t know much about that deluxetags.. but I know the tag plugin my server uses is AlonsoTags and it’s great !
Maybe yours needs to be updated!
i fixed thanks you
Yayy
How did you end up fixing it ?
It was working with this %% around it. and not with {}
A haaa good catch
i have world border set up but they dont work for me personally. i checked the bypass list and no one is on it. and i can just walk passed the border with out being knocked back.
@polar timber it seems like all JavaScript on your menu creating website is broken. Is this something you're aware of? If so, are there any plans to fix it?
Hello. Yes, I am aware of the problem, I have been working on a new version of the site on an updated stack for about 2 months now. At the moment, you need to access the site from the main page so that JavaScript correctly loads the site chunks.
Ah. Alright then. Thanks for letting me know.
[GENERAL QUESTION]
You are running WATERFALL (LATEST), with backend servers of
- PaperMC (1.8)
- PurPur (1.19)
- PurPur (1.16)
What exploits is your server exposed too? I have already solved DDOS, and UUID Spoofing.
depends on the server version, not proxy
1.8 is prone to have several exploits
while 1.19 is safer
Purpur can die. 🙂
Is a purchase of a virtual currency like coins in my store which can then purchase cosmetics, ranks, etc against Eula?
Doesn’t hypixel do the same shit? With their gold system or whatever
thats probably fine
as long as there is no unfair advantage to having like carrot particle effects
That’s what I was thinking, as long as no unfair advantage, okay thanks
Bro solved DDoS
LMAOOO
Velocity on top
Anyone can help with my issue?:
My main minecraft world that's used in every plugin is named "world" also in server.properties level-name is "world". Me and my team build map on worldpainter created "world_build" with infinite ocean. Whenever i'm trying to remove "world" that's blank and rename "world_build" into "world" the infinite ocean regenerates into normal minecraft world like in survival. How to fix it?
If i change level-name into "world_build" the infinite ocean chunks still regenerates and i cannot use /mvrename world_build world because it says it cannot be done
pooper crossposter alert
closing looks like it's BUGGIN'
Does anyone know of an online converter that takes lines of hex colores text and turn it in to its colored format? for testing item lores and such before adding them in-game
i don't really think one exists for multiple lines
pooper crossposter got answered on #off-topic
https://webui.advntr.dev/ kinda works
i guess
No need to guess, it's there.
first
yeah it should also be shorthand format
any possible reasons why tnt damage is not allowed in the server?
um how do i rename stuff in bold colors
&l
Do you get a message or anything like that when trying to place the tnt or what does actually happen?
doesnt
unlucky
:_:
where exactly?
tnt explodes and no damage
like a sword
normal players can do this
worldguard could be a reason
instead of diamond sword i wanna make it "test" in black color
using what exactly?
using an anvil?
theres a plugin or something for that ?
yez
Well yes, you can do that with plugins or just the minecraft:give command
but with an anvil you can't by default
also any good custom ore or custom enchant plugin ?
don't think this is going to work with anvils
for custom enchants the one that's most used is AdvancedEnchantments
its ok if only ops can rename
paid 💀
for ores, it's kinda hard to implement them in vanilla minecraft without mods
yeah. you won't really find any good free resources for any of your request really
and for the custom ores, even the paid ones sucks
bcz it is pretty hard to replicate custom ores without a mod
barry
worldguard by default?
cuz this world has no regions
bro
bro has a point
i cant paste images here but @timid plover , when you do /region list wasnt global supoised to be there?
I don't think so
nop, __global__ never shows in the list
it can't also be deleted.
or renamed
just modified
"Sorry, you can't use __global__ here" is what it says
does anyone have any prebuild tags of deluxetags pl that i can use ??
Не удалось интерпретировать полученный пакет.
на сайте trademc
as per the rules, stick to english
Hi
When I install VoteParty on my server, does it automatically register the votes that are made or do I have to do a previous configuration?
Voteparty requires also nuvotifier... https://www.spigotmc.org/resources/nuvotifier.13449/ Did you setup it also?
(If im not wrong)
Give rewards to all online players when the server gets a certain amount of votes! 1.8+
Hey, how do I set that up?
Haven't set it up yet
🟢 Get Support @ https://pebblehost.com/r/discord
🔻 Votifier: https://dev.bukkit.org/projects/votifier
🔻 VotingPlugin: https://www.spigotmc.org/resources/votingplugin.15358/
🔻 MinecraftServers.org: https://minecraftservers.org
Needing server hosting? Checkout PebbleHost with servers from $1/GB and public node statistics proving we don't oversel...
so i updated my bungeecord and out of no where only the lobby players and the lobby slots are displaying in the server list
is there a way to make it go back to default? without rolling back of course
every time i try to launch a world on modded 1.12.2 it stops at "Loading Terrain" and say's "Java SM Binary is not responding" and I am forced to close it. Minecraft then opens and says "this can be fixed by adding for memory/storage" which I have. anyone know how to fix this?
you sure you have the memory to add? like its not being used up by other stuff
Am I able to get support on Guilds plugin here?
Idk why you are asking again since the bot has already told you how to get guilds support
I did do the spigot linking, but it didn't open any additional channels for me, yet I have the plugin purchased
Did you get a confirmation on the server?
If he purchased it since last night the database hasn't been updated yet.
I can update it here in a few before I leave for work.
Alright, database is updated and you should see the channel now. Off to work. Be back tonight!
I need some help with gui menu anyone be able to help me
Hey, anyone know anything about .yml file creation, writing to .yml files and Vault? If so, I'd greatly appreciate your help over in #1007620980627230730 (: thanks in advance!!
does anybody know an invisible character that works for minecraft chat?
the minecraft client would probably render it as a question mark or whatever the unknown character thing is
if you're hosting the server, you can easily make an invisible character in the resource pack
bruh how i didnt think of that
I started getting back into Modded MC, I am using a modpack off curseforge and for some reason, only with this one modpack, my game will crash when loading for "failed to render overlay" or something of that sort
It only is happening to me, and every now and then I can get it to start fine
Anyone know what might cause this?
I know it sounds generic, but have you tried wiping your .Minecraft folder, and reinstalling Minecraft? Just in case you’ve got a corrupt file or whatever.
Make a backup first of course, but could be an idea to see
curseforge uses minecraft instances, so wiping the .minecraft folder will do nothing
since curseforge doesnt access anything from it
what modpack
Oh really, I didn't know that - thank you
Adventures and Dungeons 2
what does Schematic could not read or it does not exist: Schematic file is missing a 'Blocks' tag mean??
Incompatible versions of worldedit perhaps?
When im on the minecraft launcher and press "Play" It says waiting to install. And it doesnt change does anybody know how to fix that?
How do I order plugin
SMH
Soz not a genius like you 
Lmao Plexverse is being canceled
Yeah i saw
Am I tripping or it was never possible to jump and sprint at the same time? I can't figure out if it is a problem with my keyboard, with a program I have installed or it is simply how the game works LOL
Looks like it is caused by Micro$oft's PowerTools, but I wonder why, I don't have any module enabled that uses CTRL and Space
powertools ftw
yeah as soon I stop it, I can sprint and jump at the same time
oml the problem is "Peek"
Yup, happened to me like 2 days ago
I was freaking out thinking my keyboard was broken and everything
exactly lol
How nobody realizes that it's called PowerToys not PowerTools
yes
I'm a unique Discord bot created especially for HelpChat.
I was created and I'm maintained by @serene lotus with support from the Staff team.
I'm created in Javascript using Discord.JS
At this stage I'm closed source due being a mess and some secret internals. However you can contribute to my links/version knowledge here.
I did but cba to correct xD
so true micro$$$$$$$$$oft
if windows wasnt for money it would have been so much better
sigh... Microsoft is at it again with their bullcrap
https://www.youtube.com/watch?v=XdazSqfALiI
Minecraft is going after Grand Theft Minecraft for a silly billy reason
gameplay used: 1. https://www.youtube.com/watch?v=tIIR3Q7KN2k&t
2. https://www.youtube.com/watch?v=1__cddSAEOs
twitter: https://twitter.com/spatnz1
subreddit: https://www.reddit.com/r/spatnz/
oh hello there.
TLDR; Microsoft is trying to blacklist any servers with guns/gun references
Yeah, so stupid. Did they even send any notice before?
So.... what about... crossbows, bow and arrows, tridents, TNT, literal skulls that drop from killing your enemies...
it is
GTA MC server got told off
can you say "weapons are consdered non-complaint features under Adult Content requirement"
when a huge part of your game is PVP and PVE
ah. the thing says it differently than the email
Conspiracy, maybe thats why Mojang ditched the new combat changes...?
they just worded it poorly
the part of the rules they highlighted says "guns and firearms" but in the email they said "guns and weapons"
Gotta change swords now to balloon ones
still pretty sad. imo, one of the reasons the game is so big is that it allowed you to be creative and do whatever you want (as long as you were able to creat it)
I defo think its a microsoft decision
idk. still pretty sad. I used to play so much gta in minecraft
I played on that server a few times too. I even started making my own GTA core years ago (never finished)
"How many stupid decissions can a company take in the shortest interval?" speedrun
Hmm... what if GTA MC made the server paywalled to join? 
Would that make Minecraft happy
Or an ingame age toggle
If they get to take a cut, maybe 🤣
LMFAO "Toggle waterpistols".
The models and names are renamed, unless you confirm by cmd being 18+
and LOL
I think it could work
🔫
Bedrock servers do it and they are on the featured list xD
GTA becomes GWF - Grand Waterfight.
I even started making my own GTA core years ago (never finished)
https://i.imgur.com/sEgVHH8.mp4
https://i.imgur.com/U2oEXTu.mp4
https://i.imgur.com/CjWOLEU.png
https://i.imgur.com/wkPeWLu.png
https://i.imgur.com/c0Gfu6w.png
https://i.imgur.com/xAbqCFj.png
Shotgun!!! Illegal

Hey guys
I’m on a server
And there is a sound played
But I don’t know the sound
Is there a way to find out?
what
There is a sound played when I break a block
I would like to find what sound it is
Is there a way?
Could turn on subtitles...
??
It would tell you what sound is playing
record it and send it here I guess? maybe someone can tell
I don't think there's any other way
If it’s a noteblock it sounds like a custom block
Could open the texture pack, find the texture name and then compare to the noteblock file. It’ll say what blockstates it is.
So I am designing some game play for my project and wanted to ask something here. Players will have their own "islands"(it is not skyblock but it looks like skyblock island) and they can interact with the world, build, and chill there. Due to my world/island system(hard to explain), there will be no physic; water will not flow, sand will not fall, etc.
Do you think players will be angry because of that or like it? I have asked some people and most of them positive about it. Even it is negative, I have to disable the physic. I also would like to say that main goal is not "sandbox" but you are free to do that.
Feel free to suggest ideas, I am open with everything ^^
Where did my message go lol
Since when do you have permissions?
Oh no I now know where it went
I don't. I lied for clout

Anyone up for some MC?
If anyone who is interested in MC Hard Core Factions would participate in this thread it would be greatly appreciated!!!
https://www.minecraftforum.net/forums/servers-java-edition/pc-servers/3178811-groundbreaking-hcf-1-19-in-the-making
Hello all!
I think when building a server to enjoyed by a community, you ought to know what the players want. And sometimes, the server owner's ambition...
Someone knows what plugin can i use for /support?
i like user-21581546's response
at least mine is oneblock and not skyblock 
Whats the best minecraft ac? it aint vulcan or grim right?
vulcan
Vulcan
are the supports here active?
define active
they have a life
does that answer your question?
Can anyone suggest a realistic mine/quarry/dungeon build? or even a buildteam who do that type of work?
google can
why are you such a lazy bum and can't google yourself 🥴
there are plenty of sites where you can search that
Added
Close it
#1113758467057000518 don't waste your time with a request for 5$, friendly advice. Either make your own with deluxemenus and essentials/cmi/whatever else plugin or look on google for an addon for one of these plugins.
theres actually a plugin for essentials homes gui
just use essentials then
might still work for 1.19.x
have u tried it?
works fine on 1.18.2 apparently
you wanted a gui
you got a gui
?imgur
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.
i dont think anyone would do this for even 10 usd' but eh im not everyone
How do I install a forge server via a jar file
cant use the installer
This shitty host wont let me
install it on ur pc, then upload the files manually
what host are you using
Is it possible to make a fabric server ignore mod incompatibilities
Honestly, using ChatGPT for minecraft plugin ideas is such a good thing
It typed out a whole config idea and formatted it in a doc for me
Like it's so helpful 🙂
Meme moment
hi
i cant use this command /give Player1 minecraft:leather_helmet{display:{color:16711680}}
it say unknown item name
minecraft:give
✅
classic command override L
@tight yew your dms is off
neither are u lol, guess need to add friend first
Hey guys, how do you guys find your staff members? Specifically mods and builders. I know a lot of people will say from your own community but sadly most of our community just wants to play rather then be staff (since we are still under development)
I’ve tried a Reddit and BBB, had some luck with developers not so much the other two
Voting sites, spigot, mc-m etc...
minecraftforums
Voting sites would be good if the server was out yet, but yeah I’ll use them once we are released
I’ll make a post on spigot and look for some other forums. I’m sure planetMC could be helpful too
Staff members
builders
💫
Hello y'all! Me and my network need a new store design and we're looking for a good web dev. Do you know someone good at it?
Depending on budget, https://nikolovdzn.com/ all the way
I already tried sending him a mail but i got no answer
I wanted to work with someone who does that for work (hope you understand what i mean)
Will get him to add your discord
Thanks dude, i'd appreciate that
We for sure have enough budget if that's the average 400/500
Yeah think thats the average I see, maybe less for a store
Same here 🤞
Guys, so, I accepted an offer to make 3 low-medium effort plugins per month, at a fixed rate of 375-450$ per month, is it a W?
depends
I would've taken it as well
elaborate
Hi Charlie. Sorry for the tag. May i ask you what's his tag?
Only if it takes you less than 40 hours a month
Hey buddy, no problem at all I don’t mind - Harry#7517
it does
Thanks mate
hey would someone be up to help me trouble shot a crash i keep getting
ill be in vc room 1
can you show an error/screenshot (feel free to upload to an image hosting site such as https://imgur.com/)
It's currently 1:20 AM for me, so I gtg sleep, but maybe someone else can quickly view this channel and maybe see potential fixes without going into a VC and all that?
Hello Charlie! Sorry again for the tag. Did you manage to talk with Harry? We're quite in a rush since the summer is coming and i had no news from him
Hey pal, sadly not :(
Like he's not answering or your had no time to text him?
not replied to me
I see i see. Hope he answers
We need a brand new store for the summer
and normally it takes a couple of weeks to get it done so yeah
Fingers crossed
Thanks Charlie, i really appreciate it
😄
he does run a 60-100+ player server so there might be a size difference between ya two
and thats on school days
offline-mode tho so give and take
Lmao i was joking
kek
I don't even have a server
Might aswell make a Skript Gen server rn and become rich
/jji
Why do i feel like the role color changed ;/
on every 5 ticks:
spawn 1 {generator::item} at {generator::coordinates}
nope looks like i'm dreaming ;/
helpchat minehut gen server
anyone can help me with #1115358192537452705 ?
please its spamming and not showing players how many are there
Is there a chat plugin that superseded DeluxeChat?
ChatChat soon™️
any chat plugin that works
past experiences, I have used venturechat?
Big alert; curseforge has been compromised
Bukkit.org aswell
i have 2 questions regarding #1113758470689263616:
is offering skript services valid?
can the monthly message be edited?
considering skript is dogshit in performance and theres no point in paying someone to make a skript instead of a plugin, why would anyone pay someone to make skripts
We have no rules against offering custom skripts, yes you can edit you message as much as you want, you just cant post a new one
alright ty
Skript's performance isn't as bad as most people (including you) make it look like, I can assure you that
untrue but ok
have you actually used skript?
it's a possibility that skript code runs badly if you don't know how to optimize it correctly
well i've seen it enough in multiple spark reports, in many different cases + its just unoptimised in general
especially on higher player count servers
skript 2.6.4 is pretty optimized imo, + 2.7 will come out in a bit and that is even more optimized
The way some people use it is also a problem, for some small systems in case you don't afford custom development and don't want to use 5 plugins to do something, skript is actually a handy tool.
yeah its amazing in terms of productivity
full gamemodes is where the line should be drawn imo
How would I create a menu that shows a players homes?
Just going to drop this here so anyone who maybe hasn't seen it yet can keep themselves in the loop of things:
https://prismlauncher.org/news/cf-compromised-alert/
CurseForge Compromised
It's been resolved
Source?
We are looking into an incident where a malicious user uploaded projects to the platform. This is relevant only to Minecraft users and we have banned all accounts involved.
CurseForge itself is not compromised in any way! Please follow the thread below for more information 👇
148
CurseForge wasn't the only distribution platform affected, though
Apparently, anyway
Ah really, like Modrinth?
Not sure if modrinth is affected, but I know that dev.bukkit.org was
the plugin distribution platform, not the server software
how exactly is it shit in performance?
I have seen servers running 80+ player events that run on skript and it performed pretty well
ofc it could be (is) better to make a plugin instead of relying on skript but if you write it properly there shouldn't be any problems
Bukkit is owned by CF just so you know
And I think that you access both with one account
Yep
80 players is nothing (in terms of servers im speaking of)
Yeah sure :))
that sounds like bad planning tho
why would u run a 80 player event on skript..
because i didn't have much free time and the other dev knows only skript?
wouldnt that be a "skripter"
not a dev
Yeah
im a "skripter" but i know java and python so call me a dev 
IMO doing psudo code doesnt make u a dev, at max a skripter
test
Skript's code sucks, a lot.
it's really not optimized
You can 10x your server with Skript
😂
can you elaborate on 10x?
10x what? if it's mspt, then totally agree
or if it's negative 10x for tps, then also agree
if it's packet loss, then 5x
how does that boost revenue?
Giving your players a bad experience and possibly lag, won't bring money in?
or am I missing something
it will 10x the maintenance costs
Is anyone using Illusioners on their survival servers or are they prone to causing bugs etc.?
I was considering to add them as a very rare spawn as part of pillager patrols.
thx
I thought 1.20 releases today?
Mojang You'll soon be able to explore amazing structures in the 1.20 Minecraft update. The Minecraft 1.20 update will be released to all platforms on Wednesday, June 7th at 7 AM PT which is 10 AM ET and 3 PM BST.
soon
👍
what did 1.20 add
Headaches
Pain, having to support 1.8 to 1.20 now 😂
Maybe by 1.30 we can move to 1.9 as a limit
Nah
does anyone know any good server hosts which are not overpriced and unreliable
?hosting
Free:
- Openshift: https://www.openshift.com/
2gb of memory, automatically expires after 60 days, but you can resubscribe as often as you'd like. - Heroku: https://heroku.com/
No CLI or SSH, no file access, might make your app sleep if you reach monthly uptime limit. - AWS (Free tier) https://aws.amazon.com/free/
Free tier containers from Amazon, expires in 12 months - Google Cloud Platform (Free tier) https://cloud.google.com/
Free tier google cloud servers
For more see: ?hosting-free
Paid:
- OVH: https://www.ovh.com/us/vps/
Full VPS starting at $3.49USD/month, choice of OS, high reliability. - Digital Ocean: https://m.do.co/
Starting at $5/month (USD), you can have your own server with 20GB SSD Disk, and 512MB Memory. - Linode: https://www.linode.com/
Starting at $5/month (USD), you can have a server with 20GB SSD Disk, and 1GB memory - Vultr: https://www.vultr.com/
Starting at $2.5/month (USD), you can have a server with 20GB SSD Disk, and 512MB Memory - Time4VPS: https://www.time4vps.eu/
Starting at €0.66/month, get 20GB Storage, 512MB Memory, 0.5TB Bandwidth, and Daily/Weekly backups.
Various Linux OS distributions, IP addons and instant cPanel/WHM licenses. - VIRMACH: http://virmach.com/
Full Windows and Linux Desktop VPS starting at $7USD/month and $10USD/month respectively. - Sloppy: https://sloppy.io/
Starting at 5$/month (USD) You can have 500MB Memory, 1TB Transfer per month and 16GB of storage. Extra
storage and ram can be bought. - Bithost: https://bithost.io/
Just a forwarder to DO, but here you can pay with crypto currencies like bitcoin, dogecoin, etc
For more see: ?hosting-paid
@west flame
Thank you lol
xD np
lots of people had bad experiences with it
(I have had a very good experience with it personally)
4 ocpus and 24gigs of ram, 200gb block volume (iirc)
Same
Used it for my bachelors degree project, didnt have any issues with it whatsoever
Ran a modded skyblock server with 100+ mods, handled it well too
yeah for being arm based the performance impressed me
Takes a degree to find the free tier tbh
Huh
Was a joke, but the Free tier is just difficult to locate if you're not careful.
i have a guide :))
just put that in ?hosting and ?hosting-free 😌
i mean theres prob like 1000 guides online anyways
where can i find the resource pack for bedrock
A modified version of the guide produced by u/Belaboy1095969 on the Admincraft reddit using Ubuntu LTS.
a more prettyfied one
Like a dev server?
The whole server shutting down multiple times a day and then somehow Oracle terming it cause I wasn't using it and deleting my volume
I mean I used to dev on it but it's just too painful
I was just wondering if you were using it for like player to play on
I wish
Doubt that would've worked well lol
I considered using it for a dev server of sorts, but I haven't had much opprotunity per se.
I did make a website so I guess I could publish it there
And all the good working ones were already given out
Also I didn't upgrade to a pay as you go account
After multiple AWS lost fortunes I don't trust myself much anymore
people have done it honestly
small smps run fine on it
never had that happen in the 3 years ive had my oracle cloud /shrug/
@native gust did you laugh at all making that French fry
uhm gotta find a new cracked launcher, mine's broken .-.
(for testing plugins, not for use, saying before I get canceled)
smh!!
Too late, already cancelled
I just use a console client
console client is the way to go
personally I use mineflayer bot, made with javascript
console clients sometimes behave weirdly, had some issues where the plaer couldnt be hit
and using mineflayer I've written some commands for the bot to follow me or move around or pickup items
that's true
why can't you use your main account for visual stuff?
I use bots for pvp related stuff
because the whole system is gui based, so I have to check how it behaves in both ways
i need help making aternos server
about bending like in avatar
anyone who can help priv!
can anyone give me list of plugins that are used for making hypixel skyblock
leaked!!
I need help when I try connect to a minecraft server I get an error of Network is unreachable I need help pls
Are you using it?
🤫
I dislike Skyblock so no
don't download stuff from random links kids
your loss
@remote bay I'd recommend downloading it before it gets taken down
nha, too much work
I would never give up my pride to use a leaked jar like this one. But I don't want to let you down GabyTM.
🫶
👍
👍
👍
👍
👍
👍
hi so i use skript to do things like make a top 10 leaderboard but idk how i would manage to move it into holographic displays because i want a leaderboard that shows top 10 kills, deaths and blocks mined or something like that, i have made a command using skript to show in chat but i would like to use hd with it, could sm1 pls help me with that?
Use translator or something but this is pretty good.
Probably better ask in guture skunity discord 😉
Tehdään Top 5 Hologrammi ja Top 5 chat ilmoitus.
Tässä sarjassa näytän ja opetan miten Skriptiä käytetään! Skript on plugini jolla voi "koodata" helposti melkein mitä vaan Minecraftiin!
skript-holo:
https://github.com/Blueyescat/skript-holo/releases
ProtocolLib:
https://github.com/dmulloy2/ProtocolLib/releases
Katso kaikki Skript tutorial ja...
Just put [GenerateNoLag] at the top of your scripts
Skript and No Lag is the impossible combination
me, putting everything in async() to remove all lag
If you async(async()) your performance doubles, and it gets exponentially better each time.
wait... what actually happens when you call a method that is ran async in an async?
You set off one of Russia's nukes.
Not much probably
Double async
yeah even fasterr
The more you nest it as async the longer it will take to run so essentially you're just adding a delay. Atleast with spigots api.
just use ajleaderboards man for hologram leaderboards
i alr got it lol dw
then why do you want skript for hologram leaderboards
Hi, does Oraxen plugin have a Discord server ?
Yes. They also have a github:
Github: https://github.com/oraxen/oraxen
Discord: https://discord.gg/4Qk5kBT9UX
cant claim github student package, because my school email cant receive emails from other services 😦
studentId?
hmm wym
Have a verifiable school-issued email address or upload documents that prove your current student status
idk what documents exactly, maybe like an ID
Documents that prove your current student status include a picture of your school ID with current enrollment date, class schedule, transcript, and affiliation or enrollment verification letter.



