├── .gitignore ├── DedicatedServer 1.0.1.zip ├── DedicatedServer.sln ├── DedicatedServer ├── .gitignore ├── Chat │ ├── ChatEventArgs.cs │ └── EventDrivenChatBox.cs ├── Config │ └── ModConfig.cs ├── Crops │ └── CropSaver.cs ├── DedicatedServer.csproj ├── HostAutomatorStages │ ├── AutomatedHost.cs │ ├── BehaviorChain.cs │ ├── BehaviorLink.cs │ ├── BehaviorState.cs │ ├── CheckForParsnipSeedsBehaviorLink.cs │ ├── EndCommunityCenterBehaviorLink.cs │ ├── ExitFarmHouseBehaviorLink.cs │ ├── FestivalChatBox.cs │ ├── GetFishingRodBehaviorLink.cs │ ├── HostAutomatorStage.cs │ ├── ProcessDialogueBehaviorLink.cs │ ├── ProcessFestivalChatBoxBehaviorLink.cs │ ├── ProcessPauseBehaviorLink.cs │ ├── ProcessWaitTicksBehaviorLink.cs │ ├── PurchaseJojaMembershipBehaviorLink.cs │ ├── ReadyCheckHelper.cs │ ├── SkipEventsBehaviorLink.cs │ ├── SkipShippingMenuBehaviorLink.cs │ ├── StartFarmStage.cs │ ├── TransitionFestivalAttendanceBehaviorLink.cs │ ├── TransitionFestivalEndBehaviorLink.cs │ ├── TransitionSleepBehaviorLink.cs │ ├── UnlockCommunityCenterBehaviorLink.cs │ └── UpdateStateBehaviorLink.cs ├── MessageCommands │ ├── BuildCommandListener.cs │ ├── DemolishCommandListener.cs │ ├── PauseCommandListener.cs │ └── ServerCommandListener.cs ├── ModEntry.cs ├── Properties │ └── launchSettings.json ├── Utils │ ├── Festivals.cs │ ├── SerializableDictionary.cs │ └── Sleeping.cs └── manifest.json ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | .vs/ -------------------------------------------------------------------------------- /DedicatedServer 1.0.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectManagerManager/SMAPIDedicatedServerMod/HEAD/DedicatedServer 1.0.1.zip -------------------------------------------------------------------------------- /DedicatedServer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectManagerManager/SMAPIDedicatedServerMod/HEAD/DedicatedServer.sln -------------------------------------------------------------------------------- /DedicatedServer/.gitignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | obj/ 3 | .vs/ -------------------------------------------------------------------------------- /DedicatedServer/Chat/ChatEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectManagerManager/SMAPIDedicatedServerMod/HEAD/DedicatedServer/Chat/ChatEventArgs.cs -------------------------------------------------------------------------------- /DedicatedServer/Chat/EventDrivenChatBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectManagerManager/SMAPIDedicatedServerMod/HEAD/DedicatedServer/Chat/EventDrivenChatBox.cs -------------------------------------------------------------------------------- /DedicatedServer/Config/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectManagerManager/SMAPIDedicatedServerMod/HEAD/DedicatedServer/Config/ModConfig.cs -------------------------------------------------------------------------------- /DedicatedServer/Crops/CropSaver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectManagerManager/SMAPIDedicatedServerMod/HEAD/DedicatedServer/Crops/CropSaver.cs -------------------------------------------------------------------------------- /DedicatedServer/DedicatedServer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectManagerManager/SMAPIDedicatedServerMod/HEAD/DedicatedServer/DedicatedServer.csproj -------------------------------------------------------------------------------- /DedicatedServer/HostAutomatorStages/AutomatedHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectManagerManager/SMAPIDedicatedServerMod/HEAD/DedicatedServer/HostAutomatorStages/AutomatedHost.cs -------------------------------------------------------------------------------- /DedicatedServer/HostAutomatorStages/BehaviorChain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectManagerManager/SMAPIDedicatedServerMod/HEAD/DedicatedServer/HostAutomatorStages/BehaviorChain.cs -------------------------------------------------------------------------------- /DedicatedServer/HostAutomatorStages/BehaviorLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectManagerManager/SMAPIDedicatedServerMod/HEAD/DedicatedServer/HostAutomatorStages/BehaviorLink.cs -------------------------------------------------------------------------------- /DedicatedServer/HostAutomatorStages/BehaviorState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectManagerManager/SMAPIDedicatedServerMod/HEAD/DedicatedServer/HostAutomatorStages/BehaviorState.cs -------------------------------------------------------------------------------- /DedicatedServer/HostAutomatorStages/CheckForParsnipSeedsBehaviorLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectManagerManager/SMAPIDedicatedServerMod/HEAD/DedicatedServer/HostAutomatorStages/CheckForParsnipSeedsBehaviorLink.cs -------------------------------------------------------------------------------- /DedicatedServer/HostAutomatorStages/EndCommunityCenterBehaviorLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectManagerManager/SMAPIDedicatedServerMod/HEAD/DedicatedServer/HostAutomatorStages/EndCommunityCenterBehaviorLink.cs -------------------------------------------------------------------------------- /DedicatedServer/HostAutomatorStages/ExitFarmHouseBehaviorLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectManagerManager/SMAPIDedicatedServerMod/HEAD/DedicatedServer/HostAutomatorStages/ExitFarmHouseBehaviorLink.cs -------------------------------------------------------------------------------- /DedicatedServer/HostAutomatorStages/FestivalChatBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectManagerManager/SMAPIDedicatedServerMod/HEAD/DedicatedServer/HostAutomatorStages/FestivalChatBox.cs -------------------------------------------------------------------------------- /DedicatedServer/HostAutomatorStages/GetFishingRodBehaviorLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectManagerManager/SMAPIDedicatedServerMod/HEAD/DedicatedServer/HostAutomatorStages/GetFishingRodBehaviorLink.cs -------------------------------------------------------------------------------- /DedicatedServer/HostAutomatorStages/HostAutomatorStage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectManagerManager/SMAPIDedicatedServerMod/HEAD/DedicatedServer/HostAutomatorStages/HostAutomatorStage.cs -------------------------------------------------------------------------------- /DedicatedServer/HostAutomatorStages/ProcessDialogueBehaviorLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectManagerManager/SMAPIDedicatedServerMod/HEAD/DedicatedServer/HostAutomatorStages/ProcessDialogueBehaviorLink.cs -------------------------------------------------------------------------------- /DedicatedServer/HostAutomatorStages/ProcessFestivalChatBoxBehaviorLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectManagerManager/SMAPIDedicatedServerMod/HEAD/DedicatedServer/HostAutomatorStages/ProcessFestivalChatBoxBehaviorLink.cs -------------------------------------------------------------------------------- /DedicatedServer/HostAutomatorStages/ProcessPauseBehaviorLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectManagerManager/SMAPIDedicatedServerMod/HEAD/DedicatedServer/HostAutomatorStages/ProcessPauseBehaviorLink.cs -------------------------------------------------------------------------------- /DedicatedServer/HostAutomatorStages/ProcessWaitTicksBehaviorLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectManagerManager/SMAPIDedicatedServerMod/HEAD/DedicatedServer/HostAutomatorStages/ProcessWaitTicksBehaviorLink.cs -------------------------------------------------------------------------------- /DedicatedServer/HostAutomatorStages/PurchaseJojaMembershipBehaviorLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectManagerManager/SMAPIDedicatedServerMod/HEAD/DedicatedServer/HostAutomatorStages/PurchaseJojaMembershipBehaviorLink.cs -------------------------------------------------------------------------------- /DedicatedServer/HostAutomatorStages/ReadyCheckHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectManagerManager/SMAPIDedicatedServerMod/HEAD/DedicatedServer/HostAutomatorStages/ReadyCheckHelper.cs -------------------------------------------------------------------------------- /DedicatedServer/HostAutomatorStages/SkipEventsBehaviorLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectManagerManager/SMAPIDedicatedServerMod/HEAD/DedicatedServer/HostAutomatorStages/SkipEventsBehaviorLink.cs -------------------------------------------------------------------------------- /DedicatedServer/HostAutomatorStages/SkipShippingMenuBehaviorLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectManagerManager/SMAPIDedicatedServerMod/HEAD/DedicatedServer/HostAutomatorStages/SkipShippingMenuBehaviorLink.cs -------------------------------------------------------------------------------- /DedicatedServer/HostAutomatorStages/StartFarmStage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectManagerManager/SMAPIDedicatedServerMod/HEAD/DedicatedServer/HostAutomatorStages/StartFarmStage.cs -------------------------------------------------------------------------------- /DedicatedServer/HostAutomatorStages/TransitionFestivalAttendanceBehaviorLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectManagerManager/SMAPIDedicatedServerMod/HEAD/DedicatedServer/HostAutomatorStages/TransitionFestivalAttendanceBehaviorLink.cs -------------------------------------------------------------------------------- /DedicatedServer/HostAutomatorStages/TransitionFestivalEndBehaviorLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectManagerManager/SMAPIDedicatedServerMod/HEAD/DedicatedServer/HostAutomatorStages/TransitionFestivalEndBehaviorLink.cs -------------------------------------------------------------------------------- /DedicatedServer/HostAutomatorStages/TransitionSleepBehaviorLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectManagerManager/SMAPIDedicatedServerMod/HEAD/DedicatedServer/HostAutomatorStages/TransitionSleepBehaviorLink.cs -------------------------------------------------------------------------------- /DedicatedServer/HostAutomatorStages/UnlockCommunityCenterBehaviorLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectManagerManager/SMAPIDedicatedServerMod/HEAD/DedicatedServer/HostAutomatorStages/UnlockCommunityCenterBehaviorLink.cs -------------------------------------------------------------------------------- /DedicatedServer/HostAutomatorStages/UpdateStateBehaviorLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectManagerManager/SMAPIDedicatedServerMod/HEAD/DedicatedServer/HostAutomatorStages/UpdateStateBehaviorLink.cs -------------------------------------------------------------------------------- /DedicatedServer/MessageCommands/BuildCommandListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectManagerManager/SMAPIDedicatedServerMod/HEAD/DedicatedServer/MessageCommands/BuildCommandListener.cs -------------------------------------------------------------------------------- /DedicatedServer/MessageCommands/DemolishCommandListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectManagerManager/SMAPIDedicatedServerMod/HEAD/DedicatedServer/MessageCommands/DemolishCommandListener.cs -------------------------------------------------------------------------------- /DedicatedServer/MessageCommands/PauseCommandListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectManagerManager/SMAPIDedicatedServerMod/HEAD/DedicatedServer/MessageCommands/PauseCommandListener.cs -------------------------------------------------------------------------------- /DedicatedServer/MessageCommands/ServerCommandListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectManagerManager/SMAPIDedicatedServerMod/HEAD/DedicatedServer/MessageCommands/ServerCommandListener.cs -------------------------------------------------------------------------------- /DedicatedServer/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectManagerManager/SMAPIDedicatedServerMod/HEAD/DedicatedServer/ModEntry.cs -------------------------------------------------------------------------------- /DedicatedServer/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectManagerManager/SMAPIDedicatedServerMod/HEAD/DedicatedServer/Properties/launchSettings.json -------------------------------------------------------------------------------- /DedicatedServer/Utils/Festivals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectManagerManager/SMAPIDedicatedServerMod/HEAD/DedicatedServer/Utils/Festivals.cs -------------------------------------------------------------------------------- /DedicatedServer/Utils/SerializableDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectManagerManager/SMAPIDedicatedServerMod/HEAD/DedicatedServer/Utils/SerializableDictionary.cs -------------------------------------------------------------------------------- /DedicatedServer/Utils/Sleeping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectManagerManager/SMAPIDedicatedServerMod/HEAD/DedicatedServer/Utils/Sleeping.cs -------------------------------------------------------------------------------- /DedicatedServer/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectManagerManager/SMAPIDedicatedServerMod/HEAD/DedicatedServer/manifest.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectManagerManager/SMAPIDedicatedServerMod/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ObjectManagerManager/SMAPIDedicatedServerMod/HEAD/README.md --------------------------------------------------------------------------------