• Proceed with caution! Unofficial add-on plugins and abilities are not supported by the ProjectKorra staff. We will not provide support for broken add-ons. Download at your own risk.
  • Hello Guest! Did you know that ProjectKorra has an official Discord server? A lot of discussion about the official server, development process, and community discussion happens over there. Feel free to join now by clicking the link below.

    Join the Discord Server
Bola (Updated to PK v1.8.8)

Bola (Updated to PK v1.8.8) 1.4

Hiro3

Member
Hiro3 submitted a new resource:

Bola (PK v1.8.7) - It is a throwing weapon that made for catching the target. Chi blockers used this move in the LoK.

This is not an official ProjectKorra ability, therefore, no official support will be provided in any threads other than this one. Use at your own risk.

Ability description: Bola is an ancient throwing weapon in real life. Chi blockers used this weapon in the Legend of Korra to catch their target.

Here is an example usage from the series:


And this is the ability:...
Read more about this resource...
 

xNuminousx

Member
that is the permission for the ability however unless defined otherwise in the code I believe it'll be op by default. If you want all players to have access to the permission on initial startup you'll have to do something like the following in the startup block of code for your ability:

Java:
Permission perm = new Permission("bending.ability.bola");
perm.setDefault(PermissionDefault.TRUE);
ProjectKorra.plugin.getServer().getPluginManager().addPermission(perm);
 

Hiro3

Member
that is the permission for the ability however unless defined otherwise in the code I believe it'll be op by default. If you want all players to have access to the permission on initial startup you'll have to do something like the following in the startup block of code for your ability:

Java:
Permission perm = new Permission("bending.ability.bola");
perm.setDefault(PermissionDefault.TRUE);
ProjectKorra.plugin.getServer().getPluginManager().addPermission(perm);
Thanks
 
Top