Hello everyone. I want to request a script, so let me go with the details.
I want a script that makes the game I am testing or playing to show the number of frames per second or FPS automatically. If you want to get the FPS, you press F2...but I want an automatic one, where at the start of the game I can view it. Is this possible? If so, please help me.
Thanks!
FPS Automatic Show
● ARCHIVED · READ-ONLY
-
-
If it's just for debugging purposes, I'm pretty sure something like Fraps would work for you. (It's what I've been using to test my big map's performance hit.)
-
#===============================================================================# Snippet to show FPS on Start-up#===============================================================================module FPS_Snippet ; $fps_showing = false # do not change this#=============================================================================== Use_Snippet = true if Use_Snippet && $fps_showing == false $fps_showing = true ; a = 'user32.dll' ; b = 'keybd_event' Win32API.new(a, b, ['i', 'i', 'l', 'l'], '').call(0x71,0,0,0) endend#===============================================================================# http://dekitarpg.wordpress.com/#===============================================================================Been using this for years without issue :)
-
OMG Thanks Dekita :) Trying this out now.#===============================================================================# Snippet to show FPS on Start-up#===============================================================================module FPS_Snippet ; $fps_showing = false # do not change this#=============================================================================== Use_Snippet = true if Use_Snippet && $fps_showing == false $fps_showing = true ; a = 'user32.dll' ; b = 'keybd_event' Win32API.new(a, b, ['i', 'i', 'l', 'l'], '').call(0x71,0,0,0) endend#===============================================================================# http://dekitarpg.wordpress.com/#===============================================================================Been using this for years without issue :)
This thread can be closed.