Jump to content

All my products and services are free. All my costs are met by donations I receive from my users. If you enjoy using any of my products, please donate to support me. My bare hosting costs are currently not met so please consider donating by either clicking this text or the Patreon link on the right.

Patreon

Recommended Posts

Posted

ok i have tried quite a few different CL's for launching it with a game

first I tried

E:\Emulation\tools\Xpadder\Xpadder.exe Mafia /M without quotes and this one launches xpadder,but doesnt launch the game or close xpadder

when adding quotes

"E:\Emulation\tools\Xpadder\Xpadder.exe" Mafia /M

it launches the game but not xpadder :(

whats the issue?

Posted

I use bat files to get around this. I basically send the rom name as a variable, in the "also launch" box like so:

Wingames.bat "[ROM]"

This is for 2 controllers to load a profile named the same as the the rom or link is. Then in my bat file I call em like this:

Xpadder.exe "%1"1 "%1"2 /M

Provided your profile matches the name of the rom you're good.

I use the lnk method for pc games, so if my link in named "Bionic Commando" so is my xpadder profile... Bionic Commando1.xpadderprofile Bionic Commando2.xpadderprofile (one profile per controller).

Plus that way you get custom controls for every pc game you play... Mouse emulation if needed, etc.

Did that make sense? Lol!

Posted

the ink method is just using a game.exe shortcut as the rom name for gameEX right?

My xpadder profile is the same name as the game mafia.and the exe shortcut is mafia

its weird it launches xpadder but the game will not launch until i kill xpadder,the the game launches!

Posted

I make a shortcut to the exe and name it whatever I want, keep all the shortcuts in one folder, and make an emu for GameEx that launches the links. Then I gather artwork that matches the lnk method, make the profiles match the name, eventually throw a db together for the same name, etc.

Posted

I should mention also that in launch after I have another bat file that kills xpadder for me. I have better luck running bat files than using actual command lines in "launch before" "launch after" and "also launch" for some reason.

Posted

/M not \M

Yes you'll have to do a CD to get to the exe

Like CD "C:\path\xpadder.folder"

Posted

Should contain something like this:

taskkill /f /im xpadder.exe

Complete path is unnecessary!

ok that takes care of that.

Now that .bat file for launching the xpadder mafia profile should be..

EDIT: ok I think i got everyone now...lol we will see

Posted

/M not \M

Yes you'll have to do a CD to get to the exe

Like CD "C:\path\xpadder.folder"

It's actually "/im"! Also the path is not required as it just kills the open task.

Posted

I use xpadder command line to kill it gracefully...

Xpadder.exe /C

Xpadder.exe /M runs it minimized.

Tskill works too I just have a thing about killing it gracefully. :)

Posted

ok that takes care of that.

Now that .bat file for launching the xpadder mafia profile should be..

EDIT: ok I think i got everyone now...lol we will see

Something along the these lines:

CD /d "E:\Emulation\tools\Xpadder"
Xpadder.exe Mafia /M

Hard to say exactly since I can't test this and don't have it in front of me. Some variations may need to be made to the command-line depending how GameEx interacts with it.

Or try:

CD /d "E:\Emulation\tools\Xpadder"
Start "" Xpadder.exe Mafia /M

Posted

Chat mesk? I'll help ya.

Posted

ok i cannot get xpadder to launch when using a .bat file

when i set a command line to launch before & launch after xpadder launches,but the game doesnt until I kill xpadder :)

Posted

Lemmie see your bat file.

Posted

This isn't going to work:

E:\Emulation\tools\Xpadder\Xpadder.exe Mafia /M

You need to do something like this:

@echo off

CD "E:\Emulation\tools\Xpadder\"
Xpadder.exe Mafia /M

Edit: hold on mesk. Ill make you one.

Posted

Let me make you one quick. Theres more to it than that.

Posted

Okay, try this:

In the Also Launch field, use this:

::Launch Xpadder (Mafia Profile)
:BEGIN
@echo off
::Browse to the directory
E:
cd "E:\Emulation\tools\Xpadder\"
::Begin Xpadder and Minimize the Window
start "" xpadder.exe "Mafia" /M
:END
::EoF

And in the launch after here's your close Xpadder bat:

::Close Xpadder
:BEGIN
@echo off
::Browse to the directory
E:
cd "E:\Emulation\tools\Xpadder\"
::Close Xpadder
start "" xpadder.exe /C
:END
::EoF

Create a TXT file exactly like this one and save it (best to write it out this way instead of copy/pasting it). Change the file extension to .bat

Guest
This topic is now closed to further replies.
×
×
  • Create New...