Change jar file?

ce
- in Plugins
2

Jar file (Minecraft plugin) and I want to change the scoreboard title from "« KnockbackFFA »" to "" BuildFFA »".

https://www.spigotmc.org/...ree.40899/

Questions on Discord: shyzite # 0001

vo

You would have to decompile. Java classes don't like changing the length of strings in them.

… Observe copyright.

Gu

Most compression tools can unzip a JAR file.

However, this usually only contains .class files, i.e. Compiled Java files. To get the Java files, they have to be decompiled (http://www.javadecompilers.com/ you can decompile .class or .jar files). In many cases this is illegal! Please make sure that decompiling and changing the source code is allowed for private purposes.

If you have the Java files, look for the word KnockbackFFA in the folder and replace it with BuildFFA everywhere. To compile the plugin again, you need a Java compiler. I recommend https://jdk.java.net/ for this. Once you've installed the compiler, you'll need to compile the files and put them in a .jar file. How this works is explained https://stackoverflow.com/...rom-a-java.