#minecraft
1 messages Β· Page 44 of 1
What do you mean?
I didn't even understand
How are you running a 500+ player server then?
Just change the number to 500
You're def doing something wrong
You only need like 512MB per 150 people or so.
It fluxuate.s
mm.. here's my bungee config.
I has 7 Bungee plugins running inside the bungee..
When i started the bungee, it start on 300MB+ of RAM.. And when it reached 200.. The RAM increased to 103% and then suddenly crashed
Use Waterfall
I use waterfall already
Oh lol
That's why i'm asking
I mean is there a way to seperate normal bungee for players to connect and bungee with plugins in it (not for players to connect) and run both of 'em at the same time without issue
Instead like Bungeecord connecting servers together RedisBungee connects bungeecords together
To run multiple bungeecords at once
and can i limit players per bungee
?
and how the heck i suppose to install redisbungee?
and where do i have to install this redis?
Read up https://redis.io
well i've watched a 10 minute video about redis and my head almost explode..
Can anyone guide me?
It's not really something you can just pick up on, I think you should have someone look at your basic proxy that you have now. There's no reason that it should be crashing where it is now.
Try running it with 2GN
GB
256MB can hold 500 players (just checked) and you need to add 0.5MB for each player after that
8GB if oversizing the proxy and it can't work as strong
even with 7 plugin in it?
Umm sir.. can we do private chat?
I can friend you sure, but I can't talk via voice. I'm in the middle of the ocean and wifi isn't the strongest.
Yeah sure
π π
@slow imp can you help?
0 bungee knowledges π
:v
hey did anyone here using hexacord?
Will do. But it wonβt let me type in that channel so
You must explain your services you offer
I have no clue
finally broke pex
was worried because everything has been working flawlessly
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 33.389 s
[INFO] Finished at: 2018-03-14T11:21:16-07:00
[INFO] Final Memory: 23M/279M
[INFO] ------------------------------------------------------------------------
suspicious
Minecraft mod expert pm me
β€
Guys is it aloud to talk about my own code ve?
dev.
Like talk on ideas about my own plugins here?
Just need a idea for a first plugin...
Yes lol we have this channel, #339773683469910016 and #development
Not really anything new, I'm currently working on a recode for one of my plugins, and I have to do a few updates for others
What were you interested in trying
Well I recently have learned the fundamentals of java
So like all the basics
Loops if statements etc
Ovbs learning the fundamentals of java is better before starting on bukkit side of things
Enter 2 digits, send player the output
Well they do could /add 2 + 2
Ah π
So get the args, check the numbers, add numbers together, send player output
Alrighty
Aight got code together just testing it now
Alrighty
So I got it working
But the way it works is /add <number> <number>
It doesnt require + inbetween
It also reads a error when I just use /add
You could do it now for subtract multiply and divide
How do i make it read a output to player if they dont enter 2 digits
You need to check args length
Well numbers
Np
Return false
Thanks
Also make sure they are numbers too
Glare
Player target = Bukkit.getServer().getPlayer(args[1]);
if(target == null) {
player.sendMessage(ChatColor.RED + "Please make sure to enter 2 numbers!");
return true;
Would that work to check for 2 numbers?
@gray geode look at my link xD
Idk
Args
I just noticed lol
Are you doing it in onCommand
Yes its using onCommand
public void onCommand(CommandSender sender, String[] args) {
if (args.length != 2) {
Return false;
}
Int answer = math add args0 and args 1;
Sender.sendmessage(int to string answer);
}```
I'm on mobile but like ya
That's how you do it
How do you do that?
Like the box around code?
xD
On discord...
Is it <text>
Nope wrong one
xD
Player player = (Player) sender;
if(cmd.getName().equalsIgnoreCase("add")) {
String num1 = args[0];
String num2 = args[1];
int a = Integer.valueOf(num1);
int b = Integer.valueOf(num2);
int result = a + b;
player.sendMessage(ChatColor.GREEN + "Result > " + result);
}
Player target = Bukkit.getServer().getPlayer(args[0]);
if(target == null) {
player.sendMessage(ChatColor.RED + "Please make sure to enter 2 numbers!");
}
return true;
}
}```
That is what I did for adding
Ovbs I want it to read a message if they dont enter 2 numbers after /add
And just do /add
Why are you targeting
Just sender.sendmessage
Who the hell is going to add if it's not a player
Lol
So remove Player target line
Getting in shower I'll boot up my laptop if you haven't gotten it when I'm back
@lusty summit you get it?
xD
It's very relaxing
xD
Good
public void onEnable() {
}
public void onDisable() {
}
public boolean onCommand(CommandSender sender, Command cmd, String commandLabel, String[] args) {
Player player = (Player) sender;
if(cmd.getName().equalsIgnoreCase("add")) {
String num1 = args[0];
String num2 = args[1];
int a = Integer.valueOf(num1);
int b = Integer.valueOf(num2);
int result = a + b;
player.sendMessage(ChatColor.GREEN + "Result > " + ChatColor.RED + result);
return true;
}
if (args[0] == null) {
player.sendMessage(ChatColor.RED + "Please enter 2 numbers!");
return true;
}
return true;
}
}
Thats what I am doing
So /add 2 2 works and outputs 4
Or what ever numbers I put
But if I do just /add it reads the red error xD
I thought because String num1 which = args[0
[0]
Its empty so it should read the bottom message should it not?
Or does Player player = (Player) sender; need to be above if (args etc
Nah that aint it xD
Oh xD
if (args.length == 0) {
Would that also work the same way
As args[0] = null
It would wouldnt it?
Put the command in it's own class to start it's better to keep it organized
I know but I am just staying simple for now as I aint really creating a plugin which has many things it can do xD
Im just making it so it adds 2 numbers but if no 2 numbers are given it reads a message
I had to settle for cookies since they were out of cupckaes
xD
I so called that in my head
Yeah
Cause nothing can return if its above booleanxD
We all start somewhere
π
I understand bits but then my head goes blank at times
xD
Its quite simple in a way its like python but with different comments for same meanings
No semicolons
And that one xD
So I put it under
But now the Player player = command sender
Is coming up with a error xD
Nvm forgot a curly bracket
Or whatever you call it xD
xD
So now if I do /add
it reads /add
Literally xD
If I do /add 2 it reads /add
But if I do /add 2 2 it reads the result
Np
xD
So whats missing then?
Is else {
}
Nah it aint is it...
xD
Oh god I feel like a noob without any roles xD
So whats missing now then to get a error message to display
Well to print xD
@drifting thistle remove you message from #367904196441276419 π
Glare power
No problem @gray geode
I had to toss the cookie pizza
xD
I might started tossing //text in my code
So I can learn and remember what part does what
Good way of learning what code does what too
Start*
@Override
public boolean onCommand(CommandSender sender, Command cmd, String label, String[] args) {
if (sender instanceof Player) {
Player player = (Player) sender;
if (args.length != 2) {
player.sendMessage("Sorry, you must use 2 numbers!");
return false;
}
int answer = (Integer.parseInt(args[0] + args[1]));
player.sendMessage("Your result is " + answer);
}
return true;
}```
Oh so it has to before the result code?
The send message...
It worked
With this code
import org.bukkit.command.Command;
import org.bukkit.command.CommandSender;
import org.bukkit.entity.Player;
import org.bukkit.plugin.java.JavaPlugin;
import net.md_5.bungee.api.ChatColor;
public class Calculator extends JavaPlugin {
public void onEnable() {
}
public void onDisable() {
}
public boolean onCommand(CommandSender sender, Command cmd, String commandLabel, String[] args) {
Player player = (Player) sender;
if(args.length != 2) {
player.sendMessage(ChatColor.RED + "Please enter 2 numbers!");
return true;
}
if(cmd.getName().equalsIgnoreCase("add")) {
String num1 = args[0];
String num2 = args[1];
int a = Integer.valueOf(num1);
int b = Integer.valueOf(num2);
int result = a + b;
player.sendMessage(ChatColor.GREEN + "Result > " + ChatColor.RED + result);
return true;
}
return true;
}
}
Yay it worked β€
First plugin
Now I could add subtract multiply etc
@Override
public boolean onCommand(CommandSender sender, Command cmd, String label, String[] args) {
if (sender instanceof Player) {
Player player = (Player) sender;
if (args.length != 2) {
player.sendMessage("Sorry, you must use 2 numbers!");
return false;
}
try {
int answer = (Integer.parseInt(args[0] + args[1]));
player.sendMessage("Your result is " + answer);
} catch (NumberFormatException e) {
player.sendMessage("Please make sure both inputs are numbers!");
}
}
return true;
}```
That should handle if one of the inputs isn't an integer.
Isn't #development a better place?
Ya, I mean we didn't start with code lol
I'm just saying π€·
Works Glare
Used this ```package me.callatic.calculator;
import org.bukkit.ChatColor;
import org.bukkit.command.Command;
import org.bukkit.command.CommandSender;
import org.bukkit.entity.Player;
import org.bukkit.plugin.java.JavaPlugin;
public class Calculator extends JavaPlugin {
public void onEnable() {
}
public void onDisable() {
}
public boolean onCommand(CommandSender sender, Command cmd, String commandLabel, String[] args) {
if(cmd.getName().equalsIgnoreCase("add")) {
if (sender instanceof Player) {
Player player = (Player) sender;
if (args.length != 2) {
player.sendMessage(ChatColor.RED + "Sorry, you must use 2 numbers!");
return true;
}
try {
int answer = (Integer.parseInt(args[0] + args[1]));
player.sendMessage(ChatColor.GREEN + "Your result is " + ChatColor.RED + answer);
} catch (NumberFormatException e) {
player.sendMessage(ChatColor.RED + "Please make sure both inputs are numbers!");
}
}
}
return true;
}
}```
You messed up tho
I had to change return false under command "add" to true
Because it was reading /add in chat with the Sorry you must use 2 numbers
Add
Now it doesnt tho
β€
my target of a first plugin is a chestsell plugin
Like main plugin for my server π
Now I'm hooked on making a calculator plugin lol
Xd
@gray geode How do you subtract?
int answer = (Integer.parseInt(args[0] - args[1]));
Like that?
I know * is divide
- is multiply
public boolean onCommand(CommandSender sender, Command cmd, String commandLabel, String[] args) {
if (args.length != 2) {
sender.sendMessage(ChatColor.RED + "Sorry, you must use 2 numbers!");
return true;
}
int answer, arg1, arg2;
switch (cmd.getName()) {
case "add":
arg1 = Integer.parseInt(args[0]);
arg2 = Integer.parseInt(args[1]);
answer = arg1 + arg2;
sender.sendMessage("Result: " + answer);
case "subtract":
arg1 = Integer.parseInt(args[0]);
arg2 = Integer.parseInt(args[1]);
answer = arg1 - arg2;
sender.sendMessage("Result: " + answer);
case "multiply":
arg1 = Integer.parseInt(args[0]);
arg2 = Integer.parseInt(args[1]);
answer = arg1 * arg2;
sender.sendMessage("Result: " + answer);
case "divide":
arg1 = Integer.parseInt(args[0]);
arg2 = Integer.parseInt(args[1]);
answer = arg1 / arg2;
sender.sendMessage("Result: " + answer);
}
return true;
}```
That should handle all the commands
Don't hold me to it tho
Actually
If you think about it tho
That code will display all outputs with one command
No matter what command
Nvm got it working
I added return true; under each one
Ok
PermissionsEx web dashboard. I'm currently racking my brain over how to do credentials. I currently just have it where people that can login to the pex dashboard have to have a username and password defined in a config. I don't like this. Having the plaintext password out for any other staff isn't good enough. SO I'm thinking about how to do authentication. Should I add a register section on the dashboard, and when you register, it goes into a queue, and someone with the permission.dbadmin perm can review the pending accounts and approve them, and choose what sections they have access to? Or should I make it so that accounts are created in game only by the server operator, or what. What do you guys think would be a safe but simple way to do dashboard credentials?
Make it where the config is sent to the site by command and the response is the url to view it
Click url, make changes, then on save it is sent back to the server
The issue with that is that it should probably need a permission to do the command in the first place
and all the lazy peeps are gunna not be able to use the dashbord to give them selves that perm
because they cant access the dashboard without it
small group of people
but id like to make pex simple and to the point
no its good
if a better idea comes up later ill fix it
Thanks clip
Honestly don't need such a system for perms
hm
Also, @serene lotus idk if you know or not, but the progress bar on TP ain't working properly
?
How i decided to do the credentials for the pex dashboard
@placid viper sorry for mention but can you help me with the random number js placeholder? It's possible to add a message output with the generated number inside? like &a&lWin: $200
return Math.floor(random) + "&a&lWin: $200";
``` try this
not sure 100% it will work but the "+" in return should work as i know ..
i mean, if it generate the number 21023, will be Win: $21023
i'll try tommorow, thanks π
np π
java and js are still new things for me π
js was also new thing form me too π
all u have to do is learn..... its not difficult
but idk about java π
why?
i use it like that
[console] eco give %player_name% %javascript_randomintbetween_100,2000%
and the output will be Win: $### i think
lol no
hehe
int Gaby = 0;
if(Gaby == 1) {
printf("Gaby already has intelligence");
}
else {
Gaby += 1;
printf("Gaby given intelligence");
}
π
hopefully nathan will find a way π€·π½
π€£ π
Would I be allowed to post the thread for an account I'm selling?
no
anyone interested in some sort of partnership?
Like a boyfriend or girlfriend?
hahah lol no
lol
guys
question
Does it make sense to have more than one admin on the server?
So i have the following staff ranks on my server:
Helper
Mod
Admin
Head Admin
Operator
Co-Owner
And Owner
My friend is telling me that I can't make more than one person admin, because that's how admin works.
Is this really true? Like is this a thing?
Mod + helper is the same thing
and admin + co-owner + head admin almost the same
ok
don't have a head admin is my advice
huh? why?
There's not really a permission difference
if there was it would just be more effort
BTW thats my opinion
Ok I see
some people like to get 1000 rank for staff
Are you using LuckPerms π
and some like to get 2-3 ranks for staff
no, permissionsex
boo
lol wat
?
why
I personally prefer luckperms
m2 π
you can migrate permissionsex groups to it
Yea
no effort required
with one command π
Make sure you have no grouped permissions tho
e.g. world,world_nether:
make them separate if you do migrate
Yo, what does the server use for the items laying around stuff?
Like the gold bars that are on the ground at spawn?
astools is the best π
RAWR
hey, does anyone here know free vpns that work with minecraft?
because multicraft knows my IP, and makes me OP even if I deop and remove permissionsex
I didn't know it did stuff like that
Yeah...
18 good ban reasons
@drifting thistle I believe you messed around with permissions in the Multicraft panel
@DoctorDisco#9437 "You've been banned by the ban hammer", There's your first one.
:c
Hello humans
Hey lewis π
Hey π»
t
t
t
Just dropping in to say Woo! New DeluxeMenus update ;D
π
xD I spent so much time on making my menus, glad to see the plugin's being updated
xD Well, it was a pretty brutal way to learn your config set up real quick
π But I learned it, these whipper snappers won't know how we used to tred up snow both ways to use DM.
It really isn't, you did a fantastic job with the plugin clip
Thanks zeffy

π
@buoyant haven already got my banhammer
And I'm good on the 18 reasons
Working on my new plugin
DiscoEmotes
Lmao
I was willing to do the kits one for free as a personal challenge but the guy never accepted my request....
Need some1 to build tactical nuke ** U N P A I D **
#297996869173379072 π
@severe drift I don't recommend a tactical nuke... Would cause to many innocent casualties....
My mom lives on mars
Why do you hate ur mom, lol
Meh
Hey @lapis shadow is there a way to add Deluxe Menus as a depend for my plugin guis?
cuz ChestCommands currently throw errors
does anyone have a sb server with askyblock and have lag issues with creating an island or making a welcome warp or resetting an island or is it just me lol
Idk how aSkyblock handles stuff
But all of the world generation takes decent amount of calculation
i mean i had before 60+ and it worked fine but this year it seems to lag for me with only 10-30 players and not sure why it would i even have fawe to handle resetting and making islands faster.
Did you do a timing
Might give me the timing link instead damn it


@placid viper what %plugininfo_permissions_<plugin>% should do? Fe for essentials it does this https://i.imgur.com/eeXvM4n.png but the link goes nowhere
or shouldn't be a link?
oh π
@drifting thistle my bad here you go - https://timings.aikar.co/?id=ab302eb3a0474df0bd3feb0c66d8f911
what lol
yeah its the same when i create and island or reset an island and i already have fast aysnc world edit to handle it faster but idk
what does chunk.i/o mean maybe its a hard drive issue idk
Oopsies, I'll fix that as soon as I can @slow imp
π
@slow imp http://prntscr.com/iugd8j pushing this out soon, I'll format it better in another update
ππ½
@slow imp new version uploaded to PAPI ecloud :^)
:3
I can't wait until ecloud pushes are handled by jenkins
meaning we commit - > jenkins builds - > jenkins handles making the update to ecloud without us doing a thing
Yup
Mhmm π
Lol
same day
Every expansion has a typo
Lol
@slow imp Make a configuration loader that load assembly files as a plugin config
Can ya boys gimme gimme the explanation of what rcon is for a minecraft server
Any VPS SSD hosting page that you recommend?
@forest coral SoYouStart
I use one on warenode.com
What if I used Linux but without a GUI to run a minecraft spigot server?
So just a console
It can have one
I don't think I would need rcon? Idk because I'd be hosting all the mc server folders on the Linux server
I'm new to it
Yuk
@severe drift Lol, I use pterodactyl
I host the panel in another VPS
And setup the docker in the main VPS
Use that panel to control the VPS
linux does have a gui
^
I always use ovh dedicateds.
Config and menu files are now checked before being loaded to prevent wipes when you make a mistake.
and then Clip ascended for completing his good deeds
Me best dm update ever
Is there a file transfer software faster than FileZilla?
My server files size is more than 70 GB.
I have 100 mbps internet speed, so i need a software that can transfer my server files faster
@drifting thistle I do
Delete all of the log files and purge some if necessary :v
Go to #bot-commands and see with β?papi p FactionsUUIDβ
Also @thin seal this should be in #general-plugins
@thin seal factionsuuid supports that on its own
you can if you use our built in name tags...
I have a semi vanilla server running on a intel i7 4790k. 32 GB RAM Total, and I'm using 20 GB RAM.
I want to start factions, but If i make a hub, will players leave?
@quick sand check PM
Helpers Can you help me with this? http://prntscr.com/ix8lql I have already reinstalled Java and Minecraft several times!
@drifting thistle uninstall java again. then add a envoirmental variable
install Java 8
watch a video
I only need a variable and she is on Painel de Controle\Sistema e SeguranΓ§a\Sistema
and advanced settings
envoirmental variable, Path
https://pastebin.com/qDmiegS7 here the problem
@lapis shadow is there like an api for DeluxeMenus to add it to my gui plugin?
You can try using the jar itself @dire spade
not sure how i would do that.
Add the jar to your deoendencies
ok
π¦
@slow imp Prodigy Gadget?
No, Trails
is that supertrails?
Yes
Yea, the π¦ wings
gimme 15$ π
o
o
I personally use ProCosmectics.
Hi
i have a problem
anyone here?
hello?
@lapis shadow , i have a problem. i'm using luckperms and i bought ezrankspro. my luckperms connected to the same mysql database (my server is bungeecord). so default group is global. i used ezrankspro in skyblock, players can't rankup because defailt group is global (plugin can't take default group)
sorry i'm not very good at english
Do other permissions work when you use global ?
It uses perm nodes to detect groups not actual groups
That moment when your test server is death and you have to use server.pro to finish your work π
no lmao
free server π
lol yea
10 plugins is enough atm
Just localhost lol
i don't have a good enough pc for that π
specs?
can u upgrade the ram?
open it up when u have the time and see if u can
if u can, I highly suggest upgrading to 8+gb
FactionsMob I believe
@drifting thistle Delete or get the heck out of here lol @lapis shadow
where's glare :c
Good question
Banned.

testplugins.com has animated names.
@slow imp hi
Soiei, ce plm cauti aici? :)) @unborn axle
Cautam o perms de la deluxe chat
nu, nu poti
Tu zici de permisiune per tooltip ?
gen
Whatcha guys speaking?
Russian
sa ii scot perms (grupei) sa vada name tooltip
let's move to pm misu
K
Sorry xD
It`s ok
No, mb
xD
how many likes for trusted rank
no likes. You get selected for it
My twitter also has no likes π
I like to go on there and upload memes
@placid viper
When I have heaps of players asking to marry me but I'm loyal asf π
https://gyazo.com/0c778a00be2f270603c4e04f1cbf1e40
what did he do
Mojang had some fun.... https://i.imgur.com/oHgpA3Y.png
?
Look the graphics @slow imp
are you sure that aren't buildings?
I build that myself π
It looks like on a old computer that can't handle the "detailed" graphics
oo
The hay block π https://i.imgur.com/URRuf9Q.png
wtf
amazing
I don't know what they try to emulate....
The graphics of a old computer from the 90s?
@severe drift from my understanding, he dmca'd a fork of factionsuuid
yes
the guy who forked it posted it on spigot for free and it had more features than the original plugin
I guess he got jealous
@buoyant haven isn't it odd since factionsuuid is a fork of MassiveCore's Facitons plugin?
I'd be grateful if someone continued a plugin for me
same for EssentialsX
@cerulean mauve true π
I think it's extremely selfish on trents part if all there is to the story is what I've heard
if it's released under GPL3, anyone can distribute as long as the distribution complies with GPL3 license, right?
correct me if i'm wrong
i'm not an expert on GPL.
SavageFactions is still an addon for fuuid or can be use w/o fuuid ?
without
ez pz
i mean, they allow us to compile the "original" plugin
so they have no logic imo
https://www.spigotmc.org/resources/savagefactions-factionsuuid-reimagined.52891/ info is on the page
i still like SF more than Fuuid
I guess it's a similar case

whats server ip i forgot lol
indeed
@severe drift I won the claim
what he said was false when he dmcaed me @slow imp , so once april 13th comes I can post again
http://prosavage.net/SavageFactions/ there is also this
niiice
yes
Would be a lot cooler if it was a nice render. That's the only thing I don't like about your team is the ender doesn't catch my eye
Other than that it's quality stuff
Generally, most builders hide the flaws of their build with the render, if the build looks good even without the render you have a quality builder, specially since your servers members are going to see that build in its vanilla glory, no rendering going on for the players.
And while its not always the case, its an important part of it.
Hey do anyone know what happened to Hypixel couple of days ago?
I heard that every player become admins
Probably for april fools, another server did everyone as owner
1st april
GOD DAMNIT
F*ck You HyPixel.. You got me good -_-
how to use that rate my server with garry??
read the pins
:v thanks :v
You just fill out the format
Haven't noticed that one :3
guys i used worldguard to set safezone and warzone regions.. they dnt display on /f map, what can i do to fix this?
@slow imp ive already set the safezone and warzone but claiming for warzone and safezone is done in chunks which doesnt fit my spawn
π€·π½
just claim as many chunks as you need
it doesn't matter if it's bigger than your spawn
yeah but around my spawn is a warzone which i want people to pvp in..
doesnt safezone automatically disable pvp?
oh god this is wrong room
π
Does this looks that bad? π https://gfycat.com/DisgustingNiftyBoa
It looks good but I the Asymmetry
ok
@slow imp Is that a group-prefix or a tag?
I like the &k: in the tag... π
:3
@slow imp Are there other countries?
And both aren't bad.. π
Atm only 15 i think
"only" π
Lmao
Now I wonder what the blurry ones are π€
If the countries are 15 then how many tags do u have π
31 actually
Not bad
21 countries and other 10 tags
i plan to make one with each country (or even with how many i can π )
I think mine were 35 π π
but it's a biiiiiiiiig list :)) http://flagpedia.net/index
Lol
I hope you make switzerland (swiss) :3
Gaby you got england?
not yet π
Damn
Wohoo
Where tf is GB ?
same, i can't find it
GB is England, Scotland, Ireland and wales
UK is England, Scotland, N. Ireland and wales
England is England
I'm not that good at geography actually π
I only know because I live in london
Lol
i can't apply a red striketrought effect :c
Not only one Letter red.. maybe 2 or 3.. i think
π¬π§
Great Britain*
Idk mate π
Who study geography here lol π
We π€£
Me
Then thats the reason why .. π
You are still too young boo π
I just started
Shut up π
oh π
I was like How old are you? 12?
Pls don't tell me that you code plugins, P L S
Lmfao
I code plugins
Gaby u shouldn't be old to know how to code π
I started when I were 7
wew
Great
that's nice
Yea
Also yea lol
any public plugin @bitter prism ?
Some people are 100000 and don't know what does code means and some are 5 and know everything about coding π
ikr
Im making a public guns plugin
And a MySQL intergrated punish system
Great
Yeaaa lol
For publix
then I have bigger stuff for private
Btw dont be Ageist or judge people by their age.
Agree with u
I don't do this lmao
Inference.
I wont say yes but almost yes lol
But tbh, over half of 11 - 12 years old kids are ..
Should I make a re-write of spigot or a documentation for NMS?
@lapis shadow , sorry to bother you but can you opensource your plugins if you havent done so already?
or create documentation.
Y
I wanted to look at how you did you some stuff.
Is decompiling it against the rules? @lapis shadow
Well you kinda decompile when you use it as a library
yo
Yo
anybody know how to check if a server is leaking something
my computer slows down quite a bit after a while of having my servers open
this is a recent thing
started around 2 weeks ago
It suppose to...
I'm running all servers right now after a reboot and it's running perfectly
Up until 2 weeks ago, I could run the computer for months on end no issues
Your server need to use the hardware resources
Yes... I know how servers work
I can shut all the servers down, and it will still run slowly until a reboot
which is why I feel something is leaking, but not entirely sure what or how
To see if there is a hardware issue
Running a server in your computer continuously for a while...
ye it'll cause strain
^
how do you recommend I check the CPU
Try to do some benchmark and see.
You should find a host not hosting the server on your computer
ya... but that's espensive
It just 100 - 150$ how expensive is that except you are Asian like me
Of course that is the minimal price for a network
Else about 30$ and you get a decent server.
@stable remnant I think you should find a host anyway
They will handle any hardware issue for you
@stable remnant run a timings for 10+ minutes, then give us the link. Make sure you're using the best flags for your server jar aswell, https://mcflags.emc.gs if you're using paper, optimal configuration for paper is also on that link.
his server could be causing it though
also cj, when your computer goes slow, open up task manager and tell me the percentages for gpu, ram, cpu and disk
@buoyant haven Idk, I told him that prob his server is causing it
He said the problem just happened recently
Yeah so he's probs installed something to do it
like a shitty plugin that causes memory leaks
Recently = 2 months ago...
cj89898 - Today at 11:02 AM
anybody know how to check if a server is leaking something
my computer slows down quite a bit after a while of having my servers open
this is a recent thing
started around 2 weeks ago```
ahh yep
2 months ago
seems about right
Tfw he said 2 months ago to me
I never said anything about 2 months
@buoyant haven I'm running a combination of modded and non-modded
Can't run timings on modded
The CPU, GPU, and RAM usage is all normal
can u install plugins?
I use Opis to check statistics for modded servers
And nothing is out of the ordinary
ok
All servers are in fact running at/near 20 TPS
Glad I fixed that issue at least xD
but ur pc is still slow?
Right now it's not since I restarted, but before the restart, yes
Right now I'm testing running all but 1 server
I was thinking it could possibly be the leak, but not sure
the server software itself might have a leak, not any of the mods, would βopisβ pick that up?
