Staff Alert
This plugin, SAlert is a brand new, Bukkit plugin which allows server staff members the ability to broadcast a message! As you can see below, the messages sent by this plugin are very noticeable.
The syntax is very simplistic, simply do /SAlert <message>



Permissions!
The single permission is: sAlert.use
Known Bugs:
None!
Plugin Video:
-
View User Profile
-
Send Message
Posted Apr 20, 2015@Redstonefreak589
Instead of: for(int i = 0; i>=args.length; i){ message = message + " args[i]" } you have to do this: for(int i = 0; i>=args.length; i){ message = message + args[i] }
and you also have to check if the player has already added the period(or an exclamation mark/question mark) before adding a period automatically. This can be done using an if statement and the substring method.
-
View User Profile
-
Send Message
Posted Jan 4, 2015Nice job, but as a dev myself, I would use a for loop for all those arguments you have in the code. What if someone has more than 20 words in their alert? What then? Do they just cut some out? I don't like spoon feeding, but here is a way to append all those args together into one message:
The message argument would be the very first line under "public class Core extends JavaPlugin{"
The rest of the code would replace all your "If" loops for checking how many arguments. Shrinks your code down a lot, and it's much more efficient. :)
-
View User Profile
-
Send Message
Posted Jan 1, 2015It's not working for 1.8.. Please make it so it can be on 1.8, thanks!
-sugar
-
View User Profile
-
Send Message
Posted Dec 16, 2014@LavaGaming
I'm working on a v3 of this plugin, I will try to work that in if I can!
@xOtter
Nope! Not right now, like I said I'm working up a v3 so that it is even more light-weight and hopefully more customizable.
-
View User Profile
-
Send Message
Posted Dec 16, 2014Is there a way to change the colors?
-
View User Profile
-
Send Message
Posted Dec 15, 2014I like this plugin, it's great! The only thing about this is that I'd like it to support Bungee so I can alert different parts of my network.
Apart from that, the plugin is great! :)
-
View User Profile
-
Send Message
Posted Nov 23, 2014Plugins Great!!
-
View User Profile
-
Send Message
Posted Oct 11, 2014@Silver_Olympus
The reason you are number 2, is because there still aren't any updates of plugins.
If there will be new miscellaneous plugins updated, then you aren't number 2 anymore.
-
View User Profile
-
Send Message
Posted Oct 4, 2014With just being on BukkitDev for a little over a month, available for download for under a month, we are at 399 downloads, and the number two plugin under the misolanious category! Thanks guys!
-
View User Profile
-
Send Message
Posted Sep 27, 2014@Silver_OlympusDone I sent link in PM
-
View User Profile
-
Send Message
Posted Sep 27, 2014@Hamboy7765
Awesome! Thanks!
-
View User Profile
-
Send Message
Posted Sep 27, 2014@Silver_OlympusOk I will make it right know :D
-
View User Profile
-
Send Message
Posted Sep 27, 2014@Hamboy7765
Sure!
-
View User Profile
-
Send Message
Posted Sep 27, 2014@Silver_Olympus Can I make a youtube video for this plugin?
-
View User Profile
-
Send Message
Posted Sep 20, 2014@PapiDimmi This is a light weight plugin, which adds more effect to the message being sent. If you wish to use the other plugins feel free to do so.
@server075 thank-you for your positive feedback!
@hamboy7765 the download link should be working now, i believe it has now been approved! Also it is to my understanding that you cannot offer links like that to download a plugin on this website!
-
View User Profile
-
Send Message
Posted Sep 18, 2014Great Plugin I am going to do some testing whit this
-
View User Profile
-
Send Message
Posted Sep 6, 2014@TheAJ471 oh ok :P why dont you upload it to a media fire or something? and then post the link to download in the desc?
-
View User Profile
-
Send Message
Posted Sep 6, 2014@Hamboy7765
Each plugin has to have the file you would download approved and this can take some time.
-
View User Profile
-
Send Message
Posted Sep 4, 2014public class XXX extends JavaPlugin { public boolean onCommand(CommandSender sender,Command cmd,Stirng label,String[] args) { if(args.length==0) { sender.sendMessage("/xxx <message>"); return true; } String name; if(sender instanceof Player) name=sender.getName(); else name="Console"; StringBuilder sb=new StringBuilder(); sb.append(name+": "); for(int x=0;x<args.length;x) { sb.append(args[x]); if(x<args.length-1) sb.append(" "); } Bukkit.broadcastMessage(sb.toString()); } }
-
View User Profile
-
Send Message
Posted Sep 3, 2014Download link?