OsGetAgentIP
From OpenSimulator
Revision as of 02:14, 12 January 2010 by Hallow Palmer (Talk | contribs)
//
// Example of osGetAgentIP
//
default
{
state_entry()
{
// Demo-Script
}
touch_start(integer total_number)
{
llSay (0, "Your IP is : "+ osGetAgentIP(llDetectedKey(0)));
}
}