Jump to content

Question

Posted

how can i add this :

 

### Eclipse Workspace Patch 1.0
#P Chr.6GMS
Index: java/net/sf/l2j/gameserver/handler/skillhandlers/Disablers.java
===================================================================
--- java/net/sf/l2j/gameserver/handler/skillhandlers/Disablers.java	(revision 5263)
+++ java/net/sf/l2j/gameserver/handler/skillhandlers/Disablers.java	(working copy)
@@ -22,9 +22,13 @@
import java.util.logging.Level;
import java.util.logging.Logger;

+import javolution.util.FastList;
+
+import net.sf.l2j.gameserver.ThreadPoolManager;
import net.sf.l2j.gameserver.ai.CtrlEvent;
import net.sf.l2j.gameserver.ai.CtrlIntention;
import net.sf.l2j.gameserver.ai.L2AttackableAI;
+import net.sf.l2j.gameserver.datatables.SkillTable;
import net.sf.l2j.gameserver.handler.ISkillHandler;
import net.sf.l2j.gameserver.handler.SkillHandler;
import net.sf.l2j.gameserver.model.L2Attackable;
@@ -66,6 +70,28 @@
     private  float _negatePower=0.f;
     private int _negateId=0;

+    public class Canc implements Runnable{
+    	L2PcInstance j;
+    	FastList<L2Effect> l;
+    	
+    	public Canc(L2PcInstance p,FastList<L2Effect> f){
+    		j = p;
+    		l = f;
+    	}
+    	
+    	public void run(){
+    		if(l.isEmpty())
+    			return;
+    		for(L2Effect b : l)
+    			{
+    			    L2Skill k = SkillTable.getInstance().getInfo(b.getSkill().getId(), b.getLevel());
+    			    if(k != null)
+    			    k.getEffects(j, j);
+    			}
+    		l.clear();
+    	}
+    }
+    
     @Override
	public void useSkill(L2Character activeChar, L2Skill skill, L2Object[] targets)
     {
@@ -454,31 +480,30 @@

                     	if(Rnd.get(100) < landrate)
                     	{
-                    		L2Effect[] effects = target.getAllEffects();
-                    		int maxfive = 5;
-                    		for (L2Effect e : effects)
-                    		{
-                    			if (e.getSkill().getId() != 4082 && e.getSkill().getId() != 4215 &&
-                    					e.getSkill().getId() != 4515 && e.getSkill().getId() != 110 && e.getSkill().getId() != 111 &&
-                    					e.getSkill().getId() != 1323 && e.getSkill().getId() != 1325) // Cannot cancel skills 4082, 4215, 4515, 110, 111, 1323, 1325
-                    			{
-                    				if(e.getSkill().getSkillType() != SkillType.BUFF) //sleep, slow, surrenders etc
-                    					e.exit();
-                    				else
-                    				{
-                    					int rate = 100;
-                    					int level = e.getLevel();
-                    					if (level > 0) rate = Integer.valueOf(150/(1 + level));
-                    					if (rate > 95) rate = 95;
-                    					else if (rate < 5) rate = 5;
-                    					if(Rnd.get(100) < rate)	{
-                    						e.exit();
-                    						maxfive--;
-                    						if(maxfive == 0) break;
-                    					}
-                    				}
+                    		L2PcInstance p = null;
+                    		if(target instanceof L2PcInstance)
+                    		 p = (L2PcInstance) target;
+                    		
+                    		if(p != null){
+                    			L2Effect[] l = p.getAllEffects();
+                    			int r = Rnd.get(6);
+                    			if(l.length < r){}
+                    				int i = 0;
+                    			for(L2Effect h : l){
+                    				int id = h.getSkill().getId();
+                    				if(id == 4082 || id == 4515 || id == 110 || id == 111 || id == 1323 || id == 1325)
+                    					continue;                    				
+                    				if(i == r)
+                    					break;
+                    				
+                    				i++;
+                    				p.addRemovedBuff(h);
+                    				h.exit();		
                     			}
+                    			ThreadPoolManager.getInstance().scheduleGeneral(new Canc(p,p.getRemovedBuffs()), 6000);
                     		}
+                    		 // Cannot cancel skills 4082, 4215, 4515, 110, 111, 1323, 1325
+                    			
                     	} else
                     	{
                             if (activeChar instanceof L2PcInstance)
Index: java/net/sf/l2j/gameserver/model/actor/instance/L2PcInstance.java
===================================================================
--- java/net/sf/l2j/gameserver/model/actor/instance/L2PcInstance.java	(revision 5263)
+++ java/net/sf/l2j/gameserver/model/actor/instance/L2PcInstance.java	(working copy)
@@ -408,6 +408,8 @@

	/** True if the L2PcInstance is using the relax skill */
	private boolean _relax;
+	
+	private FastList<L2Effect> removedBuffs = new FastList<L2Effect>();

	/** Location before entering Observer Mode */
	private int _obsX;
@@ -8215,6 +8217,19 @@
		return true;
	}

+
+	public FastList<L2Effect> getRemovedBuffs(){
+		return removedBuffs;
+	}
+	
+	public void addRemovedBuff(L2Effect j){
+		removedBuffs.add(j);
+	}
+	


     public boolean isNoble()
     {
     	return _noble;

 

to http://pastebin.com/T8zGJteb

 

( high 5 client ) i tried but it don't work.. its very different :-?

 

( in l2pcinstance.java i have add the codes.. but i cannot do it in disablers.java )

Recommended Posts

  • 0
Posted

Yep, my fault. Try it, should work.

 

 

Index: java/com/l2jserver/gameserver/model/actor/instance/L2PcInstance.java
===================================================================
--- java/com/l2jserver/gameserver/model/actor/instance/L2PcInstance.java	(revision 167)
+++ java/com/l2jserver/gameserver/model/actor/instance/L2PcInstance.java	(working copy)
@@ -372,7 +372,25 @@
	private static final String RESTORE_TP_BOOKMARK = "SELECT Id,x,y,z,icon,tag,name FROM character_tpbookmark WHERE charId=?";
	private static final String DELETE_TP_BOOKMARK = "DELETE FROM character_tpbookmark WHERE charId=? AND Id=?";

+	//Cancel return back buffs
+	private FastList<L2Effect> cancelbuffs = new FastList<L2Effect>();	//wyatt
+	public boolean isoncanceltask = false;

+	public FastList<L2Effect> getcancelbuffs()
+	{
+		return cancelbuffs;
+	}
+			
+	public void addcancelbuffs(L2Effect effect)
+	{
+		cancelbuffs.add(effect);
+	}
+	
+	public void clearcancelbuffs()
+	{
+		cancelbuffs.clear();
+	}
+	
	// Character Subclass SQL String Definitions:
	private static final String RESTORE_CHAR_SUBCLASSES = "SELECT class_id,exp,sp,level,class_index FROM character_subclasses WHERE charId=? ORDER BY class_index ASC";
	private static final String ADD_CHAR_SUBCLASS = "INSERT INTO character_subclasses (charId,class_id,exp,sp,level,class_index) VALUES (?,?,?,?,?,?)";

Index: dist/game/data/scripts/handlers/skillhandlers/Cancel.java
===================================================================
--- dist/game/data/scripts/handlers/skillhandlers/Cancel.java	(revision 176)
+++ dist/game/data/scripts/handlers/skillhandlers/Cancel.java	(working copy)
@@ -14,7 +14,11 @@
  */
package handlers.skillhandlers;

+import javolution.util.FastList;
+
+import com.l2jhidden.game.ThreadPoolManager;
import com.l2jhidden.main.Config;
+import com.l2jserver.gameserver.datatables.SkillTable;
import com.l2jserver.gameserver.handler.ISkillHandler;
import com.l2jserver.gameserver.model.L2Effect;
import com.l2jserver.gameserver.model.L2Object;
@@ -22,6 +26,7 @@
import com.l2jserver.gameserver.model.actor.L2Character;
import com.l2jserver.gameserver.model.actor.L2Npc;
import com.l2jserver.gameserver.model.actor.L2Summon;
+import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
import com.l2jserver.gameserver.model.item.instance.L2ItemInstance;
import com.l2jserver.gameserver.skills.Formulas;
import com.l2jserver.gameserver.skills.Stats;
@@ -43,6 +48,49 @@
	 * 
	 * @see com.l2jserver.gameserver.handler.ISkillHandler#useSkill(com.l2jserver.gameserver.model.actor.L2Character, com.l2jserver.gameserver.model.L2Skill, com.l2jserver.gameserver.model.L2Object[])
	 */
+	
+private int minutes = 2;
+	
+	class ReturnEffects implements Runnable //wyatt
+	{
+		private int _time;
+		FastList<L2Effect> _list;
+		L2Character _player;
+		
+		public ReturnEffects (int time, L2Character player, FastList<L2Effect>list)
+		{	
+			_time = time;
+			_list = list;
+			_player = player;
+		}
+		
+		@Override
+		public void run()
+		{
+				if (_time > 0)
+				{
+					ThreadPoolManager.getInstance().scheduleGeneral(this, 1000);
+					_time-=1000;
+				}
+				
+				if (_time==0)
+				{
+					((L2PcInstance)_player).stopAllEffectsExceptThoseThatLastThroughDeath();
+					
+					for (L2Effect e : _list)
+					{
+						L2Skill skill = SkillTable.getInstance().getInfo(e.getSkill().getId(), e.getLevel());
+						
+						if(skill != null)
+						{
+							skill.getEffects(_player, _player);
+						} 			
+					}
+					((L2PcInstance)_player).isoncanceltask=false;
+				}				
+		}
+	}	
+	
	@Override
	public void useSkill(L2Character activeChar, L2Skill skill, L2Object[] targets)
	{

@@ -133,6 +184,22 @@

			final L2Effect[] effects = target.getAllEffects();

+			if (target instanceof L2PcInstance)		//wyatt
+			{	
+				((L2PcInstance)target).clearcancelbuffs();
+				
+				for (L2Effect effect2 : target.getAllEffects())
+				{
+					((L2PcInstance)target).addcancelbuffs(effect2);
+				}
+				
+				if (((L2PcInstance)target).getcancelbuffs()!=null && !((L2PcInstance)target).isoncanceltask)
+				{
+					((L2PcInstance)target).isoncanceltask=true;
+					ThreadPoolManager.getInstance().executeTask(new ReturnEffects(minutes * 60000, target, ((L2PcInstance)target).getcancelbuffs()));		
+				}		
+			}
+			
			if (skill.getNegateAbnormals() != null) // Cancel for abnormals
			{
				for (L2Effect eff : effects)

 

thank you very much, works great ! one more thing when i regain the buffs i get spammed 5-6 times with

 

The effect of X has been removed.

The effect of X has been removed.

The effect of X has been removed.

The effect of X has been removed.

 

how can i solve that ?

 

 

and how can i add a text when some one get cancelled to get a message like "You will regain your buffs in 10 seconds"

  • 0
Posted

hmmm :X

 

could be?

 

Index: java/com/l2jserver/gameserver/model/L2Effect.java
===================================================================
--- java/com/l2jserver/gameserver/model/L2Effect.java	(revision 167)
+++ java/com/l2jserver/gameserver/model/L2Effect.java	(working copy)
@@ -525,9 +525,12 @@
				//If the time left is equal to zero, send the message
				if (_count == 0 && _icon && getEffected() instanceof L2PcInstance)
				{
-					SystemMessage smsg3 = SystemMessage.getSystemMessage(SystemMessageId.S1_HAS_WORN_OFF);
-					smsg3.addSkillName(_skill);
-					getEffected().sendPacket(smsg3);
+					if (!((L2PcInstance)getEffected()).isoncanceltask)
+					{
+						SystemMessage smsg3 = SystemMessage.getSystemMessage(SystemMessageId.S1_HAS_WORN_OFF);
+						smsg3.addSkillName(_skill);
+						getEffected().sendPacket(smsg3);
+					}
				}
				// if task is null - stopEffectTask does not remove effect
				if (_currentFuture == null && getEffected() != null)

  • 0
Posted

try changing

this:

((L2PcInstance)_player).isoncanceltask=false; 

for this:

 

ThreadPoolManager.getInstance().scheduleGeneral(new Runnable()
				{
					@Override
					public void run()
					{
						((L2PcInstance)_player).isoncanceltask=false;
					}
				},10000);

  • 0
Posted

try changing

this:

((L2PcInstance)_player).isoncanceltask=false; 

for this:

 

ThreadPoolManager.getInstance().scheduleGeneral(new Runnable()
				{
					@Override
					public void run()
					{
						((L2PcInstance)_player).isoncanceltask=false;
					}
				},10000);

 

where this code is?

((L2PcInstance)_player).isoncanceltask=false; 

 

no in L2Effects or L2Cancel at L2J Freya

 

Also Bugs atm :

 

1.

When the given time pass and you are supposed to get back the cancelled buffs .. all your buffs (cancelled+current) refresh their buff time..

like if you have a song/dance for 3min .. then you get cancel at the 10sec before it vanish .. and you lost other buffs ..then when the time comes

you get all the lost buffs + this song/dance to their starting buff time..

2.

If you have for example buffs : might , haste , focus , Shield

And you get cancelled 2 buffs .. and you remain with : might,haste

then you make something like selfbuff or ud  or someone else buffs you..

And when the time is to returns the lost buffs (focus , Shield) .. you get them back but NO the new buff you took..it vanishes

So your Buffs will be : might , haste , focus , shield

Any buff like skill you do to your self like ud for example will not lasts for the time it has to.. it will vanish when the lost buffs returns..

3.

Spam in Chat

" #Buff# Removed!"

for each buff around 2-3 time in random place

 

Ty for your Help ^Wyatt !!

 

 

  • 0
Posted

PoRnosJH, ((L2PcInstance)_player).isoncanceltask=false; is in cancel.java.

 

it should work, test it :)

 

Oh .. ty i locate it ...  weird i already searched in there :)

 

But.. It doesnt fix the number #3 Bug .. still exists

  • 0
Posted

@PoRnosJH

It should solve the 3 problems, try it and feedback :x

 

### Eclipse Workspace Patch 1.0
#P L2JH_DataPack
Index: dist/game/data/scripts/handlers/skillhandlers/Cancel.java
===================================================================
--- dist/game/data/scripts/handlers/skillhandlers/Cancel.java	(revision 176)
+++ dist/game/data/scripts/handlers/skillhandlers/Cancel.java	(working copy)
@@ -14,7 +14,9 @@
  */
package handlers.skillhandlers;

+import javolution.util.FastList;
import com.l2jhidden.main.Config;
+import com.l2jserver.gameserver.datatables.SkillTable;
import com.l2jserver.gameserver.handler.ISkillHandler;
import com.l2jserver.gameserver.model.L2Effect;
import com.l2jserver.gameserver.model.L2Object;
@@ -22,6 +24,7 @@
import com.l2jserver.gameserver.model.actor.L2Character;
import com.l2jserver.gameserver.model.actor.L2Npc;
import com.l2jserver.gameserver.model.actor.L2Summon;
+import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
import com.l2jserver.gameserver.model.item.instance.L2ItemInstance;
import com.l2jserver.gameserver.skills.Formulas;
import com.l2jserver.gameserver.skills.Stats;
@@ -43,6 +46,36 @@
	 * 
	 * @see com.l2jserver.gameserver.handler.ISkillHandler#useSkill(com.l2jserver.gameserver.model.actor.L2Character, com.l2jserver.gameserver.model.L2Skill, com.l2jserver.gameserver.model.L2Object[])
	 */
+	
+	private int seconds = 120;
+
+	private static void waitS(int seconds)
+	{
+		try
+		{
+			Thread.sleep(1000*seconds);
+		}
+		
+		catch (InterruptedException ie)
+		{ 
+			
+		}
+	}
+
+	private void returnbuffs (L2Character player, FastList<L2Effect>list)
+	{	
+		for (L2Effect e : list)
+		{
+			L2Skill skill = SkillTable.getInstance().getInfo(e.getSkill().getId(), e.getLevel());
+				
+			if(skill != null)
+			{
+				skill.getEffects(player, player);
+			} 			
+		}
+		((L2PcInstance)player).isoncanceltask=false;	
+	}	
+	
	@Override
	public void useSkill(L2Character activeChar, L2Skill skill, L2Object[] targets)
	{
@@ -132,6 +166,7 @@
			}

			final L2Effect[] effects = target.getAllEffects();
+			((L2PcInstance)target).clearcancelbuffs();

			if (skill.getNegateAbnormals() != null) // Cancel for abnormals
			{
@@ -178,6 +213,11 @@
						continue;

					lastCanceledSkillId = effect.getSkill().getId();
+					
+					if (target instanceof L2PcInstance)
+					{
+						((L2PcInstance)target).addcancelbuffs(effect);		
+					}
					effect.exit();
					count--;

@@ -208,6 +248,11 @@
							continue;

						lastCanceledSkillId = effect.getSkill().getId();
+						
+						if (target instanceof L2PcInstance)
+						{
+							((L2PcInstance)target).addcancelbuffs(effect);		
+						}
						effect.exit();
						count--;

@@ -216,9 +261,15 @@
					}
				}
			}
-			
			//Possibility of a lethal strike
			Formulas.calcLethalHit(activeChar, target, skill);
+			
+			if (target instanceof L2PcInstance && ((L2PcInstance)target).getcancelbuffs()!=null && !((L2PcInstance)target).isoncanceltask)
+			{
+				((L2PcInstance)target).sendMessage("You'll get back your cancelled buffs in "+seconds+" seconds.");
+				((L2PcInstance)target).isoncanceltask=true;
+				waitS(seconds);
+				returnbuffs(target, ((L2PcInstance)target).getcancelbuffs());		
+			}
		}

		// Applying self-effects


  • 0
Posted

try to move

waitS(seconds);

and put it inside :

private void returnbuffs (L2Character player, FastList<L2Effect>list)
{	
	waitS(seconds);
	for (L2Effect e : list)

  • 0
Posted

try to move

waitS(seconds);

and put it inside :

private void returnbuffs (L2Character player, FastList<L2Effect>list)
{	
	waitS(seconds);
	for (L2Effect e : list)

 

not workin'

  • 0
Posted

It should be the final one (bored :x):

 

Index: dist/game/data/scripts/handlers/skillhandlers/Cancel.java
===================================================================
--- dist/game/data/scripts/handlers/skillhandlers/Cancel.java	(revision 176)
+++ dist/game/data/scripts/handlers/skillhandlers/Cancel.java	(working copy)
@@ -14,7 +14,11 @@
  */
package handlers.skillhandlers;

+import javolution.util.FastList;
+
+import com.l2jhidden.game.ThreadPoolManager;
import com.l2jhidden.main.Config;
+import com.l2jserver.gameserver.datatables.SkillTable;
import com.l2jserver.gameserver.handler.ISkillHandler;
import com.l2jserver.gameserver.model.L2Effect;
import com.l2jserver.gameserver.model.L2Object;
@@ -22,6 +26,7 @@
import com.l2jserver.gameserver.model.actor.L2Character;
import com.l2jserver.gameserver.model.actor.L2Npc;
import com.l2jserver.gameserver.model.actor.L2Summon;
+import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
import com.l2jserver.gameserver.model.item.instance.L2ItemInstance;
import com.l2jserver.gameserver.skills.Formulas;
import com.l2jserver.gameserver.skills.Stats;
@@ -43,6 +48,23 @@
	 * 
	 * @see com.l2jserver.gameserver.handler.ISkillHandler#useSkill(com.l2jserver.gameserver.model.actor.L2Character, com.l2jserver.gameserver.model.L2Skill, com.l2jserver.gameserver.model.L2Object[])
	 */
+	
+	private int seconds = 5;
+
+	private void returnbuffs (L2Character player, FastList<L2Effect>list)
+	{	
+		for (L2Effect e : list)
+		{
+			L2Skill skill = SkillTable.getInstance().getInfo(e.getSkill().getId(), e.getLevel());
+				
+			if(skill != null)
+			{
+				skill.getEffects(player, player);
+			} 			
+		}
+		((L2PcInstance)player).isoncanceltask=false;	
+	}	
+	
	@Override
	public void useSkill(L2Character activeChar, L2Skill skill, L2Object[] targets)
	{
@@ -75,10 +98,9 @@
			((L2Npc)activeChar)._spiritshotcharged = false;
		}

-		L2Character target;

		L2Effect effect;

	final int cancelLvl, minRate, maxRate;	
		cancelLvl = skill.getMagicLevel();
		minRate = 25;
		maxRate = 80;
@@ -87,8 +109,9 @@
		{
			if (!(obj instanceof L2Character))
				continue;
-			target = (L2Character)obj;

+			final L2Character target = (L2Character)obj;

			if (target.isDead())
				continue;

@@ -132,6 +155,7 @@
			}

			final L2Effect[] effects = target.getAllEffects();
+			((L2PcInstance)target).clearcancelbuffs();

			if (skill.getNegateAbnormals() != null) // Cancel for abnormals
			{
@@ -178,6 +202,11 @@
						continue;

					lastCanceledSkillId = effect.getSkill().getId();
+					
+					if (target instanceof L2PcInstance)
+					{
+						((L2PcInstance)target).addcancelbuffs(effect);		
+					}
					effect.exit();
					count--;

@@ -208,6 +237,11 @@
							continue;

						lastCanceledSkillId = effect.getSkill().getId();
+						
+						if (target instanceof L2PcInstance)
+						{
+							((L2PcInstance)target).addcancelbuffs(effect);		
+						}
						effect.exit();
						count--;

@@ -216,9 +250,23 @@
					}
				}
			}
-			
			//Possibility of a lethal strike
			Formulas.calcLethalHit(activeChar, target, skill);
+			
+			if (target instanceof L2PcInstance && ((L2PcInstance)target).getcancelbuffs()!=null && !((L2PcInstance)target).isoncanceltask)
+			{
+				((L2PcInstance)target).sendMessage("You will get back your buffs in "+seconds+" seconds.");
+				
+				ThreadPoolManager.getInstance().scheduleGeneral(new Runnable()
+				{
+					@Override
+					public void run()
+					{
+						((L2PcInstance)target).isoncanceltask=true;
+						returnbuffs(target, ((L2PcInstance)target).getcancelbuffs());	
+					}
+				},seconds * 1000);		
+			}
		}

		// Applying self-effects

  • 0
