kernitus / BukkitOldCombatMechanics

Spigot plugin to configure combat mechanics from 1.9 onwards
https://www.spigotmc.org/resources/19510/
Mozilla Public License 2.0
160 stars 70 forks source link

Old PVP #741

Closed Souheii closed 1 week ago

Souheii commented 1 week ago

Hi ! Could you tell me how to make sure that players are forced into old mode pvp?

SrBedrock commented 1 week ago

@Souheii inside config.yml

modesets:
  old:
    - "disable-attack-cooldown"
    - "disable-sword-sweep"
    - "disable-offhand"
    - "old-tool-damage"
    - "sword-blocking"
    - "shield-damage-reduction"
    - "old-golden-apples"
    - "old-player-knockback"
    - "old-player-regen"
    - "old-armour-strength"
    - "old-potion-effects"
    - "old-critical-hits"
  new: [ ]

worlds:
  world: [ "old" ]
  world_nether: [ "old" ]
  world_the_end: [ "old" ]
  # old_world: [ "old" ]
  # brave_new_world: [ "old" ]
Souheii commented 1 week ago

Thanks you !!