-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPlugin.cs
68 lines (58 loc) · 1.93 KB
/
Plugin.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
using BepInEx;
using HarmonyLib;
using UnityEngine;
namespace TerminalTP
{
[BepInPlugin(GUID, NAME, VERSION)]
public class Plugin : BaseUnityPlugin
{
private const string GUID = "me.kirbyquerby.lethalcompany.terminaltp";
private const string NAME = "Terminal TP";
private const string VERSION = "0.0.1";
private readonly Harmony harmony = new Harmony("me.kirbyquerby.lethalcompany.terminaltp");
private void Awake()
{
harmony.PatchAll();
}
}
}
namespace TerminalTP.Patches
{
[HarmonyPatch(typeof(Terminal))]
internal class TerminalPatch
{
[HarmonyPostfix]
[HarmonyPatch("ParsePlayerSentence")]
private static void HandleTP(ref Terminal __instance, ref TerminalNode __result)
{
string text = __instance.screenText.text.Substring(__instance.screenText.text.Length - __instance.textAdded);
if (!(text.ToLower() == "tp"))
{
return;
}
ShipTeleporter[] teleporters = Object.FindObjectsOfType<ShipTeleporter>();
ShipTeleporter foundTeleporter = null;
foreach (ShipTeleporter t in teleporters)
{
if (!t.isInverseTeleporter)
{
foundTeleporter = t;
break;
}
}
__result = ScriptableObject.CreateInstance<TerminalNode>();
if (foundTeleporter == null)
{
__result.displayText = "No teleporter found.";
return;
}
if(foundTeleporter.buttonTrigger.interactable)
{
__result.displayText = "Teleporting...";
foundTeleporter.PressTeleportButtonOnLocalClient();
return;
}
__result.displayText = foundTeleporter.buttonTrigger.disabledHoverTip;
}
}
}