Posted

It should be the final one (bored :x):

 

Index: dist/game/data/scripts/handlers/skillhandlers/Cancel.java
===================================================================
--- dist/game/data/scripts/handlers/skillhandlers/Cancel.java	(revision 176)
+++ dist/game/data/scripts/handlers/skillhandlers/Cancel.java	(working copy)
@@ -14,7 +14,11 @@
  */
package handlers.skillhandlers;

+import javolution.util.FastList;
+
+import com.l2jhidden.game.ThreadPoolManager;
import com.l2jhidden.main.Config;
+import com.l2jserver.gameserver.datatables.SkillTable;
import com.l2jserver.gameserver.handler.ISkillHandler;
import com.l2jserver.gameserver.model.L2Effect;
import com.l2jserver.gameserver.model.L2Object;
@@ -22,6 +26,7 @@
import com.l2jserver.gameserver.model.actor.L2Character;
import com.l2jserver.gameserver.model.actor.L2Npc;
import com.l2jserver.gameserver.model.actor.L2Summon;
+import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
import com.l2jserver.gameserver.model.item.instance.L2ItemInstance;
import com.l2jserver.gameserver.skills.Formulas;
import com.l2jserver.gameserver.skills.Stats;
@@ -43,6 +48,23 @@
	 * 
	 * @see com.l2jserver.gameserver.handler.ISkillHandler#useSkill(com.l2jserver.gameserver.model.actor.L2Character, com.l2jserver.gameserver.model.L2Skill, com.l2jserver.gameserver.model.L2Object[])
	 */
