123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352 |
- import java.io.IOException;
- import java.lang.reflect.InvocationTargetException;
- import java.lang.reflect.Method;
- import java.util.ArrayList;
- import java.util.logging.Level;
- import java.util.logging.Logger;
- import java.util.HashMap;
- import java.util.List;
- //=====================================================================
- //Class: vMinecraftCommands
- //Use: Encapsulates all commands added by this mod
- //Author: nos, trapalice, cerevisiae
- //=====================================================================
- //=====================================================================
- //Class: commandList
- //Use: The list of commands that will be checked for
- //Author: cerevisiae
- //=====================================================================
- public class vCom{
- private static HashMap<String, Player> hidden = new HashMap<String, Player>();
- //Log output
- protected static final Logger log = Logger.getLogger("Minecraft");
- static final int EXIT_FAIL = 0,
- EXIT_SUCCESS = 1,
- EXIT_CONTINUE = 2;
-
- //The list of commands for vMinecraft
- public static commandList cl = new commandList();
- //=====================================================================
- //Function: loadCommands
- //Input: None
- //Output: None
- //Use: Imports all the commands into the command list
- //=====================================================================
- public static void loadCommands(){
- //If we had commands we would add them here.
-
- //register: Registers a function for use with a command
- //String: The command that will be used
- //String: The name of the function that will be called when
- // the command is used
- //String(Optional): The help menu description
-
- //Administrative
- cl.register("/prefix", "prefix", "Set your name color and prefix");
- cl.register("/rprefix", "removeTag", "Remove your name color and prefix");
- cl.register("/nick", "nickName", "Set your display name");
- cl.register("/rnick", "removeNick", "Reset your display name to your account name");
- cl.register("/suffix", "suffix", "Set your suffix");
- cl.register("/rsuffix", "removeSuffix", "Remove your suffix");
- cl.register("/vminecraft", "vminecrafthelp");
- cl.register("/reload", "reload");
- cl.register("/whois", "whois", "/whois [user]");
- cl.register("/say", "say");
- cl.register("/a", "adminChatToggle", "Toggle admin chat for every message");
- cl.register("/rules", "rules", "Displays the rules");
- cl.register("/who", "who");
- cl.register("/promote", "promote", "Promote a player one rank");
- cl.register("/demote", "demote", "Demote a player one rank");
- cl.register("/hide", "hide", "Turn invisible");
- cl.register("/silent", "silent", "Turn off global messages for yourself");
-
- //Party
- cl.register("/party", "party");
- cl.register("/pquit", "partyquit");
- cl.register("/p", "partyChatToggle", "Toggles party chat on or off");
- //Movement
- cl.register("/freeze", "freeze");
- cl.register("/tp", "teleport");
- cl.register("/tphere", "tphere");
- cl.register("/tpback", "tpback");
- cl.register("/masstp", "masstp", "Teleports those with lower permissions to you");
- cl.register("/myspawn", "myspawn");
- //Health
- cl.register("/ezmodo", "invuln", "Toggle invulnerability");
- cl.register("/ezlist", "ezlist", "List invulnerable players");
- cl.register("/heal", "heal", "heal yourself or other players");
- cl.register("/suicide", "suicide", "Kill yourself... you loser");
- cl.register("/slay", "slay", "Kill target player");
- //Social
- cl.register("/colors", "colors", "Set your default chat color: /colors <Color Char>");
- cl.register("/me", "me");
- cl.register("/fabulous", "fabulous", "makes text SUUUPER");
- cl.register("/msg", "message", "Send a message to a player /msg [Player] [Message]");
- cl.register("/reply", "reply", "Reply to a player /reply [Message], Alias: /r");
- cl.register("/ignore", "addIgnored", "Adds a user to your ignore list");
- cl.register("/unignore", "removeIgnored", "Removes a user from your ignore list");
- cl.register("/ignorelist", "ignoreList", "Lists the players you have ignored");
-
- //registerAlias: Runs the second command when the first command is called
- //String: The command that this will be called by
- //String: The message that will be called when the first is entered
- // Can be modified with %# to have it insert a player
- // argument into that position.
- // EX: Aliased command is
- // cl.registerAlias("/test", "/i %0 100")
- // Player uses /test wood
- // The %0 will be replaced with wood for this instance
- // and Player will be given 100 wood.
- cl.registerAlias("/playerlist", "/who");
- cl.registerAlias("/vhelp", "/vminecraft");
- cl.registerAlias("/r", "/reply");
- cl.registerAlias("/t", "/msg");
- cl.registerAlias("/tell", "/msg");
- cl.registerAlias("/wrists", "/suicide");
- cl.registerAlias("/kill", "/suicide");
- cl.registerAlias("/ci", "/clearinventory");
-
- //registerMessage: Displays a message whenever a command is used
- //String: The command it will run on
- //String: What will be displayed
- // %p is the player calling the command
- // %# is the argument number of the command.
- // %#p is an argument number that will be required to be
- // an online player
- //String: The color the message will be
- //int: The number of arguments required for the message to appear
- //boolean: If the message should only display for admins
- cl.registerMessage("/kick", "%p has kicked %0p", Colors.DarkPurple, 1, false);
- cl.registerMessage("/ban", "%p has banned %0p", Colors.DarkPurple, 1, false);
- cl.registerMessage("/ipban", "%p has IP banned %0p", Colors.DarkPurple, 1, false);
- cl.registerMessage("/time", "Time change thanks to %p", Colors.DarkPurple, 1, true);
- cl.registerMessage("/hide", "%p has turned invisible", Colors.DarkPurple, 0, true);
- cl.registerMessage("/slay", "%p has slain %0p", Colors.DarkPurple, 1, false);
- cl.registerMessage("/heal", "%p has healed %0p", Colors.DarkPurple, 1, false);
- }
- //=====================================================================
- //Function: vminecrafthelp (/vhelp or /vminecraft)
- //Input: Player player: The player using the command
- //Output: int: Exit Code
- //Use: Displays the current status of most vMinecraft settings
- // and provides some useful tips.
- //=====================================================================
- public static int vminecrafthelp(Player player, String[] args){
- vChat.sendMessage(player, player, Colors.Yellow
- + "Chat Settings");
- vChat.sendMessage(player, player, Colors.DarkPurple
- + "Admin Chat: " + vConfig.getInstance()
- .adminchat());
- vChat.sendMessage(player, player, Colors.DarkPurple
- + "FFF turns red: " + vConfig.getInstance()
- .FFF());
- vChat.sendMessage(player, player, Colors.DarkPurple
- + "Greentext After >: " + vConfig.getInstance()
- .greentext());
- vChat.sendMessage(player, player, Colors.DarkPurple
- + "Quake Color Script: " + vConfig.getInstance()
- .quakeColors());
- vChat.sendMessage(player, player, Colors.Yellow
- + "Enabled Commands are TRUE, disabled are FALSE");
- vChat.sendMessage(player, player, Colors.DarkPurple
- + "Command /ezmodo: " + vConfig.getInstance()
- .cmdEzModo());
- vChat.sendMessage(player, player, Colors.DarkPurple
- + "Command /fabulous: " + vConfig.getInstance()
- .cmdFabulous());
- vChat.sendMessage(player, player, Colors.DarkPurple
- + "Command /rules: " + vConfig.getInstance()
- .cmdRules());
- vChat.sendMessage(player, player, Colors.DarkPurple
- + "Command /heal: " + vConfig.getInstance()
- .cmdHeal());
- vChat.sendMessage(player, player, Colors.DarkPurple
- + "Command /masstp: " + vConfig.getInstance()
- .cmdMasstp());
- vChat.sendMessage(player, player, Colors.DarkPurple
- + "Command /say: " + vConfig.getInstance()
- .cmdSay());
- vChat.sendMessage(player, player, Colors.DarkPurple
- + "Command /suicide: " + vConfig.getInstance()
- .cmdSuicide());
- vChat.sendMessage(player, player, Colors.DarkPurple
- + "Command /whois: " + vConfig.getInstance()
- .cmdWhoIs());
- vChat.sendMessage(player, player, Colors.DarkPurple
- + "Command /tp won't work on higher ranked players: "
- + vConfig.getInstance().cmdTp());
- vChat.sendMessage(player, player, Colors.DarkPurple
- + "Command /tphere won't work on higher ranked players: "
- + vConfig.getInstance().cmdTphere());
- vChat.sendMessage(player, player, Colors.Yellow
- + "Other Settings");
- vChat.sendMessage(player, player, Colors.DarkPurple
- + "Command /who: " + vConfig.getInstance()
- .cmdWho());
- vChat.sendMessage(player, player, Colors.DarkPurple
- + "COLORED PLAYER LIST IS DEPENDENT ON /who BEING TRUE!");
- vChat.sendMessage(player, player, Colors.DarkPurple
- + "Global Messages: " + vConfig.getInstance()
- .globalmessages());
- return EXIT_SUCCESS;
- }
- public void onDisconnect(Player player){
- if(hidden.containsKey(player.getName()))
- hidden.remove(player.getName());
- if(vConfig.getInstance().isEzModo(player.getName()))
- vConfig.getInstance().removeEzModo(player.getName());
- }
- public void run()
- {
- for (Player InvisiblePlayer : hidden.values())
- {
- for (Player p : etc.getServer().getPlayerList())
- {
- if (vmc.getDistance(InvisiblePlayer, p) <= vConfig.range && p.getUser() != InvisiblePlayer.getUser())
- {
- p.getUser().a.b(new dv(InvisiblePlayer.getUser().g));
- }
- }
- }
- }
- public static int silent(Player player, String[] args){
- if(player.canUseCommand("/silent")){
- if(!vUsers.getProfile(player).isSilent()){
- vUsers.getProfile(player).setSilent();
- player.sendMessage(Colors.DarkPurple + "You are now silent... shh");
- return EXIT_SUCCESS;
- }
- if(vUsers.getProfile(player).isSilent()){
- vUsers.getProfile(player).disableSilent();
- player.sendMessage(Colors.DarkPurple + "You are no longer silent");
- return EXIT_SUCCESS;
- }
- return EXIT_FAIL;
- }
- return EXIT_FAIL;
- }
- //Will make a player disappear or reappear
- //Big thanks to the Vanish Plugins author: nodren
- public static int hide(Player player, String[] args){
- if (player.canUseCommand("/hide")){
- if(hidden.get(player.getName()) != null) {
- hidden.remove(player.getName());
- player.sendMessage(Colors.DarkPurple + "You are no longer invisible");
- hidden.remove(player.getName());
- updateInvisibleForAll();
- vmc.sendNotInvisible(player);
- log.log(Level.INFO, player.getName() + " reappeared");
- player.sendMessage(Colors.Rose + "You have reappeared!");
- return EXIT_SUCCESS;
- }
- hidden.put(player.getName(), player);
- player.sendMessage(Colors.DarkPurple + "You are now invisible");
- vmc.sendInvisible(player);
- log.log(Level.INFO, player.getName() + " went invisible");
- return EXIT_SUCCESS;
- }
- return EXIT_FAIL;
- }
- public static void updateInvisibleForAll()
- {
- List<Player> playerList = etc.getServer().getPlayerList();
- for (Player InvisiblePlayer : hidden.values())
- {
- for (Player p : playerList)
- {
- if(p != null){
- if (vmc.getDistance(InvisiblePlayer, p) <= vConfig.range && p.getUser() != InvisiblePlayer.getUser())
- {
- p.getUser().a.b(new dv(InvisiblePlayer.getUser().g));
- }
- }
- }
- }
- }
- public static int party(Player player, String[] args){
- if(vUsers.getProfile(player).inParty()){
- player.sendMessage(Colors.Red + "You are already in a party, use /pquit to leave it");
- return EXIT_SUCCESS;
- }
- if(args[0] != null) {
- vUsers.getProfile(player).setParty(args[0]);
- player.sendMessage(Colors.DarkPurple + "Party set to " + args[0]);
- return EXIT_SUCCESS;
- } else {
- player.sendMessage(Colors.Red + "Correct usage is /party [partyname]");
- return EXIT_SUCCESS;
- }
- }
- public static int partyquit(Player player, String[] args){
- if(vUsers.getProfile(player).inParty()){
- vUsers.getProfile(player).removeParty();
- player.sendMessage(Colors.LightGreen + "Party successfully removed");
- return EXIT_SUCCESS;
- } else {
- player.sendMessage(Colors.Red + "You are not in a party");
- return EXIT_SUCCESS;
- }
- }
- public static int tpback(Player player, String[] args){
- if(player.canUseCommand("/tpback")){
- String tpxyz = vUsers.getProfile(player).getTpxyz();
- String tpxyz2[] = tpxyz.split(",");
- double x = Double.parseDouble(tpxyz2[0]);
- double y = Double.parseDouble(tpxyz2[1]);
- double z = Double.parseDouble(tpxyz2[2]);
- player.teleportTo(x, y, z, 0, 0);
- String cx = Double.toString(etc.getServer().getSpawnLocation().x);
- String cy = Double.toString(etc.getServer().getSpawnLocation().y);
- String cz = Double.toString(etc.getServer().getSpawnLocation().z);
- String cxyz = cx + "," + cy + "," + cz;
- vUsers.getProfile(player).setTpback(cxyz);
- player.sendMessage(Colors.Rose + "/tpback data reset to spawn");
- return EXIT_SUCCESS;
- }
- return EXIT_SUCCESS;
- }
- //=====================================================================
- //Function: myspawn (/myspawn)
- //Input: Player player: The player using the command
- //Output: int: Exit Code
- //Use: Returns a player to their home but with penalties
- //=====================================================================
- public static int myspawn(Player player, String[] args){
- if(player.canUseCommand("/myspawn") && vConfig.getInstance().playerspawn())
- {
- player.sendMessage(Colors.DarkPurple + "Returned to myspawn");
- player.sendMessage(Colors.Red + "Penalty: Inventory Cleared");
- player.setHealth(20);
- Warp home = null;
- home = etc.getDataSource().getHome(player.getName());
- player.teleportTo(home.Location);
- Inventory inv = player.getInventory();
- inv.clearContents();
- inv.update();
- return EXIT_SUCCESS;
- }
- return EXIT_FAIL;
- }
- public static int freeze(Player player, String[] args){
- if(player.canUseCommand("/freeze") && vConfig.getInstance().freeze()){
- if (args.length < 1){
- vChat.gmsg(Colors.Rose + "Usage is /freeze [Player]");
- return EXIT_SUCCESS;
- }
- Player other = etc.getServer().matchPlayer(args[0]);
- if (other == null)
- {
- vChat.gmsg(Colors.Rose + "The player you specified could not be found");
- return EXIT_SUCCESS;
- }
- if(player != other && other.hasControlOver(player)){
- vChat.gmsg(Colors.Rose + "The player you specified has a higher rank than you");
- return EXIT_SUCCESS;
- }
- if(vConfig.getInstance().isFrozen(other.getName())){
- vConfig.getInstance().removeFrozen(other.getName());
- vChat.gmsg(player.getName() + Colors.Blue + " has unfrozen " + other.getName());
- return EXIT_SUCCESS;
- } else {
- vConfig.getInstance().addFrozen(other.getName());
- vChat.gmsg(player.getName() + Colors.Blue + " has frozen " + other.getName());
- return EXIT_SUCCESS;
- }
- }
- return EXIT_SUCCESS;
- }
- //=====================================================================
- //Function: prefix (/prefix)
- //Input: Player player: The player using the command
- // String[] args: The color and the prefix
- //Output: int: Exit Code
- //Use: Changes your name color and prefix
- //=====================================================================
- public static int prefix(Player player, String[] args){
-
- //if the player can prefix others
- if(player.canUseCommand("/prefixother") && vConfig.getInstance().prefix()){
-
- //Check if there are enough arguments
- if(args.length < 2){
- vChat.sendMessage(player, player, Colors.Rose + "Usage is /prefix [Player] [Color Code] <Tag>");
- player.sendMessage(Colors.DarkPurple + "Example: /prefix " + player.getName() + " e ^0[^a<3^0]");
- vChat.sendMessage(player, player, Colors.DarkPurple + "This would produce a name like... " + Colors.Black + "[" + Colors.LightGreen + "<3" + Colors.Black + "]" + Colors.Yellow + player.getName());
- return EXIT_SUCCESS;
- }
-
- //Check if the player exists
- Player other = etc.getServer().matchPlayer(args[0]);
- if(other == null)
- {
- vChat.sendMessage(player, player, Colors.Rose
- + "The player you specified could not be found");
- return EXIT_SUCCESS;
- }
-
- //Check if they are a higher rank than the other person
- if(player != other && other.hasControlOver(player))
- {
- vChat.sendMessage(player, player, Colors.Rose
- + "The player you specified is a higher rank than you.");
- return EXIT_SUCCESS;
- }
-
- //Check if the prefix is too long
- if(vChat.msgLength(args[1]) > 60)
- {
- vChat.sendMessage(player, player, Colors.Rose
- + "The prefix you entered was too long.");
- return EXIT_SUCCESS;
- }
- if(args.length >= 2 && args[0] != null)
- {
- other.setPrefix(args[1]);
- player.sendMessage(Colors.Rose + "Name color changed");
- FlatFileSource ffs = new FlatFileSource();
- ffs.modifyPlayer(other);
- }
-
- if(args.length >= 3 && args[1] != null)
- {
- String tagbag = etc.combineSplit(2, args, "");
- vUsers.players.findProfile(other).setTag(tagbag);
- player.sendMessage(Colors.LightGreen + "Prefix changed");
- log.log(Level.INFO, player + " changed their prefix to " + tagbag);
- }
- return EXIT_SUCCESS;
- }
- //If the player can set their prefix
- if(!player.canUseCommand("/prefix")&& vConfig.getInstance().prefix()){
- return EXIT_FAIL;
- }
-
- //Check if there are enough arguments
- if(args.length < 1){
- vChat.sendMessage(player, player, Colors.Rose + "Usage is /prefix [Color Code] <Tag>");
- player.sendMessage(Colors.DarkPurple + "Example: /prefix e ^0[^a<3^0]");
- vChat.sendMessage(player, player, Colors.DarkPurple + "This would produce a name like... " + Colors.Black + "[" + Colors.LightGreen + "<3" + Colors.Black + "]" + Colors.Yellow + player.getName());
- return EXIT_SUCCESS;
- }
- //Name color
- if(args.length >= 1 && args[0] != null){
- player.setPrefix(args[0]);
- player.sendMessage(Colors.Rose + "Name color changed");
- }
- //Prefix
- if(args.length >= 2 && args[1] != null){
- //Check if the prefix is too long
- if(vChat.msgLength(args[1]) > 60)
- {
- vChat.sendMessage(player, player, Colors.Rose
- + "The prefix you entered was too long.");
- return EXIT_SUCCESS;
- }
- vUsers.players.findProfile(player).setTag(args[1]);
- player.sendMessage(Colors.LightGreen + "Prefix changed");
- }
- return EXIT_SUCCESS;
- }
-
- //=====================================================================
- //Function: removeTag (/rprefix)
- //Input: Player player: The player using the command
- // String[] args: Ignored
- //Output: int: Exit Code
- //Use: Removes your prefix
- //=====================================================================
- public static int removeTag(Player player, String[] args){
-
- //if the player can suffix others
- if(player.canUseCommand("/prefixother")&& vConfig.getInstance().prefix()){
- if(args.length < 1){
- vChat.sendMessage(player, player, Colors.Rose
- + "Usage is /rprefix [Player]");
- return EXIT_SUCCESS;
- }
-
- //Check if the player exists
- Player other = etc.getServer().matchPlayer(args[0]);
- if(other == null)
- {
- vChat.sendMessage(player, player, Colors.Rose
- + "The player you specified could not be found");
- return EXIT_SUCCESS;
- }
-
- //Check if they are a higher rank than the other person
- if(player != other && other.hasControlOver(player))
- {
- vChat.sendMessage(player, player, Colors.Rose
- + "The player you specified is a higher rank than you.");
- return EXIT_SUCCESS;
- }
-
- vUsers.getProfile(other).setTag("");
- player.sendMessage(Colors.LightGreen + "Prefix Removed");
-
- return EXIT_SUCCESS;
- }
-
- //Check if the player can set their own prefix.
- if(!player.canUseCommand("/prefix")&& vConfig.getInstance().prefix()){
- return EXIT_FAIL;
- }
- if(args.length < 1){
- vChat.sendMessage(player, player, Colors.Rose
- + "Usage is /rprefix");
- return EXIT_SUCCESS;
- }
- vUsers.getProfile(player).setTag("");
- player.sendMessage(Colors.LightGreen + "Prefix Removed");
-
- return EXIT_SUCCESS;
- }
-
- //=====================================================================
- //Function: nickName (/nick)
- //Input: Player player: The player using the command
- // String[] args: The color and the prefix
- //Output: int: Exit Code
- //Use: Changes your name
- //=====================================================================
- public static int nickName(Player player, String[] args){
-
- //if the player can nickname others
- if(player.canUseCommand("/nickother") && vConfig.getInstance().nick()){
- if(args.length < 2){
- vChat.sendMessage(player, player, Colors.Rose
- + "Usage is /nick [Player] [Name]");
- return EXIT_SUCCESS;
- }
-
- //Check if the nickname is too long
- if(vChat.msgLength(args[1]) > 85)
- {
- vChat.sendMessage(player, player, Colors.Rose
- + "The nick you entered was too long.");
- return EXIT_SUCCESS;
- }
-
- //Check if the player exists
- Player other = etc.getServer().matchPlayer(args[0]);
- if(other == null)
- {
- vChat.sendMessage(player, player, Colors.Rose
- + "The player you specified could not be found");
- return EXIT_SUCCESS;
- }
-
- //Check if they are a higher rank than the other person
- if(player != other && other.hasControlOver(player))
- {
- vChat.sendMessage(player, player, Colors.Rose
- + "The player you specified is a higher rank than you.");
- return EXIT_SUCCESS;
- }
-
- vUsers.getProfile(other).setNick(args[1]);
- player.sendMessage(Colors.LightGreen + "Nickname Set");
-
- return EXIT_SUCCESS;
- }
-
- //Make sure they can nickname themselves
- if(!player.canUseCommand("/nick")){
- return EXIT_FAIL;
- }
-
- //Check if the nickname is too long
- if(vChat.msgLength(args[1]) > 85)
- {
- vChat.sendMessage(player, player, Colors.Rose
- + "The nick you entered was too long.");
- return EXIT_SUCCESS;
- }
-
- if(args.length < 1){
- vChat.sendMessage(player, player, Colors.Rose
- + "Usage is /nick [Name]");
- return EXIT_SUCCESS;
- }
- vUsers.getProfile(player).setNick(args[0]);
- player.sendMessage(Colors.LightGreen + "Nickname Set");
-
- return EXIT_SUCCESS;
- }
-
- //=====================================================================
- //Function: removeNick (/rnick)
- //Input: Player player: The player using the command
- // String[] args: Ignored
- //Output: int: Exit Code
- //Use: Removes your nick
- //=====================================================================
- public static int removeNick(Player player, String[] args){
-
- //if the player can nick others
- if(player.canUseCommand("/nickother")&& vConfig.getInstance().nick()){
- if(args.length < 1){
- vChat.sendMessage(player, player, Colors.Rose
- + "Usage is /rnick [Player]");
- return EXIT_SUCCESS;
- }
-
- //Check if the player exists
- Player other = etc.getServer().matchPlayer(args[0]);
- if(other == null)
- {
- vChat.sendMessage(player, player, Colors.Rose
- + "The player you specified could not be found");
- return EXIT_SUCCESS;
- }
-
- //Check if they are a higher rank than the other person
- if(player != other && other.hasControlOver(player))
- {
- vChat.sendMessage(player, player, Colors.Rose
- + "The player you specified is a higher rank than you.");
- return EXIT_SUCCESS;
- }
-
- vUsers.getProfile(other).setNick("");
- player.sendMessage(Colors.LightGreen + "Nickname Removed");
-
- return EXIT_SUCCESS;
- }
-
- //Check if the player can set their own nick.
- if(!player.canUseCommand("/nick")&& vConfig.getInstance().nick()){
- return EXIT_FAIL;
- }
- if(args.length < 1){
- vChat.sendMessage(player, player, Colors.Rose
- + "Usage is /rnick");
- return EXIT_SUCCESS;
- }
- vUsers.getProfile(player).setNick("");
- player.sendMessage(Colors.LightGreen + "Nickname Removed");
-
- return EXIT_SUCCESS;
- }
-
- //=====================================================================
- //Function: suffix (/suffix)
- //Input: Player player: The player using the command
- // String[] args: The color and the suffix
- //Output: int: Exit Code
- //Use: Changes your suffix
- //=====================================================================
- public static int suffix(Player player, String[] args){
-
- //if the player can suffix others
- if(player.canUseCommand("/suffixother")&& vConfig.getInstance().suffix()){
- if(args.length < 2){
- vChat.sendMessage(player, player, Colors.Rose
- + "Usage is /suffix [Player] [Name]");
- return EXIT_SUCCESS;
- }
-
- //Check if the suffix is too long
- if(vChat.msgLength(args[1]) > 60)
- {
- vChat.sendMessage(player, player, Colors.Rose
- + "The suffix you entered was too long.");
- return EXIT_SUCCESS;
- }
-
- //Check if the player exists
- Player other = etc.getServer().matchPlayer(args[0]);
- if(other == null)
- {
- vChat.sendMessage(player, player, Colors.Rose
- + "The player you specified could not be found");
- return EXIT_SUCCESS;
- }
-
- //Check if they are a higher rank than the other person
- if(player != other && other.hasControlOver(player))
- {
- vChat.sendMessage(player, player, Colors.Rose
- + "The player you specified is a higher rank than you.");
- return EXIT_SUCCESS;
- }
- vUsers.getProfile(other).setSuffix(args[1]);
- player.sendMessage(Colors.LightGreen + "Suffix Set");
-
- return EXIT_SUCCESS;
- }
-
- //Check if the player can set their own suffix.
- if(!player.canUseCommand("/suffix")&& vConfig.getInstance().suffix()){
- return EXIT_FAIL;
- }
- if(args.length < 1){
- vChat.sendMessage(player, player, Colors.Rose
- + "Usage is /suffix [Suffix]");
- return EXIT_SUCCESS;
- }
-
- //Check if the suffix is too long
- if(vChat.msgLength(args[1]) > 60)
- {
- vChat.sendMessage(player, player, Colors.Rose
- + "The suffix you entered was too long.");
- return EXIT_SUCCESS;
- }
- vUsers.getProfile(player).setSuffix(args[0]);
- player.sendMessage(Colors.LightGreen + "Suffix Set");
-
- return EXIT_SUCCESS;
- }
-
- //=====================================================================
- //Function: removeSuffix (/rsuffix)
- //Input: Player player: The player using the command
- // String[] args: Ignored
- //Output: int: Exit Code
- //Use: Removes your suffix
- //=====================================================================
- public static int removeSuffix(Player player, String[] args){
-
- //if the player can suffix others
- if(player.canUseCommand("/suffixother")&& vConfig.getInstance().suffix()){
- if(args.length < 1){
- vChat.sendMessage(player, player, Colors.Rose
- + "Usage is /rsuffix [Player]");
- return EXIT_SUCCESS;
- }
-
- //Check if the player exists
- Player other = etc.getServer().matchPlayer(args[0]);
- if(other == null)
- {
- vChat.sendMessage(player, player, Colors.Rose
- + "The player you specified could not be found");
- return EXIT_SUCCESS;
- }
-
- //Check if they are a higher rank than the other person
- if(player != other && other.hasControlOver(player))
- {
- vChat.sendMessage(player, player, Colors.Rose
- + "The player you specified is a higher rank than you.");
- return EXIT_SUCCESS;
- }
- vUsers.getProfile(other).setSuffix("");
- player.sendMessage(Colors.LightGreen + "Suffix Removed");
-
- return EXIT_SUCCESS;
- }
-
- //Check if the player can set their own suffix.
- if(!player.canUseCommand("/suffix")&& vConfig.getInstance().suffix()){
- return EXIT_FAIL;
- }
- if(args.length < 1){
- vChat.sendMessage(player, player, Colors.Rose
- + "Usage is /rsuffix");
- return EXIT_SUCCESS;
- }
- vUsers.getProfile(player).setSuffix("");
- player.sendMessage(Colors.LightGreen + "Suffix Removed");
-
- return EXIT_SUCCESS;
- }
-
- //=====================================================================
- //Function: colors (/colors)
- //Input: Player player: The player using the command
- //Output: int: Exit Code
- //Use: Displays a list of all colors and color codes
- //=====================================================================
- public static int colors(Player player, String[] args){
- if(args.length > 0&& vConfig.getInstance().colors())
- {
- vUsers.getProfile(player).setColor(args[0]);
- vChat.sendMessage(player, player, "^" + args[0].charAt(0)
- + "Default chat color set.");
- } else {
- player.sendMessage(Colors.Rose + "You use these color codes like in quake or MW2.");
- player.sendMessage(Colors.Rose + "^4 would make text " + Colors.Red
- + "red" + Colors.Rose + ", ^a would make it " + Colors.LightGreen
- + "light green" + Colors.Rose + ".");
- vChat.sendMessage(player, player,
- Colors.Black + "0"
- + Colors.Navy + "1"
- + Colors.Green + "2"
- + Colors.Blue + "3"
- + Colors.Red + "4"
- + Colors.Purple + "5"
- + Colors.Gold + "6"
- + Colors.LightGray + "7"
- + Colors.Gray + "8"
- + Colors.DarkPurple + "9"
- + Colors.LightGreen + "A"
- + Colors.LightBlue + "B"
- + Colors.Rose + "C"
- + Colors.LightPurple + "D"
- + Colors.Yellow + "E"
- + Colors.White + "F"
- + "^r" + "[R]ainbow");
- }
- return EXIT_SUCCESS;
- }
-
- //=====================================================================
- //Function: me (/me)
- //Input: Player player: The player using the command
- // String[] args: Will contain the message the player sends
- //Output: int: Exit Code
- //Use: The player uses this to emote, but now its colorful.
- //=====================================================================
- public static int me(Player player, String[] args)
- {
- String str = etc.combineSplit(0, args, " ");
- if (args.length < 1) return EXIT_FAIL;
- vChat.emote(player, str);
- return EXIT_SUCCESS;
- }
- //=====================================================================
- //Function: message (/msg, /w, /whisper)
- //Input: Player player: The player using the command
- // String[] args: Will contain the target player name and
- // message the player sends
- //Output: int: Exit Code
- //Use: Send a message to a player
- //=====================================================================
- public static int message(Player player, String[] args)
- {
-
- //Make sure a player is specified
- if (args.length < 2) {
- vChat.sendMessage(player, player, Colors.Rose
- + "Usage is /msg [player] [message]");
- return EXIT_SUCCESS;
- }
-
- //Make sure the player exists
- Player toPlayer = etc.getServer().matchPlayer(args[0]);
- if (toPlayer == null || args.length < 1) {
- vChat.sendMessage(player, player, Colors.Rose
- + "No player by the name of " + args[0] + " could be found.");
- return EXIT_SUCCESS;
- }
- String msg = etc.combineSplit(1, args, " ");
- //Send the message to the targeted player and the sender
- vChat.sendMessage(player, toPlayer,
- Colors.LightGreen + "[From:" + vChat.getName(player)
- + Colors.LightGreen + "] " + msg);
- vChat.sendMessage(player, player,
- Colors.LightGreen + "[To:" + vChat.getName(toPlayer)
- + Colors.LightGreen + "] " + msg);
- //Set the last massager for each player
- vUsers.getProfile(player).setMessage(toPlayer);
- vUsers.getProfile(toPlayer).setMessage(player);
-
- //Display the message to the log
- log.log(Level.INFO, player.getName() + " whispered to " + toPlayer.getName()
- + ": " + msg);
- return EXIT_SUCCESS;
- }
- //=====================================================================
- //Function: reply (/r, /reply)
- //Input: Player player: The player using the command
- // String[] args: Will contain the message the player sends
- //Output: int: Exit Code
- //Use: Send a message to a player
- //=====================================================================
- public static int reply(Player player, String[] args)
- {
- //If the profile exists for the player
- if(vUsers.getProfile(player) == null ) {
- vChat.sendMessage(player, player,
- Colors.Rose + "The person you last message has logged off");
- return EXIT_SUCCESS;
- }
- //Make sure a message is specified
- if (args.length < 1) {
- vChat.sendMessage(player, player,
- Colors.Rose + "Usage is /reply [Message]");
- return EXIT_SUCCESS;
- }
-
- //Make sure the player they're talking to is online
- Player toPlayer = vUsers.getProfile(player).getMessage();
- if (toPlayer == null) {
- vChat.sendMessage(player, player,
- Colors.Rose + "The person you last message has logged off");
- return EXIT_SUCCESS;
- }
-
- String msg = etc.combineSplit(0, args, " ");
-
- //Send the message to the targeted player and the sender
- vChat.sendMessage(player, toPlayer,
- Colors.LightGreen + "[From:" + vChat.getName(player)
- + Colors.LightGreen + "] " + msg);
- vChat.sendMessage(player, player,
- Colors.LightGreen + "[To:" + vChat.getName(toPlayer)
- + Colors.LightGreen + "] " + msg);
-
- //Set the last messager for each player
- vUsers.getProfile(player).setMessage(toPlayer);
- vUsers.getProfile(toPlayer).setMessage(player);
-
- //Display the message to the log
- log.log(Level.INFO, player.getName() + " whispered to " + toPlayer.getName()
- + ": " + msg);
- return EXIT_SUCCESS;
- }
- //=====================================================================
- //Function: addIgnored (/ignore)
- //Input: Player player: The player using the command
- // String[] args: The name of the player to ignore
- //Output: int: Exit Code
- //Use: Adds a player to the ignore list
- //=====================================================================
- public static int addIgnored(Player player, String[] args)
- {
- //Make sure the player gave you a user to ignore
- if(args.length < 1 && vConfig.getInstance().ignore())
- {
- vChat.sendMessage(player, player,
- Colors.Rose + "Usage: /ignore [Player]");
- return EXIT_SUCCESS;
- }
-
- //Find the player and make sure they exist
- Player ignore = etc.getServer().matchPlayer(args[0]);
- if(ignore == null&& vConfig.getInstance().ignore())
- {
- vChat.sendMessage(player, player, Colors.Rose
- + "The person you tried to ignore is not logged in.");
- return EXIT_SUCCESS;
- }
-
- if(!player.hasControlOver(ignore)&& vConfig.getInstance().ignore())
- {
- vChat.sendMessage(player, player, Colors.Rose
- + "You can't ignore someone a higher rank than you.");
- return EXIT_SUCCESS;
- }
-
- //Don't let the player ignore themselves
- if(ignore.getName().equalsIgnoreCase(player.getName()))
- {
- vChat.sendMessage(player, player,
- Colors.Rose + "You cannot ignore yourself");
- return EXIT_SUCCESS;
- }
-
- //Attempt to ignore the player and report accordingly
- if(vUsers.getProfile(player).addIgnore(ignore))
- vChat.sendMessage(player, player, Colors.Rose
- + ignore.getName() + " has been successfuly ignored.");
- else
- vChat.sendMessage(player, player, Colors.Rose
- + "You are already ignoring " + ignore.getName());
- return EXIT_SUCCESS;
- }
- //=====================================================================
- //Function: removeIgnored (/unignore)
- //Input: Player player: The player using the command
- // String[] args: The name of the player to stop ignoring
- //Output: int: Exit Code
- //Use: Removes a player from the ignore list
- //=====================================================================
- public static int removeIgnored(Player player, String[] args)
- {
- //Make sure the player gave you a user to ignore
- if(args.length < 1&& vConfig.getInstance().ignore())
- {
- vChat.sendMessage(player, player,
- Colors.Rose + "Usage: /unignore [Player]");
- return EXIT_SUCCESS;
- }
-
- //Find the player and make sure they exist
- Player ignore = etc.getServer().matchPlayer(args[0]);
- if(ignore == null&& vConfig.getInstance().ignore())
- {
- vChat.sendMessage(player, player,
- Colors.Rose + "The person you tried to unignore is not logged in.");
- return EXIT_SUCCESS;
- }
-
- //Attempt to ignore the player and report accordingly
- if(vUsers.getProfile(player).removeIgnore(ignore))
- vChat.sendMessage(player, player,
- Colors.Rose + ignore.getName()+ " has been successfuly " +
- "unignored.");
- else
- vChat.sendMessage(player, player,
- Colors.Rose + "You are not currently ignoring " + ignore.getName());
-
- return EXIT_SUCCESS;
- }
- //=====================================================================
- //Function: ignoreList (/ignorelist)
- //Input: Player player: The player using the command
- // String[] args: Ignored
- //Output: int: Exit Code
- //Use: Lists the player you have ignored
- //=====================================================================
- public static int ignoreList(Player player, String[] args)
- {
- if (vConfig.getInstance().ignore()){
- //Get the ignore list
- String[] list = vUsers.getProfile(player).listIgnore();
-
- //Find the last page number
- int lastPage = (int)list.length / 5;
- if((int)list.length % 5 > 0)
- lastPage++;
-
- //Find the page number the player wants displayed
- int page = 0;
- if(args.length > 0 && Integer.valueOf(args[0]) > 0
- && Integer.valueOf(args[0]) <= lastPage)
- page = Integer.valueOf(args[0]) - 1;
-
- //Display the header
- vChat.sendMessage(player, player,
- Colors.Rose + "Ignore List [" + page + "/"
- + lastPage + "]");
-
- //Display up to 5 people
- for(int i = 0; i < 5 && i + (page * 5) < list.length; i++)
- vChat.sendMessage(player, player,
- Colors.Rose + list[i+ (page * 5)]);
-
- return EXIT_SUCCESS;
- }
- return EXIT_FAIL;
- }
- //Party chat toggle
- public static int partyChatToggle(Player player, String[] args)
- {
- //Check if party chat is even enabled befor executing anymore code
- if(!vConfig.getInstance().partyChat()) return EXIT_FAIL;
- //Check if the player is admin toggled, and if so remove them from that array
- if(vConfig.getInstance().isAdminToggled(player.getName())){
- vConfig.getInstance().removeAdminToggled(player.getName());
- }
-
- //If the player is already toggled for party chat, remove them
- if (vConfig.getInstance().isPartyToggled(player.getName())) {
- player.sendMessage(Colors.Red + "Party Chat Toggle = off");
- vConfig.getInstance().removePartyToggled(player.getName());
- //Otherwise include them
- } else {
- player.sendMessage(Colors.Blue + "Party Chat Toggled on");
- vConfig.getInstance().addPartyToggled(player.getName());
- }
- return EXIT_SUCCESS;
- }
- //=====================================================================
- //Function: adminChatToggle (/a)
- //Input: Player player: The player using the command
- // String[] args: Ignored
- //Output: int: Exit Code
- //Use: Toggles the player into admin chat. Every message they
- // send will be piped to admin chat.
- //=====================================================================
- public static int adminChatToggle(Player player, String[] args)
- {
- //Check if the player is party toggled, and if so remove them from that array
- if(vConfig.getInstance().isPartyToggled(player.getName())){
- vConfig.getInstance().removePartyToggled(player.getName());
- }
- //Make sure the user has access to the command
- if(!player.canUseCommand("/a")) return EXIT_FAIL;
-
- if(!vConfig.getInstance().adminChatToggle()) return EXIT_FAIL;
-
- //If the player is already toggled for admin chat, remove them
- if (vConfig.getInstance().isAdminToggled(player.getName())) {
- player.sendMessage(Colors.Red + "Admin Chat Toggle = off");
- vConfig.getInstance().removeAdminToggled(player.getName());
- //Otherwise include them
- } else {
- player.sendMessage(Colors.Blue + "Admin Chat Toggled on");
- vConfig.getInstance().addAdminToggled(player.getName());
- }
- return EXIT_SUCCESS;
- }
- //=====================================================================
- //Function: heal (/heal)
- //Input: Player player: The player using the command
- // String[] args: The arguments for the command. Should be a
- // player name or blank
- //Output: int: Exit Code
- //Use: Heals yourself or a specified player.
- //=====================================================================
- public static int heal(Player player, String[] args)
- {
- //Make sure the user has access to the command
- if(!player.canUseCommand("/heal")) return EXIT_FAIL;
-
- if(!vConfig.getInstance().cmdHeal()) return EXIT_FAIL;
- //If a target wasn't specified, heal the user.
- if (args.length < 1){
- player.setHealth(20);
- player.sendMessage("Your health is restored");
- return EXIT_SUCCESS;
- }
-
- //If a target was specified, try to find them and then heal them
- //Otherwise report the error
- Player playerTarget = etc.getServer().matchPlayer(args[0]);
- if (playerTarget == null){
- player.sendMessage(Colors.Rose
- + "Couldn't find that player");
- return EXIT_SUCCESS;
- }
- playerTarget.setHealth(20);
- player.sendMessage(Colors.Blue + "You have healed "
- + vChat.getName(playerTarget));
- playerTarget.sendMessage(Colors.Blue
- + "You have been healed by "
- + vChat.getName(player));
- return EXIT_SUCCESS;
- }
- //=====================================================================
- //Function: suicide (/suicide, /wrists)
- //Input: Player player: The player using the command
- // String[] args: Ignored
- //Output: int: Exit Code
- //Use: Kills yourself
- //=====================================================================
- public static int suicide(Player player, String[] args)
- {
- //Make sure the user has access to the command
- if(!player.canUseCommand("/suicide")) return EXIT_FAIL;
-
- if(!vConfig.getInstance().cmdSuicide()) return EXIT_FAIL;
-
- //Set your health to 0. Not much to it.
- player.setHealth(0);
- return EXIT_SUCCESS;
- }
-
- //=====================================================================
- //Function: teleport (/tp)
- //Input: Player player: The player using the command
- // String[] args: The arguments for the command. Should be a
- // player name
- //Output: int: Exit Code
- //Use: Teleports the user to another player
- //=====================================================================
- public static int teleport(Player player, String[] args)
- {
- //Make sure the user has access to the command
- if(!player.canUseCommand("/tp")) return EXIT_FAIL;
- //Get if the command is enabled
- if(!vConfig.getInstance().cmdTp())return EXIT_FAIL;
-
- //Make sure a player has been specified and return an error if not
- if (args.length < 1) {
- player.sendMessage(Colors.Rose + "Correct usage is: /tp [player]");
- return EXIT_SUCCESS;
- }
- //Find the player by name
- Player playerTarget = etc.getServer().matchPlayer(args[0]);
-
- //Target player isn't found
- if(playerTarget == null)
- player.sendMessage(Colors.Rose + "Can't find user "
- + args[0] + ".");
- //If it's you, return witty message
- else if (player.getName().equalsIgnoreCase(args[0]))
- player.sendMessage(Colors.Rose + "You're already here!");
-
- //If the player is higher rank than you, inform the user
- else if (!player.hasControlOver(playerTarget))
- player.sendMessage(Colors.Red +
- "That player has higher permissions than you.");
-
- //If the player exists transport the user to the player
- else {
- //Storing their previous location for tpback
- double x = player.getLocation().x;
- double y = player.getLocation().y;
- double z = player.getLocation().z;
- String x2 = Double.toString(x);
- String y2 = Double.toString(y);
- String z2 = Double.toString(z);
- String xyz = x2+","+y2+","+z2;
- vUsers.getProfile(player).setTpback(xyz);
- if(player.canUseCommand("/tpback")){
- player.sendMessage(Colors.DarkPurple + "Your previous location has been stored");
- player.sendMessage(Colors.DarkPurple + "Use /tpback to return");
- }
- if(!vUsers.getProfile(player).isSilent()){
- vChat.gmsg( player, vChat.getName(player)
- + Colors.LightBlue + " has teleported to "
- + vChat.getName(playerTarget));
- }
- log.log(Level.INFO, player.getName() + " teleported to " +
- playerTarget.getName());
-
- player.teleportTo(playerTarget);
-
- }
- return EXIT_SUCCESS;
- }
-
- //=====================================================================
- //Function: masstp (/masstp)
- //Input: Player player: The player using the command
- // String[] args: Should be empty or is ignored
- //Output: int: Exit Code
- //Use: Teleports all players to the user
- //=====================================================================
- public static int masstp(Player player, String[] args)
- {
- //Make sure the user has access to the command
- if(!player.canUseCommand("/masstp")) return EXIT_FAIL;
-
- //If the command is enabled
- if(!vConfig.getInstance().cmdMasstp())return EXIT_FAIL;
-
- //Go through all players and move them to the user
- for (Player p : etc.getServer().getPlayerList()) {
- if (!p.hasControlOver(player)) {
- p.teleportTo(player);
- }
- }
- //Inform the user that the command has executed successfully
- player.sendMessage(Colors.Blue + "Summoning successful.");
-
- return EXIT_SUCCESS;
- }
-
- //=====================================================================
- //Function: tphere (/tphere)
- //Input: Player player: The player using the command
- // String[] args: The arguments for the command. Should be a
- // player name
- //Output: int: Exit Code
- //Use: Teleports the user to another player
- //=====================================================================
- public static int tphere(Player player, String[] args)
- {
- //Make sure the user has access to the command
- if(!player.canUseCommand("/tphere")) return EXIT_FAIL;
-
- //Check if the command is enabled.
- if (!vConfig.getInstance().cmdTphere())return EXIT_FAIL;
-
- //Make sure a player is specified
- if (args.length < 1) {
- player.sendMessage(Colors.Rose + "Correct usage" +
- " is: /tphere [player]");
- return EXIT_SUCCESS;
- }
-
- //Get the player by name
- Player playerTarget = etc.getServer().matchPlayer(args[0]);
-
- //If the target doesn't exist
- if(playerTarget == null)
- player.sendMessage(Colors.Rose + "Can't find user "
- + args[0] + ".");
- //If the player has a higher rank than the user, return error
- else if (!player.hasControlOver(playerTarget))
- player.sendMessage(Colors.Red + "That player has higher" +
- " permissions than you.");
- //If the user teleports themselves, mock them
- else if (player.getName().equalsIgnoreCase(args[0]))
- player.sendMessage(Colors.Rose + "Wow look at that! You" +
- " teleported yourself to yourself!");
- //If the target exists, teleport them to the user
- else {
- log.log(Level.INFO, player.getName() + " teleported "
- + playerTarget.getName() + " to their self.");
- playerTarget.teleportTo(player);
- double x = player.getLocation().x;
- double y = player.getLocation().y;
- double z = player.getLocation().z;
- String x2 = Double.toString(x);
- String y2 = Double.toString(y);
- String z2 = Double.toString(z);
- String xyz = x2+","+y2+","+z2;
- vUsers.getProfile(playerTarget).setTpback(xyz);
- if(playerTarget.canUseCommand("/tpback"))
- {
- playerTarget.sendMessage(Colors.DarkPurple + "Your previous location has been stored");
- playerTarget.sendMessage(Colors.DarkPurple + "Use /tpback to return");
- }
- }
- return EXIT_SUCCESS;
- }
-
- //=====================================================================
- //Function: reload (/reload)
- //Input: Player player: The player using the command
- // String[] args: Ignored
- //Output: int: Exit Code
- //Use: Reloads the settings for vMinecraft
- //=====================================================================
- public static int reload(Player player, String[] args)
- {
- //Make sure the user has access to the command
- if(!player.canUseCommand("/reload")) return EXIT_FAIL;
-
- vConfig.getInstance().loadSettings();
- return EXIT_FAIL;
- }
- //=====================================================================
- //Function: rules (/rules)
- //Input: Player player: The player using the command
- // String[] args: Ignored
- //Output: int: Exit Code
- //Use: Lists the rules
- //=====================================================================
- public static int rules(Player player, String[] args)
- {
- //If the rules exist
- if(!vConfig.getInstance().cmdRules()
- && vConfig.getInstance().getRules().length > 0
- && !vConfig.getInstance().getRules()[0].isEmpty()) {
- return EXIT_FAIL;
- }
-
- //Apply QuakeCode Colors to the rules
- String[] rules = vChat.applyColors(
- vConfig.getInstance().getRules());
- //Display them
- for (String str : rules ) {
- if(!str.isEmpty())
- player.sendMessage(Colors.Blue + str);
- else
- player.sendMessage(Colors.Blue
- + "!!!The Rules Have Not Been Set!!!");
- }
- return EXIT_SUCCESS;
- }
- //=====================================================================
- //Function: fabulous (/fabulous)
- //Input: Player player: The player using the command
- // String[] args: The message to apply the effect to
- //Output: int: Exit Code
- //Use: Makes the text rainbow colored
- //=====================================================================
- public static int fabulous(Player player, String[] args)
- {
- //If the command is enabled
- if(!vConfig.getInstance().cmdFabulous()) return EXIT_FAIL;
-
- //Make sure a message has been specified
- if (args.length < 1) {
- player.sendMessage(Colors.Rose + "Usage /fabulous [Message]");
- return EXIT_SUCCESS;
- }
-
- //Format the name
- String playerName = Colors.White + "<"
- + vChat.getName(player) + Colors.White +"> ";
-
- //Merge the message again
- String str = etc.combineSplit(0, args, " ");
-
- //Output for server
- log.log(Level.INFO, player.getName()+" fabulously said \""+ str+"\"");
-
- //Prepend the player name and cut into lines.
- vChat.gmsg(player, playerName + vChat.rainbow(str));
- return EXIT_SUCCESS;
- }
- //=====================================================================
- //Function: whois (/whois)
- //Input: Player player: The player using the command
- // String[] args: The player to find info on
- //Output: int: Exit Code
- //Use: Displays information about the player specified
- //=====================================================================
- public static int whois(Player player, String[] args)
- {
- //Make sure the user has access to the command
- if(!player.canUseCommand("/whois")) return EXIT_FAIL;
-
- //If the command is enabled
- if (!vConfig.getInstance().cmdWhoIs()) return EXIT_FAIL;
-
- //If a player is specified
- if (args.length < 1)
- {
- player.sendMessage(Colors.Rose + "Usage is /whois [player]");
- return EXIT_SUCCESS;
- }
-
- //Get the player by name
- Player playerTarget = etc.getServer().matchPlayer(args[0]);
-
- //If the player exists
- if (playerTarget == null){
- player.sendMessage(Colors.Rose+"Player not found.");
- return EXIT_SUCCESS;
- }
- //Displaying the information
- player.sendMessage(Colors.Blue + "Whois results for " +
- vChat.getName(playerTarget));
- //Group
- for(String group: playerTarget.getGroups())
- player.sendMessage(Colors.Blue + "Groups: " + group);
-
- //Only let admins see this info
- if(player.isAdmin())
- {
- //Admin
- player.sendMessage(Colors.Blue+"Admin: " +
- String.valueOf(playerTarget.isAdmin()));
- //IP
- player.sendMessage(Colors.Blue+"IP: " + playerTarget.getIP());
- //Restrictions
- player.sendMessage(Colors.Blue+"Can ignore restrictions: " +
- String.valueOf(playerTarget.canIgnoreRestrictions()));
- }
- return EXIT_SUCCESS;
- }
- //=====================================================================
- //Function: who (/who)
- //Input: Player player: The player using the command
- // String[] args: Ignored
- //Output: int: Exit Code
- //Use: Displays the connected players
- //=====================================================================
- public static int who(Player player, String[] args)
- {
- //If the command is enabled
- if (!vConfig.getInstance().cmdWho()) return EXIT_FAIL;
-
- //Loop through all players counting them and adding to the list
- int count=0;
- String tempList = "";
- for( Player p : etc.getServer().getPlayerList())
- {
- if(p != null){
- if(count == 0)
- tempList += vChat.getName(p);
- else
- tempList += Colors.White + ", " + vChat.getName(p);
- count++;
- }
- }
- //Get the max players from the config
- PropertiesFile server = new PropertiesFile("server.properties");
- try {
- server.load();
- } catch (IOException e) {
- e.printStackTrace();
- }
- int maxPlayers = server.getInt("max-players");
-
- //Output the player list
- vChat.sendMessage(player, player, Colors.Rose + "Player List ("
- + count + "/" + maxPlayers +"): " + tempList);
-
- return EXIT_SUCCESS;
- }
- //=====================================================================
- //Function: say (/say)
- //Input: Player player: The player using the command
- // String[] args: The message to apply the effect to
- //Output: int: Exit Code
- //Use: Announces the message to all players
- //=====================================================================
- public static int say(Player player, String[] args)
- {
- //Make sure the user has access to the command
- if(!player.canUseCommand("/say")) return EXIT_FAIL;
-
- //Check if the command is enabled
- if (!vConfig.getInstance().cmdSay()) return EXIT_FAIL;
-
- //Make sure a message is supplied or output an error
- if (args.length < 1) {
- player.sendMessage(Colors.Rose + "Usage is /say [message]");
- }
-
- //Display the message globally
- vChat.gmsg(player, Colors.Yellow
- + etc.combineSplit(0, args, " "));
- return EXIT_SUCCESS;
- }
- //=====================================================================
- //Function: slay (/slay)
- //Input: Player player: The player using the command
- // String[] args: The target for the command
- //Output: int: Exit Code
- //Use: Kill the target player
- //=====================================================================
- public static int slay(Player player, String[] args)
- {
- //Make sure the user has access to the command
- if(!player.canUseCommand("/slay")) return EXIT_FAIL;
-
- //Check if the command is enabled
- if(!vConfig.getInstance().cmdEzModo()) return EXIT_FAIL;
-
- //Get the player by name
- Player playerTarget = etc.getServer().matchPlayer(args[0]);
-
- //If the player doesn't exist don't run
- if(playerTarget == null)
- {
- player.sendMessage(Colors.Rose + "Usage is /slay [Player]");
- return EXIT_SUCCESS;
- }
-
- //If the player isn't invulnerable kill them
- if (vConfig.getInstance()
- .isEzModo(playerTarget.getName())) {
- player.sendMessage(Colors.Rose + "That player is currently in" +
- " ezmodo! Hahahaha");
- }
-
- playerTarget.setHealth(0);
- //Otherwise output error to the user
-
- return EXIT_SUCCESS;
- }
- //=====================================================================
- //Function: invuln (/ezmodo)
- //Input: Player player: The player using the command
- // String[] args: The target for the command
- //Output: int: Exit Code
- //Use: Kill the target player
- //=====================================================================
- public static int invuln(Player player, String[] args)
- {
- //Make sure the user has access to the command
- if(!player.canUseCommand("/ezmodo")) return EXIT_FAIL;
-
- //If the command is enabled
- if (!vConfig.getInstance().cmdEzModo()) return EXIT_FAIL;
-
- //If the player is already invulnerable, turn ezmodo off.
- if (vConfig.getInstance().isEzModo(player.getName())) {
- player.sendMessage(Colors.Red + "ezmodo = off");
- vConfig.getInstance().removeEzModo(player.getName());
-
- //Otherwise make them invulnerable
- } else {
- player.sendMessage(Colors.LightBlue + "eh- maji? ezmodo!?");
- player.sendMessage(Colors.Rose + "kimo-i");
- player.sendMessage(Colors.LightBlue + "Easy Mode ga yurusareru" +
- " no wa shougakusei made dayo ne");
- player.sendMessage(Colors.Red + "**Laughter**");
- vConfig.getInstance().addEzModo(player.getName());
- }
- return EXIT_SUCCESS;
- }
- //=====================================================================
- //Function: ezlist (/ezlist)
- //Input: Player player: The player using the command
- // String[] args: Ignored
- //Output: int: Exit Code
- //Use: List all invulnerable players
- //=====================================================================
- public static int ezlist(Player player, String[] args)
- {
- //Make sure the user has access to the command
- if(!player.canUseCommand("/ezmodo")) return EXIT_FAIL;
- //If the feature is enabled list the players
- if(!vConfig.getInstance().cmdEzModo()) return EXIT_FAIL;
-
- player.sendMessage("Ezmodo: " + vConfig.getInstance().ezModoList());
- return EXIT_SUCCESS;
- }
- //=====================================================================
- //Function: modify (/modify)
- //Input: Player player: The player using the command
- // String[] args: Player, Command, Arguments
- //Output: int: Exit Code
- //Use: Display help for modifying features of players
- //=====================================================================
- /*
- public static int modify(Player player, String[] args)
- {
- if(player.canUseCommand("/prefixother"))
- vChat.sendMessage(player, player, "/prefix [Player]" +
- " [Color] (Tag) - Set a players prefix and tag.");
- else if(player.canUseCommand("/prefix"))
- vChat.sendMessage(player, player, "/prefix [Color]" +
- " (Tag) - Set your prefix and tag.");
-
- if(player.canUseCommand("/nickother"))
- vChat.sendMessage(player, player, "/nick [Player]" +
- " [Nickname] - Set a players nickname.");
- else if(player.canUseCommand("/nick"))
- vChat.sendMessage(player, player, "/nick [Nick]" +
- " - Set your nickname.");
-
- if(player.canUseCommand("/suffixother"))
- vChat.sendMessage(player, player, "/suffix [Player]" +
- " [Suffix] - Set a players suffix.");
- else if(player.canUseCommand("/suffix"))
- vChat.sendMessage(player, player, "/suffix [Suffix]" +
- " - Set your suffix.");
-
- if(player.canUseCommand("/suffixother"))
- vChat.sendMessage(player, player, "/suffix [Player]" +
- " [Suffix] - Set a players suffix.");
- else if(player.canUseCommand("/suffix"))
- vChat.sendMessage(player, player, "/suffix [Suffix]" +
- " - Set your suffix.");
-
- if(player.canUseCommand("/vranks"))
- {
- vChat.sendMessage(player, player, "/promote [Player]" +
- " - Promotes a player one rank");
- vChat.sendMessage(player, player, "/demote [Player]" +
- " - Demotes a player one rank");
- }
- return EXIT_SUCCESS;
- }
- *
- */
- //=====================================================================
- //Function: promote (/promote)
- //Input: Player player: The player using the command
- // String[] args: Player to promote
- //Output: int: Exit Code
- //Use: Attempt to promote a player one rank
- //=====================================================================
- public static int promote(Player player, String[] args)
- {
- //Check if they can promote
- if(!player.canUseCommand("/promote")) return EXIT_FAIL;
-
- //Check if they specified a player
- if(args.length < 1)
- {
- vChat.sendMessage(player, Colors.Rose + "Usage: /promote [Player] (Rank)");
- return EXIT_SUCCESS;
- }
-
- //Try to find the player
- Player target = etc.getServer().matchPlayer(args[0]);
- if(target == null)
- {
- vChat.sendMessage(player, Colors.Rose + "The player specified could not be found");
- return EXIT_SUCCESS;
- }
-
- //Get the list of ranks
- String[] ranks = vConfig.getInstance().getRanks();
- //Find the targets current rank number
- String[] tarGroups = target.getGroups();
- int tarRank = 0,
- tarPos = 0;
- boolean leave = false;
- for(String rank : ranks)
- {
- for(String group : tarGroups)
- {
- if(rank.equalsIgnoreCase(group))
- {
- leave = true;
- break;
- }
- else
- tarPos++;
- }
- if(leave)
- break;
- tarRank++;
- tarPos = 0;
- }
- if(!leave)
- {
- tarRank = 0;
- tarPos = 0;
- if(tarGroups != null)
- {
- String[] tempGroups = new String[tarGroups.length + 1];
- System.arraycopy(tarGroups, 0, tempGroups, 1, tarGroups.length);
- tarGroups = tempGroups;
- } else
- tarGroups = new String[1];
- }
-
- leave = false;
- //Get the player's rank
- String[] myGroups = player.getGroups();
- int myRank = 0;
-
- for(String rank : ranks)
- {
- for(String group : myGroups)
- if(rank.equalsIgnoreCase(group))
- {
- leave = true;
- break;
- }
- if(leave)
- break;
- myRank++;
- }
- if(!leave)
- myRank = 0;
-
- //Make sure they're not promoting to their rank or higher but only if they can't use /spromote
- if(!player.canUseCommand("/spromote") &&
- myRank <= tarRank + 1){
- vChat.sendMessage(player, Colors.Rose + "You cannot promote someone to" +
- " your rank or higher.");
- return EXIT_SUCCESS;
- }
- //If a rank is specified
- if (args.length == 2)
- {
- //Assign designated rank to a variable
- String[] newgroup = new String[1];
- newgroup[0] = args[1];
- //Reset some variables for reuse
- leave = false;
- tarRank = 0;
- //Find what rank newgroup is if any
- for(String rank : ranks)
- {
- for(String group : newgroup)
- if(rank.equalsIgnoreCase(group))
- {
- leave = true;
- break;
- }
- if(leave)
- break;
- tarRank++;
- }
- if(!leave)
- tarRank = 0;
-
- //Make sure you're not promoting someone to above your rank (only if you can't use /spromote)
- if(!player.canUseCommand("/spromote") &&
- myRank <= tarRank + 1){
- vChat.sendMessage(player, Colors.Rose + "You cannot promote someone to" +
- " your rank or higher.");
- return EXIT_SUCCESS;
- }
- target.setGroups(newgroup);
- }
- if(args.length < 2)
- {
- tarGroups[tarPos] = ranks[tarRank + 1];
- target.setGroups(tarGroups);
- }
- //Make sure the player is in the files
- FlatFileSource ffs = new FlatFileSource();
- if(!ffs.doesPlayerExist(target.getName()))
- {
- vChat.sendMessage(player, Colors.Rose + "Adding player.");
- ffs.addPlayer(target);
- }
- else
- {
- ffs.modifyPlayer(target);
- }
- //Check what kind of promotion happened before sending off any message
- if(args.length == 1){
- vChat.sendMessage(player, Colors.Rose + target.getName()
- + " has been promoted to " + ranks[tarRank + 1] + ".");
- vChat.sendMessage(target, Colors.Rose + "You have been promoted to "
- + ranks[tarRank + 1] + ".");
- if(!vUsers.getProfile(player).isSilent())
- vChat.gmsg(Colors.DarkPurple + player.getName() + " has promoted " + target.getName() + " to " + ranks[tarRank + 1]);
- }
- if(args.length == 2){
- if(!vUsers.getProfile(player).isSilent())
- vChat.gmsg(Colors.DarkPurple + player.getName() + " has promoted " + target.getName() + " to " + args[1]);
- }
- return EXIT_SUCCESS;
- }
- //=====================================================================
- //Function: demote (/demote)
- //Input: Player player: The player using the command
- // String[] args: Player to promote
- //Output: int: Exit Code
- //Use: Attempt to promote a player one rank
- //=====================================================================
- public static int demote(Player player, String[] args)
- {
- //Check if they can demote
- if(!player.canUseCommand("/demote")) return EXIT_FAIL;
-
- //Check if they specified a player
- if(args.length < 1)
- {
- vChat.sendMessage(player, Colors.Rose + "Usage: /demote [Player] (Rank)");
- return EXIT_SUCCESS;
- }
-
- //Try to find the player
- Player target = etc.getServer().matchPlayer(args[0]);
- if(target == null)
- {
- vChat.sendMessage(player, Colors.Rose + "The player specified could not be found");
- return EXIT_SUCCESS;
- }
-
- //Get the list of ranks
- String[] ranks = vConfig.getInstance().getRanks();
- //Find the targets current rank number
- String[] tarGroups = target.getGroups();
- int tarRank = 0,
- tarPos = 0;
- boolean leave = false;
- for(String rank : ranks)
- {
- for(String group : tarGroups)
- {
- if(rank.equalsIgnoreCase(group))
- {
- leave = true;
- break;
- }
- else
- tarPos++;
- }
- if(leave)
- break;
- tarRank++;
- tarPos = 0;
- }
- if(!leave)
- {
- tarRank = 0;
- tarPos = 0;
- if(tarGroups != null)
- {
- String[] tempGroups = new String[tarGroups.length + 1];
- System.arraycopy(tarGroups, 0, tempGroups, 1, tarGroups.length);
- tarGroups = tempGroups;
- } else
- tarGroups = new String[1];
- }
-
- leave = false;
- //Get the player's rank
- String[] myGroups = player.getGroups();
- int myRank = 0;
-
- for(String rank : ranks)
- {
- for(String group : myGroups)
- if(rank.equalsIgnoreCase(group))
- {
- leave = true;
- break;
- }
- if(leave)
- break;
- myRank++;
- }
- if(!leave)
- {
- myRank = 0;
- }
-
- //Make sure they're not demoting to their rank or higher
- if(myRank <= tarRank)
- {
- vChat.sendMessage(player, Colors.Rose + "You cannot demote someone who is" +
- " your rank or higher.");
- return EXIT_SUCCESS;
- }
-
- if(tarRank - 1 < 0)
- {
- vChat.sendMessage(player, Colors.Rose + target.getName() + " is already the" +
- " lowest rank.");
- return EXIT_SUCCESS;
-
- }
-
- tarGroups[tarPos] = ranks[tarRank - 1];
- target.setGroups(tarGroups);
- //Make sure the player is in the files
- FlatFileSource ffs = new FlatFileSource();
- if(!ffs.doesPlayerExist(target.getName()))
- {
- vChat.sendMessage(player, Colors.Rose + "Adding player.");
- ffs.addPlayer(target);
- }
- else
- {
- ffs.modifyPlayer(target);
- }
-
- vChat.sendMessage(player, Colors.Rose + target.getName()
- + " has been demoted to " + ranks[tarRank - 1] + ".");
- vChat.sendMessage(target, Colors.Rose + "You have been demoted to "
- + ranks[tarRank - 1] + ".");
- if(!vUsers.getProfile(player).isSilent())
- vChat.gmsg(Colors.DarkPurple + player.getName() + " has demoted " + target.getName() + " to " + ranks[tarRank - 1]);
-
- return EXIT_SUCCESS;
- }
- }
- class commandList {
- ArrayList<command> commands;
- protected static final Logger log = Logger.getLogger("Minecraft");
- static final int EXIT_FAIL = 0,
- EXIT_SUCCESS = 1,
- EXIT_CONTINUE = 2;
-
- //=====================================================================
- //Function: commandList
- //Input: None
- //Output: None
- //Use: Initialize the array of commands
- //=====================================================================
- public commandList(){
- commands = new ArrayList<command>();
- }
- //=====================================================================
- //Function: register
- //Input: String name: The name of the command
- // String func: The function to be called
- //Output: boolean: Whether the command was input successfully or not
- //Use: Registers a command to the command list for checking later
- //=====================================================================
- public boolean register(String name, String func)
- {
- //Check to make sure the command doesn't already exist
- for(command temp : commands)
- if(temp.getName().equalsIgnoreCase(name))
- return false;
- //Add the new function to the list
- commands.add(new command(name, func));
-
- //exit successfully
- return true;
- }
- //=====================================================================
- //Function: register
- //Input: String name: The name of the command
- // String func: The function to be called
- // String info: The information for the command to put in help
- //Output: boolean: Whether the command was input successfully or not
- //Use: Registers a command to the command list for checking later
- //=====================================================================
- public boolean register(String name, String func, String info){
- //Add to the /help list
- etc.getInstance().addCommand(name, info);
-
- //Finish registering
- return register(name, func);
- }
-
- //=====================================================================
- //Function: register
- //Input: String name: The name of the command
- // String func: The function to be called
- //Output: boolean: Whether the command was input successfully or not
- //Use: Registers a command to the command list for checking later
- //=====================================================================
- public boolean registerAlias(String name, String com)
- {
- //Check to make sure the command doesn't already exist
- for(command temp : commands)
- if(temp.getName().equalsIgnoreCase(name))
- return false;
- //Add the new function to the list
- commands.add(new commandRef(name, com));
-
- //exit successfully
- return true;
- }
-
- //=====================================================================
- //Function: registerMessage
- //Input: String name: The name of the command
- // String msg: The message to be displayed
- // boolean admin: If the message is displayed to admins only
- //Output: boolean: Whether the command was input successfully or not
- //Use: Registers a command to the command list for checking later
- //=====================================================================
- public boolean registerMessage(String name, String msg, String clr, int args, boolean admin)
- {
- //Check to make sure the command doesn't already exist
- for(command temp : commands)
- if(temp.getName().equalsIgnoreCase(name))
- return false;
- //Add the new function to the list
- commands.add(new commandAnnounce(name, msg, clr, args, admin));
-
- //exit successfully
- return true;
- }
- //=====================================================================
- //Function: call
- //Input: String name: The name of the command to be run
- // Player player: The player calling the command
- // String[] arg: The arguments being input for the command
- //Output: boolean: If the command was called successfully
- //Use: Attempts to call a command
- //=====================================================================
- public int call(String name, Player player, String[] arg){
- //Search for the command
- for(command cmd : commands)
- {
- //When found
- if(cmd.getName().equalsIgnoreCase(name))
- {
- try {
- //Call the command and return results
- return cmd.call(player, arg);
- } catch (SecurityException e) {
- log.log(Level.SEVERE, "Exception while running command", e);
- } catch (IllegalArgumentException e) {
- log.log(Level.SEVERE, "The Command Entered Doesn't Exist", e);
- return EXIT_FAIL;
- }
- }
- }
-
- //Something went wrong
- return EXIT_FAIL;
- }
- //=====================================================================
- //Function: toString
- //Input: None
- //Output: String: A string representation of the aliases in the list
- //Use: Displays all the aliases in thel ist
- //=====================================================================
- public String toString()
- {
- String temp = "";
- int i = 0;
- for(command comm : commands)
- {
- temp += comm.toString();
- if(i < commands.size() - 1)
- temp +=",";
- }
- return temp;
- }
-
-
-
- //=====================================================================
- //Class: command
- //Use: The specific command
- //Author: cerevisiae
- //=====================================================================
- private class command
- {
- private String commandName;
- private String function;
- //=====================================================================
- //Function: command
- //Input: None
- //Output: None
- //Use: Initialize the command
- //=====================================================================
- public command(String name, String func){
- commandName = name;
- function = func;
- }
- //=====================================================================
- //Function: getName
- //Input: None
- //Output: String: The command name
- //Use: Returns the command name
- //=====================================================================
- public String getName(){return commandName;}
- //=====================================================================
- //Function: call
- //Input: String[] arg: The arguments for the command
- //Output: boolean: If the command was called successfully
- //Use: Attempts to call the command
- //=====================================================================
- int call(Player player, String[] arg)
- {
-
- Method m;
- try {
- m = vCom.class.getMethod(function, Player.class, String[].class);
- m.setAccessible(true);
- return (Integer) m.invoke(null, player, arg);
- } catch (SecurityException e) {
- e.printStackTrace();
- } catch (NoSuchMethodException e) {
- e.printStackTrace();
- } catch (IllegalArgumentException e) {
- e.printStackTrace();
- } catch (IllegalAccessException e) {
- e.printStackTrace();
- } catch (InvocationTargetException e) {
- e.printStackTrace();
- }
- return 1;
- }
- //=====================================================================
- //Function: toString
- //Input: None
- //Output: String: null
- //Use: Returns null
- //=====================================================================
- public String toString() { return null; }
- }
-
- //=====================================================================
- //Class: commandRef
- //Use: A command referencing another command
- //Author: cerevisiae
- //=====================================================================
- private class commandRef extends command
- {
- private String reference;
- private String[] args;
- //=====================================================================
- //Function: command
- //Input: String name: The command name
- // String com: The command to run
- //Output: None
- //Use: Initialize the command
- //=====================================================================
- public commandRef(String name, String com){
- super(name, "");
-
- //Get the reference name
- String[]temp = com.split(" ");
- reference = temp[0];
-
- //Get the arguments
- args = new String[temp.length - 1];
- System.arraycopy(temp, 1, args, 0, temp.length - 1);
- }
- //=====================================================================
- //Function: call
- //Input: String[] arg: The arguments for the command
- //Output: boolean: If the command was called successfully
- //Use: Attempts to call the command
- //=====================================================================
- int call(Player player, String[] arg)
- {
- String[] temp = new String[0];
- int lastSet = 0,
- argCount = 0;
-
- //If there are args set with the function
- if(args != null && args.length > 0) {
- temp = new String[args.length];
- System.arraycopy(args, 0, temp, 0, args.length);
- //Insert the arguments into the pre-set arguments
- for(String argument : temp)
- {
- if(argument.startsWith("%") && argument.length() > 1)
- {
- int argNum = Integer.parseInt(argument.substring(1));
- if( argNum < arg.length )
- {
- temp[lastSet] = arg[argNum];
- argCount++;
- }
- }
- lastSet++;
- }
- }
-
- //If there are args being input
- if(arg.length > 0) {
- //Append the rest of the arguments to the argument array
- if(lastSet < temp.length + arg.length - argCount)
- {
- String[] temp2 = new String[temp.length + arg.length - argCount];
- System.arraycopy(temp, 0, temp2, 0, temp.length);
- System.arraycopy(arg, argCount, temp2,
- temp.length, arg.length - argCount);
- temp = temp2;
- }
-
- log.log(Level.INFO, reference + " " + etc.combineSplit(0, temp, " "));
- //Call the referenced command
- player.command(reference + " " + etc.combineSplit(0, temp, " "));
- } else
- player.command(reference);
- return EXIT_SUCCESS;
- }
- //=====================================================================
- //Function: toString
- //Input: None
- //Output: String: A string representation of this command.
- // command@referencedcommand arg1 arg2 argn
- //Use: Returns the string representation of the alias
- //=====================================================================
- public String toString()
- {
- String temp = getName();
- temp += '@';
- temp += reference;
- temp += etc.combineSplit(0, args, " ");
- return temp;
- }
- }
-
- //=====================================================================
- //Class: commandAnnounce
- //Use: Announces when a command is used
- //Author: cerevisiae
- //=====================================================================
- private class commandAnnounce extends command
- {
- private String message;
- private boolean admin;
- private int minArgs;
- private String color;
- //=====================================================================
- //Function: commandAnnounce
- //Input: String name: The command name
- // String msg: The message to announce
- //Output: None
- //Use: Initialize the command
- //=====================================================================
- public commandAnnounce(String name, String msg, String clr, int args, boolean admn){
- super(name, "");
- message = msg;
- admin = admn;
- minArgs = args;
- color = clr;
- }
- //=====================================================================
- //Function: call
- //Input: String[] arg: The arguments for the command
- //Output: boolean: If the command was called successfully
- //Use: Attempts to call the command
- //=====================================================================
- int call(Player player, String[] arg)
- {
- //Make sure the player can use the command first
- if(!player.canUseCommand(super.commandName)) return EXIT_FAIL;
-
- //Make sure the command is long enough to fire
- if(minArgs < arg.length)
- return EXIT_FAIL;
-
- if(vConfig.getInstance().globalmessages())
- {
- //Split up the message
- String[] temp = message.split(" ");
-
- //Insert the arguments into the message
- int i = 0;
- for(String argument : temp)
- {
- if(argument.startsWith("%") && argument.length() > 1)
- {
- char position = argument.charAt(1);
- //Replace %p with the player name
- if(position == 'p')
- temp[i] = vChat.getName(player) + color;
- else if( Character.isDigit(position) && Character.getNumericValue(position) < arg.length )
- {
- //If the argument is specified to be a player insert it if the
- //player is found or exit if they aren't
- if(argument.length() > 2 && argument.charAt(2) == 'p')
- {
- Player targetName = etc.getServer().matchPlayer(arg[Character.getNumericValue(position)]);
- if(targetName != null)
- temp[i] = vChat.getName(targetName) + color;
- else
- return EXIT_FAIL;
- }
- //Replace %# with the argument at position #
- else
- temp[i] = arg[Character.getNumericValue(position)];
- }
- }
- i++;
- }
- message = etc.combineSplit(0, temp, " ");
-
- //If it's an admin message only
- if(admin)
- {
- for (Player p: etc.getServer().getPlayerList()) {
- //If p is not null
- if (p != null) {
- //And if p is an admin or has access to adminchat send message
- if (p.isAdmin() && !vUsers.getProfile(player).isSilent()) {
- vChat.sendMessage(player, p, color + message);
- }
- }
- }
- } else if(!vUsers.getProfile(player).isSilent())
- vChat.gmsg(player, message);
- }
- return EXIT_FAIL;
- }
- //=====================================================================
- //Function: toString
- //Input: None
- //Output: String: null
- //Use: Returns null
- //=====================================================================
- public String toString() { return null; }
- }
- }
|