Jump to content

Starting Buffs [Acis]


Recommended Posts

42b5f9dcd1a00cb06fe8d941de52d83322.jpg

 

+ if(Config.STARTING_BUFFS)
+ {
+ for (int[] buff : (newChar.isMageClass()) ? Config.STARTING_BUFFS_M : Config.STARTING_BUFFS_F)
+ {
+ L2Skill skill = SkillTable.getInstance().getInfo(buff[0], buff[1]);
+ if (skill != null)
+ {
+ skill.getEffects(newChar, newChar);
+ newChar.sendPacket(SystemMessage.getSystemMessage(SystemMessageId.YOU_FEEL_S1_EFFECT).addSkillName(buff[0]));
+ }
+ }
+ }

 

 

Where add it?

Edited by Makura
Link to comment
Share on other sites

  • 2 weeks later...
Link to comment
Share on other sites

How to make for Orcs mystics mage buffs? because orcs mystics got fighter buffs  :happyforever:

 

Orc mystic are consider ClassType.MAGE on latest aCis, so they use correctly isMageClass(), verify on classes definition if they are FIGHTER. From memory there was something related, no clue when it has been fixed.

Link to comment
Share on other sites

Orc mystic are consider ClassType.MAGE on latest aCis, so they use correctly isMageClass(), verify on classes definition if they are FIGHTER. From memory there was something related, no clue when it has been fixed.

where i can find and change it?

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...