Arcade Prehacks

Results 1 to 3 of 3
  1. #1
    Senior Member
    Join Date
    Jul 2010
    Location
    The Netherlands
    Posts
    1,862

    Need help with batch file

    I'm making a private server (private use) and I need someone to make me a .bat file that can open all servers at once.
    Here are the file locations:

    Code:
    'C:\Users\Fam. Ikink\Desktop\Flyff Server\New Repack\V15_FIles\Program\1.AccountServerv.exe'
    'C:\Users\Fam. Ikink\Desktop\Flyff Server\New Repack\V15_FIles\Resource\2.DataBaseServer.exe'
    'C:\Users\Fam. Ikink\Desktop\Flyff Server\New Repack\V15_FIles\Program\3.CoreServerver.exe'
    'C:\Users\Fam. Ikink\Desktop\Flyff Server\New Repack\V15_FIles\Program\4.Certifier.exe'
    'C:\Users\Fam. Ikink\Desktop\Flyff Server\New Repack\V15_FIles\Program\5.LoginServer.exe'
    'C:\Users\Fam. Ikink\Desktop\Flyff Server\New Repack\V15_FIles\Program\6.CacheServer.exe'
    'C:\Users\Fam. Ikink\Desktop\Flyff Server\New Repack\V15_FIles\Resource\7.WorldServer.exe'
    Thanks in advance
    I've been here before.

  2. #2
    Administrator selectLOL's Avatar
    Join Date
    May 2010
    Posts
    3,290

    Re: Need help with batch file

    Try this:
    Code:
    @echo off
    start Program\1.AccountServerv.exe
    start Resource\2.DataBaseServer.exe
    start Program\3.CoreServerver.exe
    start Program\4.Certifier.exe
    start Program\5.LoginServer.exe
    start Program\6.CacheServer.exe
    start Resource\7.WorldServer.exe
    Put it in the folder "V15_FIles". This should start all at once.
    Now you have to make a link to the desktop and click it
    My website: http://selectlol.com/
    My second game: Play it now

    Its easier to find intelligent life in the universum than in the internet.

  3. #3
    Senior Member
    Join Date
    Jul 2010
    Location
    The Netherlands
    Posts
    1,862

    Re: Need help with batch file

    I'm at my iPod, but I'll try tomorrow. Thanks
    I've been here before.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •