.com.unity Forums
  The Official e-Store of Shrapnel Games

This Month's Specials

Raging Tiger- Save $9.00
The Star and the Crescent- Save $9.00

   







Go Back   .com.unity Forums > Shrapnel Community > Space Empires: IV & V

Reply
 
Thread Tools Display Modes
  #1  
Old April 5th, 2004, 08:14 PM
Fyron's Avatar

Fyron Fyron is offline
Shrapnel Fanatic
 
Join Date: Jul 2001
Location: Southern CA, USA
Posts: 18,394
Thanks: 0
Thanked 12 Times in 10 Posts
Fyron is an unknown quantity at this point
Default Re: SE4Batch status?

I could not get the program to accept folder names longer than 8 characters, or the DOS style abbreviations for them...
__________________
It's not whether you win or lose that counts: it's how much pain you inflict along the way.
--- SpaceEmpires.net --- RSS --- SEnet ModWorks --- SEIV Modding 101 Tutorial
--- Join us in the #SpaceEmpires IRC channel on the Freenode IRC network.
--- Due to restrictively low sig limits, you must visit this link to view the rest of my signature.
Reply With Quote
  #2  
Old April 5th, 2004, 09:27 PM
Aiken's Avatar

Aiken Aiken is offline
Major
 
Join Date: Jan 2004
Location: Taganrog, Russia
Posts: 1,087
Thanks: 0
Thanked 0 Times in 0 Posts
Aiken is on a distinguished road
Default Re: SE4Batch status?

How to use SE4Batch on WinXP/2000 machine:

1. Install Se4Batch and apply the patch to Version 1.1
Assume that Space Empires IV installed into the "C:\Games\SpaceEmpires IV" folder.

2. Locate file paramete.dbf in folder where SE4Batch installed. Open it with any DBF editor you can find (ie CDBF or DBF Viewer), if you have Microsoft Office you can try to open it with Microsoft Access. Though I had errors after I've tried to edit this file with Notepad, but Unknown_Enemy said that Notepad works fine. So you can try Notepad also. Make a backup copy of paramete.dbf befor editing!

3. Open file should look like this:
--------------------------------------------------
PARID | PARPATHSE4 | PARPATHSAV |PARREPEAT | PATHMOD |PARDELAY |
--------------------------------------------------
1 | C:\PROGRA~1\SHRAPN~1\MALFAD~1\SPACEE~1 | C:\PROGRA~1\SHRAPN~1\MALFAD~1\SPACEE~1\SAVEGAME | 10 | TDM-MODPACK | 0 |
-------------------------------------------------- (sorry too little space to fit strings)
Now change the values of fields according to your setup:
PARPATHSE4: "C:\PROGRA~1\SHRAPN~1\MALFAD~1\SPACEE~1" to "C:\GAMES\SPACEE~1",
PARPATHSAV: "C:\PROGRA~1\SHRAPN~1\MALFAD~1\SPACEE~1\SAVEGAME" to "C:\GAMES\SPACEE~1\SAVEGAME",
PARREPEAT: "10" to any number of turns you wish to process in batch,
PARPATHMOD: "TDM-MODPACK" to the name of a mod folder you're going to play, or delete it completely if you're playing stock,
PARDELAY: "0" to any number of turns between backups (see SE4Batch readme) or leave it "0" if you don't want backups.
Save and exit.

4. Follow the points 5-10 of SE4Batch Readme (too lazy to rewrite 'em).

Unknown_Enemy, if I'm wrong about Notepad, correct me please and maybe rewrite this howto in good language if you wish. I'll delete my post when.

[ April 05, 2004, 20:31: Message edited by: aiken ]
Reply With Quote
  #3  
Old April 5th, 2004, 10:43 PM
Ruatha's Avatar

Ruatha Ruatha is offline
Major General
 
Join Date: May 2002
Location: Linghem, Östergötland, Sweden
Posts: 2,255
Thanks: 0
Thanked 0 Times in 0 Posts
Ruatha is on a distinguished road
Default Re: SE4Batch status?

Isn't it easiest to make your own batch file and customize it the way you want it, in notepad I made this one (Am at work so I can't test it but it should work):

