SB_CHAT_SUCCESS
From SmartBots Developers Docs
Jump to: navigation, search
Raised when bot successfully connects to the group chat (see SB_CHAT_LISTEN)
// Event usage:
link_message(integer sender, integer cmd, string data, key id) {
if(cmd == SB_CHAT_SUCCESS) {
llOwnerSay("Event " + cmd + " arrived! Data:\n" + data);
}
}
Event parameters
link_message event receives cmd, str and id parameters. Their meaning for SB_CHAT_SUCCESS event is explained below:
Variable | Type | Description | |
---|---|---|---|
cmd | integer | the SB_CHAT_SUCCESS's numeric ID | |
data | string | not used | |
id | key | group UUID |
- SB CHAT SUCCESS