Say Region Frames Per Second
Revision as of 17:12, 16 March 2007 by Strife Onizuka (talk | contribs) (Say Region Rames Per Second moved to Say Region Frames Per Second)
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(); } }
}