Thebarricade/Sandbox – User

From Bohemia Interactive Community
< Thebarricade
Revision as of 11:32, 25 October 2009 by thebarricade (talk | contribs)

Categories:

Useful code

FPS Counter (A2)

[] spawn
{
    while {true} do
    {
    	hintSilent str (round diag_fps);
    	sleep .5;
    };
};

(stolen from Rok)