Jump to content

My Hyperspin intro's showcase


keltoigael

Recommended Posts

  • Replies 125
  • Created
  • Last Reply
Posted

Awesome! Please tell me you are going to throw them up on the FTP for others to use. I know I would use them. Great job!

Posted

I like the system showcase in the 1st one. The iconic video game character intros would be great if we had a random intro function.

lfE5RzP.png

..........................back with a vengeance........................

Posted

I can add them to the FTP if it is allowed, most video stuff is hosted on emumovies so I dont know if they allow it on the hyperspin ftp. Thanks THK, it took me the longest to complete. A random intro function would be really cool and is a great idea. Sorry Steve but I wanted to make original new stuff, plus I already know when I am booting into Hyperspin.

Posted
The iconic video game character intros would be great if we had a random intro function.

I can make this happen without too much difficulty.

Posted

This script should be run just before HyperSpin is launched and is best used as part of a Hyperspin startup script.

It will delete the current Intro.flv before it chooses a random .flv file to copy to Intro.flv. Make sure that if you want to keep whatever video is currently Intro.flv, you rename it before running this script for the first time.

The file reading/writing should be almost instantaneous unless you're using enormous video files.

Place the compiled EXE into the Hyperspin\Media\Frontend\Video\ directory. Add the EXE to your startup script.

Based on some random person's "randomize wallpaper" AHK function.

#NoEnv  ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn  ; Enable warnings to assist with detecting common errors.
SendMode Input  ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.

#NoTrayIcon

Loop, *.flv
{
 Random, r, 0.0, %A_Index%
 if (r<1)
   ss=%A_LoopFileName%
}

FileDelete Intro.flv
FileCopy, %ss%, %A_ScriptDir%\Intro.flv

Posted

A video intro for HS with just fighting games (Street Fighter, Mortal Kombat, Killer Instinct, Marvel vs Capcom) would be amazing

HyperPin Manager | HyperSpin Manager | HyperSpin Checker | HyperSpin Renamer

ASRock Z77 Extreme4 MB | Core i5 3570K | Coolermaster Hyper212 EVO CPU cooler | 16GB RAM | OCZ Vertex 4 128Gb SSD (Windows 8) | OCZ Vertex 4 256Gb SSD (HS and all emulators and media) | Gigabyte GTX670 2Gb video card | 27" ASUS LED monitor | 650W Corsair PSU

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...