code:
@echo off >NULL


set counter=0

:loop
set /a counter=%counter%+1

echo Running automated turn number %counter% now.

Gamepath\Se4.exe "Game" "password" "0" "modname"



if "%counter%"=="%1" goto ****

goto loop
ut

Where Gamepath is the full path to the SEIV exe file.
Game is gamename with the full path
Password is master password, if none enter a space between the " ".
Modname is ofcourse the name of the mod.
The "0" means you are running as host.

The line could look like this:
c:\games\space Empires IV Gold/SEIV.EXE "c:\games\space Empires IV Gold\FQM_Deluxe\Savegames\NGC4" "iammaster" "0" "FQM_Deluxe"


Save the file as auto.bat and call it as auto 10 in the run dialog box or a dos window to run 10 turns, or whatever number you desire.

Edit: Made for Win XP / 2000
EDIT 2: **** means End in Swedish...

[ April 05, 2004, 21:49: Message edited by: Ruatha ]
Reply With Quote
  #4  
Old April 5th, 2004, 10:59 PM
Spoo's Avatar

Spoo Spoo is offline
First Lieutenant
 
Join Date: Jan 2001
Location: Toledo, OH
Posts: 641
Thanks: 0
Thanked 0 Times in 0 Posts
Spoo is on a distinguished road
Default Re: SE4Batch status?

Quote:
EDIT 2: **** means End in Swedish...
Yeah, it has a somewhat different meaning in English...

Ah, the joys of language.
__________________
Assume you have a 1kg squirrel
E=mc^2
E=1kg(3x10^8m/s)^2=9x10^16J
which, if I'm not mistaken, is equivilent to roughly a 50 megaton nuclear bomb.
Fear the squirrel.
Reply With Quote
  #5  
Old April 5th, 2004, 11:27 PM
Aiken's Avatar

Aiken Aiken is offline
Major
 
Join Date: Jan 2004
Location: Taganrog, Russia
Posts: 1,087
Thanks: 0
Thanked 0 Times in 0 Posts
Aiken is on a distinguished road
Default Re: SE4Batch status?

Quote:
Originally posted by Ruatha:
Isn't it easiest to make your own batch file and customize it the way you want it, in notepad I made this one (Am at work so I can't test it but it should work):
Sure it's easier. And your method works too (just checked). Thank you Ruatha.
Reply With Quote
  #6  
Old April 6th, 2004, 01:02 AM
Master Belisarius's Avatar

Master Belisarius Master Belisarius is offline
Colonel
 
Join Date: Jul 2000
Location: Montevideo Uruguay
Posts: 1,598
Thanks: 0
Thanked 0 Times in 0 Posts
Master Belisarius is on a distinguished road
Default Re: SE4Batch status?

Quote:
Originally posted by aiken:
quote:
Originally posted by Ruatha:
Isn't it easiest to make your own batch file and customize it the way you want it, in notepad I made this one (Am at work so I can't test it but it should work):
Sure it's easier. And your method works too (just checked). Thank you Ruatha.
Yep, the method that you described is the right one to run the SE4Batch in XP/Win2000. I did it work with Win2000 thanks the Unknown_Enemy suggestions when I was running the Death Match2.
About the Ruathua method, think should work too, but when I did some test (some years ago), had problems trying to get backups.
Reply With Quote
  #7  
Old April 6th, 2004, 01:09 AM
Master Belisarius's Avatar

Master Belisarius Master Belisarius is offline
Colonel
 
Join Date: Jul 2000
Location: Montevideo Uruguay
Posts: 1,598
Thanks: 0
Thanked 0 Times in 0 Posts
Master Belisarius is on a distinguished road
Default Re: SE4Batch status?

Quote:
Originally posted by Atrocities:
Can someone repost the Batch file then
But I sent you the files 2 times! The first time, your standard mail rejected it due lack of space, but when sent you the files to your other email, have not received any message about reject...
Reply With Quote
Reply

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is On

Forum Jump


All times are GMT -4. The time now is 06:14 AM.


Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©1999 - 2025, Shrapnel Games, Inc. - All Rights Reserved.