in the Ares.ahk I would assume you need to change the following lines.
Add (SEGA PAC) and (NEC PAC) to section below... maybe after Sega Mega LD
MSystem := [MSystem := ["Arcade","Atari 2600","WonderSwan","WonderSwan Color","Pocket Challenge V2","ColecoVision","MSX","MSX2","PC Engine","TurboGrafx-16","PC Engine CD","TurboGrafx CD","SuperGrafx","My Vision","Nintendo Entertainment System","Famicom","Famicom Disk System","Game Boy","Game Boy Color","Game Boy Advance","Super Nintendo Entertainment System","Super Famicom","Satellaview","Nintendo 64","Nintendo 64DD","SuFami Turbo","SG-1000","Master System","Mark III","Game Gear","Mega Drive","Genesis","Mega CD","Sega CD","32X","Sega Mega LD","ZX Spectrum","Neo Geo AES","Neo Geo MVS","Neo Geo CD","Neo Geo Pocket","Neo Geo Pocket Color","PlayStation"]]
Then change this section
; Détection Mega CD 32X si le nom de la rom contient "32X"
If (InStr(romName, "32X")) {
; Mode hybride Mega CD 32X
params := """" . romPath . "\" . romName . romExtension . """" . " --system=MegaCD32X --fullscreen"
} Else {
; Cas standard
params := """" . romPath . "\" . romName . romExtension . """" . " --fullscreen"
}
Change to
; Détection LaserActive si le nom de la rom contient "(SEGA PAC)"
If (InStr(romName, "(SEGA PAC)")) {
; Mode hybride LaserActive (SEGA PAC)
params := """" . romPath . "\" . romName . romExtension . """" . " --system "LaserActive (SEGA PAC)" --fullscreen"
} Else {
; Cas standard
params := """" . romPath . "\" . romName . romExtension . """" . " --fullscreen"
}
If (InStr(romName, "(NEC PAC)")) {
; Mode hybride LaserActive (NEC PAC)
params := """" . romPath . "\" . romName . romExtension . """" . " --system "LaserActive (NEC PAC)" --fullscreen"
} Else {
; Cas standard
params := """" . romPath . "\" . romName . romExtension . """" . " --fullscreen"
}
You might be able to put the second part as an Elseif, then Else { ;cas standard..
i think you would then need to put (SEGA PAC) and (NEC PAC) in your rom names for each type of game. (hyperion (SEGA PAC).zip) and (Demon Judgement (NEC PAC).zip)
I havent used Hyperspin/rocketlauncher in a while so I might be wrong. I am using launchbox.