SChatMessage
Index
Properties Index
Properties
SenderID
uint SenderID get
ID of the sender of the message
function oc(chatm)
Space.Log(chatm.SenderID)
end
Space.Network.Chat.OnChat(oc)
--this script processes every new chat message and makes a UIText display the Sender's ID
uiText = Space.Host.GetReference("text").UIText --Add this Text object as reference in Scripting Runtime
OnChatFunction = function(SChatMessage)
uiText.Text = SChatMessage.SenderID
end
Space.Network.Chat.OnChat(OnChatFunction)
Sender
string Sender get
Name of the sender of the message
function oc(chatm)
Space.Log(chatm.Sender)
end
Space.Network.Chat.OnChat(oc)
--this script processes every new chat message and makes a UIText display the Sender name
uiText = Space.Host.GetReference("text").UIText --Add this Text object as reference in Scripting Runtime
OnChatFunction = function(SChatMessage)
uiText.Text = SChatMessage.Sender
end
Space.Network.Chat.OnChat(OnChatFunction)
Channel
string Channel get
Name of the channel
function oc(chatm)
Space.Log(chatm.Channel)
end
Space.Network.Chat.OnChat(oc)
--this script processes every new chat message and makes a UIText display the channel's name
uiText = Space.Host.GetReference("text").UIText --Add this Text object as reference in Scripting Runtime
OnChatFunction = function(SChatMessage)
uiText.Text = SChatMessage.Channel
end
Space.Network.Chat.OnChat(OnChatFunction)
Message
string Message get
The contents of the chat message
function oc(chatm)
Space.Log(chatm.Message)
end
Space.Network.Chat.OnChat(oc)
--this script processes every new chat message and makes a UIText display the Message
uiText = Space.Host.GetReference("text").UIText --Add this Text object as reference in Scripting Runtime
OnChatFunction = function(SChatMessage)
uiText.Text = SChatMessage.Message
end
Space.Network.Chat.OnChat(OnChatFunction)