Thebarricade/Sandbox – User

From Bohemia Interactive Community
Jump to navigation Jump to search
mNo edit summary
No edit summary
Line 12: Line 12:
};
};
</pre>
</pre>
(stolen from Rok)
(stolen from [[User:Rok|Rok]])

Revision as of 11:32, 25 October 2009

Useful code

FPS Counter (A2)

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

(stolen from Rok)