Difference between revisions of "User:ANSI Soderstrom/No Script Areas"

From Second Life Wiki
Jump to navigation Jump to search
m
m
Line 1: Line 1:
== Leave a comment ==
* [[User_talk:{{PAGENAME}}|My User Talk about this Page]]
== All About : No Script Areas ==
Belong to the Note in [[llTakeControls]] it seems that its possible to override "No Script"-Areas.
Belong to the Note in [[llTakeControls]] it seems that its possible to override "No Script"-Areas.



Revision as of 05:57, 8 April 2010

Leave a comment

All About : No Script Areas

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.

<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");
       }
   }
   // further code and events ...

} </lsl>