Author Topic: FOnline command line options  (Read 1867 times)

JovankaB

  • Guest
FOnline command line options
« on: August 13, 2014, 09:23:19 am »
Does someone have a list of ALL FOnline command line options?
I know about "-start" that starts server automatically.

There was also "-Start" and "SinglePlayer" for client.

I remember there was more (something for debugging), but I can't find them anywhere.
I'm especially interested in server options.
« Last Edit: August 13, 2014, 09:25:54 am by JovankaB »

Offline Berko

  • Tim Tom Ted
    • http://kabefis.deviantart.com/
Re: FOnline command line options
« Reply #1 on: August 13, 2014, 08:36:38 pm »
Most of the options are already available in the config file.

server
Code: [Select]
-LoggingDebugOutput # Logging to OutputDebugString (Windows) or printf (other platforms)
-logdebugoutput #same

-game #start the server to play
-update [port] #start the server to update clients
By default the serveur is started to play and to update clients

-service #Run as a service
--service #same
-service -delete # delete the service

-logpath x #path to log output
-start #auto start

#from client - singleplayer
-singleplayer #singleplayer mode
-nologpath #write server log in server folder instead client
-showgui #to see server gui


client, see config file for more info
Code: [Select]
-OpenGlDebug
-AssimpLogging
-FullSreen
-VSync
-Light
-ScrollDelay
-ScrollStep
-TextDelay
-OptDamageHitDelay
-ScreenWidth
-ScreenHeight
-AlwaysOnTop
-FixedFPS
-InvertMessBox
-WinNotify
-SoundNotify
-RemotePort
-UpdateServerPort
-ProxyType
-ProxyPort
-AlwaysRun
-DefaultCombatMode
-IndicatorType
-DoubleClickTime
-CombatMessageType
-HelpInfo
-DebugInfo
-DebugNet
-RemoteHost
-UpdateServerHost
-ProxyHost
-ProxyUser
-ProxyPass
-UserName
-UserPass
-KeyboardRemap
-Logging
-LoggingDebugOutput
-LoggingTime
-LoggingThread
..
-Start
-SkipIntro
..
Some arguments have disappear with new revisions like -DebugSprites
~~~ Ashes of Phoenix project --> http://fonline-aop.net/ ~~~

JovankaB

  • Guest
Re: FOnline command line options
« Reply #2 on: August 13, 2014, 09:57:59 pm »
Thanks.