ARCADE FOREVER

cerrar juegos taito typeX X2 con closemul

« Older   Newer »
  Share  
view post Posted on 18/6/2021, 18:52     +1   -1
Avatar

NOVEL

Group:
Member
Posts:
67
Reputation:
+1

Status:


quiero usar closemul para cerrar juegos taito-x2...como se hace? Gracias!
 
Top
view post Posted on 22/6/2021, 17:01     +1   -1
Avatar

V.I.P.

Group:
Usuarios AFFA
Posts:
215
Reputation:
+6

Status:


First...how do you start Taito Type X/X2 games?
 
Top
view post Posted on 24/6/2021, 16:46     +1   -1
Avatar

NOVEL

Group:
Member
Posts:
67
Reputation:
+1

Status:


los juegos viene con un game.exe y que arrastras al loader.exe, o bien creas un archivo.bat y este se cierra con "esc" (ya sabes!)
tengo configurado para todos los emuladores y juegos (hasta el momento)que salgan al apretar la combinación de tecla/botón 1/start + 5/coin, para no agregar un boton extra de esc.

como hago que cierren con la cominacion de teclas mencionadas
 
Top
view post Posted on 24/6/2021, 18:16     +1   -1
Avatar

V.I.P.

Group:
Usuarios AFFA
Posts:
215
Reputation:
+6

Status:


Ok.
Closemul only work with keyboard, no joysticks support.
You need something like this:
In closemul.ini:
CODICE
Exit Key 1=49
Exit Key 2=53

Program=game.bat
Program 2=game.exe


49 and 53 are ASCII codes for QWERT Keyboard keys.
game.bat is the name of is the bat file that runs the games, change accordingly
 
Top
view post Posted on 24/6/2021, 23:14     +1   -1
Avatar

V.I.P.

Group:
Usuarios AFFA
Posts:
4,464
Reputation:
+299
Location:
Barcelona

Status:


Has visto este video?

 
Top
view post Posted on 25/6/2021, 15:28     +1   -1
Avatar

V.I.P.

Group:
Usuarios AFFA
Posts:
215
Reputation:
+6

Status:


No, but I know the El Hendri work.
In Closemul, Program and Program2 have a trick: if you don't specify the Program2, Closemul will run and monitor Program, this is the default mode. However, if you specify Program2 , Closemul will run Program as usual, but will monitor and close Program2 instead Program .
I your case, the bat just run the game and close itself, after that what will be running is the Game.exe and it is that we should close.
I've used it this way, my bat file was like this:
CODICE
@echo off

if %1 == ah3 goto ah3
if %1 == bbcs goto bbcs
if %1 == bbct goto bbct
if %1 == bf goto bf
if %1 == cb goto cb
if %1 == kof98um goto kof98um
if %1 == kofmia goto kofmia
if %1 == kofxii goto kofxii
if %1 == kofxiii goto kofxiiiS
if %1 == otmd goto otmd
if %1 == pi5 goto pi5
if %1 == sa goto sa
if %1 == sfvi goto sfvi
if %1 == ssed goto ssed
if %1 == ssfivae goto ssfivae
if %1 == thg5 goto thg5
if %1 == ttgm3 goto ttgm3
if %1 == tw goto tw
if %1 == bmiidx17 goto bmiidx17
if %1 == gwg goto gwg
if %1 == snsiii goto snsiii
if %1 == hmr goto hmr
if %1 == riii goto riii
if %1 == riv goto riv
goto exit

:ah3
E:CD\Arcade\TaitoTypex\Roms\ah3
Closemul.exe
goto exit

:bbcs
E:CD\Arcade\TaitoTypex\Roms\bbcs
Closemul.exe
goto exit

:bbct
E:CD\Arcade\TaitoTypex\Roms\bbct
Closemul.exe
goto exit

:bf
E:CD\Arcade\TaitoTypex\Roms\bf
Closemul.exe
goto exit

:cb
E:CD\Arcade\TaitoTypex\Roms\cb
Closemul.exe
goto exit

:gwg
E:CD\Arcade\TaitoTypex\Roms\gwg
Closemul.exe
goto exit

:hmr
E:CD\Arcade\TaitoTypex\Roms\hmr
Closemul.exe
goto exit

:kof98um
E:CD\Arcade\TaitoTypex\Roms\kof98um
Closemul.exe
goto exit

:kofmia
E:CD\Arcade\TaitoTypex\Roms\kofmia
Closemul.exe
goto exit

:kofxii
E:CD\Arcade\TaitoTypex\Roms\kofxii
Closemul.exe
goto :run

:kofxiii
E:CD\Arcade\TaitoTypex\Roms\kofxiii
Closemul.exe
goto exit

:otmd
E:CD\Arcade\TaitoTypex\Roms\otmd
Closemul.exe
goto exit

:pi5
E:CD\Arcade\TaitoTypex\Roms\pi5
Closemul.exe
goto exit

:riii
E:CD\Arcade\TaitoTypex\Roms\riii
Closemul.exe
goto exit

:riv
E:CD\Arcade\TaitoTypex\Roms\riv
Closemul.exe
goto exit

:sa
E:CD\Arcade\TaitoTypex\Roms\sa
Closemul.exe
goto exit

