#minecraft

1 messages · Page 12 of 1

timid plover
#

yeah

shadow parcel
#

mind showing me step by step

timid plover
#

short call?

shadow parcel
#

ya

#

call me

cunning abyss
#

bump

bright raptor
#

No

cunning abyss
#

k

#

PebbleHost opinions?

shadow parcel
#

Id use Bloom host

#

personally

#

they have great options

cunning abyss
#

data center locations?

#

Oh, america

#

I have a europe based server

timid plover
cunning abyss
#

I was thinking about something like this

#

But i never worked with PebbleHost so i was looking around for opinions

timid plover
#

ah shit. big dedicated machine

cunning abyss
#

Yes

#

They have a 60s setup time wich is crazy, i really need a better hardware asap

timid plover
#

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

cunning abyss
timid plover
cunning abyss
#
  • any opinions about pebblehost?
#

That's a great machine, quite expensive compared to hetzner but still good

timid plover
#

It looks decent.

#

price is a little high. at least for my budget :))

timid plover
#

?

#

They used to have decent pricing for old ovh servers

cunning abyss
timid plover
#

how so?

slow imp
#

it is an ovh reseller iirc, it should be pretty good

cunning abyss
#

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

slow imp
#

yeah fair

cunning abyss
#

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

timid plover
#

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.

slow imp
#

I only dislike the setup fee about ovh, in rest they are nice

cunning abyss
#

Already up and running

#

Pebble's ceo literally setted it up for me lol

cunning abyss
#

Yo guys

#

Opinion on using pterodactyl for a network?

timid plover
#

it is pretty nice

#

makes life very easy

cunning abyss
#

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?

timid plover
#

yeah

#

the install is just a few commands nowadays

#

it is pretty nice

cunning abyss
#

Yep, i'm running ubuntu 22.04

#

Didn't know it uses redis

hazy vapor
#

guys can u help me ?

still holly
hazy vapor
#

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

umbral lanceBOT
#
FAQ Answer:

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

hazy vapor
#

okok

still holly
#

You can also use code blocks:
```code language goes here
code
goes
here
```

hazy vapor
hazy vapor
still holly
#

Try printing the title and see if it matches

hazy vapor
#

wdym by matches

still holly
#

Also, i suggest you to get rid of those pyramids (branching in branching in...)

still holly
hazy vapor
#

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

still holly
# still holly Also, i suggest you to get rid of those pyramids (branching in branching in...)

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);
    }
}
hazy vapor
#

i have plugins such as: mine, essentialsx, luckperms, grimac, placeholderapi, znpcs, vault, via version

#

ima try it

hazy vapor
hazy vapor
#

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

hazy vapor
timid plover
hazy vapor
#

anyways, the event isn't cancelling still

still holly
hazy vapor
#

yeah but idk what's the problem like, wtf... this should be right

