Welcome to the Second Life Forums Archive

These forums are CLOSED. Please visit the new forums HERE

Script To Cause Item To Talk

Catherine Ashby
Registered User
Join date: 6 Feb 2007
Posts: 7
04-22-2007 11:36
I'm looking for a script that will allow a stationary item to say something every 5-10 minutes. For example, a computer might say "I'm overheating" every hour or something
Sys Slade
Registered User
Join date: 15 Feb 2007
Posts: 626
04-22-2007 11:53
CODE

default{
state_entry(){
llSetTimerEvent(300);
}

timer(){
llSay(0,"I'm overheating!");
}
}

For 10 minutes instead of 5, change 300 to 600.
Catherine Ashby
Registered User
Join date: 6 Feb 2007
Posts: 7
Script
04-22-2007 12:26
You Are an Angel