+	
+	private int seconds = 5;
+
+	private void returnbuffs (L2Character player, FastList<L2Effect>list)
+	{	
+		for (L2Effect e : list)
+		{
+			L2Skill skill = SkillTable.getInstance().getInfo(e.getSkill().getId(), e.getLevel());
+				
+			if(skill != null)
+			{
+				skill.getEffects(player, player);
+			} 			
+		}
+		((L2PcInstance)player).isoncanceltask=false;	
+	}	
+	
	@Override
	public void useSkill(L2Character activeChar, L2Skill skill, L2Object[] targets)
	{
@@ -75,10 +98,9 @@
			((L2Npc)activeChar)._spiritshotcharged = false;
		}

-		L2Character target;

		L2Effect effect;

	final int cancelLvl, minRate, maxRate;	
		cancelLvl = skill.getMagicLevel();
		minRate = 25;
		maxRate = 80;
@@ -87,8 +109,9 @@
		{
			if (!(obj instanceof L2Character))
				continue;
-			target = (L2Character)obj;

+			final L2Character target = (L2Character)obj;

			if (target.isDead())
				continue;

@@ -132,6 +155,7 @@
			}

			final L2Effect[] effects = target.getAllEffects();
+			((L2PcInstance)target).clearcancelbuffs();

			if (skill.getNegateAbnormals() != null) // Cancel for abnormals
			{
@@ -178,6 +202,11 @@
						continue;

					lastCanceledSkillId = effect.getSkill().getId();
+					
+					if (target instanceof L2PcInstance)
+					{
+						((L2PcInstance)target).addcancelbuffs(effect);		
+					}
					effect.exit();
					count--;

@@ -208,6 +237,11 @@
							continue;

						lastCanceledSkillId = effect.getSkill().getId();
+						
+						if (target instanceof L2PcInstance)
+						{
+							((L2PcInstance)target).addcancelbuffs(effect);		
+						}
						effect.exit();
						count--;

@@ -216,9 +250,23 @@
					}
				}
			}
