[Help] With adding skills in lotf

09/07/2008 22:18 Bottingpunk#1
How exactly would i like add skills in lotf casue i want to add some more skills. I'll release it if some one could help me on how to do it :)
09/08/2008 00:46 taguro#2
Quote:
Originally Posted by Bottingpunk View Post
How exactly would i like add skills in lotf casue i want to add some more skills. I'll release it if some one could help me on how to do it :)
It depends on the kind of skills you want to add. Adding weapon skills is a whole lot different than adding tao skills, or exp skills.
09/08/2008 02:10 tao4229#3
Quote:
Originally Posted by Bottingpunk View Post
How exactly would i like add skills in lotf casue i want to add some more skills. I'll release it if some one could help me on how to do it :)
Code the stats in database.cs, then code the actual skill in Character.cs.
09/08/2008 03:36 Bottingpunk#4
Quote:
Originally Posted by tao4229 View Post
Code the stats in database.cs, then code the actual skill in Character.cs.
could you give a hint on where they would be located?

Like say i wanted to add magic sheild or sheild for xp skill
09/09/2008 02:20 tao4229#5
Quote:
Originally Posted by Bottingpunk View Post
could you give a hint on where they would be located?

Like say i wanted to add magic sheild or sheild for xp skill
Adding those are easy, in database.cs its not hard to miss. Search for a skill ID you know that's in, and youll find it in Database.cs, then Search Character.cs For "SkillAttributes", and you'll see where all the groups are coded. For doing magic shield, you'll need to make the bool for the character its used on(ShieldBuff i think) to true(Make sure you send the packet for GetStat() or whatever it is, doing this off the top of my head), and then set up a datetime to remove it. Then after that you add the defense.(make sure to remove it later =D)