Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- @Override
- public void processCommand(ICommandSender icommandsender, String[] argStrings)
- {
- // Get the player entity so we can communicate back.
- //EntityPlayer player = getCommandSenderAsPlayer(icommandsender);
- World world = icommandsender.getEntityWorld();
- System.out.println("[TWILIO CRAFT] Going to create a " + argStrings[0] + " called " + argStrings[1]);
- // Check if the right number of arguments was sent.
- if (argStrings.length > 0 && argStrings.length < 6) {
- EntityLiving mob = null;
- // Switch the type.
- switch (argStrings[1].toLowerCase()) {
- case "creeper":
- System.out.println("Spawning a creeper!");
- mob = new EntityCreeper(world);
- break;
- case "zombie":
- System.out.println("Spawning a zombie!");
- mob = new EntityZombie(world);
- break;
- case "skeleton":
- System.out.println("Spawning a skeleton!");
- mob = new EntitySkeleton(world);
- break;
- case "spider":
- System.out.println("Spawning a spider!");
- mob = new EntitySpider(world);
- break;
- }
- if (mob != null) {
- // Convert the X Y coords in the command to ints
- int x = Integer.parseInt(argStrings[2]);
- int y = Integer.parseInt(argStrings[3]);
- int z = Integer.parseInt(argStrings[4]);
- // Create a method that passes in an entity and the name and location gets set.
- mob.setLocationAndAngles(x, y, z, 0F, 0F);
- mob.setCustomNameTag(argStrings[0]);
- if (!world.isRemote) {
- System.out.println("[TWILIO CRAFT] Spawning a " + argStrings[1] + " called " + argStrings[0] + " at ");
- world.spawnEntityInWorld(mob);
- }
- } else {
- // Didn't recognize mob type
- System.out.println("[TWILIO CRAFT] Unknown mob type: " + argStrings[1]);
- // player.addChatComponentMessage(new ChatComponentText("Unknown mob type: " + argStrings[1]));
- }
- } else {
- // To few or too many arguments passed.
- System.out.println("[TWILIO CRAFT] Incorrect arguments sent for command /spawnnamedmob");
- // player.addChatComponentMessage(new ChatComponentText("Incorrect use of command, /spawnnamedmob <name> <type> <x> <y> <z>"));
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement