[Plugin ideas] What plugins would you like for free?

Status
This thread has been locked.

Notifyz

x
Banned
Feedback score
128
Posts
2,523
Reactions
2,639
Resources
0
Hello!

As you can see from the title, I am offering a small service for the plugins you would like to see.
Please don't say anything too big or anything too complex. Make it small and quick.

Every made plugin will be published on my github: github.com/Notifyz

- Thank you.
 
PebbleHost
High performance, consistent uptime and fast support. Minecraft hosting that just works.

Notifyz

x
Banned
Feedback score
128
Posts
2,523
Reactions
2,639
Resources
0
Code:
@EventHandler
public void onEntitySpawn(EntitySpawnEvent event) {
    EntityHider hider = new EntityHider(this, Policy.BLACKLIST); // Using Comphoenix's entity hider

// don't recommend using this method (the lambda with all the players) just an example!
    Bukkit.getOnlinePlayers().forEach(player -> {
        Profile profile = Bunkers.getPlugin().getProfileManager().getByPlayer(player);
      
        if (!profile.canSeeExplosives) {
            entityHider.toggleEntity(player, event.getEntity());
        }
    });
}
Oh you meant for tnt hider?
I know I should use protocollib for this but as I said I am not familiar
 
Banned forever. Reason: Scamming (https://builtbybit.com/threads/notifyz-scam-report.515571/)

PTech

Feedback score
6
Posts
422
Reactions
261
Resources
0
Code:
// Don't do it this way (not the more efficient)
@EventHandler
public void onEntitySpawn(EntitySpawnEvent event) {
    if (event.getEntity() instanceof TNTPrimed) {
        Bukkit.getOnlinePlayers().forEach(player -> {
            Profile profile = Bunkers.getPlugin().getProfileManager().getByPlayer(player);

            if (!profile.canSeeExplosives) {
                Bunkers.getPlugin().getEntityHider().toggleEntity(player, event.getEntity());
            }
        });
    }
}
Y U NO FILTER?!?
nah jk have your fun <3


Here's a project that might help you out in the future: Try making a profiling system of players, with a global api, so basically every profile has their kills, deaths, coins, lastDeathLocation(idk if theres something in spigot for that haven't done minecraft dev in a long while), lastMessage(The last chatted message) and more, would help you out tons if you were to make private plugins or just want a quick system for counting deaths and kills.
 

Befus

Feedback score
-1
Posts
20
Reactions
1
Resources
0
I would like a plugin with the command
/helpop (message) this message needs to be send to staff or sertaint ranks with pex.
 

Nuker2016

Feedback score
1
Posts
395
Reactions
40
Resources
0
I realize this may be harder but a chat plugin with /ch g /ch l /ch t and /ch n for the towny plugin must be compatible
 

Rockash

Feedback score
0
Posts
26
Reactions
6
Resources
0
Hub plugin with just tab scoreboard and compass with placeholders and a config for all?
 

WrektYourDay

Premium
Feedback score
7
Posts
112
Reactions
38
Resources
0
Make a factions outpost plugin. But make it cost money because there is no good ones on the market. And you could probably make bank off it as I see people trying to buy them all the time.
 

Notifyz

x
Banned
Feedback score
128
Posts
2,523
Reactions
2,639
Resources
0
Hub plugin with just tab scoreboard and compass with placeholders and a config for all?
Sorry that is not simple as it is being sold[DOUBLEPOST=1523857708][/DOUBLEPOST]
Make a factions outpost plugin. But make it cost money because there is no good ones on the market. And you could probably make bank off it as I see people trying to buy them all the time.
PM me with more info.
 
Banned forever. Reason: Scamming (https://builtbybit.com/threads/notifyz-scam-report.515571/)

GAllen

Feedback score
12
Posts
363
Reactions
128
Resources
0
Hello Notifyz,

I got couple ideas. Maybe you can create them for me.

NameHover
When you hover over a player's name in chat then it will show information that can be changed through config.yml file. This plugin HAS to be with MVdW Placeholders and/or PlaceholderAPI.

NOTE: Make sure that the plugin doesn't mess with the chat format. Make it so it's still changeable through essentials config.yml or NameHover's plugin config.yml.

I got more ideas, but it's difficult to remember them. However, I'll make a new post about new ones when I do remember.

Let me know when it's possible to make that plugin. I would love to see it.

Kind Regards,
SteamPro
There is one of these on Spigot, just look up key words with like "hover chat" etc.
 
Status
This thread has been locked.
Top