public static void terminalChat([TerminalCommandParameter("message", "text to send")] string message)
 {
     ChatManager.sendChat(EChatMode.GLOBAL, message);
 }
Esempio n. 2
0
 private static void onClickedSpyRefreshButton(SleekButton button)
 {
     ChatManager.sendChat(EChatMode.GLOBAL, "/spy " + PlayerPauseUI.spySteamID);
 }
Esempio n. 3
0
 private static void onClickedSpySlayButton(SleekButton button)
 {
     ChatManager.sendChat(EChatMode.GLOBAL, "/slay " + PlayerPauseUI.spySteamID + "/Screenshot Evidence");
 }
Esempio n. 4
0
 private void onClickedSpyButton(SleekButton button)
 {
     ChatManager.sendChat(EChatMode.GLOBAL, "/spy " + this.player.playerID.steamID);
 }