Error 1: Not all code paths return a value
public bool SetProficiency(Proficiency prof)
Error 2: Proficiency is used like a type
public Dictionary<ushort, Proficiency> Proficiency = new Dictionary<ushort, Proficiency >(50);
Error 3: Could not be found (Possibly due to Error 1)
Client.SetProficiency(new Proficiency(ushort.Parse(args[1]), ushort.Parse(args[2]), 0));
I know they're retarded problems but i'm trying to learn, thanks.
public bool SetProficiency(Proficiency prof)
Error 2: Proficiency is used like a type
public Dictionary<ushort, Proficiency> Proficiency = new Dictionary<ushort, Proficiency >(50);
Error 3: Could not be found (Possibly due to Error 1)
Client.SetProficiency(new Proficiency(ushort.Parse(args[1]), ushort.Parse(args[2]), 0));
I know they're retarded problems but i'm trying to learn, thanks.