Jump to content
  • 0

Empowering Skill


Question

Posted

Is there a script that all players that is level 255 will get a bonus on skills (Preferably a NPC/function script)

 

Example, 255 LK will get +10% Bonus Damage to Spiral Pierce , 255 Clown will get +10% Arrow Vulcan and etc.

3 answers to this question

Recommended Posts

Posted
-	script	Sample#bonusdmg	-1,{

	OnPCStatCalcEvent:
		if ( BaseLevel < 255 ) end;
		
		switch( Class ) {
			case Job_Rune_Knight_T:
				bonus2 bSkillAtk,"LK_SPIRALPIERCE",10;
				break;
			case Job_Minstrel:
				bonus2 bSkillAtk,"CG_ARROWVULCAN",10;
				break;
			default: break;
		}
		end;
	
}

you can try something like this.

Posted
-	script	Sample#bonusdmg	-1,{

	OnPCStatCalcEvent:
		if ( BaseLevel < 255 ) end;
		
		switch( Class ) {
			case Job_Rune_Knight_T:
				bonus2 bSkillAtk,"LK_SPIRALPIERCE",10;
				break;
			case Job_Minstrel:
				bonus2 bSkillAtk,"CG_ARROWVULCAN",10;
				break;
			default: break;
		}
		end;
	
}

you can try something like this.

 

 

Does it read a Skill ID Number also?

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.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...