#general
1 messages · Page 263 of 1
you can edit its with normal notepad++ or other writing software but you must have the spaces to work
like this
Example what not worked:
type: world
events:
on player right clicks air with:fireball:
- narrate "<green>Successful"
fireball:
type: item
material: blaze_rod
display name: <red><bold>Fireballrode```
so i can create base script that worked and you can copy paste
Really? Lol. Get used to using Google if you're going to start programming...
Tell google not me


Hey efefury! Please don't tag helpful/staff members directly.
Hey efefury! Please don't tag helpful/staff members directly.


Yeah and I'm in China but I'm not chinese
I'm not in China btw
And no I'm not chinese either
Yes, in my room
Fefo is a cutie pie
qt
OH WOW

I am in bed thras 
yes dutch ppl bad
WOW CAS
blocked

iam
sadly
ich bin efe
wait what

nO
i CaNnOt
blame my gf
she's german
Good night

Gooood night
she knows to many languages
too*
Coño de la madre
cono del le what
woah
Also no
Jfc
10 dollars
LUL
POORRRRRRR
fefo 400 dollars and we have a deal

i have a balance of 2k
👀
even my gf isnt allowed to touch it
Lol
its for my new pc

Don't know why :(
fefo
thras
make it so only efe cant ping
can't you make it so it only ignores if if no mentions are in it
even in reply's
computer
ur a something!
MacBook pro 2009 unibody 13 inch
TI-30XB Multiview
best gif

or else what
HUH

ill ban you!

i do!
i can see secrets!
no noob
its called element inspect

Lol
why you not asleep yet hm!?
00:32
I'm scared from movie
All my friends and I are
Shut up IDIOT .
Canada not gau
Efe you better keep your mouth shut I'd you don't want a kick, Larry is Canadian 
lies

5.38 
@tight chasm am back. so i take it this dosn work
welcome back, so should i make a base script or you dont want?
yeah i say it all time it should be easy 😄 best write private for the names and commands about the base script?
mhm
?
not sure what ur trying to say but yes
i make you one item finish so maybe its better make this private?
or we make it here public, your choice
i go kitchen get some drink
me confused why a command isn't working in console
oh
Sexy colour theme
really helpful especially when I do stuff with adventure
im sorry
im so very very sorry
I love it
lol
I love laravel more than my mom loves me .
yeah laravel is pretty great
Oof
Makes stuff easier, yes
Is iverblown and does stuff way too overcomplicated, also yes
yes
I love php still tho :3
dash
Somewhere in the UK
how possible is it to put voice actors on npcs
does anyone know about Custom Items with Ressourcepack?
You can do it with custom resource packs
i see
Brainstone do you know if i add a Custom item with a Resourcepack, does it have a own item id? like Iron_Sword:2?
NBT tag?
NBT tag?
NBT tag?
NBT tag?
is bukkit a server or a client?
i got it , its a server
Yes I know, no you can’t.
But there ways to get pretty close
i played on a server who did that.. but he wont tell me how
hello
As mentioned you can do magic with NBT tags
In recent MC versions you can give an existing item a NBT tag and give it a custom texture/model
yea i read that, have to figure it out later
brain i put together a more finalized schema for postgres
would you mind reviewing it
Yes because I don't know PostgreSQL
eeh
the way you were convincing me to use it i figured you were a ninja postgres user
I just know the benefits
Assuming I have a use case for it that I can't cover with plain old MySQL I'll gladly learn it
But until then I have no need
well regardless i don't think i'm making use of any postgres specific features
https://docs.google.com/spreadsheets/d/1Rk9JaSz61DANqmGwMkmGxi2h3AfW2BTOTvQy7zniu8c/edit?usp=sharing
here's what i have planned if you feel inclined to take a peek :3
Not 100% sure what exactly you're doing
But the fact that you're using foreign keys is a good sign
ey 😄
do you think it's worth it for me to use an auto increment variable as the primary index for players, instead of their uuid?
the way i see it on one hand the auto inc is supposedly faster
but on the other i'd have to do an extra lookup to get to it
I typically do it like this:
- if you need to storage user data anyways, use internal IDs.
- Else use the UUID
And use postgre's UUID datatype
gotcha, so since i'm storing user data i should use an internal id for them
i was about to ask the same question for having an world ID instead of looking them up by owner uuid + slot number, but i guess that answers that too
Fuck
And SQL is incredibly good at optimizing queries

Especially if you use prepared statements and cache them
Then you won't notice any performance hit form the additional table being involved
oh actually thats another question i was wondering about
how much ram should i give the sql server
it definitely depends on the size of the db but is there a lower limit to it?
Why limit in the first place?
because docker orchestration is a hassle otherwise
Normal applications typically don't have a RAM limit anyways
For infrastructure services just don't set limits
You don't want them to OOM on you
isn't there a way to limit the amount of memory the sql server tries to use
like, so it just slows down and pages or whatecver instead of OOM
Sure but typically not needed
SQL servers aren't memory hogs
Unlike Java they treat memory like a valuable resource
my concern is if i overburden my machine with other containers and the sql server has no limit 1. it might get infringed on and 2. it might decide to try using some memory it cant have and OOM
If you manage to get your SQL server to use more than 1 GB of RAM, show me a screenshot because I'll be mightily impressed then
Because you're scared your SQL server will OOM you want to limit the memory, so it can OOM faster?
XD well i'd rather it just slow down than crash
That's not how it works
Limiting the memory doesn't mean it'll eventually start slowing down
It just means it'll OOM faster
Again. You don't want to resource limit your infrastructure
Limiting it externally I mean
Through its own config is a different story
What part of "don't limit your infrastructure" don't you understand?
Like let's just assume you found a way to cap the total memory of postgre and not just some pool (which means it'll use more than that pool in total)
And you make the container match that
Then what happens when for whatever reason the SQL server decides it needs more memory? Like for example there's a memory leak
That's right. It crashes because of an OOM
i think i see what you mean
So what did you gain from limiting the resources?
let me rephrase my question then
You gained OOMs you wouldn't get otherwise
how much resources should I ensure it has available to reach into at all times
Not sure what you mean with that question
like we were just talking about a ceiling
what would the floor be
as far as memory the system has reserved for sql to use at any time
So you're asking how much buffer you should leave for the OS and infrastructure?
I typically leave 4-8 GB buffer. But also slightly overcommision the container memory pool
for sql?
even though you said it barely ever reaches a gig D;
or do you mean for all containers
Like on a 32 GB server I'd make a pool of 28GB for my containers and allow 10% over commissioning
i see
Meaning I can assign around 30GB of memory to my containers in total
If you really only ever use that server for running game servers you can reduce that buffer to 2 GB
wait how do you set up a buffer from within docker
But I have other applications running
is that on their wiki?
I use pterodactyl
If you're worried about memory add swap with a low swappiness
But nothing to worry about if you go slightly above
2GB RAM + 4GB Swap that it can use if it needs
when you say calculate my hand, do you mean i should store how much each container is using in my own application from which i'm deploying them
I mean you should have swap in the first place
or is there some config i can just put the value into and let docker handle the rest
And if you have slow hard drives you could use zram
Yes
gotcha
Depends on what orchistration software you use
I know for a fact that you can work with resource pools that the orchistrator will fill however you prefer
Like either evenly or filling one pool after the other and the over comissioning, etc
hmmm i've never actually heard that mentioned for swarm, i guess it's something to look into
but i was planning on doing the math for resources in my own app anyways so it's fine either way
There's crazy shit out there
Btw any reason you're not using something like pterodactyl?
I mean they have an API so you can spawn new instances at will
Current versions even let you move servers between hosts
well first and foremost it's so i can learn skills i can apply in the future
working with docker swarm looks a lot better on a resume than pterodactyl
Write docker orchistration tool
yes
that's basically what i'll end up doing except for minecraft and for a very specific use case
Frankly no one gives a damn if it's a soft skill and you're willing to learn
how much flexibility does the pterodactyl api give you
like what kind of stuff can you do with it / how limiting is it
Like I never used half the technologies we use at Nitrado before I started
And yet I outcompeted 3 other people
To my knowledge everything you can do on the panel you can do with the API
what can you do on the panel XD
And they are pretty open to new features if stuff is missing
well you get Servers in a container, that you can assign any amount of IP+Port pairs. Any game is possible
You can give them templates
A lovely UI with server console
And you can use your own docker images
They just need to have an appropriate start script
im trying to make it so that hopper minecarts dont get clear lagged and I have put hopper_minecart but it still gets clear lagged
You can add your own game installers, etc
Have you tried reaching out to their support?
That typically yields better results
Yes there is 😛
It's also great because you can have multiple users with individual permissions
wait... are they the ones hosting or can you selfhost
So you can let steve access the console of your survival server but not the bungee for example. But he still has a start button for it
It's only selfhosted
okay
their demo tricked me with that ip
i assume you can set up multiple nodes right
can you prioritize a certain server type to start on one type of node, then if there's no room start on a different node
Not out of the box
But considering they have logic to move game servers around that should be doable
Oh right. They have backups too
And shared folders
Or if they don't quite have them yet then soon
sftp file access, file access through the browser
but it can't host other miscellaneous containers?
And fairly granular permission system too
like i have a nexus container running
Well I believe that can work
Though I wouldn't recommend it
Run the infrastructure through other means
I mean that's also a lovely thing about docker
You can use any number of orchistration tools
Anyways I'll be leaving work and will be on my phone now with my normal account
😮
?
a metamorphosis
huh.. looking at the pterodactyl api docs it doesn't look like you can assign a server any extra ports
or at least, they don't show you how in their example API request
I’m sure you can
They treat them differently though
Like you have a primary assignment and secondary ones
they don't mention extra open ports when describing how to make a custom dockerfile either, though i guess i can forgive them for that
@steady tangle wakey wakey
I’m not sure if they matter for making a custom Docker file in the first place
well you need to expose an internal port
then tie it to an external when you launch the image
Hey aberdeener! Please don't tag helpful/staff members directly.
Hm. Typically with ptero the ports are the same on the inside and outside. If posts can be changed it’s certainly only the primary port
Yeah ok
wait the ports are the same on both sides?
always??
Pretty much
i was not expecting that
actually wait that wouldnt make any sense
either way my hopes and dreams of plugin networking nirvana are dashed 🥲
at least until i figure out if and how to use docker internal ips
mr brain
oh turns out they do have ports.. 'allocations'
@latent tendon 

Ah. I thought they called them assignments for a minute
My apologies
But yes. Those
What do you mean?
well i feel like allocations is not the best name for what's literally just ports
i hear allocation and i think memory, cpu, disk space
It’s port+IP
So I think the name is fair
But a better could’ve been chosen
Anyways at this point it’s way too late to change it
Feel free
just delete the c: drive, easy
I’m just glad that we didn’t creat a black hole in #support-1
?
That was a lot of density there
must be that newfangled gray matter (or lack thereof)
Lots of
nono lack of
I meant lots of lack of
ah 😄
uwuwuwuwu
uwu
can someone reccomend a plugin where you can make custom plugins?
What
Skript :DDDDD
I installed NameTagEdit and set this up, and I added all the rank. permissions to the corresponding LP group, restarted the server, however only some prefixes show up, some glitch and others don't show at all
Anyone know why
wdym
those prefixes dont show up when i gave perms to have them on pl
lp
you gave them rank.mod as example
i fixed it but no they werent showing in tab either
Hello i need a plugin that bans people from every server instead of one server
Litebans, maybe advancedbans
I dont want peopel to get soft muted or auto bannned i want to inforce the bans with my staff
i
Yes
Is there a plugin that allows no matter what server you are in to see that chat?
Yeah there's a variety of network chat plugins
could you tell me one?
!chat bottom link
LuckPerms only acts as the source for prefixes / suffixes, it doesn't actually apply them. You need an appropriately configured chat/tablist formatting plugin for them to be displayed. If the values appear correctly when you run /lp user <user> info, LuckPerms is doing its job!
Hey its underscore11
indeed

what is the differnce with bungeechat and gchat
I have no idea
Keep in mind some of the ones in the first section work with bungee as well
this is a bungee plugin? https://www.spigotmc.org/resources/advancedban.8695/ or is it paper
The only ones I know anything about is EssentialsXChat & CarbonChat (I'm one of the developers for it)
Read the spigot page
Nope
I'm only involved with LP, DiscordSRV, and the Carbon family of plugins
If you want to see someone who's truly involved in a lot of things, see kashike
||mentally||?
lol
where you the person who couldnt figure out why a channel or something kept returning null
probably
at least you aren't @rigid widget who insists on using javacord
The f
i will FIGHT you
Is javacord
javacord is a discord lib for java
and i am a consummate professional
at javacording
Think JDA except no restactions, and inconsistent usage of Optionals and CompletableFutures
it's also made by a member of OUR community, the guy who made bStats
Is it unbreakable
but it does have that going for it ^
And panda proof
everything is breakable
Bc i break everything
espcially when larry uses it
I think larry can vouch for jcord being breakable
Litterly everything
can you break camms heart
no he did that to me
I even broke my pc
😛
In a way i dont even know how
i broke a old psu once
got a NULL file wich couldnt be deleted at all


raid 1 those bois 😉
Meh
ultra secure
(or ever) (please dont do that)
RAID 0 it 😈
raid good but not raid 1 across all 10 drives
Hmmm my players cant type i have given them bungeechat.chat it dose not work
Yolo
!verbose
LuckPerms provides a verbose command to help you find out what permissions a command/plugin is checking.
speaking of raid
i was just trying to set up raid 10 across 2 cmr drives and 2 smr drives
and it absolutely pooped on me
U know whats fun
the initial resync was going to take 19 days for 8tb of usable space
died
Gave me a fat finger
I have this one 8 months...
hosting minecraft 😎
Pc
you can swap out the gpu
MSI Nightblade MI3
as long as you can actually snag another for a non exorbitant price

used the command nothing says anything with bungeechat
did you use /lp or /lpb?
lp i need to use lpb my bad
there we go thank you
but i have the correct permissions hmmm
/lpb verbose record
type in chat
/lpb verbose upload
send link here
dont worry i figured it out myself my friend had to relog and that worked
i cant see the chat when someone is in the different server i have checked config and configured what i had to i then reloaded the config
try restarting
what
try restarting your server
not reloading
(your proxy not your backend server)
Hey, Can someone help me connecting my bungeecord and spigot servers with luckperms? For global ranks etc
!bungee
If you run a Bungeecord network, learn how to correctly setup LuckPerms on all server instances (including Bungee).
Syncing data between servers
I know I need to set the mysql stuff etc in the config
but then the console is getting spammed full with errors
what errors
sec i'll copy it.
sec
This is the bungeecord console error https://sourceb.in/Sn9Usr3mT1
you set your mysql in config wrong
wait do I have to do ```BungeeCord 🔗
LuckPerms uses a player's unique ids (UUID) as an index when saving data. A players uuid is provided by the server implementation, however, this value can depend on the state of the online-mode setting.
When using BungeeCord, it is absolutely crucial that BungeeCord's IP forwarding system is setup and configured correctly.
In config.yml file for your BungeeCord proxy(ies), you need to set
ip_forward: true
In the spigot.yml file on each of your backend Spigot servers, you need to set
This option is found under "settings"
bungeecord: true
In the config/sponge/global.conf file on each of your backend Sponge servers, you need to set
sponge {
bungeecord {
ip-forwarding=true
}
}
After changing these settings, you need to fully restart the Spigot/Sponge servers and BungeeCord proxy.
You should also take steps to ensure that your network is correctly firewalled, to ensure malicious users cannot spoof connections to your backend servers. A guide on how to do this is provided here by SpigotMC.``` this
And then connect to mysql
> No route to host (Host unreachable)
your proxy server cannot reach the database
Alright, Can someone help me step by step fixing the global perms thing?
read the docs
Created a mongodb thing too ^
why no one use the normal mysql? 😄
your lp in bungee the database login is wrong
look on that maybe you write some wrong
I've resseted everything (All configs etc
👀
Please double check that:
1. BungeeCord config.yml has ip_forward and online_mode set to true
2. All backend servers' spigot.yml has bungeecord set to true
3. All backend servers' server.properties have online-mode set to false
that
yeah and dont forgot set the backend server setting bungeecord = true
i left my old hoster they change to ptero im back to multicraft XD
but maybe someone can help
I have my service setup with centos for queue workers, to schedule shit
/usr/bin/php /usr/share/nginx/pterodactyl/artisan queue:work --queue=high,standard,low --sleep=3 --tries=3
it works when i use it in terminal, but errors when i start it as a service
centos is a os like linux?
im bad in linux and no one used centos i have a windows server XD its more easy for me only exe file double click and finish 😄
Please double check that:
1. BungeeCord config.yml has ip_forward and online_mode set to true
2. All backend servers' spigot.yml has bungeecord set to true
3. All backend servers' server.properties have online-mode set to false
yeah an ptero was for me to hard so i know multicraft and thats why im back to this 😄
your spigot server bungeecord set true?
yes
yeah i fxed it pesky centos bug tonstar
@still shale You need to connect all of them to one database
you right now have seperate databases
for ever server
get the connection URL
change stroage type to MongoDB
and put ocnnection url in the part where it says
then setup a schedule to auto run lp sync
put in all configs the same connection infos
click connect
then click compass
and copy that
put it in the part of config that says mongo connection URI
where do u see a compass
i like this more crispy 😛
create a database user
yeah but i can work with this better XD
your missing out man
i dont missing ptero 😄
i hate it, thats was a reason why i lose all my databases
i only mysql
Just keep the ip on 0.0.0.0/0?
Connect using mongodb compass?
Only thing what I have to do is copy the URL right?
why is so hard on you to create a database O.o
I don't know if i am doing smth wrong haha
so many configuration i must only click on create database then i get host, name, databasename, password 😄
thats is one reason why i like multicraft more one click and i get all my information to put in the configs XD
sec
vps?
theres a thing for that one sec
linux?
@still shale https://startmc.sh 😄
yeah there it is
get a panel thats much easier trust me 😄
still need startup stuff
Im abit confused weather i should name it bin (cause i renamed it) or if i still put in the actual name of the file before i renamed
Put the name of the .jar after you rename it
name it whats it called now
Must match exactly
Depends what you have
32gb total
After 10 your startup script will change to be better
Then do 4-6 per server
512mb for bungee
Okay does it matter if i allocate 4 now for installation etc? i can always change it right?
Thanks alot!
i change end this month too a dedicated 😄 but than i must use linux 😦
that you can put ip that are allowed to connected with the database
so you can let the % like it write the text under the field 😄
so i can leave that as a %?
this is now mysql?
ye
yeah this generate your stuff its little bit easier 😄
put the logins to all lp configs
storage-method: h2
i need to set the h2 to mySQL right?
yes
Uhm guys is this normal? im trying to install paper
# - The standard DB engine port is used by default
# (MySQL: 3306, PostgreSQL: 5432, MongoDB: 27017)
# - Specify as "host:port" if differs
address: 3306``` that right?
Nvm
yourip:3306
Lol
here is an outdatet example from my old bungee
# Define the address and port for the database.
# - The standard DB engine port is used by default
# (MySQL: 3306, PostgreSQL: 5432, MongoDB: 27017)
# - Specify as "host:port" if differs
address: docker.medplex.wtf:3306
# The name of the database to store LuckPerms data in.
# - This must be created already. Don't worry about this setting if you're using MongoDB.
database: s83_bungeenet
# Credentials for the database.
username: u83_R3kR0coy5Y
password: '.YrOA.856zI5HY3N+5ySwK^l'```
you must set a sync interval
sync?
Sync Interval
You can set a sync interval, which will make LuckPerms periodically pull the latest changes from the database.
The setting is controlled in the config, and defaults to -1 (meaning the task is disabled).
sync-minutes: -1
let me look what i have in this 😄
i have it on 5
and watch files i have true
watch-files: true
under the sync
same
yeah and this making with all other server
done
maybe it should work copy this config and paste it in the other spigot servers or not?
wdym
yeah than you can restart all and make /lp sync on every server
alr sec
than it should work
If i wanna use pterodactyl i have to install it from my dedicated server right while im ssh'd into it?
look on there website there have a for me complicated guide XD
The open-source server management solution.
Well yea same thats why i ask im so stupid when it comes to this lmao
for me this look very long and not easy for me to install XD
Where did u install it? root or?
i dont use ptero
i use this http://www.multicraft.org/site/docs/install#1.1 much easier to install haha
Multicraft: The most popular Minecraft server admin control panel and hosting solution
Whats the diff?
its for me easier to use
ALso im still trying to figure out where to install it on my server
Multicraft is older, and from my experience considerably slower
also I thought it was paid?
yeah paid 8€ lifetime
ah found their pricing page, I see. 1 server capped at 10 players is free
Ptero is FOSS and not likely to change that anytime soon
but pterodactyl is free and gives unlimited lol
yeah but i dont like it 😄
it's even easier to set up pterodactyl if you run it using docker-compose
🤷♂️ personal preference then i guess
i have look on the install guide ptero and its for me 1000x complicated
Having used both, I personally prefer ptero
on multicraft i have make double click and he install all alone and finish 😄
its for me 1000x complicated
do you know linux?
From ptero's install docs:
You are expected to understand how to read documentation to use this Panel. We have spent many hours detailing how to install or upgrade our software; take some time and read rather than copy and pasting and then complaining when things do not work. This panel does not exist as a drag-and-drop service to run your servers. It is a highly complex system requiring multiple dependencies and administrators willing to spend some time learning how to use it. If you expect to be able to install this with no understanding of basic linux system administration you should stop and turn around now.
yeah see the owner self says go away in there message 😄
Eh not exactly, they're saying "don't expect to install this in 2 minutes"
multicraft only copy 5-6 commands from there guide and finish 😄
could also just google for a ptero install script which practially does all in 1 cmd
i was one time on ptero by my old hoster and lose many stuff
i dont go second time to ptero
Data loss would almost certainly be on the host's end, not the panel's end
thats is when you alltime changing and changing so i dont do it anymore
i like multi more and i know about it
@forest helm wtf does this mean
Read pinned #support-2 ?
Will do ty
Do you know how i go back and change it?
Change what
I tried to change the localhost i checked bind address is 0000 it still wont connect
It says network unreachable now
hello 
Hey
turbo since when is your pfp avatar your cat. I forgot how cute it is lol
is this normal for bungeecord? bind_local_address: true
host: 0.0.0.0:24712
i get syntax error when creating a user why is that?
?
When setting up pterodactyl
Screenshot it
Sec
when i do mysql -u root -p and type my pw it works
but
when i do CREATE USER 'pterodactyl'@'127.0.0.1' IDENTIFIED WITH mysql_native_password BY 'somePassword';
@trail shuttle
Hey MOUDI! Please don't tag helpful/staff members directly.
you didn't do USE mysql; i think and you're supposed to change somePassword
Since you said cat avatars in a certain other server
I did use USE mysql;
you didn't, this is what it looks like when you do https://i.jordqn.me/dea5eaec11.png
Okay now i try again
The question is not for the plugin, but for java. How to check if a byte array exists in another byte array
wdym?
Im not sure how to do that
wdym? ??
@tall anchor try removing the WITH mysql_native_password just IDENTIFIED BY
Okay
i have byte[] :
aa,ea,88,8e,aa,33,22
i need check 'contains' 88,8e
Aah I see what you mean
i dont known index(
index dynam.
did you already make a user or something
I dont think so i always get syntax error
is there a way to delete a user?
in case i did?
try DROP USER 'pterodactyl'@'127.0.0.1';?
well you'll have to loop through the array and check if the byte at arr[i] is 0x88 and arr[i + 1] is 0x8e
you can do that dynamically with a nested for loop, the outer loop that loops the array you're looking into and the inner for loop that loops the array that has the data you're looking for
and then still ditch the WITH mysql_native_password
yeah
Okay will try
ok, i try
Seems to work?
Okay so when i do CREATE USER 'pterodactyluser'@'127.0.0.1' IDENTIFIED BY 'test'; i get
Do i try to Drop it and create it again?
yeah it's probably already made but you'll also want to be using an actual password
Hmm what if i continue, cause its gonna ask me if i wanna make a new pw if credentials are wrong no?
Or is that only for the first one we made
one hour to get a connecten in ptero mysql bruh i hate this more and more when i need more time to get this access for database -.-
?? the test part is where you should put a password for your database users
Ye where u put server ip etc
what
you did these steps as well right? https://i.jordqn.me/7af6702a85.png
ohh okay
i want this too but no access for this only panel creating database 
Caused by: me.lucko.luckperms.lib.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure
@vast isle Tysm bro
so now that i have this done, how do i add my server nothing shows up
well you need https://pterodactyl.io/wings/1.0/installing.html then you'd go to the admin section
The open-source server management solution.
make sure you allow port 8080 and 2022 in your firewall I don't think it says that in the guide
I just created the directory but there is no config file
hmmm
you make it yourself I think
how to i allow ports
I have to paste some text into the admin panel
I think its in the config file
try ufw allow 8080 and ufw allow 2022
this i ignore right?
Okay will do
That worked^^
It did smth atleast
there is a really good chance that is skript
denizen stronk
My Script is fame

i am using it still as a base
made a fireball rod
<33
made a item that applies status effects on self when used
healing tomes
its really cool
For better workspace use visual Studio Code with denizen extension 😅
mh too bad its a cloud panel
What is cloud panel?
nothing
Ok
Guys
Can someone help me
pls
So my server is offline, but when i try to run my start.sh file it says its already running, i cant do the stop command
and my server dosnt show up in pterodactyl
No one in the ptero discord?
run in systemd )
its in home
Your dedicated
Yea but i cannot write any commands in my terminal
when you say its already running you mean the port is in use or something?
Like this
show script
No hoster panel for restart?
try ps aux | grep java
kill the process using it first
How do i run it like u wrote it in one go or ps aux and then grep java
one go, with the |
try killall java then
didnt seem to happen anything
does it show if you do the ps command again?
Ye
try kill -9 5963 and kill -9 12269
no such process















