Clans

Status
This thread has been locked.

HakaiPvP

Banned
Feedback score
0
Posts
117
Reactions
16
Resources
0
Description: Have a clans plugin for you server.
Commands:
• /clan create <name> • Create a clan.
• /clan leave • Leave your current clan.
• /clan disband • Disband the clan (Only works for the owner of the clan).
• /clan invite <player> • Invite a player to your clan.
• /clan accept • Accept the current clan invitation.
• /clan kick <player> • Kick a player from the clan.
• /clan info • See the info about your clan.

• /c <message>• Talks in the clan chat.

What you can chose:
You can chose if you want /clan sethome and /clan home, but this feature is still in alpha and i dont recomend. If any bugs are found or i update the plugin i will talk to all buyers and give the update.

My Skype: Joao.Silva.Privado
Price:
15$

This plugin is made in Skript so will come with 2 jars but can be named to your liking.
 
PebbleHost
High performance, consistent uptime and fast support. Minecraft hosting that just works.

pm_dragon

Feedback score
0
Posts
371
Reactions
130
Resources
0
Did you just go on the skript forums? There's literally a free version with a lot more features on the bukkit skript forums.
 

HakaiPvP

Banned
Feedback score
0
Posts
117
Reactions
16
Resources
0
Did you just go on the skript forums? There's literally a free version with a lot more features on the bukkit skript forums.
You are right, there is a clan skript in the bukkit forums but i have nothing to do with it the code is totally different. I made this for a old server of mine it has no bugs and it will always be updated. New features may be requested and implemented in this skript.
 
Banned forever. Reason: Scamming (https://builtbybit.com/threads/hakaipvp-scam-report.245577/)

Badger

Software Developer
Supreme
Feedback score
22
Posts
2,366
Reactions
1,561
Resources
2
Description: Have a clans plugin for you server.
Commands:
• /clan create <name> • Create a clan.
• /clan leave • Leave your current clan.
• /clan disband • Disband the clan (Only works for the owner of the clan).
• /clan invite <player> • Invite a player to your clan.
• /clan accept • Accept the current clan invitation.
• /clan kick <player> • Kick a player from the clan.
• /clan info • See the info about your clan.

• /c <message>• Talks in the clan chat.

What you can chose:
You can chose if you want /clan sethome and /clan home, but this feature is still in alpha and i dont recomend. If any bugs are found or i update the plugin i will talk to all buyers and give the update.

My Skype: Joao.Silva.Privado
Price:
15$

This plugin is made in Skript so will come with 2 jars but can be named to your liking.
Ewwww Skript
 

rchy

Premium
Feedback score
1
Posts
716
Reactions
258
Resources
0
Skript just has no reason to be a thing. Sure it's easy, but surely you'd rather be learning java which can be used for lots more things not just minecraft plugins. In later life, skript has no chance of getting you a job yet java does..
 

pm_dragon

Feedback score
0
Posts
371
Reactions
130
Resources
0
Skript just has no reason to be a thing. Sure it's easy, but surely you'd rather be learning java which can be used for lots more things not just minecraft plugins. In later life, skript has no chance of getting you a job yet java does..
Yeah obviously, but I don't think everyone who learns skript as a hobby wants to have it as a job. It's just used as a tool for minecraft server owners.
 

HakaiPvP

Banned
Feedback score
0
Posts
117
Reactions
16
Resources
0
Skript just has no reason to be a thing. Sure it's easy, but surely you'd rather be learning java which can be used for lots more things not just minecraft plugins. In later life, skript has no chance of getting you a job yet java does..
Well i know both java and skript, and skript is overall better for minecraft. Saves time and its alot simpler, if you want to have a career out of java yes you should not use skript, but who would become a java developer coding plugins for bukkit? Coding a programm or a game with java is totally different the coding a plugin, yes you can learn the basics of java coding plugins but if you want to go further you still would need to learn more advanced stuff.
 
Banned forever. Reason: Scamming (https://builtbybit.com/threads/hakaipvp-scam-report.245577/)

Badger

Software Developer
Supreme
Feedback score
22
Posts
2,366
Reactions
1,561
Resources
2
Well i know both java and skript, and skript is overall better for minecraft.
Exemple of a skript and a java plugin.

Skript:

every 10 seconds:
loop all players:
kill loop-player

Java:

@Override
public void onEnable(){
Bukkit.getScheduler().scheduleSyncRepeatingTask(this, new Runnable(){
@Override
public void run(){
for(Player player : getServer().getOnlinePlayers()){
player.damage(100000);
}
}
}, 0, 200);
}
You should use a BukkitRunnable. Also it should be:
Code:
@Override
public void onEnable(){
   new BukkitRunnable(){
        @Override
        public void run(){
            for(Player player : Bukkit.getOnlinePlayers()){
                player.damage(100000);
             }
        }
    }.runTaskTimer(this, 0, 200);
EDIT: Indentation is very important! Cannot stress that enough!
 
Last edited:

HakaiPvP

Banned
Feedback score
0
Posts
117
Reactions
16
Resources
0
You should use a BukkitRunnable. Also it should be:
Code:
@Override
public void onEnable(){
   new BukkitRunnable(){
        @Override
        public void run(){
            for(Player player : getServer().getOnlinePlayers()){
                player.damage(100000);
             }
        }
    }.runTaskTimer(this, 0, 200);
EDIT: Indentation is very important! Cannot stress that enough!
The code i used is from 2013 sorry if there is anything wrong with it. I just wanted to say that skript is a whole better if you dont want to waste time.
 
Banned forever. Reason: Scamming (https://builtbybit.com/threads/hakaipvp-scam-report.245577/)

Badger

Software Developer
Supreme
Feedback score
22
Posts
2,366
Reactions
1,561
Resources
2
The code i used is from 2013 sorry if there is anything wrong with it. I just wanted to say that skript is a whole better if you dont want to waste time.
Funny ;)


/sarcasm
 

rchy

Premium
Feedback score
1
Posts
716
Reactions
258
Resources
0
Skript just generally isn't as good as Java... period. I'm sure even the creator of skript would say that.
 

HakaiPvP

Banned
Feedback score
0
Posts
117
Reactions
16
Resources
0
Anyways, i'm here to sell my skript if you dont like it just ignore it i'm not here to make everyone happy.
 
Banned forever. Reason: Scamming (https://builtbybit.com/threads/hakaipvp-scam-report.245577/)
Status
This thread has been locked.
Top