still holly
# mystic bronze single line returns 🤮

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);
            }
        }
    }
}```
still holly
hazy vapor
#

ima try

#

but why did u add !

#

"!", sorry

still holly
#

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

hazy vapor
#

my headache intensifies

hazy vapor
still holly
#

Happens to every beginner, no worries 🙂

hazy vapor
#

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

mystic bronze
#

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
  }
}
still holly
#

Must be name of the class where you listen to the events

mystic bronze
#

Your main class should not be a listener class.

mystic bronze
mystic bronze
#

👍

still holly
#

Still once there 😁

hazy vapor
#

God now this works

#

thanks

#

finallyyy

drifting thistle
#

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?

bright raptor
#

Tom nook is great with that

wary willow
void oracle
#

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?

forest gazelle
#

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

drifting thistle
void oracle
drifting thistle
empty matrix
timid plover
#

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

slow imp
distant tendon
#

,

mystic bronze
#

,

faint oyster
#

Suddenly everyone wants configurator after I'm busy

tight cargo
#

I uploaded the menu and added it to the config but it doesn't seem to appear on the server. What should I do?

tight cargo
#

sps

wise geyser
#

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?

still holly
#

%marriagemaster_IsMarried%

wise geyser
#

I'm looking for one that says partner name or not married

still holly
#

or
%marriagemaster_PartnerDisplayName%

wise geyser
#

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

thin meteor
#

bing bong solar tweaks and bypassing mod lock on lunar client is gone

shadow parcel
#

??

steep dove
#

Wft is solar tweaks 😛

thin meteor
mystic bronze
#

ok

glossy yoke
#

im pretty sure its the open_command

drifting thistle
#

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!

steep dove
#

That very simple plugin to do using fawe api

mystic bronze
prime shuttle
#

@drifting thistle

nocturne cliff
#

any good chat plugins out there?

bright raptor
#

Those don't exist

nocturne cliff
bright raptor
#

Sorry i meant chat plugins don't exist.
Good luck

nocturne cliff
#

they do

bright raptor
#

I'm not so sure

wind wolf
#

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!

nocturne cliff
#

bro

#

help him already

#

someone

#

its been like 7 seconds

#

wheres the help

#

"help chat"

#

very innacurate name.

#

RO

wind wolf
#

I feel assaulted, lied, cheated, and scammed.

#

I feel so harassed.

#

I expected help.

#

I expected insta-help

nocturne cliff
#

@bright raptor help him already

#

stop harassing him

wind wolf
#

yet it has been almost a minute and there is 0 help

nocturne cliff
#

stop assaulting him

wind wolf
#

and I am just here

#

being assaulted

#

harassed

nocturne cliff
#

its been over 30 seconds and still no help

wind wolf
#

scammed

#

frightened.

nocturne cliff
#

yet the name is still "helpchat"

wind wolf
#

I'm so assaulted

nocturne cliff
#

im reporting this to discord.

wind wolf
#

yet so harassed.

empty matrix
#

💀

bright raptor
#

There aren't chat plugins sorry

nocturne cliff
nocturne cliff
#

how do other servers get chat plugins kkthx

bright raptor
#

I'm not so sure

nocturne cliff
#

why'd he even get banned

mystic bronze
timid rose
#

Does anyone know anything about the plugin ExcellentCrates ?

mystic bronze
#

I don't

timid rose
#

Nvm! I figured it out!

drifting thistle
prime shuttle
drifting thistle
still holly
#

Add some background e.g. fancy clouds

mystic bronze
#

Its really not that difficult.
Structure blocks are basically vanilla schematics.

drifting thistle
#

Do you know a plugin that has /msg, /reply, /ignore with rank prefix support that is network wide? (Bungee)

crisp hazel
#

are you two together

#

and doing this on purpose

still holly
crisp hazel
#

like exact same

#

in pufferfish host' discord

still holly
#

Oh, according to this message... They're just trolls and definitely in contact. #minecraft message

nocturne cliff
#

i dont know who allat is

#

he seems like a troller

sour rune
#

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

chrome river
#

Hi

#

Good night

#

Is there any release for 1.7.10?

#

For DeluxeMenus

sour rune
#

because players can only acess certain blocks

chrome river
#

?

umbral lanceBOT
#
Deluxemenus - Version List
Spigot:

1.8.8
1.12.2
1.16.5
1.17.1
1.18.2

Version:

v1.10.5
v1.13.5 - Latest
v1.13.5 - Latest
v1.13.5 - Latest
1.13.5 - Latest

empty matrix
#

nope

shadow parcel
#

lol thats a first in a while

#

1.7 LMAO

vital herald
shadow parcel
#

BRETT

wet oasis
#

We're reviving HCF and comp Factions with 1.20

shadow parcel
shadow parcel
wet oasis
wet oasis
drifting thistle
#

who can help me with something?

still holly
dapper drift
#

did i get ghost pinged here

jagged parcel
#

yes

bright raptor
#

@dapper drift I will correct these wrongs

bright raptor
#

I didn't ghost ping you, I corrected the world.

#

You are welcome

dapper drift
#

i still dont get it but thanks i guess for correcting the world

soft epoch
#

yeah place a kit or quests npc

wise geyser
#

How do i stop it showing stats on interactivechat when a players username is typed in chat?

dark shoal
#

.

drifting thistle
#

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?

slow imp
#

Each version usually comes with performance improvements

empty matrix
#

but might as well just use latest version 🙃

rapid ocean
#

they removed the bitcoin miner from 1.19.4

slow imp
#

See dkim

real cargo
#

what? ;-;

#

there was a bitcoin miner?

west flame
empty matrix
west flame
empty matrix
# west flame 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

west flame
#

There are multiple definitions for bloat.

empty matrix
#

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

west flame
#

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"

empty matrix
#

true, I just meant majority but a lot of 1.8 pvpers don't like the 1.9+ pvp features

west flame
#

It's like with windows. People call it bloated because they keep adding features that some if not all users think is unnecessary.

empty matrix
#

ye thats what i meant by majority
although maybe majority isn't the right word anymore
bloat can mean multiple things ig 🙃

west flame
#

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.

thin orbit
#

are these "users" in the room with us?

drifting thistle
#

I do only miss the old pvp mechanics

west flame
bright raptor
#

That's homosexual behavior, if we were in a universe in which homosexuals behaved that way.
In this universe it's just frowned upon.

ruby forge
#

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

empty matrix
ruby forge
#

ive modifyed it yes im linked my servers in there

#

spigot i have i think

empty matrix
#

what happens if you try connecting to the spigot server using the ip in config.yml

#

instead of through bungee

ruby forge
#

so the bungee ip works

empty matrix
ruby forge
#

ip forwarding is enabled

#

did i need to change something in spigot.yml

empty matrix
#

yes

ruby forge
#

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

empty matrix
#

every server

#

and the proxy

ruby forge
#

ok let me see

#

yup @empty matrix

#

alll of them are enabled

empty matrix
#

and you restarted them all?

ruby forge
#

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

empty matrix
#

im not sure

#

did you try restarting the proxy

ruby forge
#

wdym

empty matrix
#

restarting bungee

ruby forge
#

yup

#

i did

#

is there a fix because server is releasing in 10 days

#

and im nervous

#

if i can fix it

#

@empty matrix

empty matrix
#

idk

#

try seeing if anyone had a similar problem

ruby forge
#

ive looked i havent seen this befoe

#

for the ip for the ip forward i use the bungee ip correct

empty matrix
#

you only have to do ip_forward: true

#

and in spigot config, bungeecord: true

ruby forge
#

like the ip i want to use

#

mine is

#

play.primemc.club

empty matrix
#

no

#

that shouldn't be in any of your configs

ruby forge
#

yeah

#

ik

empty matrix
#

wait

ruby forge
#

yeah

empty matrix
#

just to clear things up
ip forwarding and port forwarding are completely different

ruby forge
#

im doing ip forwarding

empty matrix
#

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

ruby forge
#

ok

#

i cant dm u

#

@empty matrix

empty matrix
#

wb now

drifting thistle
#

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?

drifting thistle
#

HELP

Someone got op on my server idk how

while i was using ploudos and is in gamemode c

#

please help me

#

@buoyant haven

crisp hazel
#

why ping a admin

crisp hazel
#

is it offline mode

drifting thistle
#

wdym

buoyant haven
#

have u tried turning it off and on again

drifting thistle
#

im gonna kill my self (Joke)

crisp hazel
#

lol

#

you cant be expecting the highest quality or security

#

and is your online-mode setting in server.properties set to false?

drifting thistle
#

idk what that is

#

could u help?

still holly
#

@fickle sun The hands are weird, everything else looks great ✨

still holly
fickle sun
#

I made a coc Giant and in that game its like that. But I'll try to improve it

#

ty : )

signal echo
#

someone can help me with papi?

#

i have a big problem on my server

still holly
drifting thistle
#

.

signal echo
#

chillibean

drifting thistle
#

wut

empty matrix
#

chilibean

signal echo
#

can you help me ?

#

with placeholder error

mystic bronze
#

idk

#

not via database, so time consuming!!

crisp hazel
#

kek

slow imp
#

VoteParty

mystic bronze
#

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

signal echo
#

someone can help me?

steep dove
signal echo
#

?

empty matrix
#

?help

umbral lanceBOT
#
FAQ Answer:
» Give the helpers some details
» Ask suitable questions
» Be polite
» Wait

Source

brisk arrow
#

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)

nocturne cliff
#

@drifting thistle

sand carbon
#

can someone help me

cerulean gulch
#

If I want my server to range from 1.8-latest, what version should I base the server on?

forest gazelle
#

1.8

bright raptor
#

Simplest question in the west

shadow parcel
umbral lanceBOT
#
FAQ Answer:
» Give the helpers some details
» Ask suitable questions
» Be polite
» Wait

Source

drifting thistle
signal echo
#

someone know how to fix placeholder errors?

mystic bronze
cloud laurel
#

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

timid rose
#

Maybe yours needs to be updated!

cloud laurel
#

i fixed thanks you

timid rose
#

Yayy

timid rose
cloud laurel
timid rose
#

A haaa good catch

sand carbon
#

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.

timid plover
#

@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?

polar timber
timid plover
drifting thistle
#

[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.
remote bay
#

1.8 is prone to have several exploits

#

while 1.19 is safer

woeful tree
#

Purpur can die. 🙂

coarse cliff
#

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

forest gazelle
#

thats probably fine

#

as long as there is no unfair advantage to having like carrot particle effects

coarse cliff
#

That’s what I was thinking, as long as no unfair advantage, okay thanks

wet oasis
#

Bro solved DDoS

shadow parcel
#

LMAOOO

crisp hazel
#

Lmao

#

Also that way of spelling purpur

#

Lol

rustic adder
#

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

mystic bronze
#

pooper crossposter alert

mystic bronze
#

closing looks like it's BUGGIN'

coral cape
#

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

mystic bronze
coral cape
#

thats a single line only

#

im talking multiple lines

jagged parcel
#

i don't really think one exists for multiple lines

mystic bronze
jagged parcel
#

i guess

bright raptor
#

No need to guess, it's there.

torpid ore
#

first

jagged parcel
#

yeah it should also be shorthand format

quartz locust
#

any possible reasons why tnt damage is not allowed in the server?

dim folio
#

um how do i rename stuff in bold colors

mystic bronze
#

&l

timid plover
dim folio
mystic bronze
#

unlucky

dim folio
#

:_:

timid plover
dim folio
timid plover
dim folio
#

instead of diamond sword i wanna make it "test" in black color

timid plover
#

using an anvil?

dim folio
dim folio
timid plover
#

Well yes, you can do that with plugins or just the minecraft:give command

#

but with an anvil you can't by default

dim folio
#

also any good custom ore or custom enchant plugin ?

timid plover
timid plover
dim folio
#

its ok if only ops can rename

timid plover
#

for ores, it's kinda hard to implement them in vanilla minecraft without mods

dim folio
#

thank you

#

thank you

timid plover
#

and for the custom ores, even the paid ones sucks

#

bcz it is pretty hard to replicate custom ores without a mod

turbid whale
#

barry

quartz locust
#

cuz this world has no regions

timid plover
#

all worlds have a region by default

#

it is called __global__

quartz locust
#

bro has a point

#

i cant paste images here but @timid plover , when you do /region list wasnt global supoised to be there?

timid plover
#

I don't think so

remote bay
#

nop, __global__ never shows in the list

#

it can't also be deleted.

#

or renamed

#

just modified

quartz locust
tacit saffron
#

does anyone have any prebuild tags of deluxetags pl that i can use ??

rough ether
#

Не удалось интерпретировать полученный пакет.
на сайте trademc

stone iron
#

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?

steep dove
stone iron
#

Haven't set it up yet

steep dove
quartz locust
#

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

prime pumice
#

hi

#

how are you doing

wicked depot
#

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?

wintry iris
#

you sure you have the memory to add? like its not being used up by other stuff

kindred dune
#

Am I able to get support on Guilds plugin here?

tough prairie
#

Idk why you are asking again since the bot has already told you how to get guilds support

kindred dune
tough prairie
gray geode
#

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!

jolly drum
#

I need some help with gui menu anyone be able to help me

olive cipher
#

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!!

real cargo
#

does anybody know an invisible character that works for minecraft chat?

empty matrix
real cargo
#

ye thats what i get :/

#

a weird HF thingie

thin orbit
#

if you're hosting the server, you can easily make an invisible character in the resource pack

real cargo
#

bruh how i didnt think of that

smoky leaf
#

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?

fickle pewter
#

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

tribal tartan
#

since curseforge doesnt access anything from it

fickle pewter
smoky leaf
novel bay
#

what does Schematic could not read or it does not exist: Schematic file is missing a 'Blocks' tag mean??

drifting thistle
#

Incompatible versions of worldedit perhaps?

limber tiger
#

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?

shadow hornet
#

How do I order plugin

fickle pewter
remote bay
#

Lmao Plexverse is being canceled

fading turtle
#

Yeah i saw

slow imp
#

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

slow imp
#

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

remote bay
#

never had that issue

#

and I also have PowerTools

empty matrix
#

powertools ftw

slow imp
#

yeah as soon I stop it, I can sprint and jump at the same time

empty matrix
#

lol

#

an alternative fix is to use togglesprint

slow imp
#

oml the problem is "Peek"

thin orbit
#

Yup, happened to me like 2 days ago

#

I was freaking out thinking my keyboard was broken and everything

slow imp
#

exactly lol

cunning topaz
#

How nobody realizes that it's called PowerToys not PowerTools

mystic bronze
#

yes

umbral lanceBOT
#
Hey, I'm Barry!

I'm a unique Discord bot created especially for HelpChat.

Authors:

I was created and I'm maintained by @serene lotus with support from the Staff team.

Code base:

I'm created in Javascript using Discord.JS

Source code:

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.

slow imp
torpid ore
#

if windows wasnt for money it would have been so much better

wanton palm
#

TLDR; Microsoft is trying to blacklist any servers with guns/gun references

slow imp
#

Yeah, so stupid. Did they even send any notice before?

west flame
#

So.... what about... crossbows, bow and arrows, tridents, TNT, literal skulls that drop from killing your enemies...

fickle pewter
timid plover
#

I don't know. is this real?

#

bcz like....

#

swords

#

bows

#

etc.

fickle pewter
#

it is

timid plover
#

are weapons

#

but how

fickle pewter
#

GTA MC server got told off

timid plover
#

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

fickle pewter
#

Conspiracy, maybe thats why Mojang ditched the new combat changes...?

timid plover
#

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"

fickle pewter
#

Gotta change swords now to balloon ones

timid plover
#

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)

fickle pewter
#

I defo think its a microsoft decision

timid plover
#

idk. still pretty sad. I used to play so much gta in minecraft

west flame
#

I played on that server a few times too. I even started making my own GTA core years ago (never finished)

slow imp
#

"How many stupid decissions can a company take in the shortest interval?" speedrun

woeful tree
#

Hmm... what if GTA MC made the server paywalled to join? hmm

#

Would that make Minecraft happy

fickle pewter
#

Or an ingame age toggle

slow imp
#

If they get to take a cut, maybe 🤣

woeful tree
fickle pewter
#

The models and names are renamed, unless you confirm by cmd being 18+

#

and LOL

#

I think it could work

slow imp
#

🔫

west flame
woeful tree
#

GTA becomes GWF - Grand Waterfight.

mystic bronze
#

Shotgun!!! Illegal

fickle pewter
worn tiger
#

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?

mystic bronze
#

what

worn tiger
#

There is a sound played when I break a block

#

I would like to find what sound it is

#

Is there a way?

west flame
#

Could turn on subtitles...

worn tiger
#

??

west flame
#

It would tell you what sound is playing

worn tiger
#

I’ll try

#

Its just note block plays

#

But I dont know

timid plover
#

record it and send it here I guess? maybe someone can tell

#

I don't think there's any other way

pastel badger
#

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.

little plinth
#

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 ^^

cunning topaz
#

Where did my message go lol

bright raptor
#

I deleted it

#

Consider being respectful next time think

fading turtle
#

Since when do you have permissions?

cunning topaz
#

Oh no I now know where it went

bright raptor
#

I don't. I lied for clout

cunning topaz
#

It went to syscraft hahahaga

little plinth
analog flume
#

Anyone up for some MC?

open nexus
drifting thistle
#

Someone knows what plugin can i use for /support?

jagged parcel
#

i like user-21581546's response

real cargo
drifting thistle
#

Whats the best minecraft ac? it aint vulcan or grim right?

cunning topaz
#

vulcan

fading turtle
#

Vulcan

mint arch
#

are the supports here active?

remote bay
#

they have a life

#

does that answer your question?

thorny wasp
#

Can anyone suggest a realistic mine/quarry/dungeon build? or even a buildteam who do that type of work?

mystic bronze
#

google can

mystic bronze
#

why are you such a lazy bum and can't google yourself 🥴

#

there are plenty of sites where you can search that

slow imp
#

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.

crisp hazel
#

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

umbral lanceBOT
#
FAQ Answer:

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

crisp hazel
#

i dont think anyone would do this for even 10 usd' but eh im not everyone

lone carbon
#

How do I install a forge server via a jar file

#

cant use the installer

#

This shitty host wont let me

empty matrix
lone carbon
#

I have

#

Idk what to do now

empty matrix
#

what host are you using

lone carbon
#

Only thing I have is "run.bat"

#

Nah fuck this im getting a refund

crisp hazel
#

0

lone carbon
#

Is it possible to make a fabric server ignore mod incompatibilities

drifting thistle
#

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 🙂

bright raptor
#

Meme moment

cunning abyss
#

Yo guysss

#

Any good condense wand plugin?

pastel badger
#

Hellooooo

#

How are we all?

wintry iris
#

hi

ashen laurel
#

i cant use this command /give Player1 minecraft:leather_helmet{display:{color:16711680}}

#

it say unknown item name

slow imp
#

minecraft:give

ashen laurel
#

mystic bronze
#

classic command override L

drifting thistle
#

@tight yew your dms is off

tight yew
drifting thistle
#

I can't send u friend request

#

@tight yew send me

ancient plank
#

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

west flame
drifting thistle
#

minecraftforums

ancient plank
#

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

cunning abyss
#

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?

cunning abyss
cunning abyss
fickle pewter
#

Will get him to add your discord

cunning abyss
#

Thanks dude, i'd appreciate that

#

We for sure have enough budget if that's the average 400/500

fickle pewter
#

Yeah think thats the average I see, maybe less for a store

cunning abyss
#

Amazing, thanks for your help dude!

#

I'll wait for him to add me!

fickle pewter
#

Anytime :)

#

Hope it goes well 😄

cunning abyss
#

Same here 🤞

remote bay
#

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?

remote bay
cunning abyss
fickle pewter
fickle pewter
cunning abyss
sick marten
#

hey would someone be up to help me trouble shot a crash i keep getting

#

ill be in vc room 1

empty matrix
cunning abyss
cunning abyss
fickle pewter
cunning abyss
#

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

fickle pewter
#

He usually does reply, so its odd

#

Will chasew him up later

cunning abyss
#

Thanks Charlie, i really appreciate it

fickle pewter
#

😄

cunning topaz
#

Meh

#

I can get through summer with a shitty store too ahahhaha

crisp hazel
#

and thats on school days

#

offline-mode tho so give and take

cunning topaz
#

Lmao i was joking

crisp hazel
cunning topaz
#

I don't even have a server

#

Might aswell make a Skript Gen server rn and become rich

#

/jji

crisp hazel
#

oh god

#

🔥

fading turtle
#

Why do i feel like the role color changed ;/

slow imp
#

on every 5 ticks:
spawn 1 {generator::item} at {generator::coordinates}

fading turtle
#

nope looks like i'm dreaming ;/

crisp hazel
#

helpchat minehut gen server

sturdy arch
#

please its spamming and not showing players how many are there

drifting thistle
#

Is there a chat plugin that superseded DeluxeChat?

remote bay
timid plover
#

any chat plugin that works

remote bay
#

past experiences, I have used venturechat?

tepid plume
#

Big alert; curseforge has been compromised

crisp hazel
rich matrix
#

i have 2 questions regarding #1113758470689263616:
is offering skript services valid?
can the monthly message be edited?

crisp hazel
#

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

serene lotus
rich matrix
rich matrix
#

have you actually used skript?

#

it's a possibility that skript code runs badly if you don't know how to optimize it correctly

crisp hazel
#

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

rich matrix
#

skript 2.6.4 is pretty optimized imo, + 2.7 will come out in a bit and that is even more optimized

slow imp
#

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.

rich matrix
#

yeah its amazing in terms of productivity

slow imp
#

full gamemodes is where the line should be drawn imo

wheat stone
#

How would I create a menu that shows a players homes?

latent pilot
latent pilot
fickle pewter
latent pilot
#

Apparently, anyway

fickle pewter
latent pilot
#

the plugin distribution platform, not the server software

last sierra
#

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

slow imp
#

And I think that you access both with one account

fickle pewter
#

Yep

crisp hazel
slow imp
#

Yeah sure :))

crisp hazel
#

shush

#

i was editing

last sierra
#

well yeah, ofc

#

80 players is not much

crisp hazel
#

why would u run a 80 player event on skript..

last sierra
#

because i didn't have much free time and the other dev knows only skript?

crisp hazel
#

wouldnt that be a "skripter"
not a dev

slow imp
#

Yeah

rich matrix
#

im a "skripter" but i know java and python so call me a dev fingerguns

crisp hazel
#

IMO doing psudo code doesnt make u a dev, at max a skripter

lusty thunder
#

test

remote bay
#

it's really not optimized

fickle pewter
#

You can 10x your server with Skript

crisp hazel
#

💀

fickle pewter
#

😂

remote bay
#

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

fickle pewter
#

What about revenue?

#

Can't forget that concern

remote bay
#

how does that boost revenue?

#

Giving your players a bad experience and possibly lag, won't bring money in?

#

or am I missing something

forest gazelle
#

it will 10x the maintenance costs

cyan matrix
#

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.

fickle pewter
mystic bronze
#

thx

west flame
#

I thought 1.20 releases today?

slow imp
#

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

drifting thistle
#

what did 1.20 add

west flame
fickle pewter
#

Pain, having to support 1.8 to 1.20 now 😂

#

Maybe by 1.30 we can move to 1.9 as a limit

brittle folio
#

does anyone know any good server hosts which are not overpriced and unreliable

remote bay
#

?hosting

umbral lanceBOT
#
FAQ Answer:

Free:

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

remote bay
#

@west flame

west flame
#

Thank you lol

remote bay
#

xD np

mystic bronze
#

Why isnt oracle free tier on the list

#

I'd say you get a pretty beefy vps

forest gazelle
#

lots of people had bad experiences with it

#

(I have had a very good experience with it personally)

mystic bronze
#

4 ocpus and 24gigs of ram, 200gb block volume (iirc)

mystic bronze
#

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

forest gazelle
#

yeah for being arm based the performance impressed me

mystic bronze
#

It's a very good offer to say the least

#

Considering it's all free

bright raptor
#

Takes a degree to find the free tier tbh

mystic bronze
#

Huh

bright raptor
#

Was a joke, but the Free tier is just difficult to locate if you're not careful.

empty matrix
#

i have a guide :))

#

just put that in ?hosting and ?hosting-free 😌

#

i mean theres prob like 1000 guides online anyways

analog flume
#

where can i find the resource pack for bedrock

crisp hazel
#

also where is hetzner 😭

crisp hazel
#

a more prettyfied one

cunning topaz
#

Only had issues with oracle free tier ahhaha

#

MC servers randomly stopping

bright raptor
#

Like a dev server?

cunning topaz
#

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

cunning topaz
bright raptor
#

I was just wondering if you were using it for like player to play on

cunning topaz
#

I wish

bright raptor
#

Doubt that would've worked well lol

cunning topaz
#

Same same

#

I'm pretty sure I was just late to the party

bright raptor
#

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

cunning topaz
#

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

bright raptor
#

I haven't looked at this thing in so long

#

Still running, how about that

crisp hazel
#

small smps run fine on it

crisp hazel
cunning topaz
#

Aaaa

#

The random stopping might be related to the fact that im using quilt

remote bay
#

my oracle VM is up and running for months now

#

almost a year

crisp hazel
#

3 years here soo

#

its a different experience for everyone ig?

hazy hearth
#

@native gust did you laugh at all making that French fry

remote bay
#

uhm gotta find a new cracked launcher, mine's broken .-.

#

(for testing plugins, not for use, saying before I get canceled)

fickle pewter
#

smh!!

mystic bronze
west flame
mystic bronze
#

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

remote bay
#

how do those work

mystic bronze
#

same as minecraft itself but without gui lol

remote bay
#

yeah but then you can't rlly test stuff visually

#

aka guis, etc.

mystic bronze
#

that's true

#

why can't you use your main account for visual stuff?

#

I use bots for pvp related stuff

remote bay
drifting thistle
#

i need help making aternos server

#

about bending like in avatar

#

anyone who can help priv!

drifting thistle
#

yeaah

#

i will change it later from files to paid

solar quarry
#

can anyone give me list of plugins that are used for making hypixel skyblock

slow imp
#

HypixelSkyblockCore.jar

mystic bronze
#

leaked!!

quiet bison
#

I need help when I try connect to a minecraft server I get an error of Network is unreachable I need help pls

fickle pewter
slow imp
#

🤫

remote bay
#

don't download stuff from random links kids

slow imp
#

your loss

fickle pewter
#

@remote bay I'd recommend downloading it before it gets taken down

west flame
slow imp
#

🫶

drifting flax
#

👍

mystic bronze
#

👍

fickle pewter
#

👍

cunning topaz
#

👍

regal minnow
#

👍

bright raptor
#

👍

regal minnow
#

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?

steep dove
# regal minnow hi so i use skript to do things like make a top 10 leaderboard but idk how i wou...

https://youtu.be/TIOkAPs8AYE

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...

▶ Play video
fickle pewter
#

(LAG FREE)

bright raptor
#

Just put [GenerateNoLag] at the top of your scripts

remote bay
#

Skript and No Lag is the impossible combination

jagged parcel
#

me, putting everything in async() to remove all lag

bright raptor
#

If you async(async()) your performance doubles, and it gets exponentially better each time.

jagged parcel
#

while(async(function) == true) { async(function) }

#

performance intensifies

jagged parcel
remote bay
native verge
slow imp
#

Double async

cunning topaz
#

yeah even fasterr

west flame
#

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.

crisp hazel
regal minnow
crisp hazel
#

then why do you want skript for hologram leaderboards

desert iron
#

Hi, does Oraxen plugin have a Discord server ?

timid plover
drifting thistle
#

cant claim github student package, because my school email cant receive emails from other services 😦

bright raptor
#

studentId?

drifting thistle
#

hmm wym

empty matrix
#

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.