OsGetAgentIP
From OpenSimulator
(Difference between revisions)
m (Added permissions and delay information) |
m (Script change) |
||
Line 6: | Line 6: | ||
|ossl_example=<source lang="lsl"> | |ossl_example=<source lang="lsl"> | ||
// | // | ||
− | // | + | // osGetAgentIP Script Example |
// | // | ||
+ | |||
default | default | ||
{ | { | ||
− | + | state_entry() | |
− | + | { | |
− | + | llSay(PUBLIC_CHANNEL, "Touch to see osGetAgentIP usage."); | |
− | + | } | |
− | + | ||
− | + | touch_start(integer number) | |
− | + | { | |
− | + | llSay(PUBLIC_CHANNEL, "Your IP is : " + osGetAgentIP(llDetectedKey(0))); | |
+ | } | ||
} | } | ||
</source> | </source> |
Revision as of 11:52, 24 November 2020
string osGetAgentIP(key uuid);
| |
Requires: key uuid of agent to get IP address for.
Returns: string representing the IP address returned. Possible Exceptions thrown: System.Exception: OSSL Runtime Error: osGetAgentIP permission denied. Allowed threat level is VeryLow but function threat level is High. Notes: Unknown if this function requires a valid Detect event such as touch or collision. Unknown what is returned for IPv6. osGetAgentIP is always restricted to Administrators | |
Threat Level | Severe |
Permissions | Use of this function is always allowed by default |
Extra Delay | 0 seconds |
Example(s) | |
// // osGetAgentIP Script Example // default { state_entry() { llSay(PUBLIC_CHANNEL, "Touch to see osGetAgentIP usage."); } touch_start(integer number) { llSay(PUBLIC_CHANNEL, "Your IP is : " + osGetAgentIP(llDetectedKey(0))); } } |