Jump to content
  • 0

Remove Buffs For Acis


KingJK

Question

Hi guys, i have problem in remove buffs on change sub class anyone have any idea what that is?

 

 

CONFIG.JAVA

 

public static boolean ALT_RESTORE_EFFECTS_ON_SUBCLASS_CHANGE;

ALT_RESTORE_EFFECTS_ON_SUBCLASS_CHANGE = buffsy.getProperty("AltRestoreEffectOnSub", false);

 

L2PCINSTANCE.JAVA

 
if (Config.ALT_RESTORE_EFFECTS_ON_SUBCLASS_CHANGE) {
restoreEffects();
}
    
Link to comment
Share on other sites

7 answers to this question

Recommended Posts

  • 0

No remove buffs on change class :/

You should config(if you want it with config) the restoreEffects in method setActiveClass at L2PcInstance.

 

Like:

- restoreEffects();
+ if (!Config.REMOVE_BUFFS_ON_SUBCLASS)
+ restoreEffects();
  updateEffectIcons();
  sendPacket(new EtcStatusUpdate(this));
Edited by 'Baggos'
Link to comment
Share on other sites

  • 0

is restone buff from save skill list if you use true the buff is restone

if you use false the subclass is like off without restone buffs

both as true or false, is not working, is there any code missing?

Link to comment
Share on other sites

  • 0

 

You should config(if you want it with config) the restoreEffects in method setActiveClass at L2PcInstance.

 

Like:

- restoreEffects();
+ if (!Config.REMOVE_BUFFS_ON_SUBCLASS)
+ restoreEffects();
  updateEffectIcons();
  sendPacket(new EtcStatusUpdate(this));

thx u!

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.


×
×
  • Create New...