View previous topic :: View next topic |
Author |
Message |
alen_swift
Joined: 25 Nov 2007 Posts: 7 Location: USA
|
Posted: Sat May 17, 2008 15:45 Post subject: parameters? how do i tell it to load the auto saved game |
|
|
i use nwnx4 for about a year now.. it work great..
now, im trying to make it go to the saved version of my game if it crashes
what do i place in the line instead of ths...
parameters = -module "Alpha and Omega v5,01"
and is that where i would place it?
im not to handy with scripts
but i got a big hammer _________________ to infinity and beyond
Alen Swift
Last edited by alen_swift on Mon May 19, 2008 23:34; edited 2 times in total |
|
Back to top |
|
|
ballestolive
Joined: 30 Oct 2006 Posts: 22 Location: FRENCH
|
Posted: Sun May 18, 2008 14:13 Post subject: |
|
|
Hello,
test without the use of space or comma in the name of your module.
Use _ and .
Bye |
|
Back to top |
|
|
alen_swift
Joined: 25 Nov 2007 Posts: 7 Location: USA
|
Posted: Sun May 18, 2008 15:05 Post subject: hmm |
|
|
the line I am using is ok, if i want it to use the mod...
but what would I use to load the auto saved game?
i not sure what you meen?
and thanks for the reply _________________ to infinity and beyond
Alen Swift |
|
Back to top |
|
|
ballestolive
Joined: 30 Oct 2006 Posts: 22 Location: FRENCH
|
Posted: Mon May 19, 2008 20:09 Post subject: |
|
|
Hello,
For me, it is not possible to load a auto save game.
the server load a game and save for you had a save if problems, but it don't load this save game. |
|
Back to top |
|
|
alen_swift
Joined: 25 Nov 2007 Posts: 7 Location: USA
|
Posted: Mon May 19, 2008 23:29 Post subject: i still trying to find a way to edit the line...in parameter |
|
|
I am runing the server with...
Parameter = -module " THE NAME OF THE MOD"
It starts by its self IF it crashes.
Is there a way to alter the line ...
Parameter = -module " THE NAME OF THE MOD" to the auto saved game? _________________ to infinity and beyond
Alen Swift |
|
Back to top |
|
|
abraxas77
Joined: 17 Nov 2006 Posts: 15
|
Posted: Tue May 20, 2008 3:29 Post subject: |
|
|
The command-line parameters for nwn2server.exe are the same as they were for the oNWN nwserver.exe ... except that now we also have -moduledir for loading modules in directory mode.
I believe the parameter you are looking for is "-load #" where # is the slot number of your saved game. Note, you may have to enter the # as a 6-digit number (ie: 000001 rather than 1). Also note, I have not yet tried this with nwn2server, but I expect it should still work.
So, the module parameters line in your nwnx.ini would look something like this:
Code: |
# Command line parameters to start the server with
# default: no parameters
parameters = -load 0 -servervault 1 -servername YourServerName
... or ...
# Command line parameters to start the server with
# default: no parameters
parameters = -load 000000 -servervault 1 -servername YourServerName
|
I'm not sure if it's possible to specify which slot autosave will use. So, my best guess is that saves to slot 0.
btw, here is a link to a listing of all the command-line parameters: nwserver.exe command-line parameters _________________ aka. twp_andrew
:: Lead Script Design :: The World of Paladium II ::
|
|
Back to top |
|
|
alen_swift
Joined: 25 Nov 2007 Posts: 7 Location: USA
|
Posted: Wed May 21, 2008 2:14 Post subject: woo hoo it works |
|
|
it is working with
parameters = -load 000001
sofar, i still testing though
thanks for all the help _________________ to infinity and beyond
Alen Swift |
|
Back to top |
|
|
|