Whois
De DigiWiki.
// Whois v0.1 by djphil (CC-BY-NC-SA 4.0) string whois = "http://whois.domaintools.com/"; default { // state_entry() {;} touch_start(integer number) { key avatarID = llDetectedKey(0); string adressIP = osGetAgentIP(avatarID); llSay(PUBLIC_CHANNEL, "[IP] " + adressIP); llLoadURL(avatarID, "Whois ?", whois + adressIP); } }