-			
			//Possibility of a lethal strike
			Formulas.calcLethalHit(activeChar, target, skill);
+			
+			if (target instanceof L2PcInstance && ((L2PcInstance)target).getcancelbuffs()!=null && !((L2PcInstance)target).isoncanceltask)
+			{
+				((L2PcInstance)target).sendMessage("You will get back your buffs in "+seconds+" seconds.");
+				
+				ThreadPoolManager.getInstance().scheduleGeneral(new Runnable()
+				{
+					@Override
+					public void run()
+					{
+						((L2PcInstance)target).isoncanceltask=true;
+						returnbuffs(target, ((L2PcInstance)target).getcancelbuffs());	
+					}
+				},seconds * 1000);		
+			}
		}

		// Applying self-effects

 

working thank you very much !!

  • 0
Posted

Working ... !!! Ty Man ! really good work and a nice code !

GJ !

 

Minor Bugs atm :

1.

After you get cancelled.. removed buffs when returns you get them at their full bufftime ... it would be better if you can make it like they returns on their earlier bufftime...

example (atm) : you got Talisman-Divine Protection you activate it and have it for 5sec.. so in 4 sec it wil disappears .. but if at that time you get cancel ..then it gets cancelled...and returns in full 9 seconds ...

Isnt a big thing but this will complete the code for now ...

 

