diff options
author | ClxS <slxxls92@gmail.com> | 2016-03-04 22:21:16 +0000 |
---|---|---|
committer | ClxS <slxxls92@gmail.com> | 2016-03-04 22:21:16 +0000 |
commit | ed3bf29600d3e8e7cb88629bfe6da9db6339c6a8 (patch) | |
tree | 495eae3079f5886f2117a2ed5bf425a1e141aa65 /README.md | |
parent | b8a9f8fc88706896c3191b80d17375a483183226 (diff) | |
download | SMAPI-ed3bf29600d3e8e7cb88629bfe6da9db6339c6a8.tar.gz SMAPI-ed3bf29600d3e8e7cb88629bfe6da9db6339c6a8.tar.bz2 SMAPI-ed3bf29600d3e8e7cb88629bfe6da9db6339c6a8.zip |
A few small clean ups and removed a lot of the readme until I think of what to put there
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 114 |
1 files changed, 1 insertions, 113 deletions
@@ -2,116 +2,4 @@ A Modding API For Stardew Valley See: https://github.com/Zoryn4163/SMAPI-Mods -NOTICE: THIS PROJECT IS STILL IN ALPHA - -Mod directories: %appdata%\StardewValley\Mods\ and .\Mods\ <- That means next to StardewModdingApi.exe in the Mods folder! - -To install a mod, put a DLL in one of those directories. If you are not on the latest version, do not post any errors, issues, etc. - - - -NOTICE: THIS PART AND ONWARD REQUIRE VISUAL STUDIOS AND KNOWLEDGE OF C# PROGRAMMING - -You can create a mod by making a direct reference to the ModdingApi.exe - -From there, you need to inherit from StardewModdingAPI.Mod - -The first class that inherits from that class will be loaded into the game at runtime, and once the game fully initializes the mod, the method Entry() will be called once. - -It is recommended to subscribe to an event (from Events.cs) to be able to interface with the game rather than directly make changes from the Entry() method. - - - TestMod.cs: - - using System; - using System.Collections.Generic; - using System.Linq; - using System.Text; - using System.Threading.Tasks; - using Microsoft.Xna.Framework.Input; - using StardewModdingAPI; - - namespace StardewTestMod - { - public class TestMod : Mod - { - public override string Name - { - get { return "Test Mod"; } - } - - public override string Authour - { - get { return "Zoryn Aaron"; } - } - - public override string Version - { - get { return "0.0.1Test"; } - } - - public override string Description - { - get { return "A Test Mod"; } - } - - public override void Entry() - { - Console.WriteLine("Test Mod Has Loaded"); - Program.LogError("Test Mod can call to Program.cs in the API"); - Program.LogColour(ConsoleColor.Magenta, "Test Mod is just a tiny DLL file in AppData/Roaming/StardewValley/Mods"); - - //Subscribe to an event from the modding API - Events.KeyPressed += Events_KeyPressed; - } - - void Events_KeyPressed(Keys key) - { - Console.WriteLine("TestMod sees that the following key was pressed: " + key); - } - } - } - - -Break Fishing (WARNING: SOFTLOCKS YOUR GAME): - - public override void Entry() - { - Events.UpdateTick += Events_UpdateTick; - Events.Initialize += Events_Initialize; - } - - private FieldInfo cmg; - private bool gotGame; - private SBobberBar sb; - void Events_Initialize() - { - cmg = SGame.StaticFields.First(x => x.Name == "activeClickableMenu"); - } - - void Events_UpdateTick() - { - if (cmg != null && cmg.GetValue(null) != null) - { - if (cmg.GetValue(null).GetType() == typeof(BobberBar)) - { - if (!gotGame) - { - gotGame = true; - BobberBar b = (BobberBar)cmg.GetValue(null); - sb = SBobberBar.ConstructFromBaseClass(b); - } - else - { - sb.bobberPosition = Extensions.Random.Next(0, 750); - sb.treasure = true; - sb.distanceFromCatching = 0.5f; - } - } - else - { - gotGame = false; - sb = null; - } - } - }
\ No newline at end of file +## NOTICE: THIS PROJECT IS STILL IN ALPHA |