User:ANSI Soderstrom/No Script Areas
< User:ANSI Soderstrom
Jump to navigation
Jump to search
Revision as of 04:39, 8 April 2010 by ANSI Soderstrom (talk | contribs)
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"); } }
} </lsl>