Ok well heres the part i was having trouble on Kinshis Guide I use power Source nd i tried Searching For public static void DefineSkills() And it Couldnt Find IT anywhere Not even in Datbase.cS nd you need that to add that code under it Nd i tried adding it nd that didnt work either
//------------------------Database.cs:
[Skill Definition]
Search for public static void DefineSkills(), under it add:
Code:
SkillAttributes[9876] = new ushort[1][];
SkillAttributes[9876][0] = new ushort[6] { 7, 0, 0, 0, 0, 0 };
SkillsDone.Add(9876, 1);Search for public static ushort[][][] SkillAttributes = new ushort[9000][][];, replace it with:
public static ushort[][][] SkillAttributes = new ushort[9877][][];
[Additional Help]
If you get the error: The name 'Thread' does not exist in the current context.
Add using System.Threading; to Character.cs.
Then replace public Timer TheTimer = new Timer(); with public System.Timers.Timer TheTimer = new System.Timers.Timer();