:sfvi
E:CD\Arcade\TaitoTypex\Roms\sfvi
Closemul.exe
goto exit

:snsiii
E:CD\Arcade\TaitoTypex\Roms\snsiii
Closemul.exe
goto exit

:ssed
E:CD\Arcade\TaitoTypex\Roms\ssed
Closemul.exe
goto exit

:ssfivae
E:CD\Arcade\TaitoTypex\Roms\ssfivae
Closemul.exe
goto exit

:thg5
E:CD\Arcade\TaitoTypex\Roms\thg5
Closemul.exe
goto exit

:ttgm3
E:CD\Arcade\TaitoTypex\Roms\ttgm3
Closemul.exe
goto exit

:tw
E:CD\Arcade\TaitoTypex\Roms\tw
Closemul.exe
goto exit

:bmiidx17
E:CD\Arcade\TaitoTypex\Roms\bmiidx17
Closemul.exe
goto exit

:exit


I put a copy of the Closemul in each game directory and set it up like the El Hendri video, except that I indicated in Program the bat file and in Program2 the game.exe.
Worked fine.

Edited by jeus - 25/6/2021, 18:55
 
Top
view post Posted on 29/6/2021, 16:47     +1   -1
Avatar

NOVEL

Group:
Member
Posts:
67
Reputation:
+1

Status:


QUOTE (jeus @ 24/6/2021, 19:16) 
In closemul.ini:
CODE
Exit Key 1=49
Exit Key 2=53

Program=game.bat
Program 2=game.exe

funciona....Te agradezco......

y aprovecho para hacerte otra pregunta:

como cerrar JUEGOS DE PC usando la combinacion de teclas ya mencionada?
funciona esta opcion?
 
Top
view post Posted on 29/6/2021, 17:55     +1   -1
Avatar

V.I.P.

Group:
Usuarios AFFA
Posts:
215
Reputation:
+6

Status:


Just test to know, as it varies from game to game.
PC games that have anticheat features lock the keyboard and prevent the operation of Closemul, which is treated as a cheat application.
 
Top
view post Posted on 29/6/2021, 18:05     +1   -1
Avatar

NOVEL

Group:
Member
Posts:
67
Reputation:
+1

Status:


QUOTE (jeus @ 29/6/2021, 18:55) 
Just test to know, as it varies from game to game.

luego hare las pruebas!

QUOTE (jeus @ 29/6/2021, 18:55) 
PC games that have anticheat features lock the keyboard and prevent the operation of Closemul, which is treated as a cheat application.

y cual seria la forma correcta para cerrar los juegos de pc, algun metodo o tutorial paso a paso de como se hace?

Gracias!!
 
Top
view post Posted on 29/6/2021, 18:45     +1   -1
Avatar

V.I.P.

Group:
Usuarios AFFA
Posts:
215
Reputation:
+6

Status:


Some people uses RocketLauncher for that.
Give it a change...But I warn you: the RocketLauncher is hard in beginning.
 
Top
view post Posted on 29/6/2021, 19:27     +1   -1
Avatar

NOVEL

Group:
Member
Posts:
67
Reputation:
+1

Status:


QUOTE (jeus @ 29/6/2021, 19:45) 
Some people uses RocketLauncher for that.
Give it a change...But I warn you: the RocketLauncher is hard in beginning.

RocketLauncher en advmenup?

como es eso?
 
Top
view post Posted on 29/6/2021, 19:43     +1   -1
Avatar

V.I.P.

Group:
Usuarios AFFA
Posts:
215
Reputation:
+6

Status:


Yes, RocketLaucher is a stand alone app and work with many FrontEnds.
It´s not HyperSpin dependent.
Think of it as a Closemul with more functions.
 
Top
view post Posted on 29/6/2021, 19:55     +1   -1
Avatar

NOVEL

Group:
Member
Posts:
67
Reputation:
+1

Status:


QUOTE (jeus @ 29/6/2021, 20:43) 
Yes, RocketLaucher is a stand alone app and work with many FrontEnds.
It´s not HyperSpin dependent.
Think of it as a Closemul with more functions.

ok....
y como seria el procedimiento para hacer eso? (estas hablando con un novato por si no te has dado cuenta)
 
Top
view post Posted on 29/6/2021, 20:35     +1   -1
Avatar

V.I.P.

Group:
Usuarios AFFA
Posts:
215
Reputation:
+6

Status:


Never used RocketLauncher
I have just a few PC games (fighting games, of course) and use a personalized AHK script.
Try Closemul first.
 
Top
view post Posted on 1/7/2021, 13:55     +1   -1
Avatar

NOVEL

Group:
Member
Posts:
67
Reputation:
+1

Status:


QUOTE (jeus @ 29/6/2021, 21:35) 
I have just a few PC games (fighting games, of course) and use a personalized AHK script.
Try Closemul first.

igual me inclino mas por los juegos de pelea o lucha :rolleyes:
QUOTE (jeus @ 29/6/2021, 21:35) 
I have just a few PC games (fighting games, of course) and use a personalized AHK script.
Try Closemul first.

podrias compartir tu metodo...ni idea como hacerlo :(

Gracias!
 
Top
29 replies since 18/6/2021, 18:52   715 views
  Share