Jump to content
  • 0

Question

Posted

Mana Potion not working l2jserver last rev

 

# ---------------------------------------------------------------------------

# Mana Drugs/Potions

# ---------------------------------------------------------------------------

# This option will enable core support for:

# Mana Drug (item ID 726), using skill ID 10000.

# Mana Potion (item ID 728), using skill ID 10001.

EnableManaPotionSupport = True

 

HpRegenMultiplier = 150

MpRegenMultiplier = 400

CpRegenMultiplier = 150

 

when i use mana potion it heal me 0 MP

 

why?

 

what is problem?

6 answers to this question

Recommended Posts

  • 0
Posted

go to data/stats/skills/10000-10099.xml then search for the mana potion, and look for the value where it says "100" then change it to whatever you want.

 

restart the server and it should now give whatever you put in there.

  • 0
Posted

MpRegenMultiplier means the regeneration of players hp, mp and cp, not by potion, if you want to increase or decrease the amount of mana healed by the potion, you have to go to the skill (as you see in config, it says 10001):

 

<skill id="10001" levels="1" name="Custom Mana Potion">
	<set name="itemConsumeId" val="728" />
	<set name="itemConsumeCount" val="1" />
	<set name="isPotion" val="true" />
	<set name="magicLvl" val="1" />
	<set name="operateType" val="OP_ACTIVE" />
	<set name="power" val="100" />
	<set name="skillType" val="MANAHEAL" />
	<set name="target" val="TARGET_SELF" />
	<cond msgId="113" addName="1">
		<player flyMounted="False" />
	</cond>
</skill>

 

find this line in the:

<set name="power" val="100" />

Thats the mp amount healed by the potion. Change it to your choice

Guest
This topic is now closed to further replies.
×
×
  • Create New...