Well, i give up, i tried coding the weapon skills in my server (im using PowerSource).
I found where the skills were but for some reason, i can't get the skill to level.
Below is the code i used. I'm using Speedgun for spear first. I found the skill
type (i'd like to thank the maker of PowerSource for including the skill ids in his/her source)
and i searched my database for the weapon type.
if you don't try, so i decided to try myself.
Thanks in advanced. :D
I found where the skills were but for some reason, i can't get the skill to level.
Below is the code i used. I'm using Speedgun for spear first. I found the skill
type (i'd like to thank the maker of PowerSource for including the skill ids in his/her source)
and i searched my database for the weapon type.
I think i saw a guide on how to get the weapon skills working, but that's no funQuote:
if (WepType == 560 && !Use)
{
if (Skills.Contains((short)1260))
{
byte SkillLvl = (byte)Skills[(short)1260];
byte Chance = (byte)ExternalDatabase.SkillAttributes[(int)7020][(int)SkillLvl][5];
if (Other.ChanceSuccess(Chance))
{
UseSkill(1260, 0, 0, 0);
Use = true;
}
}
}
if you don't try, so i decided to try myself.
Thanks in advanced. :D