/////////////////////////////////////////////////////////////////////////// // Copyright (C) Wizardry and Steamworks 2011 - License: GNU GPLv3 // // Please see: http://www.gnu.org/licenses/gpl.html for legal details, // // rights of fair usage, the disclaimer and warranty conditions. // /////////////////////////////////////////////////////////////////////////// default { state_entry() { llListen(-7, "", llGetOwner(), ""); llTextBox(llGetOwner(), "\nType the name of an avatar to retrieve the key:", -7); } listen(integer channel, string name, key id, string message) { llMessageLinked(LINK_THIS, 0, message, ""); } link_message(integer sender_num, integer num, string str, key id) { if(str == "KN2K") llTextBox(llGetOwner(), "\nType the name of an avatar to retrieve the key:" + "\n\nYour last search result: " + (string)id, -7); } }