Advertisement
Guest User

Untitled

a guest
Nov 7th, 2015
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 2.18 KB | None | 0 0
  1. @Override
  2.       public void processCommand(ICommandSender icommandsender, String[] argStrings)
  3.       {
  4.           // Get the player entity so we can communicate back.
  5.           //EntityPlayer player = getCommandSenderAsPlayer(icommandsender);
  6.           World world = icommandsender.getEntityWorld();
  7.           System.out.println("[TWILIO CRAFT] Going to create a " + argStrings[0] + " called " + argStrings[1]);
  8.          
  9.           // Check if the right number of arguments was sent.
  10.             if (argStrings.length > 0 && argStrings.length < 6) {
  11.                 EntityLiving mob = null;
  12.                 // Switch the type.
  13.                 switch (argStrings[1].toLowerCase()) {
  14.                 case "creeper":
  15.                     System.out.println("Spawning a creeper!");
  16.                     mob = new EntityCreeper(world);
  17.                     break;
  18.                 case "zombie":
  19.                     System.out.println("Spawning a zombie!");
  20.                     mob = new EntityZombie(world);
  21.                     break;
  22.                 case "skeleton":
  23.                     System.out.println("Spawning a skeleton!");
  24.                     mob = new EntitySkeleton(world);
  25.                     break;
  26.                 case "spider":
  27.                     System.out.println("Spawning a spider!");
  28.                     mob = new EntitySpider(world);
  29.                     break;
  30.                 }
  31.                
  32.                 if (mob != null) {
  33.                     // Convert the X Y coords in the command to ints
  34.                     int x = Integer.parseInt(argStrings[2]);
  35.                     int y = Integer.parseInt(argStrings[3]);
  36.                     int z = Integer.parseInt(argStrings[4]);
  37.                    
  38.                     // Create a method that passes in an entity and the name and location gets set.
  39.                     mob.setLocationAndAngles(x, y, z, 0F, 0F);
  40.                     mob.setCustomNameTag(argStrings[0]);
  41.                     if (!world.isRemote) {
  42.                         System.out.println("[TWILIO CRAFT] Spawning a " + argStrings[1] + " called " + argStrings[0] + " at ");
  43.                         world.spawnEntityInWorld(mob);
  44.                     }
  45.                 } else {
  46.                     // Didn't recognize mob type
  47.                     System.out.println("[TWILIO CRAFT] Unknown mob type: " + argStrings[1]);
  48.                     // player.addChatComponentMessage(new ChatComponentText("Unknown mob type: " + argStrings[1]));
  49.                 }
  50.             } else {
  51.                 // To few or too many arguments passed.
  52.                 System.out.println("[TWILIO CRAFT] Incorrect arguments sent for command /spawnnamedmob");
  53.                 // player.addChatComponentMessage(new ChatComponentText("Incorrect use of command, /spawnnamedmob <name> <type> <x> <y> <z>"));
  54.             }
  55.       }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement