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

Not a gameEX question but I know most of you use xpadder here.

Some emulators require I use xpadder for 1 - 6 players, I use a .bat file to launch xpadder with the specified profile.

My question is, how do I run the command in the .bat to launch the xpadder profile for controllers 2+

This is what I use normally


@ECHO off

E:
cd Games\Ultils\xpadder\
start "" xpadder.exe "E:\Games\Ultils\xpadder\xbox360 P1" /M

@ECHO on

I tried something like this but it just changed the profile for the first controller


@ECHO off

E:
cd Games\Ultils\xpadder\
start "" xpadder.exe "E:\Games\Ultils\xpadder\xbox360 P1" /M
start "" xpadder.exe "E:\Games\Ultils\xpadder\xbox360 P2"
start "" xpadder.exe "E:\Games\Ultils\xpadder\xbox360 P3"
start "" xpadder.exe "E:\Games\Ultils\xpadder\xbox360 P4"
@ECHO on

Thanks in advance.

Posted

Haven't used XPadder in a long time but I think you just load the profiles off the same exe instead of each one individually. Meaning:

xpadder.exe <profile1> <profile2> <profile3> <profile4> /M

You fill in the <profile#> with you profile names of course.

Posted

Perfect thanks.


@echo off

E:
cd Games\Ultils\xpadder\
start "" xpadder.exe "xbox360 P1" "xbox360 P2" "xbox360 P3" "xbox360 P4" /M

@echo on

Thats how I configured it and it works a charm

Posted

Perfect thanks.


@echo off

E:
cd Games\Ultils\xpadder\
start "" xpadder.exe "xbox360 P1" "xbox360 P2" "xbox360 P3" "xbox360 P4" /M

@echo on

Thats how I configured it and it works a charm

Good deal! Since only running a single command in this one, why not just use the exe in the launch before instead of using a batch? Also the @ECHO ON serves no purpose at the end of the batch script since you're hiding the rest anyways. I'd get out of the habit of adding it.

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