Interface IWukongChatApi
Namespace: WukongMp.Sdk.Api
Assembly: WukongMp.Sdk.dll
API for interacting with the in-game chat.
public interface IWukongChatApi
Methodsâ
SendPlayerMessage(string)â
Sends a message to the in-game chat, as if the player wrote it.
void SendPlayerMessage(string message)
Parametersâ
message string
The message to send.
SendServerMessage(string)â
Sends a message to the in-game chat without a player name attached to it.
void SendServerMessage(string message)
Parametersâ
message string
The message to send.
ShowLocalMessage(string, FLinearColor)â
Adds a message to the in-game chat, visible only to the local player.
void ShowLocalMessage(string message, FLinearColor color)
Parametersâ
message string
The message to add to the chat.
color FLinearColor
The color of the message in the chat.