a lost user
Join date: ?
Posts: ?
|
09-12-2005 09:54
looking for a script/ object that will let me have a text I save repeated automatically every few minutes on local chat 
|
DoteDote Edison
Thinks Too Much
Join date: 6 Jun 2004
Posts: 790
|
09-12-2005 16:38
You should post script questions in the script forum. But, the most basic method: string msg = "Your message here.";
default { state_entry() { llSetTimerEvent(120.0); // number of seconds between chats } timer() { llWhisper(0, msg); } }
That will whisper, "Your message here." every 2 minutes.
|
Tabu Tiramisu
owner Le Cimetiere
Join date: 13 Sep 2005
Posts: 14
|
09-13-2005 06:43
thanks for this 
|
Introvert Petunia
over 2 billion posts
Join date: 11 Sep 2004
Posts: 2,065
|
09-13-2005 06:50
I will note that spamming chat with the same message will make you wildly popular at parties and if your message is advertising goods or services this may be viewed as a violation of the Community Standards which could result in disciplinary action.
I strongly recommend you ask yourself why you would like to do this. You may also wish to look at gestures which allow you to assign trigger a chat message to a single key-stroke, which, unlike the script will come from you instead of your attachment.
|