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