You are eligible to receive the following supplemental magic:
-Levels 6-75: Wind Walk
-Levels 6-75: Shield
-Levels 6-75: Magic Barrier
-Levels 6-75: Bless the Body (Fighter), Bless the Soul (Wizard)
-Levels 6-75: Vampiric Rage (Fighter), Acumen (Wizard)
-Levels 6-75: Regeneration (Fighter), Concentration (Wizard)
-Levels 6-75: Haste (effect increases after level 40), Empower (Wizard)
+Levels 6-40: Wind Walk
+Levels 6-40: Shield
+Levels 6-40: Magic Barrier
+Levels 6-40: Bless the Body (Fighter), Bless the Soul (Wizard)
+Levels 6-40: Vampiric Rage (Fighter), Acumen (Wizard)
+Levels 6-40: Regeneration (Fighter), Concentration (Wizard)
+Levels 6-40: Haste, Empower (Wizard)
Levels 16-34: Life Cubic
\ No newline at end of file
diff --git a/L2J_Mobius_Classic/dist/game/data/html/default/SupportMagicHighLevel.htm b/L2J_Mobius_Classic/dist/game/data/html/default/SupportMagicHighLevel.htm
index 95761e33ef..306270bb1a 100644
--- a/L2J_Mobius_Classic/dist/game/data/html/default/SupportMagicHighLevel.htm
+++ b/L2J_Mobius_Classic/dist/game/data/html/default/SupportMagicHighLevel.htm
@@ -1,3 +1,3 @@
-Support magic is only available for characters who are level 75 or below.
+Support magic is only available for characters who are level 40 or below.
\ No newline at end of file
diff --git a/L2J_Mobius_Classic/dist/game/data/html/default/SupportMagicServitor.htm b/L2J_Mobius_Classic/dist/game/data/html/default/SupportMagicServitor.htm
index b764cc0e6d..872dd4dd6d 100644
--- a/L2J_Mobius_Classic/dist/game/data/html/default/SupportMagicServitor.htm
+++ b/L2J_Mobius_Classic/dist/game/data/html/default/SupportMagicServitor.htm
@@ -1,6 +1,6 @@
Your servitor is eligible to receive the supplemental magic listed below. These spells do not benefit pets.
Eligibility is determined by the master's level.
-Levels 6-75: Wind Walk, Shield, Magic Barrier, Bless the Body, Bless the Soul, Vampiric Rage, Acumen, Regeneration, Concentration, Haste (increased effect after level 40), Empower
+Levels 6-40: Wind Walk, Shield, Magic Barrier, Bless the Body, Bless the Soul, Vampiric Rage, Acumen, Regeneration, Concentration, Haste, Empower
\ No newline at end of file
diff --git a/L2J_Mobius_Classic/dist/game/data/scripts/handlers/bypasshandlers/SupportMagic.java b/L2J_Mobius_Classic/dist/game/data/scripts/handlers/bypasshandlers/SupportMagic.java
index b3e8b763fd..67fb2509f7 100644
--- a/L2J_Mobius_Classic/dist/game/data/scripts/handlers/bypasshandlers/SupportMagic.java
+++ b/L2J_Mobius_Classic/dist/game/data/scripts/handlers/bypasshandlers/SupportMagic.java
@@ -72,10 +72,10 @@ public class SupportMagic implements IBypassHandler
// Levels
private static final int LOWEST_LEVEL = 6;
- private static final int HIGHEST_LEVEL = 75;
+ private static final int HIGHEST_LEVEL = 40;
private static final int CUBIC_LOWEST = 16;
private static final int CUBIC_HIGHEST = 34;
- private static final int HASTE_LEVEL_2 = 40;
+ private static final int HASTE_LEVEL_2 = HIGHEST_LEVEL + 1; // disabled
@Override
public boolean useBypass(String command, L2PcInstance activeChar, L2Character target)