// Float text client // Put this script into client objects - they can be emailed with the // correct password as the subject and they will change their float text // Ordinal Malaprop // 2006-10-23 string gUpdateServerKey = "enter the key of the update server here"; key gText = ""; string PASSWORD = "sdkahsdsd"; update() { llSetText(gText, <1.0, 1.0, 1.0>, 1.0); } default { state_entry() { llSetTimerEvent(300.0); } on_rez(integer p) { update(); llSetTimerEvent(300.0); llOwnerSay("Registering with update server..."); llEmail(gUpdateServerKey + "@lsl.secondlife.com", "register", "register"); } timer() { llGetNextEmail("", PASSWORD); } email(string time, string address, string subj, string message, integer num_left) { if (num_left > 0) llGetNextEmail("", PASSWORD); else { gText = llDeleteSubString(message, 0, llSubStringIndex(message, "\n\n") + 1); update(); } } }