-
Notifications
You must be signed in to change notification settings - Fork 88
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'Skua' of https://github.com/BrenoHenrike/Scripts into Skua
- Loading branch information
Showing
4 changed files
with
170 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
/* | ||
name: Blight Harvest Story | ||
description: This will finish the Blight Harvest storyline. | ||
tags: blightharvest,blight harvest, seasonal, harvest-day,blight,harvest | ||
*/ | ||
//cs_include Scripts/CoreBots.cs | ||
//cs_include Scripts/CoreStory.cs | ||
//cs_include Scripts/Seasonal/HarvestDay/CoreHarvestDay.cs | ||
using Skua.Core.Interfaces; | ||
|
||
public class BlightHarvest | ||
{ | ||
public IScriptInterface Bot => IScriptInterface.Instance; | ||
private CoreBots Core => CoreBots.Instance; | ||
public CoreStory Story = new(); | ||
public CoreHarvestDay HarvestDay = new(); | ||
|
||
public void ScriptMain(IScriptInterface bot) | ||
{ | ||
Core.SetOptions(); | ||
|
||
HarvestDay.BlightHarvest(); | ||
|
||
Core.SetOptions(false); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters