Jump to content
  • 0

Buffer HELP


alone20

Question


  • Group:  Members
  • Topic Count:  11
  • Topics Per Day:  0.00
  • Content Count:  34
  • Reputation:   0
  • Joined:  05/05/14
  • Last Seen:  

i want to know how to make longer duration of the buffs in buffer npc. someone?

Link to comment
Share on other sites

4 answers to this question

Recommended Posts


  • Group:  Forum Moderator
  • Topic Count:  33
  • Topics Per Day:  0.01
  • Content Count:  1268
  • Reputation:   382
  • Joined:  02/03/12
  • Last Seen:  

 
i want to make all buffs last for about 15mins

 

prontera,155,185,5 script Healer#h1-1::Healer 936,{
	if( isPremium() ) {
		percentheal 100,100;
		skilleffect 45,0; sc_start SC_CONCENTRATE,900000,10;
		skilleffect 74,0; sc_start SC_MAGNIFICAT,900000,5;
		skilleffect 75,0; sc_start SC_GLORIA,900000,5;
		skilleffect 66,0; sc_start SC_IMPOSITIO,900000,5;
		skilleffect 67,0; sc_start SC_SUFFRAGIUM,900000,3;
		skilleffect 34,0; sc_start SC_BLESSING,900000,10;
		skilleffect 29,0; sc_start SC_INCREASEAGI,900000,10;
		sc_start SC_STRFood,900000,10;
		sc_start SC_AGIFood,900000,10;
		sc_start SC_VITFood,900000,10;
		sc_start SC_INTFood,900000,10;
		sc_start SC_DEXFood,900000,10;
		sc_start SC_LUKFood,900000,10;
		sc_start SC_ASPDPOTION2,900000,0;
		atcommand "@repairall";
		dispbottom "[ VIP Manager ] Your are now FULLY Buffs";
	} else {
		specialeffect2 EF_HEAL2; percentheal 100,100;
		specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,900000,10;
		specialeffect2 EF_BLESSING; sc_start SC_BLESSING,900000,10;
		skilleffect 66,0; sc_start SC_IMPOSITIO,900000,5;
		skilleffect 74,0; sc_start SC_MAGNIFICAT,900000,5;
		skilleffect 8,0; sc_start SC_ENDURE,900000,10;
		sc_start SC_CONCENTRATE,900000,10;
		sc_start SC_ASPDPOTION2,900000,0;
		sc_start SC_KYRIE,900000,5;
		specialeffect2 EF_HEAL2; percentheal 100,100;
		atcommand "@repairall";
		dispbottom "[ Healer ] You are now Healed!";
	}
	end;
}
  • Upvote 1
Link to comment
Share on other sites


  • Group:  Forum Moderator
  • Topic Count:  33
  • Topics Per Day:  0.01
  • Content Count:  1268
  • Reputation:   382
  • Joined:  02/03/12
  • Last Seen:  

What buffer npc post the script....

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  11
  • Topics Per Day:  0.00
  • Content Count:  34
  • Reputation:   0
  • Joined:  05/05/14
  • Last Seen:  

What buffer npc post the script....

prontera,155,185,5 script Healer#h1-1::Healer 936,{

if( isPremium() == 0 ) goto L_NOTENOUGH;
percentheal 100,100;
skilleffect 45,0; sc_start SC_CONCENTRATE,360000,10;
skilleffect 74,0; sc_start SC_MAGNIFICAT,360000,5;
skilleffect 75,0; sc_start SC_GLORIA,360000,5;
skilleffect 66,0; sc_start SC_IMPOSITIO,360000,5;
skilleffect 67,0; sc_start SC_SUFFRAGIUM,360000,3;
skilleffect 34,0; sc_start SC_BLESSING,360000,10;
skilleffect 29,0; sc_start SC_INCREASEAGI,360000,10;
sc_start SC_STRFood,360000,10;
sc_start SC_AGIFood,360000,10;
sc_start SC_VITFood,360000,10;
sc_start SC_INTFood,360000,10;
sc_start SC_DEXFood,360000,10;
sc_start SC_LUKFood,360000,10;
sc_start SC_ASPDPOTION2,360000,0;
atcommand "@repairall";
dispbottom "[ VIP Manager ] Your are now FULLY Buffs";
close;
L_NOTENOUGH:
        specialeffect2 EF_HEAL2; percentheal 100,100;
        specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,240000,10;
        specialeffect2 EF_BLESSING; sc_start SC_BLESSING,240000,10;
skilleffect 66,0; sc_start SC_IMPOSITIO,360000,5;
skilleffect 74,0; sc_start SC_MAGNIFICAT,360000,5;
skilleffect 8,0; sc_start SC_ENDURE,360000,10;
sc_start SC_CONCENTRATE,240000,10;
sc_start SC_ASPDPOTION2,360000,0;
sc_start SC_KYRIE,300000,5;
        specialeffect2 EF_HEAL2; percentheal 100,100;
atcommand "@repairall";
dispbottom "[ Healer ] You are now Healed!";
close;
}
 
 
 
i want to make all buffs last for about 15mins
Edited by Skorm
Codebox
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  11
  • Topics Per Day:  0.00
  • Content Count:  34
  • Reputation:   0
  • Joined:  05/05/14
  • Last Seen:  

 

 
i want to make all buffs last for about 15mins

 

prontera,155,185,5 script Healer#h1-1::Healer 936,{
	if( isPremium() ) {
		percentheal 100,100;
		skilleffect 45,0; sc_start SC_CONCENTRATE,900000,10;
		skilleffect 74,0; sc_start SC_MAGNIFICAT,900000,5;
		skilleffect 75,0; sc_start SC_GLORIA,900000,5;
		skilleffect 66,0; sc_start SC_IMPOSITIO,900000,5;
		skilleffect 67,0; sc_start SC_SUFFRAGIUM,900000,3;
		skilleffect 34,0; sc_start SC_BLESSING,900000,10;
		skilleffect 29,0; sc_start SC_INCREASEAGI,900000,10;
		sc_start SC_STRFood,900000,10;
		sc_start SC_AGIFood,900000,10;
		sc_start SC_VITFood,900000,10;
		sc_start SC_INTFood,900000,10;
		sc_start SC_DEXFood,900000,10;
		sc_start SC_LUKFood,900000,10;
		sc_start SC_ASPDPOTION2,900000,0;
		atcommand "@repairall";
		dispbottom "[ VIP Manager ] Your are now FULLY Buffs";
	} else {
		specialeffect2 EF_HEAL2; percentheal 100,100;
		specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,900000,10;
		specialeffect2 EF_BLESSING; sc_start SC_BLESSING,900000,10;
		skilleffect 66,0; sc_start SC_IMPOSITIO,900000,5;
		skilleffect 74,0; sc_start SC_MAGNIFICAT,900000,5;
		skilleffect 8,0; sc_start SC_ENDURE,900000,10;
		sc_start SC_CONCENTRATE,900000,10;
		sc_start SC_ASPDPOTION2,900000,0;
		sc_start SC_KYRIE,900000,5;
		specialeffect2 EF_HEAL2; percentheal 100,100;
		atcommand "@repairall";
		dispbottom "[ Healer ] You are now Healed!";
	}
	end;
}

Thanks for the help dude!

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.

Guest
Answer this question...

×   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...