I cant figure out how to get a knockback 100 bow in 1.8.9

3

2 Answers

/enchant does not allow for enchantments above their normal maximum level to be applied, so you will need to use a command that lets you specify NBTData, such as /give:

/give @p minecraft:bow 1 0 {ench:[{id:19,lvl:100}]}

id:19 is the ID for the knockback enchantment, and lvl:100 makes the enchantment level 100 as you wanted it. Together, they are a compound tag in the ench:[] list of the bow.

2

You normally can't. Press your chat key while holding a bow and type in:

/enchant @p knockback 100

or something like that. It's considered cheating though, and can only be done in a cheats-enabled world.

1