OsGetPrimCount

From OpenSimulator

(Difference between revisions)
Jump to: navigation, search
(Created page with "{{osslfunc |threat_level=none ||permissions=${OSSL|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER |delay=0 |function_syntax=integer osTeleportObject(key objectID) |ossl_example=...")
 
Line 1: Line 1:
 
{{osslfunc
 
{{osslfunc
|threat_level=none
+
|threat_level=ignore
||permissions=${OSSL|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER
+
|permissions=true
|delay=0
+
|delay=0|function_syntax=integer osGetPrimCount()<br>
|function_syntax=integer osTeleportObject(key objectID)
+
integer osGetPrimCount(key objectID)<br>
 
|ossl_example=<source lang="lsl">
 
|ossl_example=<source lang="lsl">
  
Line 14: Line 14:
 
     touch_start(integer num)
 
     touch_start(integer num)
 
     {
 
     {
         // target position in region local coords
+
         llOwnerSay(" this linkset has " + (string) osGetPrimCount() + " prims");
        vector target =<873.911926, 879.844910, 21.332354>; 
+
        rotation rot =<0,0,0.707,.707>;
+
        osTeleportObject(llGetKey(),target,rot,1);
+
 
     }
 
     }
 
}
 
}
 
</source>
 
</source>
|description=...
+
|description=
  
 
===== Arguments: =====
 
===== Arguments: =====

Revision as of 15:01, 14 June 2023

integer osGetPrimCount()

integer osGetPrimCount(key objectID)

===== Arguments: =====
  • objectID optional key a prim
Threat Level ignore is unknown threat level
Permissions Use of this function is always allowed by default
Extra Delay 0 seconds
Example(s)
default
{
    state_entry()
    {
       llSay(0, "Script running");
    }
    touch_start(integer num)
    {
        llOwnerSay(" this linkset has " + (string) osGetPrimCount() + " prims");
    }
}
Notes
This function was added in 0.9.3.0


Personal tools
General
About This Wiki