Ejemplo n.º 1
0
        internal static void EliteAPI_SupercruiseEntryEvent(object sender, SupercruiseEntryInfo e)
        {
            EmbedBuilder embed = new EmbedBuilder();

            embed.WithAuthor($"Entered supercruise");
            embed.WithTitle("Location information");
            embed.WithDescription($"In {e.StarSystem}");

            Main.Send(embed);
        }
Ejemplo n.º 2
0
 private void Events_SupercruiseEntryEvent(object sender, SupercruiseEntryInfo e)
 {
     InNoFireZone = false;
     Update();
 }