#general
1 messages ยท Page 216 of 1
Lovely
i kind of wanna ping rooster
they didnt
there it is
@ashen nacelle send that config or youre
if youre gay then send that config or youre ๐
LOLOLOL
yeah theyre still here
๐
yeah thats why i changed it a second after sending it
there
here, have your gay
Fefo did you read the image?
yea
I searched for it extra for you ^^ <3
aww
idrc anyway because I don't have any global emotes lol
DAMN
Fefo is that dude in the middle
B-but
rainbow dash is the POV
I searched extra for you where I saw that announcement
I appreciate the effort ๐
Hurt ๐ฏ
nice what toppings
pineapple
But do you guys have a slave?
is that an actual domain?
nice very cool
But do you guys have a slave?
@gilded nova as a matter of fact, I do too lol
Oh wow
with colour
Yes
My eye
Colored
but its offline
You know what my left eye looks like
Yeah ill track you down
You'll never know about the right eye
its probably rainbow ๐ณ๏ธโ๐
hmm just mirror the image
Why is your bot offline
unless you have a deformed right eye

Your name matches that emote perfectly
it does though lol
I need to fix my bot
then go fix your bot
nice game
But having the money for WebStorm?
Or student
It's only 5 bucks a month lol
he doesnt waste his money on nitro lol
^
VSCode ๐ ๐ฉ
My FAQ:
Q: Why do you have Nitro?
A: Because I like the features and can do what I want with my money.
Docker
lol imagine
I said earlier that to update a docker container you delete and re-create it. But to prevent data loss you are able to use something called persistant storage, that way even when you delete the container, no data will get lost
Interesting
I can do what I want with my money, and I decided back then that I am going to support a chat platform I use every day, which had no other way of earning money then
it was a joke calm down
symbol: class Economy
location: class flame.duder.FlipCommands```
```java
package flame.duder;
import org.bukkit.Bukkit;
import org.bukkit.command.Command;
import org.bukkit.command.CommandExecutor;
import org.bukkit.command.CommandSender;
import org.bukkit.entity.Player;
public class FlipCommands implements CommandExecutor {
private Economy economy = VaultMain.economy;
@Override
public boolean onCommand(CommandSender sender, Command command, String s, String[] args) {
if(sender instanceof Player){
Player player =(Player) sender;
if(command.getName().equalsIgnoreCase("eco")) {
if (args[0].equalsIgnoreCase("deposit"))
if (args.length == 3)
try {
Player target = Bukkit.getPlayer(arge[1]);
int depositAmount = Integer.parseInt(args[2]);
economy.depositPlayer(target, depositAmount);
} catch (Exception e) {
e.printStackTrace();
}
}
}
return true;
}
}```
Can someone help me with the error?
Sorry uwu be careful with sarcasm around me, I never know whrn someone is joking or being sarcastic >~>
Looks like you forgot to import Vault
Where?
I could be wrong but I think each file that uses vault ressources needs to import it
java: package net.milkbowl.vault.economy does not exist
its above the code
Now I get this error
ohh
economy is imported
import net.milkbowl.vault.economy.Economy;
and now I get this error
java: package net.milkbowl.vault.economy does not exist
is vault a dependency?
well yeah, that's the eco plugin I want to use for mine
Is that an error that is in the server console or IDE terminal?
it happens when I try to build the artifacts
Are you using maven or Gradle or you're just importing the jars manually as a dependency?
definitely seems like you dont actually have the API
im using maven
Mind sharing the pom.xml?
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>com.github.MilkBowl</groupId>
<artifactId>VaultAPI</artifactId>
<version>1.7</version>
<scope>provided</scope>
</dependency>
</dependencies>```
delicious
Please use https://bytebin.lucko.me to send files in the future. I have automatically uploaded message.txt for you: https://bytebin.lucko.me/dtbLXgVll9
the messages.txt is the pom.xml
You dont have vault api in there
how would I add it?
Google it?
I thought you just have to import the api?
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>com.github.MilkBowl</groupId>
<artifactId>VaultAPI</artifactId>
<version>1.7</version>
<scope>provided</scope>
</dependency>
</dependencies>```
VaultAPI
I thought you just have to import the api?
Well yes, in the pom file . _.
ty
Who the fuck names themself milkbowl
lol
would I add a new <repositories>
Yes
epic ty
ah ok
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>``` This to repositories
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>com.github.MilkBowl</groupId>
<artifactId>VaultAPI</artifactId>
<version>1.7</version>
<scope>provided</scope>
</dependency>
</dependencies>```
this would be good?
<dependency>
<groupId>com.github.MilkBowl</groupId>
<artifactId>VaultAPI</artifactId>
<version>1.7</version>
<scope>provided</scope>
</dependency>``` This to depends
no
you just copied and pasted the whole shabang
Oh, I see
<repositories>
<repository>
<id>spigotmc-repo</id>
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
</repository>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
<repository>
<id>sonatype</id>
<url>https://oss.sonatype.org/content/groups/public/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot-api</artifactId>
<version>1.16.1-R0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.github.MilkBowl</groupId>
<artifactId>VaultAPI</artifactId>
<version>1.7</version>
<scope>provided</scope>
</dependency>
</dependencies>
</project>```
would that be correct?
Should be fine
alright thank you
Computers smh
I still get the same error
save it yes
ight
You do have code to actually setup the API right?
NO NO NO I FORGOT TO SAVE
lol
holy shit i got a fucking heart attack
Please do not use that filthy language
sorry man
kidding
lol
private boolean setupEconomy() {
RegisteredServiceProvider<Economy> economyProvider = getServer().getServicesManager().getRegistration(net.milkbowl.vault.economy.Economy.class);
if (economyProvider != null) {
economy = economyProvider.getProvider();
}
return (economy != null);
}
}```
but yeah I do have the code for vault
Is that it?
Read this
Ok, I did everything there no errors
java: cannot find symbol
symbol: variable economy
location: class flame.duder.VaultMain```
but i still get this error
now fix it
What did you do to fix it?
like your plugin works?
I have a feeling its most definitely not going to work
same
Lol
you were right...
[20:36:09 ERROR]: Could not load 'plugins\DuderFlips.jar' in folder 'plugins'
org.bukkit.plugin.InvalidPluginException: Cannot find main class `flame.duder.Duder'
at org.bukkit.plugin.java.PluginClassLoader.<init>(PluginClassLoader.java:66) ~[spigot-1.8.8.jar:git-Spigot-db6de12-18fbb24]
at org.bukkit.plugin.java.JavaPluginLoader.loadPlugin(JavaPluginLoader.java:131) ~[spigot-1.8.8.jar:git-Spigot-db6de12-18fbb24]
at org.bukkit.plugin.SimplePluginManager.loadPlugin(SimplePluginManager.java:329) ~[spigot-1.8.8.jar:git-Spigot-db6de12-18fbb24]
at org.bukkit.plugin.SimplePluginManager.loadPlugins(SimplePluginManager.java:251) [spigot-1.8.8.jar:git-Spigot-db6de12-18fbb24]
it is
> Make sure main class is the same as your main class
Tim__#9094
Whats your main class
flame.duder.what
Make sure it extends JavaPlugin
Its trying to find that
so its not the same
change it in plugin.yml
smfh
to flame.duder.VaultMain
or whatever it is
it is
NO ITS NOT
no idea
mvn clean package
wtf is this then
you cannot tell me terminal pulled this out of its ass
Recompile it basically
ok ill recompile it
But make sure to clean the current compiled ones so it doesn't take anything in it
better than being from down under
uhhh
imagine living upside down
Australia is the best county
debatable
I once went there
nope
I almost got killed by a palm tree
wtf
how
10/10 would go visit Cairns again
I used to live in cairns
if i could move anywhere right now i would probably move to denmark or germany
Ah yeah
whats wrong with germans though?
learn jarv
aussie pretty cool tho ngl
it is
yeah i would move to Australia if i had the chance
Turbo have you been to cairns?
learn jarv
@gilded nova java?
nah i haven't been north of noosa
when i'm allowed to cross the QLD border, sure lol
๐
wait is java a different thing then javascript
username checks out
L
O
L
lol i only know basic c# 
Lmfaol
javascript is the same as java
and skript is the same as javascript
html is a fork of java
and c# is close to c++ which is a fork of scratch
๐
lol
it's noon wtf
what time specifically turbotailz
might smoke a cone and do jack shit today
That's everyday bro
10:53am
8 hours in front
no
my next meeting isn't until 3:30 do you think anyone at work will notice if i sleep all day?
No
sweet
last time you slept before a meeting iirc you missed it
can someone other than tim answer that question, im to lazy to open firefox
what question
Whats wrong with my answer?
was that a serious question
yeah 
yes, they are very very different
^
they are the same
alright which one is the one i should learn
dont listen to turbo hes trolling
javascript is the only language that is run in the browser
like car and carpet, as Brainstone once yelled into my skull
so java right?
java is installed on 3 billion devices worldwide
java is like the pitbull of languages
LOL
over 3 billion turbo
alright which editor thing should i use to learn
intelliJ for java
alright
or vscode
no
lol no
intellij
don't listen to tim
Tim, stop trolling innocent people
-.-
plugins are java programs...
you know what i mean
sure, you can use VS code but IntelliJ is much better for Java development
you can try with VSCode but it's like driving a wagon (red, pulled by momma) vs a lambo
^ Not true
Just depends what youre doing
Intellij is designed for Java ||(and kotlin)|| development
Alright Tim, whatever
whats kotlin
Java but better
Doesn't matter
i didn't know a language could have a sexuality
^
They can
alright any good yt tutorials for java?
does that mean kotlin is only attracted to other kotlins?
I mean, have you heard french?
french is pretty gay
loloolol
French definitely has a sexuality, just dunno what it is
if you say so turbo
takes one to know one
oui oui
hon hon hon
frog slurping intensifies
frogue*
hah
Ha ha ha
fun pun
I reinstalled windows haha
WINDOWS-10
windowSex
wow, pro version even
hyello mi neame ees beel gets! eenstol veendohs frum mee foh much gud perrfurmens!
is it really
Kewl
wow imagine actually paying for it
heh
Someone gifted me one a month back lol
Two as a matter of fact
One was student version or whatever
Fucking useless
yeah
The other one was the real deal
I just have a code
and I put it in
and it activates
amazing right?
but do you have a license
?
i bought a cheap key off some dodgy site. it didn't work, so i called MS and they validated it for me. so kind of them x
Lol
I bought my key off g2a
lol it's a trick i found online
i just use my email
like they always activate it if you do that
just means you have to deal with their shitty call service
it's got a windows license on it and if I give windows my email it just allows me to validate
33 bucka
what a steal
trying to convert my crappy i3 laptop to elementary os
its so slow to enter anything
and ive had to restart like 10 times now
Dafaq
i wish i knew how to fix my toshiba laptop so i can run linux on it :(
what's wrong with it?
bad battery?
smudges
and also it doesn't boot into a usb too
smudges everywhere
lol yeah it's a touch screen
I set my bios to boot into the usb with the .iso file on it and it booted into windows
can you at least enter the bios setup?
am i doing something wrong
this happened when i was switching the drive out with another one
i think bios works
I set my bios to boot into the usb with the .iso file on it and it booted into windows
did you burn the image into the usb drive?
yeah you can't just throw an .iso in there and expect it'll work lol
how can i convert an iso into a whatever type it needs to be
alright i got rufus
Ye bios works just had to figure out which key lol
you tried every function key, right? lmao
I googled it
pf
F2
and can't you boot from a usb drive from the bios setup first?
Blah I don't have a USB
which one is an iso
that means that you need to pick one right?
lgtm
stole my flatmates usb lul
LMFAO
wtf am i supposed to do now lol
run rufus as admin? idk
im computing imaging or something now
i just clicked something random lol
nope still didnt work in admin
guess ill not be lazy and look it up
idk man, format that usb drive completely
looked it up and its because the image im trying to burn or something is located on the drive ๐คฆโโ๏ธ
๐
๐
New comment on issue #2616: luckperms
did they just straight up named the issue "luckperms"? lol
cute
mash f11 on boot
or f12
or f10
or f8
maybe f2
worst case scenario, tab or del
maybe f56
like wtf
ive seen delete more than f2 or f8
plot twist
f54
fun fact, windows (idk about other OSs) have support for not 12 but 24 function keys
is 5 f9's + 2 f2's
from F1 to F24 lol
yeah its pretty nice for macros
true
It worked!
LMFAO
thanks for the help lol
nice
SO FUCKING BOOT INTO IT
Mac Turbo
i mean it's not
newest dish at maccas
no, i meant that shiny black bordered all glass screen
blame open software
Larry
CraftyChat
I mean no offense to no one but, what the hell is this name xD
Definitely not a mac
this thing old af
yep
it better work after this install lol
I think my toshiba satellite was from like 2010
It's still working alright too, for what it is
ooh fancy yeah you're right I miscalculated
took me years to pay off
that's perfect
cause i know how shitty laptops can get
I hate laptops now, though school really likes if i use them
i mean, it makes sense when you have to go to school
i did end up replacing the HDD with SSD which significantly improved it
huh, never thought to do that
this thing is so bulky though compared to the macbook lmao
i do like that it's touchscreen tho
OMG IT'S BOOTING
god i can't believe it was that easy
what os are you using? ubuntu?
FASTER
ayy elementary kind of works
now i just need to fix the bios because it still tries to boot to the flash drive
lol
but i have no idea how to get into bios since im pretty sure the oem disabled it
i had to use some weird thing in windows
i'm now logged in to discord on 4 different operating systems
sucks to be you
I would have never in my life expected to actually make use of something called "BiFunction"
damn look at those colors turbo
you'll get all the minecraft color codes in there
could you move the phone a bit more while taking the pic?
I can still read what it says so if you could move it more
legible
turbo
you're a programmer
I need your help
I need a better naming convention.......
Eeh how the f do I explain this
I feel like the only person who doesn't use final for absolutely everything possible
It fucking worked for real this time
There is a reason why I make it so explicit
lemme find the reason
That's the reason
> 1 hour long video
> no timestamp
it's the talk as a whole ๐
I will just agree to not question it in the future then lol
how are they used
@potent prawn They'll be supplier methods for classes instances fetched through reflection. One thing is for sure, none of the provided classes' constructors take more than 2 arguments
If they were to take 3 I'd have to invent a TriFunction lol
java things
ok
basically
those will be the interfaces through which you'll get the class instance
they'll call the proper constructor
Turbo is a slut for a zinger box. I know it
and they can take either one, two or no arguments
Turbo is a slut for a zinger box. I know it
@gilded nova lol what
i mean i am
but how did you gather that
The four horsemen of the OS apocalypse
What's the camera running on
Ah
why do you have Mac then (:
also android lol
@potent prawn
Hey iH4xz! Please don't tag helpful/staff members directly.
lol I was talking dude
Larry I forgot the Quote will tag ppl ! lol (:
it's okay i don't nearly get as mad about pings as some other people do
I'm just a humble mod, enforcing the rules. The most humble mod of all, in fact
Fefo you're gonna want to see that one
@regal trench Yeah that may be why i agree
Its like a huge queue basically
Does anyone know what this isnt working https://gyazo.com/4df37b9a5d567dddbcb2cb700c9a5aef
imagine running a server
I wonder if all these plugins will work on 1.16.3...
lets throw it onto a production server
what could go wrong
Yeah I just looked up the changelog
Itโd be shocking if there were any complications
Boring. That page doesn't exist
i just updated to 1.16.3 yesterday and several of my plugins got messed up, including holograms and grief prevention
holograms just refuses to work, and grief prevention has some minor issues where pets are not protected like they were before
though i did go straight from 1.16.1 to 1.16.3, so maybe it was 1.16.2 that did some of that
1.16.2 changed something with JSON
yea 1.16.2 broke stuff
Should check to see if your plugins either can be updated
and if you can revert time, go back and dont update
Someone just dropped their wallet in this channel! Hurry and pick it up with ~grab before someone else gets it!
Are you alright?
some ppl are just..
๐ฌ
There are some weird cunts in this Discord let me tell you
p-p
have any of you used linux mint?
i only ever hear about it and not what it brings to the table
๐ณ๏ธโ๐
nice cable management
Hehe
Im surprised your house hasnt gotten burnt down yet
that single corsair fan probably costs more than most of those parts combined
well a single rgb corsair fan costs as much as your cpu
Literally
Is it decent?
Depends xD
Like what do you want to do with the computer and what's important to you
Get KDE neon
The underlying Ubuntu is a good choice
In theory you could install that DE on almost any linux system
But if you don't have too much experience with Linux Ubuntu is a great option
I meant KDE Plasma as the DE
But KDE neon is a good base system too
Kubuntu is a good alternative
Man I should really switch to Linux, there is literally no specific reason for me to use Windows and it'd be a huge plus if I did, but I need to fix the stupid WiFi dongle drivers that don't work in "newer" versions of the kernel and I so really don't want to do that
That's odd
While they keep it updated for Windows
Eeh one day I'll switch and do something about it
But not today
anyone know why i can't delete a world with multiverse /mv delete World. i just get "world 'world' could NOT be deleted
do you have other worlds?
oh yeah thats dumb it just does that now
you have to go to your server hosting thing and delete the world file from there
i went into config and deleted them but there still there
I think you need to change the main world in your server.properties, not sure tho
because, y'know... it's the main world
my main world is a different world
1 sec
you'll also need to restart (if you change it) and delete it when no players are in there
And unload it as well probably lol idk how mv works with that part
yeah once you delete it you have to unload it and restart
but If i remember i think i tried that but it just kept staying theree and I kept getting error messages and couldnt connect to another world or make another one
so hopefully that doesnt happen to you
Ideally you would just need to change the level-name, restart, unload and delete and it should work smoothly
With no players on in the world
nothing changed still won't delete anything
No players in there?
Man I should really switch to Linux, there is literally no specific reason for me to use Windows and it'd be a huge plus if I did, but I need to fix the stupid WiFi dongle drivers that don't work in "newer" versions of the kernel and I so really don't want to do that
Youre telling me you use wifi?
Dayum
๐คทโโ๏ธ
no one have an idea's? my server is really laggy with all these worlds
how many worlds do you have loaded
Hey, just curious if anyone knew the answer to this question: how are minigame servers monetized?. I was thinking about switching from Factions to bring a minigame server but Iโm not sure how I would monetize it, selling ranks for things like Prison, Skyblock and Factions is pretty straight forward, doesnโt seem that way for minigames
Sell cosmetics
And btw, selling anything that grants an ingame advantage is against the EULA
Yeah that's what I figured
Do you know anything about how much it costs to start a server like that and how much they would make? In my mind it's costly to start and probably doesn't make much money until it has a few hundred players active.
I'm not trying to ONLY make money, but I'm gaging whether or not it would be a good investment
Well it depends on what you want to do
But your major costs are hosting and maybe premium plugins
Most servers are struggling to cover cost
And if you don't want to go too crazy on hosting you should be fine with a budget of $50/month
Jeez okay I was expecting like $800/month or something
LOL
Well the server would have a few different minigames on it (skywars, bedwars, etc)
just get a vps
you could even get 2 vpss for that
vps?
is that just a dedi?
alright thanks
$50/month will get you a decent server at a reputable hoster
And then I would use bungeecord to connect them?
Yes
use velocity
Either is fine
if youre on the bukkit ecosystem
Depends on the plugins you want to throw on there
And I would need a different server for each gamemode, yes?
But in any case be aware that you'll struggle making the $50/month back
And I would need a different server for each gamemode, yes?
No.
You can
It really depends on your setup
if possible you could try to downscale and upscale to what you need
because you might not need a great server for a while
depending on your playerbase
We'll be recruiting a youtuber to make videos/stream on the server so I am expecting a good amount of players
alright nice
Cute
He only has about 5k on youtube cause he just started but he's got 2.2m on tiktok
You'll get 0.1% to 1% of the YTers subscribers on your server at most
20 players
I mean like 20 active players
Yeah I getchu, what about the tiktok?
That's factored in
He did a video for us a week or so ago and we got 300 players on (not at one time of course)
But I have a Factions server atm and it doesn't really fit his audience
but that doesnt matter because a very small amount of them will stay
Are those turning into regulars or are they just visting?
I'm not counting vistors or players that play like 1-5 times
Because those won't pay
Just visiting, like I said I don't think it's the right server for his audience (younger kids)
younger kids that watch quick tiktok videos of a guy screaming
Yeah
also, with your planned minigame server, are you planning to hire devs to create minigames?
He might as well not have the TikTok
The target audience is too young for it to matter
Well we're managing the money he makes through social media
I suggested he makes a youtube channel and play minecraft
I figured people like gamerboy80 and Technoblade got their start playing minigame servers
I think he has a similar audience as those two
Btw an alternative would be to throw money at the server.
In other words get actual staff and have everything be professionally made. You should be able to get a return on investment in 6-12 months
But the inital investment is high
but you really need to have something cool about your server
dont have a crappy eggwars server
but you really need to have something cool about your server
@short warren absolutely not ๐
The most profitable servers are the least unique
I just don't understand where that money comes from, I've played so many factions/skyblock servers that I'm used to getting something in return. I can't justify buying a rank for a tag or pet or something
true, but that will give you a decent boost
Like for example what's special about Hypixel other than the size?
Their skyblock
Hypixel was one of the first minigame servers
But that wasn't always there
and they release new gamemodes often
well thats their special
And they've been in the game the longest
they have good minigames, and theyre just the trusted server
Yeah but they don't have anything special in terms of gameplay
Whatever you find on there you'll find on so many other servers
if you were the first of its kind (2b2t, hypixel) its a pretty good chance of it being succesful
Here's what I'm tryna say.
I spent $80 making the current server I have right now (Factions)
In less than a month, we have made $300, $100 of which is recurring monthly
Is that type of return possible with a minigame server?
Yeah but they don't have anything special in terms of gameplay
@drowsy quest I didnt mean gameplay, i meant just general server. Hypixel has just general trust from being old and an active dev team
Hey Unix! Please don't tag helpful/staff members directly.
Here's what I'm tryna say.
I spent $80 making the current server I have right now (Factions)
In less than a month, we have made $300, $100 of which is recurring monthlyIs that type of return possible with a minigame server?
@sly swift Sure
Won't be easy but it's possible
@drowsy quest I didnt mean gameplay, i meant just general server. Hypixel has just general trust from being old and an active dev team
@short warren Of course. But I meant special in terms of what they offer.
And being a trusted server is not what I would count as special
Or it all ties in with them being so huge
And I said ignoring that they have nothing special
also you dont need to wait for a game to start in hypixel due to its size
Yeah I figured that would be another big issue
that first group of players from the tiktoks and stuff might be able to help though, as it will at least give that for a week or two
i put it here, way turn of the server for a week? way not 1 year?
yeah just get the standard stuff
k
i put it here, way turn of the server for a week? way not 1 year?
@silent knot just shut it down?
k
@gilded nova by that i mean like just essentialsx
nothing else
k
lol XD can you give some reason way?
am confusion
hm, that i doo? is it with players you mean?
im so confused
I do all testing on testserver, and ultra premission cryp the mysql. so i have to add players manually
I sense a translation issue
yeah
how do I have me and my friends the default group in luckperms or we already are?
Broken arrow: https://deepl.com
!default
LuckPerms provides a group that every player is added to upon joining the server, called default. You can use multiple methods to change the default group or change the name of it.
and how do I add permission to it like what command
!usage @gilded nova
Here's a guide to help users understand and use LuckPerms for the first time.
k thx
and then once you know the basics use /lp editor
k
!editor
LuckPerms offers an easy to use, powerful Web Editor, with which you can add, delete and change permissions of groups and players.
I gueas you dont understand what i try to do usually?
Yeah we aren't sure what you're trying to do or need help with
I only whant a way do add in players and it seams to work, i cant import from my premisson plugin to luck perms (i have to paste it manually) api is not poblic and database is crypted.
Are you trying to import from UltraPermissions?
yes
yeah unfortunatly since there isn't any form of api for UPerms, you will have to migrate manually
I have do it for hand
It sucks, and we'd love to be able to have a migration system for it, but it isn't physically possible
and players perm is a pain (300 players and probely more)
groupperms was not so fun but after 500 perms pasted is it done now.
and next problem are to add all players to right group. I can do it manually or "reset" ranks for players so they rank up agen (they auto come back to right rank and goups set it seft right so long i set right commands).
anyone know how i can add like custom commands when you do /discord It Responds Withdiscord link here
same with /website = www.link.com
Ezlinks?
anyone know what java: cannot find symbol means?
Means you're trying to use a variable/object that doesn't exist at that point
Please use https://bytebin.lucko.me to send files in the future. I have automatically uploaded message.txt for you: https://bytebin.lucko.me/vLQyqo9Kbs
anyone wanna help with that error I get when I execute the command?
You're running the plugin on 1.8.x and you probably made it for a 1.13+ API
I have no errors anywhere
you won't have errors during compile time as you've built it correctly against a specific version of the spigot API
oh ok thank you
if you're plan is to support multiple versions and not just 1.8.8, then you'll need to consider the not-so-fun reflection methods
nah itll be just 1.8.8
in that case, just switching the dependency in your pom will suffice
@gilded nova what
I just got to find the VaultAPI for 1.8.8
I stabbed my damn hand
pretty sure vault is compatible with all versions
Vault is version independent
Vault is version independent
ok
it has been a while since I've used vault (spigot --> sponge), but looks like 1.7.1 specifies 1.13 and above now
That's because it initialized the legacy materials api
That's why the 1.13 thing got added, but it didn't change a thing internally (other than a bug fix I think)
whenever i change <version>1.16.1-R0.1-SNAPSHOT</version> to <version>1.8.8</version> it doesnt work
ahh ok, that makes more sense
what you mean it doesn't work?
Like it's not pulling the new dependency? It's not compiling?
Add the -r0.1-whatever part
hold on i think i fixed it
was i supposed to