Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

ifydev/Permissify

Folders and files

NameName
Last commit message
Last commit date

Latest commit

History

143 Commits

Repository files navigation

Permissify

Permissify is a next-generation permission plugin for Spigot and Sponge.

We're trying to build a permissions plugins that is dead-simple to use, commands that don't confuse you, and most importantly, no errors caused by the plugin.

Builds

You can download the latest version of Permissify from the releases page.

Contributing

Take a look at the Issues page to get started! Make sure to follow the code standards, though!

Standards

The standards for Permissify's code are really simple.

Make sure things that will be used between the different implementations are in the API Make sure messages & permissions are in the constants file. Use your brain...

Pull requests that don't follow the standards will be ignored until they meet the standards.

And then all of the following stuff:

FOUR. SPACE. INDENTION.

Indention is bad, avoid it.

Don't:

if (player.hasPermision("potato.salad")) {
 if (player.getName().equals("PotatoMemes")) {
 player.sendMessage("Wow, you're cool!");
 }
}

Do:

if (!player.hasPermission("potato.salad")) return;
if (!player.getName().equals("PotatoMemes")) return;
player.sendMessage("Wow, you're cool!");

Put {, ( and similar on the same line

Don't

public void things()
{
 if (something)
 {
 // Stuff
 }
}

Do:

public void things() {
 if (something) {
 // stuff
 }
}

About

Permissify is a next-generation permission plugin for Spigot and Sponge.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

AltStyle によって変換されたページ (->オリジナル) /