Not working still

Several post on here over the last few months saying its not working , can anyone update this ?
still not compiling the config file 
not taking permissions and not able to use the /q commands 

Error while compiling Quests: 'ItemCraftTask' does not contain a definition for 'owner' and no accessible extension method 'owner' accepting a first argument of type 'ItemCraftTask' could be found (are you missing a using directive or an assembly reference?) | Line: 412, Pos: 31

Ok so i got it working but without the crafting quests .
so as a temp fix (without the Crafting quests) take out the craft section starting from 407 to 414 , I don't have the knowledge to fixed this only take it out for it to work.
so take out this save and it should work till someone can fix it 

//Craft
        void OnItemCraftFinished(ItemCraftTask task, Item item)
        {
            var player = task.owner;
            if (player != null)
                if (hasQuests(player.userID) && isQuestItem(player.userID, item.info.shortname, QuestType.Craft))
                    ProcessProgress(player, QuestType.Craft, item.info.shortname, item.amount);
        }