1.5.2 b8

Details

  • Filename
    Mobs.jar
  • Uploaded by
  • Uploaded
    Jun 28, 2013
  • Size
    115.79 KB
  • Downloads
    743
  • MD5
    0fe27b81d4d7f6917e23b1927fd62c28

Supported Bukkit Versions

  • CB 1.5.2-R1.0

Changelog

Added

  • player_command event
    • This is called when the player types a command, but before the command is executed.
    • You can use any player conditions to check whether to act on the event or not
    • Works with / commands and (or /) commands
  • matching conditions (if_(not_)command, if_command_args)
  • Mob inventory actions
    • set helmet, set chestplate, set leggings, set boots set item_in_hand
    • Note that setting item_in_hand on a player will overwrite whatever he/she is holding, and the selected item in the hotbar.
  • set inv_slot
    • Allows any of the player's slots to be set (replacing what was in there)
    • see here for the slot numbers
    • usage - action="set" sub="inv_slot" inv_slot="9" item="35" amount="64"
  • set current_inv_slot
    • selects an item from the player's hotbar. Possible values are o to 8 (inv_slot="0")
  • matching conditions for all of the above (if_(not_)helmet, if_(not_)chestplate, if_(not_)leggings, if_(not_)boots, if_current_inv_slot
  • every targets
    • every = all mobs, or every_player, every_pig, etc.

Changed

  • item conditions can now use names as well as numbers