2020-12-14 16:24:52 +00:00
|
|
|
|
namespace QSB.Events
|
2020-08-10 19:24:28 +02:00
|
|
|
|
{
|
2020-12-02 21:23:01 +00:00
|
|
|
|
public static class EventNames
|
|
|
|
|
{
|
2020-12-31 12:10:55 +00:00
|
|
|
|
// Built into Outer Wilds -- don't change unless they change in-game!
|
2020-12-02 21:23:01 +00:00
|
|
|
|
public static string TurnOnFlashlight = "TurnOnFlashlight";
|
|
|
|
|
public static string TurnOffFlashlight = "TurnOffFlashlight";
|
|
|
|
|
public static string LaunchProbe = "LaunchProbe";
|
|
|
|
|
public static string RetrieveProbe = "RetrieveProbe";
|
|
|
|
|
public static string ProbeLauncherEquipped = "ProbeLauncherEquipped";
|
|
|
|
|
public static string ProbeLauncherUnequipped = "ProbeLauncherUnequipped";
|
|
|
|
|
public static string EquipSignalscope = "EquipSignalscope";
|
|
|
|
|
public static string UnequipSignalscope = "UnequipSignalscope";
|
|
|
|
|
public static string SuitUp = "SuitUp";
|
|
|
|
|
public static string RemoveSuit = "RemoveSuit";
|
|
|
|
|
public static string EquipTranslator = "EquipTranslator";
|
|
|
|
|
public static string UnequipTranslator = "UnequipTranslator";
|
|
|
|
|
public static string RestartTimeLoop = "RestartTimeLoop";
|
|
|
|
|
public static string WakeUp = "WakeUp";
|
2020-12-11 12:54:19 +00:00
|
|
|
|
public static string DialogueCondition = "DialogueConditionChanged";
|
2021-01-18 12:33:07 +00:00
|
|
|
|
public static string EnterQuantumMoon = "PlayerEnterQuantumMoon";
|
|
|
|
|
public static string ExitQuantumMoon = "PlayerExitQuantumMoon";
|
2020-08-10 19:24:28 +02:00
|
|
|
|
|
2020-12-31 12:10:55 +00:00
|
|
|
|
// Custom event names -- change if you want! These can be anything, as long as both
|
2021-02-21 18:25:25 +00:00
|
|
|
|
// sides of the GlobalMessenger (fireevent and addlistener) reference the same thing.
|
2020-12-02 21:23:01 +00:00
|
|
|
|
public static string QSBPlayerDeath = "QSBPlayerDeath";
|
|
|
|
|
public static string QSBPlayerJoin = "QSBPlayerJoin";
|
|
|
|
|
public static string QSBPlayerReady = "QSBPlayerReady";
|
|
|
|
|
public static string QSBSectorChange = "QSBSectorChange";
|
|
|
|
|
public static string QSBPlayerStatesRequest = "QSBPlayerStatesRequest";
|
|
|
|
|
public static string QSBServerTime = "QSBServerTime";
|
|
|
|
|
public static string QSBStartLift = "QSBStartLift";
|
|
|
|
|
public static string QSBGeyserState = "QSBGeyserState";
|
|
|
|
|
public static string QSBCrouch = "QSBAnimTrigger";
|
|
|
|
|
public static string QSBOrbSlot = "QSBOrbSlot";
|
|
|
|
|
public static string QSBOrbUser = "QSBOrbUser";
|
|
|
|
|
public static string QSBConversation = "QSBConversation";
|
|
|
|
|
public static string QSBConversationStartEnd = "QSBConversationStartEnd";
|
|
|
|
|
public static string QSBChangeAnimType = "QSBPlayInstrument";
|
|
|
|
|
public static string QSBServerSendPlayerStates = "QSBServerSendPlayerStates";
|
2020-12-19 10:56:25 +00:00
|
|
|
|
public static string QSBRevealFact = "QSBRevealFact";
|
2020-12-22 21:39:53 +00:00
|
|
|
|
public static string QSBSocketStateChange = "QSBSocketStateChange";
|
2020-12-23 11:26:47 +00:00
|
|
|
|
public static string QSBMultiStateChange = "QSBMultiStateChange";
|
2021-01-01 10:17:35 +00:00
|
|
|
|
public static string QSBQuantumShuffle = "QSBQuantumShuffle";
|
2021-01-26 14:07:17 +00:00
|
|
|
|
public static string QSBQuantumAuthority = "QSBQuantumAuthority";
|
2021-01-03 09:52:34 +00:00
|
|
|
|
public static string QSBMoonStateChange = "QSBMoonStateChange";
|
2020-12-24 19:35:42 +00:00
|
|
|
|
public static string QSBIdentifyFrequency = "QSBIdentifyFrequency";
|
|
|
|
|
public static string QSBIdentifySignal = "QSBIdentifySignal";
|
2020-12-31 12:10:55 +00:00
|
|
|
|
public static string QSBTextTranslated = "QSBTextTranslated";
|
2021-01-18 12:33:07 +00:00
|
|
|
|
public static string QSBEnterShrine = "QSBEnterShrine";
|
|
|
|
|
public static string QSBExitShrine = "QSBExitShrine";
|
2021-02-21 18:25:25 +00:00
|
|
|
|
public static string QSBPlayerEntangle = "QSBPlayerEntangle";
|
2021-02-24 10:45:25 +00:00
|
|
|
|
public static string QSBDropItem = "QSBDropItem";
|
2021-02-25 22:45:32 +00:00
|
|
|
|
public static string QSBSocketItem = "QSBSocketItem";
|
|
|
|
|
public static string QSBMoveToCarry = "QSBMoveToCarry";
|
2021-02-28 14:43:05 +00:00
|
|
|
|
public static string QSBStartStatue = "QSBStartStatue";
|
2021-03-09 16:43:41 +00:00
|
|
|
|
public static string QSBPlayerKick = "QSBPlayerKick";
|
2020-12-02 21:23:01 +00:00
|
|
|
|
}
|
2020-12-03 08:28:05 +00:00
|
|
|
|
}
|