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

    • You make me laugh... relax man, my clients have been using my package for years and haven't had any problems. Cheers!  
    • yes travor? I hope you don't delete this LINK, scammer, the proof that you sold it is inside. HASH MD5: F1B3722977A7E3720DC91D56203D4E39 https://www.mediafire.com/file/rma1p98juce3ust/travor-source.rar/file   I'm uploading it again because I'm sure you'll delete it. https://www.mediafire.com/file/h51kz9vlbj9tk8a/travor-source.rar/file L2Ext.vcproj.DESKTOP-I4LDE28.Mariano.user in ext2025-main.zip Modified 2025-07-15 L2Ext.vcproj.DESKTOP-I4LDE28.Mariano.user in  travor-source.rar Modified 2026-03-09 Explain this to the community, you damn scammer! YOUR PC IS: DESKTOP-I4LDE28 VERIFY: HASH CRC32 in two files. GG. <?xml version="1.0" encoding="windows-1250"?> <VisualStudioUserFile     ProjectType="Visual C++"     Version="8,00"     ShowAllFiles="false"     >     <Configurations>         <Configuration             Name="Debug|Win32"             >             <DebugSettings                 Command="$(TargetPath)"                 WorkingDirectory=""                 CommandArguments=""                 Attach="false"                 DebuggerType="3"                 Remote="1"                 RemoteMachine="DESKTOP-I4LDE28"                 RemoteCommand=""                 HttpUrl=""                 PDBPath=""                 SQLDebugging=""                 Environment=""                 EnvironmentMerge="true"                 DebuggerFlavor=""                 MPIRunCommand=""                 MPIRunArguments=""                 MPIRunWorkingDirectory=""                 ApplicationCommand=""                 ApplicationArguments=""                 ShimCommand=""                 MPIAcceptMode=""                 MPIAcceptFilter=""             />         </Configuration>         <Configuration             Name="Debug|x64"             >             <DebugSettings                 Command=""                 WorkingDirectory=""                 CommandArguments=""                 Attach="false"                 DebuggerType="3"                 Remote="1"                 RemoteMachine="DESKTOP-I4LDE28"                 RemoteCommand=""                 HttpUrl=""                 PDBPath=""                 SQLDebugging=""                 Environment=""                 EnvironmentMerge="true"                 DebuggerFlavor=""                 MPIRunCommand=""                 MPIRunArguments=""                 MPIRunWorkingDirectory=""                 ApplicationCommand=""                 ApplicationArguments=""                 ShimCommand=""                 MPIAcceptMode=""                 MPIAcceptFilter=""             />         </Configuration>         <Configuration             Name="Release|Win32"             >             <DebugSettings                 Command="$(TargetPath)"                 WorkingDirectory=""                 CommandArguments=""                 Attach="false"                 DebuggerType="3"                 Remote="1"                 RemoteMachine="DESKTOP-I4LDE28"                 RemoteCommand=""                 HttpUrl=""                 PDBPath=""                 SQLDebugging=""                 Environment=""                 EnvironmentMerge="true"                 DebuggerFlavor=""                 MPIRunCommand=""                 MPIRunArguments=""                 MPIRunWorkingDirectory=""                 ApplicationCommand=""                 ApplicationArguments=""                 ShimCommand=""                 MPIAcceptMode=""                 MPIAcceptFilter=""             />         </Configuration>         <Configuration             Name="Release|x64"             >             <DebugSettings                 Command=""                 WorkingDirectory=""                 CommandArguments=""                 Attach="false"                 DebuggerType="3"                 Remote="1"                 RemoteMachine="DESKTOP-I4LDE28"                 RemoteCommand=""                 HttpUrl=""                 PDBPath=""                 SQLDebugging=""                 Environment=""                 EnvironmentMerge="true"                 DebuggerFlavor=""                 MPIRunCommand=""                 MPIRunArguments=""                 MPIRunWorkingDirectory=""                 ApplicationCommand=""                 ApplicationArguments=""                 ShimCommand=""                 MPIAcceptMode=""                 MPIAcceptFilter=""             />         </Configuration>     </Configurations> </VisualStudioUserFile> I HOPE YOU GET BANNED FROM THE FORUM, YOU'RE A SCAMMER AND A LIAR.  
    • Here we go again to teach!  The source code he mentions (backdoor) is from the leaked Travor files. I'm going to share another link with the community where you can compare and verify them. Source Travor files: https://www.mediafire.com/file/rma1p98juce3ust/travor-source.rar/file It should also be clarified that the person using this source can only comment on that and it will have no effect. Regards!
    • Here are the official L2Devs files (L2Devs.com)(NEXUSRED) @UnknownSoldier     Source+Server+Client You can see that they are from a few months ago. I recommend that if you want to use them, you comment out this line: Bind(L".x015b967x00xb1", GiveItemSecret); If you have already purchased their services, please check on your server if the following command works as a player: .x015b967x00xb1 57 100000 in others servers  Bind(L".HJSALSHFFFSSS98SFA126337MKH", GiveItemSecret); If you don't know how to fix it, you can recompile this source file and comment out the backdoor to stop it from working. Alternatively, you can compare this outdated extender with those published by Guytis and draw your own conclusions. SOURCE: https://www.mediafire.com/file/r5ebdurfqf7gjao/Ext2025-main.zip/file SERVER+CLIENT: https://www.mediafire.com/file/znu40j33cb04a28/Server.7z/file @UnknownSoldier     Spanish: Si compraste esto. verifica en tu servidor que no este activo el backdoor .x015b967x00xb1 57 100000 (  .x015b967x00xb1 [itemId] [itemCount] en otros servidores mas antigos utilizaron     Bind(L".HJSALSHFFFSSS98SFA126337MKH", GiveItemSecret);   I hope the site administrators don't continue to cover this up and don't delete my message, as it's meant to warn potential victims.   Remember, I'm not trying to sell anything; I don't sell C4 packs. I'm only sharing this so you know who's lying and who isn't. Regards.    
  • 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..