Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- integer conta;
- mostra(string s)
- {
- llSetText( s, <1,1,1>, 1);
- }
- default
- {
- state_entry()
- {
- llSay(0, "Reset");
- mostra("Toccami");
- }
- touch_start(integer count)
- {
- conta=1;
- mostra( "Iterazione "+(string)conta );
- llSetTimerEvent(2);
- }
- timer()
- {
- conta++;
- if(conta<=10)
- {
- mostra("Iterazione "+(string)conta);
- return;
- }
- mostra("");
- llSetTimerEvent(0);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement