plugin dont work
Update plizzz
You should specify what doesn´t work. Any console message? I run latest version and it works.
omegablueYou should specify what doesn´t work. Any console message? I run latest version and it works.
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);
} change the whole OnItemCraftFinished method to match this and it will work fine
void OnItemCraftFinished(ItemCraftTask task, Item item, ItemCrafter crafter)
{
var player = crafter.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);
}