Heli kills not counting towards QuestBug

Since this wipe update I have had reports that kill quests for heli are not counting.

I also encountered this issue, and currently the plugin seems to be out of maintenance.

i will check it

BaseHelicopter has been renamed to PatrolHelicopter since the last update.

Line 349, 368, 370

Replace them and it should work.

 

Could not load plugin 'Quest' (no plugin found with that file name)
[CSharp] Started Oxide.Compiler v successfully
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
goldmysterious
Could not load plugin 'Quest' (no plugin found with that file name)
[CSharp] Started Oxide.Compiler v successfully
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

Try replacing

void OnItemCraftFinished(ItemCraftTask task, Item item)
{
    var player = task.owner;
with
void OnItemCraftFinished(ItemCraftTask task, Item item, ItemCrafter crafter)
{
    BasePlayer player = crafter.owner;​
Hetnib

BaseHelicopter has been renamed to PatrolHelicopter since the last update.

Line 349, 368, 370

Replace them and it should work.

 

Thank you very much for this! I will have it tested by players today.

This error has recently started affecting my server. I've tried making the alterations suggested above and still no joy, any ideas?