*c* The Mystery and Happy Halloween!

Discussion in 'Empire Updates' started by Aikar, Oct 31, 2014.

  1. Congrats, chickeneer, and Happy Halloween to you, EMC! Thanks for the fantastic items! :D

    NOTE: Wait, so are you supposed to be able to wear the mask? I can't seem to put it on. I'm guessing this is due to the fact that right clicking is also supposed to make it dispense Haunted Candy. Any way to fix this?
    bloodra1n, sambish20 and FDNY21 like this.
  2. Why would a Headless Horseman need a mask if he has no head! Why this is his head!
  3. Try sneak and right click

    Confirmed to work:
    hashhog3000, 607 and weeh666 like this.
  4. The wiki shows it a pumpkin, I suggest you fix it to the Jack O'Lantern icon. :p
  5. There was a haunted head from last year that was a pumpkin. Wiki team will get the new one in soon.
  6. Congrats Chickeneer! And Happy Halloween to the rest of EMC :D

    Does anybody know how long we have to claim this promo?
  7. Couldn't you use [SLOT 1] like they do in the /shop itself?

    Also, do a lot of you have your sound off or something? Because when I wear it, it constantly makes some horrifying noises I didn't even know were in Minecraft. o_o

    Something watches from the shadows?? What?! Ahh!!

    Edit: Walking around the Wastelands at night with brightness at Moody, wearing this mask, is terrifying. Everybody do it.
    krysyyjane9191 likes this.
  8. Congrats chickeneer on the dev team! And cant wait to claim the promos!! Good job developers and every one!!!
  9. How do you wear it? i tried right clicking it and nothing happened

    Edit: Got it to work...Thanks Smp2 :)
  10. Fixed :)
    Open your inventory, hover the item and right click it
  11. Thanks ItsMematheus, just got it too, lol
  12. Sorry full instructions wouldnt fit as a tooltip, but has to be with inventory open in order to have it also be usable at same time.

    Tried to make it where you can drag it on to the slot, but couldnt get it to work, but its coded in a way we can try to make that way work too.
    607 and Blackstone71 like this.
  13. Congrats Chickeneer, and thank you and Aikar for the coding. Everyone have fun.
  14. Does candy drop from Cave spiders?
  15. Code:
    if (!EmpireConfig.get().getBoolean("halloween", false)) return;
    
    final LootPool.LootTable loot = SurvivalItemDrops.mobDrops;
    loot.put(EntityType.CREEPER, LootPool(LootItem(25, PromoItems.CREEPER_CANDY)));
    loot.put(EntityType.ZOMBIE, LootPool(LootItem(25, PromoItems.ZOMBIE_CANDY)));
    loot.put(EntityType.SPIDER, LootPool(LootItem(25, PromoItems.SPIDER_CANDY)));
    loot.put(EntityType.SKELETON, LootPool(LootItem(25, PromoItems.SKELETON_CANDY)));
    loot.put(EntityType.ENDERMAN, LootPool(LootItem(25, PromoItems.ENDER_CANDY)));
    Yep :)
  16. Cool! Loving the random mobs with pumpkin heads. Thank you from the quick response.
  17. You assume it's a given that CAVESPIDER (or whatever) is a subclass of SPIDER, and therefore inherits its information. You might as well be saying, "Well, a cave spider looks like a spider, doesn't it?". Unless I'm missing something here. :p
  18. nah cave spiders are excluded due to them being from spawners and easier to farm.
  19. Oh, lol, okay, that makes more sense.