Thebarricade/Sandbox – User
< Thebarricade
Category: Sandbox
thebarricade (talk | contribs) No edit summary |
m (Erentar moved page Thebarricade's Sandbox to User:Thebarricade/Sandbox: Bot: Moved page) |
||
| (5 intermediate revisions by 2 users not shown) | |||
| Line 1: | Line 1: | ||
Useful code | |||
== FPS Counter (A2) == | |||
<pre> | |||
[] spawn | |||
{ | |||
while {true} do | |||
{ | |||
hintSilent str (round diag_fps); | |||
sleep .5; | |||
}; | |||
}; | |||
</pre> | |||
(stolen from [[User:Rok|Rok]]) | |||
[[Category:Sandbox]] | |||
Latest revision as of 03:39, 3 December 2018
Useful code
FPS Counter (A2)
[] spawn
{
while {true} do
{
hintSilent str (round diag_fps);
sleep .5;
};
};
(stolen from Rok)