User:ANSI Soderstrom/No Script Areas

From Second Life Wiki
Jump to navigation Jump to search

Belong to the Note in llTakeControls it seems that its possible to override "No Script"-Areas.

Simply add following code in your Script, and be sure u have attached this Script BEFORE you enter a "No Script"-Area: If u want that this Script should work in "No Script"-Areas too :

<lsl> default {

   state_entry()
   {
       llRequestPermissions(llGetOwner(), PERMISSION_TAKE_CONTROLS);
   }
   run_time_permissions(integer perm)
   {
       if(PERMISSION_TAKE_CONTROLS & perm)
       {
           llTakeControls(0, TRUE, TRUE);
           llOwnerSay("I am be able to work in \"No Script\"-Areas");
       }
   }

} </lsl>