Ninjamon Posted October 27, 2014 Posted October 27, 2014 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. Quote
Emistry Posted October 27, 2014 Posted October 27, 2014 - 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. Quote
Ninjamon Posted October 27, 2014 Author Posted October 27, 2014 - 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? Quote
Question
Ninjamon
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
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.