Hi,
Just wondering if it is possible to execute an existing chat command, like "/55 play,15,l" from one of my objects within an LSL Script. Whenever I use LlSay, LlInstantMessage, or LlOwnerSay it just dumps the string into chat and the listener for that specific command is not triggered.
Example (llOwnerSay does not function how I wish it too.) :
string command = "/55 play,15,l";
default
{
state_entry()
{
// Execute the chat command when the script starts
llOwnerSay(command);
}
}
Thanks!