Help

Questions and Answers

How do I disable this plugin on a world?

In the config you will see this:

DisabledWorlds: []
#- world1
#- world2
#- world2_nether

If for example, you wanted to disable the plugin on the worlds "CreativeMania" and "CreativeMania_nether" you would change this to

DisabledWorlds:
- creativemania
- creativemania_nether

How do I update existing potions?

Firstly, set

Login: false

to

Login: true

Then change

Storage: false
Check: []
#- BREWING STAND
#- CHEST
#- DISPENSER
#- DROPPER
#- ENDER CHEST
#- FURNACE
#- HOPPER

to

Storage: true
Check:
- BREWING STAND
- CHEST
- DISPENSER
- DROPPER
- ENDER CHEST
- FURNACE
- HOPPER

How do I make regeneration potions slower/faster?

Find the segment of the config which starts with

#|--------------|#
#| Regeneration |#
#|--------------|#

Within here, change the enable to true, then scroll down slightly until you see

  Modifier:
    Enable: false
    HealthTickLevelOne: 50
    HealthAmountevelOne: 1
    HealthTickLevelTwo: 25
    HealthAmountevelTwo: 1

Set the Modifier enable to true, then play around the the TickLevel. There are 20 ticks per second, so if you wanted Regen I to heal 2 hearts every 5 seconds, you would set

    HealthTickLevelOne: 50
    HealthAmountevelOne: 1

to

    HealthTickLevelOne: 100
    HealthAmountevelOne: 4

How do I increase/decrease strength potions?

Find the segment of the config which starts with

#|----------|#
#| Strength |#
#|----------|#

Within here, change the enable to true, then scroll down slightly until you see

  Modifier:
    Enable: false
    LevelOne: 130
    LevelTwo: 260

Set the Modifier enable to true, LevelOne: is the percentage for Strength I & LevelTwo is the percentage for Strength II. So if you wanted Strength I to increase damage by 25% and Strength II to increase damage by 60%, you would change it to

  Modifier:
    Enable: true
    LevelOne: 25
    LevelTwo: 60

How do I increase/decrease weakness potions?

Find the segment of the config (at the very bottom) which starts with

#|----------|#
#| Weakness |#
#|----------|#

Within here, change the enable to true, then scroll down slightly until you see

  Modifier:
    Enable: false
    LevelOne: 0.5

Set the Modifier enable to true, The LevelOne is the amount to decrease, so a value of 1 would decrease by 100% and a value of 0.15 would decrease by a value of 15%. Do not set this higher than 1 else it will break.

So if you wanted weakness to decrease damage by 20%, you would set it to

  Modifier:
    Enable: true
    LevelOne: 0.2

How do I increase/decrease slowness potions?

Find the segment of the config (at the very bottom) which starts with

#|----------|#
#| Slowness |#
#|----------|#

Within here, change the enable to true, then scroll down slightly until you see

  Modifier:
    Enable: false
    LevelOne: 15

Set the Modifier enable to true, The LevelOne is the percentage decrease, so a value of 15 would decrease the players speed by 15% while a value of 100 would decrease the players speed by 100% (freeze them). Going higher than 100 will break this.

So if you wanted to freeze the player, you would change it to

  Modifier:
    Enable: true
    LevelOne: 100

Comments

Posts Quoted:
Reply
Clear All Quotes