Posted the original version these on
http://www.minecraft...2#entry18816142
Would be nice to have the ability to target mobs.
Creatures (Passive, Hostile, Player):
@nc Nearest
@ac All
@rc Random
@fc Farthest
Passive (Animals, Villagers, etc)
@np Nearest
@ap All
@rp Random
@fp Farthest
Hostile (Skeletons, Zombies, Etc)
@nh Nearest
@ah All
@rh Random
@fh Farthest
EntityNames (Specify an Entity name, or comma delimited list of entity names. Eg. 'Cow,Sheep,Chicken')
@n'EntityNames' Nearest
@a'EntityNames' All
@r'EntityNames' Random
@f'EntityNames' Farthest
/equip (target) (item | north | south | west | east | up | down)
If the item is equipment, it attempts to equip it on the target in its logical spot, causing whatever is equipped in that slot to go into inventory if it has one and dropped if it doesn't or doesn't have a free spot.
Extra Info: If a direction is chosen, it will choose the first valid item from adjacent container on that side and apply it to the target without consuming it.
/apply (target) (item | north | south | west | east | up | down)
If the item is a consumable item (food, potion, not thrown item), it applies the effects of it instantly to the targets.
Extra Info: If a direction is chosen, it will choose the first valid item from adjacent container on that side and apply it to the target without consuming it.
/give (target) (item | north | south | west | east | up | down)
Gives an item to the target. If the target is a NPC, it will attempt to put it in its hand
Extra Info: If a direction is chosen, it will choose the first valid item from adjacent container on that side and apply it to the target without consuming it.
/spawner state (on | 1 | off | 0 | toggle) (north | south | west | east | up | down)
Will set the state of a spawner, preventing it from acting normally. If a direction is not specified, targets all adjacent spawners (if command block), or the targeted spawner (if player).
/spawner set (entityID) (north | south | west | east | up | down)
Overwrites the entity of a spawner. If a direction is not specified, targets all adjacent spawners (if command block), or the targeted spawner (if player).
/spawner trigger (north | south | west | east | up | down)
Triggers a spawner to prematurely spawn. If a direction is not specified, targets all adjacent spawners (if command block), or the targeted spawner (if player).
Deyoni posted the original version these on
http://www.minecraft.../#entry18116528 I modified them slightly.
/spawn (entityID) (x) (y) (z) (number to spawn)
Spawns an entity. Spawns 1 if a number is not specified.
/block place (block ID) (x) (y) (z)
Places a block at the specified coordinates with a block matching the block ID.
/block set (block ID) (x) (y) (z)
Replaces a block at the specified coordinates with a block matching the block ID. Can be used to remove a block by setting 0 as the block ID.
Note on above, would be nice to be able to do a set of coordinates. Perhaps using {[x,y,z],[x,y,z]} format in order to target multiple locations.