Difference between revisions of "Talk:LlListen"

From Second Life Wiki
Jump to navigation Jump to search
Line 15: Line 15:
}}
}}
{{QA
{{QA
|Q=What when i do configuration via public channel? There are some scripts that use commands like '/99stop' which cannot be seen in public channel by others
|Q=What [happens when] when i do configuration via public channel? There are some scripts that use commands like '/99stop' which cannot be seen in public channel by others
|A=???
|A=They can be seen by seen by other scripts, the number at the beginning indicates the channel. '/99stop' sends 'stop' on channel 99. That can also be written as '/99 stop' and have the same effect. Any script just has to listen on channel 99 to receive the command.
}}
}}
}}
}}

Revision as of 14:24, 2 April 2007

  1. Has this function to be called in every state?
  2. Yes, it's a feature. Strife Onizuka
  1. How can i send commands in chat that cannot be seen by others?
    1. By other avatars?
    2. Use any channel other then 0 (PUBLIC_CHANNEL).
    1. By other scripts?
    2. Can't keep other scripts from hearing what your script says. But you can write complicated channel hopping communications that span the entire range of 4 billion channels, reducing the probability of anyone capturing a complete message.
    1. What [happens when] when i do configuration via public channel? There are some scripts that use commands like '/99stop' which cannot be seen in public channel by others
    2. They can be seen by seen by other scripts, the number at the beginning indicates the channel. '/99stop' sends 'stop' on channel 99. That can also be written as '/99 stop' and have the same effect. Any script just has to listen on channel 99 to receive the command.