Jump to content
  • 0

Problem Mana Potion in pvp


skuzajlc

Question

I looked in the skills I've done everything and still does not work I can not even something I was doing in Java compile nothing further will not work in pvp  you will me help?

 

<skill id="10001" levels="1" name="Custom Mana Potion"> xml skills

<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="300" />

<set name="skillType" val="MANAHEAL" />

<set name="target" val="TARGET_SELF" />

<cond msgId="113" addName="1">

<player flyMounted="False" />

</cond>

 

<skill id="10001" levels="1" name="Custom Mana Potion"> xml items

<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="300" />

<set name="skillType" val="MANAHEAL" />

<set name="target" val="TARGET_SELF" />

<cond msgId="113" addName="1">

<player flyMounted="False" />

</cond>

Link to comment
Share on other sites

Recommended Posts

  • 0

You want to cant use mana pots on pvp?

go to

game\data\scripts\handlers\itemhandlers

 

and

 

-if (!Config.L2JMOD_ENABLE_MANA_POTIONS_SUPPORT )
+if (!Config.L2JMOD_ENABLE_MANA_POTIONS_SUPPORT || playable.getPvpFlag() != 0)

Link to comment
Share on other sites

  • 0

You want to cant use mana pots on pvp?

go to

game\data\scripts\handlers\itemhandlers

 

and

 

-if (!Config.L2JMOD_ENABLE_MANA_POTIONS_SUPPORT )
+if (!Config.L2JMOD_ENABLE_MANA_POTIONS_SUPPORT || playable.getPvpFlag() != 0)

 

I use it as potion writes something like that just now before this there was no nothing happened ? xD

 

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

# 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

 

if (!Config.L2JMOD_ENABLE_MANA_POTIONS_SUPPORT || playable.getPvpFlag() != 0)

{

playable.sendPacket(SystemMessage.getSystemMessage(SystemMessageId.NOTHING_HAPPENED));

return;

}

super.useItem(playable, item, forceUse);

 

Link to comment
Share on other sites

  • 0

I use it as potion writes something like that just now before this there was no nothing happened ? xD

I can't understand a single word... :(

Do you have any english speaker friend? >_< Or if someone reads this topic pls translate

 

Edit: Do you mean that it worked but you want a custom sendMessage() instead of NOTHING_HAPPENED systemmessage?

 

Link to comment
Share on other sites

  • 0

I can't understand a single word... :(

Do you have any english speaker friend? >_< Or if someone reads this topic pls translate

 

i cant use mana again writes nothing happened I use it as potion

Link to comment
Share on other sites

  • 0

s5j7.png

 

Uploaded with ImageShack.us

 

is me invul off no work for pvp mana potion ....

 

/*

* This program is free software: you can redistribute it and/or modify it under

* the terms of the GNU General Public License as published by the Free Software

* Foundation, either version 3 of the License, or (at your option) any later

* version.

*

* This program is distributed in the hope that it will be useful, but WITHOUT

* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS

* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more

* details.

*

* You should have received a copy of the GNU General Public License along with

* this program. If not, see <http://www.gnu.org/licenses/>.

*/

package handlers.itemhandlers;

 

import com.l2jserver.Config;

import com.l2jserver.gameserver.model.L2ItemInstance;

import com.l2jserver.gameserver.model.actor.L2Playable;

import com.l2jserver.gameserver.network.SystemMessageId;

import com.l2jserver.gameserver.network.serverpackets.SystemMessage;

 

public class ManaPotion extends ItemSkills

{

/**

*

* @see com.l2jserver.gameserver.handler.IItemHandler#useItem(com.l2jserver.gameserver.model.actor.L2Playable, com.l2jserver.gameserver.model.L2ItemInstance, boolean)

*/

@Override

public void useItem(L2Playable playable, L2ItemInstance item, boolean forceUse)

{

if (!Config.L2JMOD_ENABLE_MANA_POTIONS_SUPPORT || playable.getPvpFlag() != 0)

{

playable.sendPacket(SystemMessage.getSystemMessage(SystemMessageId.NOTHING_HAPPENED));

return;

}

super.useItem(playable, item, forceUse);

}

}

Link to comment
Share on other sites

  • 0

remove the "|| playable.getPvpFlag() != 0"... I told you that coz I understooth the inverse...

 

 

if doesn't work just try to remove all

if (!Config.L2JMOD_ENABLE_MANA_POTIONS_SUPPORT || playable.getPvpFlag() != 0)

      {

        playable.sendPacket(SystemMessage.getSystemMessage(SystemMessageId.NOTHING_HAPPENED));

        return;

      }

Link to comment
Share on other sites

  • 0

be mortal and not invisible and will work  :rage: ?  :not bad:

 

was checking all no is work

 

zrpr.jpg

 

Uploaded with ImageShack.us

 

if (!Config.L2JMOD_ENABLE_MANA_POTIONS_SUPPORT || playable.getPvpFlag() != 0)

      {

        playable.sendPacket(SystemMessage.getSystemMessage(SystemMessageId.NOTHING_HAPPENED));

        return;

      } is removed ....

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.


×
×
  • Create New...