Synchronize
Revision as of 08:26, 25 January 2015 by ObviousAltIsObvious Resident (talk | contribs) (<lsl> tag to <source>)
simple synchronize script for two or more separate prims, like wings for instance
assuming the task(); is 100% similar in all prims and takes less than 1 sec to implement
float i = llGetTime();
task();
float x = llGetTime();
while (llGetUnixTime()%2 == 0)// do every even second (result 1 for odd seconds)
{
llSleep(1-(x-i));// one second minus time that has passed
}