Second Life Copybot
Lava Bubbler Script Full - Printable Version

+- Second Life Copybot (https://secondlifecopybot.com)
+-- Forum: SECOND LIFE PRODUCTS (https://secondlifecopybot.com/forum-1.html)
+--- Forum: SCRIPTS (https://secondlifecopybot.com/forum-1022.html)
+---- Forum: SCRIPTS (https://secondlifecopybot.com/forum-8.html)
+----- Forum: PARTICLES (https://secondlifecopybot.com/forum-52.html)
+----- Thread: Lava Bubbler Script Full (/thread-4037.html)



Lava Bubbler Script Full - YoungMoney - 05-04-2013

PHP Code:
integer spinning FALSE;

default
{
    
state_entry()
    {
        
//llSay(0, "Hello, Avatar!");
        //llResetScript();
    
}

    
touch_start(integer total_number)
    {
        if(
llDetectedKey(0) == llGetOwner()){
            if(
spinning){
                
llResetScript();
                
spinning FALSE;
            }else{
                
llTargetOmega(llRot2Left(llGetRot()),2.0,0.10);
                
llSetTextureAnim(ANIM_ON SMOOTH LOOPALL_SIDES110.00.00.318);
                
spinning TRUE;
            }
        }
    }