Jump to content
  • 0
Sign in to follow this  
mrlongshen

Auto buffer on leveling

Question

I want to request when user leveling up, there will automatic buffer.

The buffer is, heal, Increase Agility, Blessing, Magnificat, the double of base and job exp.

 

For example, user is level 1, when its up to level 2, its will automatic buffer based on the above statements.

 

 

Share this post


Link to post
Share on other sites

4 answers to this question

Recommended Posts

  • 0

You can do that by using the following (self-explanatory) labels inside of an NPC:

 

OnPCBaseLvUpEvent:OnPCJobLvUpEvent:


Then put inside whatever status you want to give to the user.

Share this post


Link to post
Share on other sites
  • 0

For the available buffs, kindly look at const.txt

 

OnPCBaseLvUpEvent:	specialeffect2 EF_BLESSING;	sc_start SC_BLESSING,60000,10;	specialeffect2 EF_INCAGILITY;	sc_start SC_INC_AGI,60000,10;	specialeffect2 EF_IMPOSITIO;	sc_start SC_IMPOSITIO,60000,10;	specialeffect2 EF_MAGNIFICAT;	sc_start SC_MAGNIFICAT,60000,10;	specialeffect2 EF_GLORIA;	sc_start SC_GLORIA,60000,10;	specialeffect2 EF_SUFFRAGIUM;	sc_start SC_SUFFRAGIUM,60000,10;	specialeffect2 EF_ASSUMPTIO;	sc_start SC_ASSUMPTIO,60000,10;end;

Share this post


Link to post
Share on other sites
  • 0

 

For the available buffs, kindly look at const.txt

 

OnPCBaseLvUpEvent:	specialeffect2 EF_BLESSING;	sc_start SC_BLESSING,60000,10;	specialeffect2 EF_INCAGILITY;	sc_start SC_INC_AGI,60000,10;	specialeffect2 EF_IMPOSITIO;	sc_start SC_IMPOSITIO,60000,10;	specialeffect2 EF_MAGNIFICAT;	sc_start SC_MAGNIFICAT,60000,10;	specialeffect2 EF_GLORIA;	sc_start SC_GLORIA,60000,10;	specialeffect2 EF_SUFFRAGIUM;	sc_start SC_SUFFRAGIUM,60000,10;	specialeffect2 EF_ASSUMPTIO;	sc_start SC_ASSUMPTIO,60000,10;end;

 

@seventh. thanks alot..

which one on the constant.txt is get more exp on base and job ?

i have load this script. when leveling up nothing happen.

Edited by mrlongshen

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.