//************************************************** //* //* Title: Fakefur Script Sample05 //* Make : 2006/09/08 //* Note : Put -> Initialization //* Touch -> Number(Text) Change //* //************************************************** integer cnt; //**************** //* Main Program * //**************** default { //****************** //* Initialization * //****************** state_entry() { cnt = 0; } //********* //* Touch * //********* touch_start(integer total_number) { //************************ //* 0 -> 1 -> .... -> 10 * //************************ for (cnt = 0;cnt <= 10;cnt++){ llSetText((string)cnt, <1,0,0>, 1.0); // Set Text Red llSleep(1); } //************************ //* 10 -> 9 -> .... -> 0 * //************************ do{ cnt--; //Count-1 llSetText((string)cnt, <0,0,1>, 1.0); // Set Text Blue llSleep(1); }while(cnt); //Count = 0 -> Exit } }