Here is a little AHK script to open the server, start it and run the game via spice tools. Will also close the game on escape. Handy to have for Rocketlauncher builds  
#SingleInstance force
Run, "D:\Arcade\System roms\Sega Ringedge\roms\Road Fighters 3D\contents\sv\eaLocalServer.exe"
WinActivate, GLUT
WinMinimize , eaLocalServer
Send, {Enter}
Run, "D:\Arcade\System roms\Sega Ringedge\roms\Road Fighters 3D\contents\spice.exe"
Escape::
    Process,Close,spice.exe
    Run,taskkill /im "spice.exe" /F
    Process,Close,eaLocalServer
    Run,taskkill /im "eaLocalServer.exe" /F
    ExitApp
return
$5::LControl
	Probably can be tweaked, but best I could do in a few minutes :).