Since this wipe update I have had reports that kill quests for heli are not counting.
Heli kills not counting towards QuestBug
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
goldmysteriousCould not load plugin 'Quest' (no plugin found with that file name)[CSharp] Started Oxide.Compiler v successfullyError 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;withvoid OnItemCraftFinished(ItemCraftTask task, Item item, ItemCrafter crafter)
{
BasePlayer player = crafter.owner; HetnibBaseHelicopter has been renamed to PatrolHelicopter since the last update.
Line 349, 368, 370Replace 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?