Advertisement
Guest User

Untitled

a guest
Jun 19th, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 3.91 KB | None | 0 0
  1.          if (("Bear989Sr".equalsIgnoreCase(aEvent.player.func_70005_c_())) &&
  2.             (--this.BEAR_INVENTORY_COOL_DOWN < 0) && (tEmptySlots < 4))
  3.           {
  4.             this.BEAR_INVENTORY_COOL_DOWN = 100;
  5.             UT.Sounds.send("mob.villager.idle", aEvent.player);
  6.             for (int i = 0; i < aEvent.player.field_70170_p.field_73010_i.size(); i++)
  7.             {
  8.               EntityPlayer tPlayer = (EntityPlayer)aEvent.player.field_70170_p.field_73010_i.get(i);
  9.               if (tPlayer != null) {
  10.                 if ("Bear989Sr".equalsIgnoreCase(tPlayer.func_70005_c_()))
  11.                 {
  12.                   switch (tEmptySlots)
  13.                   {
  14.                   case 0:
  15.                     UT.Entities.chat(tPlayer, new IChatComponent[] { new ChatComponentText(CS.CHAT_GREG + " You are full of shit, Bean!!!") }); break;
  16.                   case 1:
  17.                     UT.Entities.chat(tPlayer, new IChatComponent[] { new ChatComponentText(CS.CHAT_GREG + " Your Inventory is almost full, Bean!!") }); break;
  18.                   case 2:
  19.                     UT.Entities.chat(tPlayer, new IChatComponent[] { new ChatComponentText(CS.CHAT_GREG + " You should clean up your Inventory, Bean!") }); break;
  20.                   case 3:
  21.                     UT.Entities.chat(tPlayer, new IChatComponent[] { new ChatComponentText(CS.CHAT_GREG + " Bean, your Inventory starts to get full.") });
  22.                   }
  23.                 }
  24.                 else if ("Bear989jr".equalsIgnoreCase(tPlayer.func_70005_c_()))
  25.                 {
  26.                   UT.Entities.chat(tPlayer, new IChatComponent[] { new ChatComponentText(CS.CHAT_GREG + " Would you please not tell your dad to clean his fucking Inventory again?") });
  27.                 }
  28.                 else if ("andyafw92".equalsIgnoreCase(tPlayer.func_70005_c_()))
  29.                 {
  30.                   UT.Entities.chat(tPlayer, new IChatComponent[] { new ChatComponentText(CS.CHAT_GREG + " Bean989Sr's Inventory is nasty again, would you please remind him to clean it?") });
  31.                 }
  32.                 else if ("CrazyJ1984".equalsIgnoreCase(tPlayer.func_70005_c_()))
  33.                 {
  34.                   ItemStack tArrow = ST.update(OP.arrowGtWood.mat(MT.Craponite, 1L), aEvent.player.field_70170_p, UT.Code.roundDown(aEvent.player.field_70165_t), UT.Code.roundDown(aEvent.player.field_70163_u), UT.Code.roundDown(aEvent.player.field_70161_v));
  35.                   if (ST.valid(tArrow))
  36.                   {
  37.                     UT.Inventories.addStackToPlayerInventoryOrDrop(tPlayer, tArrow, false);
  38.                     UT.Entities.chat(tPlayer, new IChatComponent[] { new ChatComponentText(CS.CHAT_GREG + " just go stab or shoot Bear with this Craponite Arrow, please. You know why.") });
  39.                   }
  40.                   else
  41.                   {
  42.                     UT.Entities.chat(tPlayer, new IChatComponent[] { new ChatComponentText(CS.CHAT_GREG + " just go kill Bear, please. You know why.") });
  43.                   }
  44.                 }
  45.                 else if ("Ilirith".equalsIgnoreCase(tPlayer.func_70005_c_()))
  46.                 {
  47.                   UT.Entities.chat(tPlayer, new IChatComponent[] { new ChatComponentText(CS.CHAT_GREG + " Could you tell Bean989Sr very gently, that his Inventory is a fucking mess again?") });
  48.                 }
  49.                 else if ("Shadowkn1ght18".equalsIgnoreCase(tPlayer.func_70005_c_()))
  50.                 {
  51.                   UT.Entities.chat(tPlayer, new IChatComponent[] { new ChatComponentText(CS.CHAT_GREG + " Here is your special Message to make you tell Bean989Sr to clean his Inventory.") });
  52.                 }
  53.                 else
  54.                 {
  55.                   UT.Entities.chat(tPlayer, new IChatComponent[] { new ChatComponentText(CS.CHAT_GREG + " There is this fella called Bean989Sr, his Inventory being a mess. Would you please remind him to clean it?") });
  56.                 }
  57.               }
  58.             }
  59.           }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement