Difference between revisions of "User:DoteDote Edison"

From Second Life Wiki
Jump to navigation Jump to search
m (add "visl" volunteer code)
m
Line 3: Line 3:




Not a Wiki pro, so using this page to figure out how to format properly.
Not a Wiki pro, I'll try to not screw it up.


====Email-to-IM Script for the Script Library====
====Email-to-IM Script for the Script Library====
Line 72: Line 72:
}
}
</lsl></pre>
</lsl></pre>
{{visl
|name=
|Greeters=
|Helpers=*
|Instructors=
|Mentors=
|}}

Revision as of 18:46, 21 February 2007


Not a Wiki pro, I'll try to not screw it up.

Email-to-IM Script for the Script Library

<lsl>
// Email-to-IM
// DoteDote Edison

///////// constants /////////
// how often to check for new email when owner is online (seconds)
float fast = 60.0;
// how often to check owner online status when owner is offline (seconds)
float slow = 300.0; 

////////// globals //////////
key request;
key owner;
integer owner_online;

default {
	state_entry() {
		owner = llGetOwner();
		string address = (string)owner + "@lsl.secondlife.com";
		llSetText("Email Server\nOnline", <0.25, 1.0, 0.25>, 1.0);
		llOwnerSay("Now online.  The Email-to-IM address for " + llKey2Name(owner) + " is:\n" + address);
		llSetTimerEvent(fast);
	}
	on_rez(integer start_param) {
		llResetScript();
	}
	touch_start(integer num_detect) {
		if (llDetectedKey(0) == owner) state off;
	}
	email(string time, string sender, string subject, string body, integer num_remain) {
		llInstantMessage(owner, "Email Received from: " + sender + " -- " + time);
		llInstantMessage(owner, body);
		if (num_remain > 0) llGetNextEmail("", "");
	}
	dataserver(key query, string data) {
		if (query == request) {
			request = "";
			if (data == "1") {
				owner_online = TRUE;
				llSetTimerEvent(fast);
			}
			else {
				owner_online = FALSE;
				llSetTimerEvent(slow);
			}
		}
	}
	timer() {
		request = llRequestAgentData(owner, DATA_ONLINE);
		if (owner_online) llGetNextEmail("", "");
	}
	state_exit() {
		llSetTimerEvent(0.0);
		llSetText("Email Server\nOffline", <1.0, 0.25, 0.25>, 1.0);
	}
}

state off {
	touch_start(integer num_detect) {
		if (llDetectedKey(0) == owner) state default;
	}
	on_rez(integer start_param) {
		llResetScript();
	}
}
</lsl>