Thank you again for your time and work!

Guest
This topic is now closed to further replies.


  • Posts

    • 亲爱的 SocNet 服务用户! 我们正在积极寻找以下供应商来提供如下产品: — Snapchat 老号和新号 | 带 snapscores | 地区:欧洲/美国 | 通过邮箱/手机号完全访问 — Reddit 老号(撞库或黑客来源,自注册)| 拥有 100 至 100,000+ 发帖和评论业力值 | 包含邮箱完全访问 — LinkedIn 老号 | 拥有真实人脉 | 地区:欧洲/美国 | 通过邮箱 + 活跃 2FA 密码完全访问 — Instagram 老号 (2010-2023) | 通过邮箱完全访问(可能还绑定了 2FA 密码) — Facebook 老号 (2010-2023) | 通过邮箱完全访问(可能还绑定了 2FA 密码) | 有好友或无好友 | 地区:欧洲/美国/亚洲 — Threads 账号 | 通过邮箱完全访问(可能还绑定了 2FA 密码) — TikTok/Facebook/Google ADS 广告代理账号 请通过以下联系方式与我们联系——我们会讨论合作条件! 我们也始终欢迎其他合作提议。 联系方式与支持: ➡ Telegram: https://t.me/socnet_support ✅ ➡ WhatsApp: https://wa.me/79051904467 ✅ ➡ Discord: socnet_support ✅ ➡ ✉ 邮箱: solomonbog@socnet.store ✅ 通过这些联系方式您还可以: — 建立合作关系 (现有合作伙伴: https://socnet.bgng.io/partners) 相关链接: 数字商品商店 (网站): 进入 购买 Telegram Stars 的 Telegram 机器人: 进入 SMM 面板: 进入 – 推广您的社交媒体账号。 商店 Telegram 机器人: 进入 我们向您呈现当前的 促销和特别优惠 ,用于购买我们服务的产品和服务: 1. 促销码 SEPTEMBER2025(9 月份在商店 (网站、机器人) 购物享受 10% 折扣)!首次购买还可使用促销码:SOCNET(享受 15% 折扣) 2. 注册后在我们网站输入格式为 "SEND ME BONUS, MY USERNAME IS..." 的用户名并在我们的论坛发帖,即可获得 $1 余额或 10-20% 折扣 3. 首次试用 SMM 面板即可获得 $1:只需在网站 (支持) 打开工单,主题写 “Get Trial Bonus” 4. 每周在我们的 Telegram 频道和购买 Stars 的机器人中赠送 Telegram Stars! 新闻资源: ➡ Telegram 频道: https://t.me/accsforyou_shop ✅ ➡ WhatsApp 频道: https://chat.whatsapp.com/K8rBy500nA73z27PxgaJUw?mode=ems_copy_t ✅ ➡ Discord 服务器: https://discord.gg/y9AStFFsrh ✅
    • 亲爱的 SocNet 服务用户! 我们正在积极寻找以下供应商来提供如下产品: — Snapchat 老号和新号 | 带 snapscores | 地区:欧洲/美国 | 通过邮箱/手机号完全访问 — Reddit 老号(撞库或黑客来源,自注册)| 拥有 100 至 100,000+ 发帖和评论业力值 | 包含邮箱完全访问 — LinkedIn 老号 | 拥有真实人脉 | 地区:欧洲/美国 | 通过邮箱 + 活跃 2FA 密码完全访问 — Instagram 老号 (2010-2023) | 通过邮箱完全访问(可能还绑定了 2FA 密码) — Facebook 老号 (2010-2023) | 通过邮箱完全访问(可能还绑定了 2FA 密码) | 有好友或无好友 | 地区:欧洲/美国/亚洲 — Threads 账号 | 通过邮箱完全访问(可能还绑定了 2FA 密码) — TikTok/Facebook/Google ADS 广告代理账号 请通过以下联系方式与我们联系——我们会讨论合作条件! 我们也始终欢迎其他合作提议。 联系方式与支持: ➡ Telegram: https://t.me/socnet_support ✅ ➡ WhatsApp: https://wa.me/79051904467 ✅ ➡ Discord: socnet_support ✅ ➡ ✉ 邮箱: solomonbog@socnet.store ✅ 通过这些联系方式您还可以: — 建立合作关系 (现有合作伙伴: https://socnet.bgng.io/partners) 相关链接: 数字商品商店 (网站): 进入 购买 Telegram Stars 的 Telegram 机器人: 进入 SMM 面板: 进入 – 推广您的社交媒体账号。 商店 Telegram 机器人: 进入 我们向您呈现当前的 促销和特别优惠 ,用于购买我们服务的产品和服务: 1. 促销码 SEPTEMBER2025(9 月份在商店 (网站、机器人) 购物享受 10% 折扣)!首次购买还可使用促销码:SOCNET(享受 15% 折扣) 2. 注册后在我们网站输入格式为 "SEND ME BONUS, MY USERNAME IS..." 的用户名并在我们的论坛发帖,即可获得 $1 余额或 10-20% 折扣 3. 首次试用 SMM 面板即可获得 $1:只需在网站 (支持) 打开工单,主题写 “Get Trial Bonus” 4. 每周在我们的 Telegram 频道和购买 Stars 的机器人中赠送 Telegram Stars! 新闻资源: ➡ Telegram 频道: https://t.me/accsforyou_shop ✅ ➡ WhatsApp 频道: https://chat.whatsapp.com/K8rBy500nA73z27PxgaJUw?mode=ems_copy_t ✅ ➡ Discord 服务器: https://discord.gg/y9AStFFsrh ✅
    • 亲爱的 SocNet 服务用户! 我们正在积极寻找以下供应商来提供如下产品: — Snapchat 老号和新号 | 带 snapscores | 地区:欧洲/美国 | 通过邮箱/手机号完全访问 — Reddit 老号(撞库或黑客来源,自注册)| 拥有 100 至 100,000+ 发帖和评论业力值 | 包含邮箱完全访问 — LinkedIn 老号 | 拥有真实人脉 | 地区:欧洲/美国 | 通过邮箱 + 活跃 2FA 密码完全访问 — Instagram 老号 (2010-2023) | 通过邮箱完全访问(可能还绑定了 2FA 密码) — Facebook 老号 (2010-2023) | 通过邮箱完全访问(可能还绑定了 2FA 密码) | 有好友或无好友 | 地区:欧洲/美国/亚洲 — Threads 账号 | 通过邮箱完全访问(可能还绑定了 2FA 密码) — TikTok/Facebook/Google ADS 广告代理账号 请通过以下联系方式与我们联系——我们会讨论合作条件! 我们也始终欢迎其他合作提议。 联系方式与支持: ➡ Telegram: https://t.me/socnet_support ✅ ➡ WhatsApp: https://wa.me/79051904467 ✅ ➡ Discord: socnet_support ✅ ➡ ✉ 邮箱: solomonbog@socnet.store ✅ 通过这些联系方式您还可以: — 建立合作关系 (现有合作伙伴: https://socnet.bgng.io/partners) 相关链接: 数字商品商店 (网站): 进入 购买 Telegram Stars 的 Telegram 机器人: 进入 SMM 面板: 进入 – 推广您的社交媒体账号。 商店 Telegram 机器人: 进入 我们向您呈现当前的 促销和特别优惠 ,用于购买我们服务的产品和服务: 1. 促销码 SEPTEMBER2025(9 月份在商店 (网站、机器人) 购物享受 10% 折扣)!首次购买还可使用促销码:SOCNET(享受 15% 折扣) 2. 注册后在我们网站输入格式为 "SEND ME BONUS, MY USERNAME IS..." 的用户名并在我们的论坛发帖,即可获得 $1 余额或 10-20% 折扣 3. 首次试用 SMM 面板即可获得 $1:只需在网站 (支持) 打开工单,主题写 “Get Trial Bonus” 4. 每周在我们的 Telegram 频道和购买 Stars 的机器人中赠送 Telegram Stars! 新闻资源: ➡ Telegram 频道: https://t.me/accsforyou_shop ✅ ➡ WhatsApp 频道: https://chat.whatsapp.com/K8rBy500nA73z27PxgaJUw?mode=ems_copy_t ✅ ➡ Discord 服务器: https://discord.gg/y9AStFFsrh ✅
    • 亲爱的 SocNet 服务用户! 我们正在积极寻找以下供应商来提供如下产品: — Snapchat 老号和新号 | 带 snapscores | 地区:欧洲/美国 | 通过邮箱/手机号完全访问 — Reddit 老号(撞库或黑客来源,自注册)| 拥有 100 至 100,000+ 发帖和评论业力值 | 包含邮箱完全访问 — LinkedIn 老号 | 拥有真实人脉 | 地区:欧洲/美国 | 通过邮箱 + 活跃 2FA 密码完全访问 — Instagram 老号 (2010-2023) | 通过邮箱完全访问(可能还绑定了 2FA 密码) — Facebook 老号 (2010-2023) | 通过邮箱完全访问(可能还绑定了 2FA 密码) | 有好友或无好友 | 地区:欧洲/美国/亚洲 — Threads 账号 | 通过邮箱完全访问(可能还绑定了 2FA 密码) — TikTok/Facebook/Google ADS 广告代理账号 请通过以下联系方式与我们联系——我们会讨论合作条件! 我们也始终欢迎其他合作提议。 联系方式与支持: ➡ Telegram: https://t.me/socnet_support ✅ ➡ WhatsApp: https://wa.me/79051904467 ✅ ➡ Discord: socnet_support ✅ ➡ ✉ 邮箱: solomonbog@socnet.store ✅ 通过这些联系方式您还可以: — 建立合作关系 (现有合作伙伴: https://socnet.bgng.io/partners) 相关链接: 数字商品商店 (网站): 进入 购买 Telegram Stars 的 Telegram 机器人: 进入 SMM 面板: 进入 – 推广您的社交媒体账号。 商店 Telegram 机器人: 进入 我们向您呈现当前的 促销和特别优惠 ,用于购买我们服务的产品和服务: 1. 促销码 SEPTEMBER2025(9 月份在商店 (网站、机器人) 购物享受 10% 折扣)!首次购买还可使用促销码:SOCNET(享受 15% 折扣) 2. 注册后在我们网站输入格式为 "SEND ME BONUS, MY USERNAME IS..." 的用户名并在我们的论坛发帖,即可获得 $1 余额或 10-20% 折扣 3. 首次试用 SMM 面板即可获得 $1:只需在网站 (支持) 打开工单,主题写 “Get Trial Bonus” 4. 每周在我们的 Telegram 频道和购买 Stars 的机器人中赠送 Telegram Stars! 新闻资源: ➡ Telegram 频道: https://t.me/accsforyou_shop ✅ ➡ WhatsApp 频道: https://chat.whatsapp.com/K8rBy500nA73z27PxgaJUw?mode=ems_copy_t ✅ ➡ Discord 服务器: https://discord.gg/y9AStFFsrh ✅
    • Dear users of the SocNet service! We are actively looking for suppliers for the following product positions: — Snapchat old and new accounts | With snapscores | Geo: Europe/USA | Full access via email/phone number — Reddit old accounts (brute or hacked origin, self-registered) with post and comment karma from 100 to 100,000+ | Full access with email included — LinkedIn old accounts with real connections | Geo: Europe/USA | Full access via email + active 2FA password — Instagram old accounts (2010-2023) | Full access via email (possibly also linked 2FA password) — Facebook old accounts (2010-2023) | Full access via email (possibly also linked 2FA password) | With friends or without friends | Geo: Europe/USA/Asia — Threads accounts | Full access via email (possibly also linked 2FA password) — TikTok/Facebook/Google ADS agency advertising accounts Contact us at the details below — we’ll discuss the conditions! We are always open to other partnership offers as well. Contacts and support: ➡ Telegram: https://t.me/socnet_support ✅ ➡ WhatsApp: https://wa.me/79051904467 ✅ ➡ Discord: socnet_support ✅ ➡ ✉ Email: solomonbog@socnet.store ✅ Also through these contacts you can: — establish a partnership (current partners: https://socnet.bgng.io/partners) Relevant links: Digital goods store (Website): Go Telegram bot for buying Telegram Stars: Go SMM Panel: Go – promotion of your social media accounts. Store Telegram bot: Go We would like to present you with the current list of promotions and special offers for purchasing products and services of our service: 1. Promo code SEPTEMBER2025 (10% discount) for purchases in our store (Website, bot) in September! You can also use the promo code for the first purchase: SOCNET (15% discount) 2. Get $1 to your store balance or a 10-20% discount, just write your username after registration on our site in the following format "SEND ME BONUS, MY USERNAME IS..." — you need to write it in our forum thread! 3. Get $1 for the first trial run of the SMM Panel: just open a ticket with the subject “Get Trial Bonus” on our website (Support). 4. Weekly giveaways of Telegram Stars in our Telegram channel and in our bot for buying stars! News resources: ➡ Telegram channel: https://t.me/accsforyou_shop ✅ ➡ WhatsApp channel: https://chat.whatsapp.com/K8rBy500nA73z27PxgaJUw?mode=ems_copy_t ✅ ➡ Discord server: https://discord.gg/y9AStFFsrh ✅
  • Topics

×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock