Jump to content
  • 0

MaNa Potion Problem


Question

12 answers to this question

Recommended Posts

  • 0
Posted

<?xml version="1.0" encoding="UTF-8"?>

<list>

<skill id="10000" levels="1" name="Custom Mana Drug">

<set name="itemConsumeId" val="726" />

<set name="itemConsumeCount" val="1" />

<set name="buffDuration" val="1" />

<set name="isPotion" val="true" />

<set name="magicLvl" val="1" />

<set name="operateType" val="OP_ACTIVE" />

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

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

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

<player flyMounted="False" />

</cond>

<for>

<effect count="3" name="ManaHealOverTime" time="5" val="1.5" stackOrder="1.5" stackType="mp_recover" />

</for>

</skill>

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

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

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

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

<player flyMounted="False" />

</cond>

</skill>

</list>

  • 0
Posted

<?xml version="1.0" encoding="UTF-8"?>

<list>

<skill id="10000" levels="1" name="Custom Mana Drug">

<set name="itemConsumeId" val="726" />

<set name="itemConsumeCount" val="1" />

<set name="buffDuration" val="1" />

<set name="isPotion" val="true" />

<set name="magicLvl" val="1" />

<set name="operateType" val="OP_ACTIVE" />

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

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

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

<player flyMounted="False" />

</cond>

<for>

<effect count="3" name="ManaHealOverTime" time="5" val="1.5" stackOrder="1.5" stackType="mp_recover" />

</for>

</skill>

<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="5000" /> --< για το πόσο θα γεμίζει

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

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

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

<player flyMounted="False" />

</cond>

</skill>

</list>

  • 0
Posted

pare auto , perase to kai vale oso 8es na anevazei

 

Index: L2JBrasil_CORE/java/config/L2JBrasil.properties
===================================================================
--- L2JBrasil_CORE/java/config/L2JBrasil.properties	(revision 1459)
+++ L2JBrasil_CORE/java/config/L2JBrasil.properties	(revision 1460)
@@ -181,6 +181,11 @@
# Default : True
AltOlySameIP = True

+#----------------------------------------#
+# Mana Potion MP Regeneration 		     #
+#----------------------------------------#
+ManaPotionMPRes = 200
+
#--------------------------------------------------------------- 
#  Item Configurations                                         - 
#---------------------------------------------------------------
Index: L2JBrasil_CORE/java/com/it/br/Config.java
===================================================================
--- L2JBrasil_CORE/java/com/it/br/Config.java	(revision 1459)
+++ L2JBrasil_CORE/java/com/it/br/Config.java	(revision 1460)
@@ -610,6 +610,7 @@
     public static boolean ALLOW_ARCHERS_WEAR_HEAVY; 
     public static boolean ALLOW_SAME_IP_NOT_GIVE_PVP_POINT;
     public static boolean ALT_OLY_SAME_IP; 
+    public static int MANA_POTION_RES;
     public static boolean RESTORE_EFFECTS_ON_SUBCLASS_CHANGE;
     public static boolean SHOW_WELCOME_HTML_ON_PLAYER_LOGIN; 
     public static boolean SHOW_WELCOME_PM;
@@ -1036,6 +1037,7 @@
               NOBLE_STATUS_NEEDED_TO_USE_HERO_ITEM = Boolean.parseBoolean(L2JBrasil.getProperty("NobleStatusNeededToUseHeroItem", "True"));
               ALLOW_SAME_IP_NOT_GIVE_PVP_POINT = Boolean.parseBoolean(L2JBrasil.getProperty("AllowSameIPDontGivePvPPoint", "False")); 
               ALT_OLY_SAME_IP = Boolean.parseBoolean(L2JBrasil.getProperty("AltOlySameIp", "True"));
+              MANA_POTION_RES = Integer.parseInt(L2JBrasil.getProperty("ManaPotionMPRes", "200"));
               ANNOUNCE_ALL_KILL = Boolean.parseBoolean(L2JBrasil.getProperty("AnnounceAllKill", "False")); // Get the AnnounceAllKill, AnnouncePvpKill and AnnouncePkKill values
               if ( !ANNOUNCE_ALL_KILL )
               {
Index: L2JBrasil_CORE/java/com/it/br/gameserver/handler/itemhandlers/Potions.java
===================================================================
--- L2JBrasil_CORE/java/com/it/br/gameserver/handler/itemhandlers/Potions.java	(revision 1459)
+++ L2JBrasil_CORE/java/com/it/br/gameserver/handler/itemhandlers/Potions.java	(revision 1460)
@@ -21,6 +21,7 @@
import java.util.logging.Level;
import java.util.logging.Logger;

+import com.it.br.Config;
import com.it.br.gameserver.ThreadPoolManager;
import com.it.br.gameserver.datatables.SkillTable;
import com.it.br.gameserver.handler.IItemHandler;
@@ -33,6 +34,8 @@
import com.it.br.gameserver.model.entity.TvTEvent;
import com.it.br.gameserver.network.SystemMessageId;
import com.it.br.gameserver.network.serverpackets.ActionFailed;
+import com.it.br.gameserver.network.serverpackets.MagicSkillUser;
+import com.it.br.gameserver.network.serverpackets.StatusUpdate;
import com.it.br.gameserver.network.serverpackets.SystemMessage;

/**
@@ -127,10 +130,20 @@
				res = usePotion(activeChar, 2003, 1); 
				break;
			case 728: 
-				res = usePotion(activeChar, 2005, 1);
-				break;
+			{
+				activeChar.setCurrentMp(Config.MANA_POTION_RES + activeChar.getCurrentMp());
+				StatusUpdate su = new StatusUpdate(activeChar.getObjectId());
+				su.addAttribute(StatusUpdate.CUR_MP, (int) activeChar.getCurrentMp());
+				activeChar.sendPacket(su);
+				MagicSkillUser MSU = new MagicSkillUser(activeChar, activeChar, 2005, 1, 0, 0);
+				activeChar.broadcastPacket(MSU);
+				SystemMessage sm = new SystemMessage(SystemMessageId.USE_S1);
+				sm.addItemName(itemId);
+				activeChar.sendPacket(sm);
+				activeChar.destroyItem("Consume", item.getObjectId(), 1, null, false);
+			}
+				return;

-
			case 65: // red_potion, xml: 2001
				res = usePotion(activeChar, 2001, 1);
				break;

  • 0
Posted

nai...L2j Server Rev 7669 afto exw

pigene sto guide tou extreme dwarf , einai kai sticky , ma8e compile

 

ftiakse to pack s apo tn arxi , perna osa fix kai mods 8es kai 8a eisai coble

 

me pre pack dn mporeis na kaneis tpt

Guest
This topic is now closed to further replies.


  • Posts

    • 🏰 Clan Donations System – Power Through Unity This system allows clan members to support their clan directly through donations, turning contribution into strength.   How it works: Every donation made by a clan member is automatically listed in the clan donation panel. Each donation is permanently linked to the clan — no loss, no reset. The Clan Leader manages rewards manually for full transparency.   🎁 Clan Donation Rewards For every donation: The clan receives 5% Real Money or 10% Donate Coins (Leader chooses how the reward is given)   📌 After the reward is delivered, the donation is marked as PAID in the system. 🧾 Full Transparency Player name Donation amount Reward value (Real / Donate Coins) Date & status (Pending / Paid)   Everything is visible. Everything is tracked. Nothing is forgotten.   ⚔️ Support your clan. Strengthen your alliance. Power is built — not given.   https://www.l2dead.com/ https://discord.gg/TGnATuZmdt
    • up  corrected some retail crashes and hooked some new memory adresses that were missing  fix some missing retail behaviors on some recipes , you can also get the server as c4 with fixed scripts fully retail  what has been done to the c4  ( client is already configured) totally fixed npcposes  totally fixed raidbosses and minions bugged quests are fixed (known) a lot of recipes that were wrong  wrong values in several stats and corrected hero weapons behaviors/atk range
    • ποιο ειναι αρχαιο ακριβως? εκανες τον κοπο να ανοιξεις τα λινκς που εστειλα? 
    • Rates: xp45x / sp50x / adena50x (all adena is divided by 100/all shops prices too) Server: Full Official interlude server  with custom modifications Gameplay: l2Gold weapons - jewels, Buffs 1 hour, rebirth, No class change quests, increased movement speed on all classes   Download patch here: https://mega.nz/file/oZdG2KTa#1uTYSyEkNQV9U0Zxj-KLDE88mLj4pzQJZSYs2k3tpzo   Our server is waiting for all Lineage 2 fans who want to relive the good old days. This server is non-profit and fully dedicated to the community. There is no corruption, no pay-to-win, and no hidden agendas—just pure classic L2 fun.
  • Topics

×
×
  • Create New...

Important Information

This community uses essential cookies to function properly. Non-essential cookies and third-party services are used only with your consent. Read our Privacy Policy and We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue..