Jump to content
  • 0

Empowering Skill


Ninjamon

Question


  • Group:  Members
  • Topic Count:  113
  • Topics Per Day:  0.03
  • Content Count:  295
  • Reputation:   2
  • Joined:  03/06/12
  • Last Seen:  

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.

Link to comment
Share on other sites

3 answers to this question

Recommended Posts


  • Group:  Forum Moderator
  • Topic Count:  93
  • Topics Per Day:  0.02
  • Content Count:  10013
  • Reputation:   2348
  • Joined:  10/28/11
  • Last Seen:  

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

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  113
  • Topics Per Day:  0.03
  • Content Count:  295
  • Reputation:   2
  • Joined:  03/06/12
  • Last Seen:  

-	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?

Link to comment
Share on other sites


  • Group:  Forum Moderator
  • Topic Count:  93
  • Topics Per Day:  0.02
  • Content Count:  10013
  • Reputation:   2348
  • Joined:  10/28/11
  • Last Seen:  

yes

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