Difference between revisions of "User:ANSI Soderstrom"

From Second Life Wiki
Jump to navigation Jump to search
Line 3: Line 3:
Simple Copy Protection for your Scripts :
Simple Copy Protection for your Scripts :


<lsl>
default
default
{
{
Line 30: Line 31:
     }     
     }     
}
}
</lsl>

Revision as of 12:07, 20 February 2010

i am alive !

Simple Copy Protection for your Scripts :

<lsl> default {

   state_entry() {
       if(llGetCreator() != "9adba1b4-a733-4a44-8275-f4a666784d8c") {  // ANSI Soderstrom
           llOwnerSay("Script: " + llGetScriptName() + ":");
           llOwnerSay("Sorry, my Scripts are only running in MY Items");
           llOwnerSay("Greetings, " + llKey2Name("9adba1b4-a733-4a44-8275-f4a666784d8c"));
           // llDie();
       } else {
           state online;
       }      
   }
   on_rez(integer i) {
       llResetScript();
   }

}

state online {

   state_entry() {
       // your Code
   }   
   
   on_rez(integer i) {
       llResetScript();
   }    

} </lsl>