//************************************************** //* //* Title: Fakefur Script Sample07 //* Make : 2006/09/08 //* Note : Put -> Nothing //* Touch -> Music(10sec Play * 3) //* //************************************************** //**************** //* Main Program * //**************** default { //****************** //* Initialization * //****************** state_entry() { //Nothing } //********* //* Touch * //********* touch_start(integer total_number) { llPlaySound("Music1", 1); llSleep(9.9); //Wait 9.9sec llPlaySound("Music2", 1); llSleep(9.9); //Wait 9.9sec llPlaySound("Music3", 1); } }