Say Region Frames Per Second: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|
(No difference)
| |
Revision as of 18:12, 16 March 2007
float fps; string frames; string region; float home=FALSE; default {
state_entry()
{
llListen(0,"",llGetOwner(),"region fps");
}
listen(integer c,string n,key i,string m)
{
if(m=="region fps")
{
fps=llGetRegionFPS();
frames=(string)(fps);
region=llGetRegionName();
llSay(0,region+" fps is:"+frames);
if(fps > 27)
{
llSay(0,region+" is running smoothly");
}
if(fps > 22 && fps < 15 )
{
llSay(0,region+" is running slowly");
}
if(fps < 15)
{
llSay(0,"CAUTION:"+region+" is in danger of crashing");
}
llResetScript();
}
}
}