Jump to content
  • 0

Remove Buffs For Acis


Question

Posted

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();
}
    

7 answers to this question

Recommended Posts

  • 0
Posted (edited)

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'
  • 0
Posted

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?

  • 0
Posted

 

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!

Guest
This topic is now closed to further replies.


×
×
  • Create New...