2018-02-24 05:55:51 +08:00
|
|
|
|
using StardewModdingAPI;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using EventSystem;
|
|
|
|
|
using StardewValley;
|
|
|
|
|
using EventSystem.Framework.FunctionEvents;
|
|
|
|
|
using EventSystem.Framework.Information;
|
|
|
|
|
using Microsoft.Xna.Framework;
|
2018-03-06 12:46:45 +08:00
|
|
|
|
using EventSystem.Framework.Events;
|
2018-02-24 05:55:51 +08:00
|
|
|
|
namespace SundropMapEvents
|
|
|
|
|
{
|
|
|
|
|
public class Class1 :Mod
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
public static IModHelper ModHelper;
|
|
|
|
|
public static IMonitor ModMonitor;
|
|
|
|
|
public override void Entry(IModHelper helper)
|
|
|
|
|
{
|
|
|
|
|
ModHelper = this.Helper;
|
|
|
|
|
ModMonitor = this.Monitor;
|
|
|
|
|
StardewModdingAPI.Events.SaveEvents.AfterLoad += SaveEvents_AfterLoad;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void SaveEvents_AfterLoad(object sender, EventArgs e)
|
|
|
|
|
{
|
2018-03-06 12:46:45 +08:00
|
|
|
|
EventSystem.EventSystem.eventManager.addEvent(Game1.getLocationFromName("BusStop"), new WarpEvent("toRR", Game1.getLocationFromName("BusStop"), new Vector2(6, 11), new PlayerEvents(null, null), new WarpInformation("BusStop", 10, 12, 2, false)));
|
2018-03-06 15:46:24 +08:00
|
|
|
|
EventSystem.EventSystem.eventManager.addEvent(Game1.getLocationFromName("BusStop"), new DialogueDisplayEvent("Hello.", Game1.getLocationFromName("BusStop"), new Vector2(10, 13),new MouseButtonEvents(null,null) , new MouseEntryLeaveEvent(null,null),"Hello there!"));
|
2018-02-24 05:55:51 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|