Cmd
cmd is a feature of OWOT that allows scripts to exchange string messages.
Using cmd in scripts
Receiving cmd messages:
// Start receiving cmd messages
w.broadcastReceive();
// cmd message event
w.on("cmd", e =>
{
/*
Process the message here.
Properties:
kind = always "cmd"
data = the actual text of the cmd message
sender = the sender's channel id
source = always "cmd"
username (optional) = the sender's username
id (optional) = the sender's Uvias ID
*/
console.table(e);
});
Sending cmd messages:
// send a message with the text "hi" without including the username and Uvias ID
w.broadcastCommand("hi", false);
// send a message with the text "hi" with including the username and Uvias ID
w.broadcastCommand("hi", true);
Limitations
cmd has some limitations: