Category:Configuration: Difference between revisions

From FOnline: Reloaded Wiki
Jump to navigation Jump to search
(Added Category:Guides.)
(Redirected the page to Category:Guides. The content was moved to Configuration.)
Line 1: Line 1:
== Intro ==
#REDIRECT [[Category:Guides]]
"FOnline2238.cfg" is a configuration file for various FOnline 2238 specific features that don't exist in vanilla Fallout 2 such as [[DataFiles|data files]] loading, on-screen [[timeouts]] and more. This file is not created by the installer or FOConfig and is not required to run the game. If the file cannot be found in the FOnline directory, default values are used.
 
Articles in this category describe [[#mw-pages|each section]] of configuration file.
 
Remember, FOnline2238.cfg is <u>'''NOT'''</u> a replacement of "FOnline.cfg."
 
== Details ==
 
FOnline2238.cfg uses very simple [http://en.wikipedia.org/wiki/INI_file INI]-like format to configure various settings and features.
 
Basic configuration example
<pre>
[2238]
DisplayNames=true
</pre>
 
Notes:
* Lines starting with hash ("'''#'''"), semicolon ("''';'''") are ignored (may be used as comments)
* If file starts with [http://en.wikipedia.org/wiki/UTF-8#Byte_order_mark UTF-8 BOM], it's simply stripped from first line
 
=== Settings types ===
 
==== boolean ====
Sets value to '''true''' or '''false'''. To set value to '''true''', use one of following:
 
* true
* yes
* on
* 1
 
Everything else sets value to '''false'''
 
<pre>
CampOnWorldmap=0
NeverUseAlts=true
</pre>
 
==== color ====
Accepts values in [http://en.wikipedia.org/wiki/RGB_color_model RGB format]. If specified, additional argument is used as alpha value.
 
<pre>
Green=0 255 0
Red=255 0 0
NotSoRed=255 0 0 50
</pre>
 
==== number ====
Number can be '''signed''' (-1207, 0, 1337, etc.) or '''unsigned''' (0, 1337, etc; if negative value is given, it defaults to 0).
 
<pre>
LuckyNumber=7
BluesuitsKilled=5000
MyBarterSkill=-5
</pre>
 
==== range ====
Used for setting up to two values at once. If only one number is used, it's assumed that second one should have same value. If two values are used, second cannot be lower than first.
Number(s) can be '''signed''' or '''unsigned''' (see '''''[[Configuration#number|number]]''''').
 
<pre>
AlwaysSameThing=22
JoggingTimeMinutes=15 120
</pre>
 
==== string ====
Accepts any text You specify.
 
<pre>
BadBoy=Metzger
GoodBoy=Harold and his tree
</pre>
 
==== visibility ====
Allows to filter some of messages sent to client. Possible values:
* head<br/>Message will be visible over head of character only
* msgbox<br/>Message  will be visible in message box only
* both<br/>Message will be visible over head of character and message box.
 
Everything else will make message ignored.
 
<pre>
SomethingShort=both
VeryLongMessage=head
</pre>
 
[[Category:Guides]]

Revision as of 17:14, 30 April 2015

Redirect to:

This category currently contains no pages or media.