I noticed that when you open any rmxp game the screen stays black for a while (like 10 - 20 seconds depending on you comp and how many scripts you have ect.) and i got to thinking "hey what if you put a script at the top of the editor that drew a loading text that stayed there until all the scripts had be loaded and what ever else it dose had happened so I made this. all i did was make a new script at the top of the editer and pot this in it
$loadingsprite = Sprite.new(Viewport.new(0, 0, 640, 480))
$loadingsprite.bitmap = Bitmap.new(640, 480)
$loadingsprite.bitmap.font.size, $loadingsprite.z, $loadingsprite.bitmap.font.color = 40, 5000, Color.new(255, 255, 255)
$loadingsprite.bitmap.draw_text(0, 0, 640, 32, 'LOADING...')
Graphics.update
it hardly advanced but the effect is interesting try it out, mess with it and enjoy!
I also played around with Graphics.frame_rate I set it to 120 frames per second and my cpu spiked to over 60% and the fps still didn't go over 58 frames per second. lol!