Whois
De DigiWiki.
(Différences entre les versions)
Djphil (discuter | contributions)
(Page créée avec « <lsl> // Whois v0.1 by djphil (CC-BY-NC-SA 4.0) string whois = "http://whois.domaintools.com/"; default { // state_entry() {;} touch_start(integer number) … »)
(Page créée avec « <lsl> // Whois v0.1 by djphil (CC-BY-NC-SA 4.0) string whois = "http://whois.domaintools.com/"; default { // state_entry() {;} touch_start(integer number) … »)
Version actuelle en date du 31 décembre 2014 à 14:25
// 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); } }