integer i; default { state_entry() { llSay(0,"..touch and I play a computer song.."); } touch_start(integer total_number) { for (i=0; i<=32; ++i) { llTriggerSound((string)(llFloor(llFrand(10.0))+1),1.0); // choose an integer 0-9, add 1 to it llSleep(llFrand(1.0)); }; llSay(0,"thank you very much..."); } }