CARVIEW |
Select Language
HTTP/2 200
date: Tue, 14 Oct 2025 01:51:47 GMT
content-type: text/html; charset=UTF-8
server: cloudflare
x-frame-options: DENY
x-content-type-options: nosniff
x-xss-protection: 1;mode=block
vary: accept-encoding
cf-cache-status: DYNAMIC
content-encoding: gzip
set-cookie: _csrf-frontend=671b33abe284d0744fc02cf2f3fac1359a1041628bb3af24a4dd91919038ed0ba%3A2%3A%7Bi%3A0%3Bs%3A14%3A%22_csrf-frontend%22%3Bi%3A1%3Bs%3A32%3A%22UrlzX9eLWG-mVAtVcxgsbdSs0bxPR25t%22%3B%7D; HttpOnly; Path=/
cf-ray: 98e36eff3c7b8cf1-BLR
Linked Prim ID by Name - Pastebin.com
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //#########################################################################################################
- //
- // return a link number by finding a prim with a given name
- // will only return the link number of the first matching name
- // returns -1 if the name is not found
- //
- //#########################################################################################################
- //
- integer getSingleLinkedPrimByName(string name)
- {
- integer index=0;
- while(index<=llGetNumberOfPrims()){
- if (llGetLinkName(index)==name){
- return index;
- }
- index++;
- }
- return -1;
- }
- //#########################################################################################################
- //
- // return all link numbers for prims with a given name
- // will only return the link number of the first matching name
- // returns an empty list if the name is not found
- //
- //#########################################################################################################
- //
- list getAllLinkedPrimsByName(string name)
- {
- list id[];
- integer index=0;
- while(index<=llGetNumberOfPrims()){
- if (llGetLinkName(index)==name){
- id+= index;
- }
- index++;
- }
- return id;
- }
Advertisement
Add Comment
Please, Sign In to add comment
-
⭐⭐⭐Make $15OO in 2O minutesV G⭐⭐
Java | 7 sec ago | 0.15 KB
-
🚨 Free Crypto Method 🚨
JavaScript | 13 sec ago | 0.24 KB
-
⭐⭐⭐Profit Method⭐⭐
Java | 18 sec ago | 0.15 KB
-
💡 Instant BTC Profit Method ✅ Working
JavaScript | 22 sec ago | 0.24 KB
-
⭐⭐⭐Exchange Exploit⭐⭐
Java | 30 sec ago | 0.15 KB
-
⭐⭐⭐Profit Method⭐⭐
Java | 41 sec ago | 0.15 KB
-
⭐⭐⭐Profit Method⭐⭐
Java | 52 sec ago | 0.15 KB
-
💡 Instant BTC Profit Method ✅ Working
JavaScript | 57 sec ago | 0.24 KB
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the Cookies Policy. OK, I Understand