// This script is from http://xahlee.org/sl/ . Copyright © 2007 Xah Lee. Permission is granted for use or modification provided this note is intact and the script has permissions for copy, mod, and resell. // Description: sample use of the timer function. //This script changes the color of the prim periodically default { state_entry() { llSetTimerEvent(3); } timer() { llSetColor(,0); llSetColor(,1); llSetColor(,2); llSetColor(,3); llSetColor(,4); llSetColor(,5); } }