<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.alioth.net/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Mcarans</id>
	<title>Elite Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.alioth.net/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Mcarans"/>
	<link rel="alternate" type="text/html" href="https://wiki.alioth.net/index.php/Special:Contributions/Mcarans"/>
	<updated>2026-05-09T11:07:46Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.31.12</generator>
	<entry>
		<id>https://wiki.alioth.net/index.php?title=Compiling_with_Clang_instead_of_gcc&amp;diff=87205</id>
		<title>Compiling with Clang instead of gcc</title>
		<link rel="alternate" type="text/html" href="https://wiki.alioth.net/index.php?title=Compiling_with_Clang_instead_of_gcc&amp;diff=87205"/>
		<updated>2025-10-29T07:15:31Z</updated>

		<summary type="html">&lt;p&gt;Mcarans: /* Links */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This article describes how to build Oolite from source using Clang instead of gcc on Linux. &lt;br /&gt;
&lt;br /&gt;
The following lines must be run inside a shell. They are set up for Ubuntu flavours, but can be adapted for other Linux distributions.&lt;br /&gt;
&lt;br /&gt;
 export CC=/usr/bin/clang&lt;br /&gt;
 export CXX=/usr/bin/clang++&lt;br /&gt;
&lt;br /&gt;
 cd libobjc2&lt;br /&gt;
 rm -rf build&lt;br /&gt;
 mkdir build&lt;br /&gt;
 cd build&lt;br /&gt;
 cmake -DTESTS=on -DCMAKE_BUILD_TYPE=Release -DGNUSTEP_INSTALL_TYPE=NONE -DCMAKE_INSTALL_PREFIX=/usr -DEMBEDDED_BLOCKS_RUNTIME=ON -DOLDABI_COMPAT=ON ../&lt;br /&gt;
 cmake --build .&lt;br /&gt;
 sudo cmake --install .&lt;br /&gt;
 cd ../..&lt;br /&gt;
&lt;br /&gt;
 cd tools-make&lt;br /&gt;
 ./configure --prefix=/usr --with-library-combo=ng-gnu-gnu --with-libdir=lib --with-runtime-abi=gnustep-1.9 --with-objc-lib-flag=&amp;quot;-L/usr/lib/x86_64-linux-gnu/ -lobjc&amp;quot;&lt;br /&gt;
 make&lt;br /&gt;
 sudo make install&lt;br /&gt;
 cd ..&lt;br /&gt;
&lt;br /&gt;
 cd libs-base&lt;br /&gt;
 . /usr/share/GNUstep/Makefiles/GNUstep.sh&lt;br /&gt;
 ./configure --prefix=/usr&lt;br /&gt;
 make -j16&lt;br /&gt;
 sudo make install&lt;br /&gt;
 cd ..&lt;br /&gt;
&lt;br /&gt;
The export lines force building with Clang for all subsequent commands by creating environment variables for CC and CXX that point to clang. &lt;br /&gt;
&lt;br /&gt;
It is assumed that the latest release of ''libobjc2'' ([https://github.com/gnustep/libobjc2/releases/tag/v2.2.1 2.2.1] at time of writing) is in the folder libobjc2. More on building the package from source [https://github.com/gnustep/libobjc2/blob/master/INSTALL here].&lt;br /&gt;
&lt;br /&gt;
It is assumed that the latest release of ''gnustep-make'' ([https://github.com/gnustep/tools-make/releases/tag/make-2_9_3 2.9.3] at time of writing) is in the folder tools-make. More on building the package from source [https://github.com/gnustep/tools-make/blob/master/INSTALL here].&lt;br /&gt;
&lt;br /&gt;
It is assumed that the latest release of ''gnustep-base'' ([https://github.com/gnustep/libs-base/releases/tag/base-1_31_1 1.31.1] at time of writing) is in the folder libs-base. More on building the package from source [https://github.com/gnustep/libs-base/blob/master/INSTALL here].&lt;br /&gt;
&lt;br /&gt;
A compiler flag required when building Oolite with Clang is directly in Oolite's ''GNUmakefile'' (and so doesn't need to be added manually as was previously needed). You can see the flag if you open a text editor and load ''GNUmakefile''. There is a line that looks like this:&lt;br /&gt;
 &lt;br /&gt;
 ADDITIONAL_OBJCFLAGS += -fobjc-runtime=gnustep-1.9&lt;br /&gt;
&lt;br /&gt;
Now you can build Oolite in the usual way eg. for Linux:&lt;br /&gt;
&lt;br /&gt;
 source /usr/share/GNUstep/Makefiles/GNUstep.sh&lt;br /&gt;
 make -f Makefile release-deployment -j$(nproc)&lt;br /&gt;
&lt;br /&gt;
You can force the use of the Clang/LLVM linker ldd instead of GNU's ld by adding this line to ''GNUmakefile'' next to the line with &amp;lt;code&amp;gt;-fobjc-runtime=gnustep-1.9&amp;lt;/code&amp;gt; in it:&lt;br /&gt;
&lt;br /&gt;
 ADDITIONAL_LDFLAGS += -fuse-ld=lld&lt;br /&gt;
&lt;br /&gt;
However, it gave a segmentation fault for me which means that rather strangely, I must use GNU's linker ld for linking when compiling with Clang.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The &amp;lt;code&amp;gt;-fobjc-runtime&amp;lt;/code&amp;gt; flag is described as follows [https://github.com/gnustep/libobjc2/blob/master/README.md here]:&lt;br /&gt;
&lt;br /&gt;
The GNUstep Objective-C runtime was designed as a drop-in replacement for the GCC runtime. It supports three ABIs:&lt;br /&gt;
&lt;br /&gt;
* The old GCC ABI, which provides support for Objective-C 1.0 features. This can be selected via the &amp;lt;code&amp;gt;-fobjc-runtime=gcc&amp;lt;/code&amp;gt; flag in Clang or by compiling with GCC.&lt;br /&gt;
* The initial GNUstep non-fragile ABI, which was intended to be compatible with the GCC ABI, but provide support for modern Objective-C features. This can be selected with the &amp;lt;code&amp;gt;-fobjc-runtime=gnustep-1.9&amp;lt;/code&amp;gt; flag in Clang.&lt;br /&gt;
* The modern (v2) ABI, which provides richer reflection metadata, smaller binaries and reduced memory usage. This is selected with the &amp;lt;code&amp;gt;-fobjc-runtime=gnustep-2.0&amp;lt;/code&amp;gt; flag in Clang 7.0 or later.&lt;br /&gt;
&lt;br /&gt;
Note that currently there is a [https://github.com/gnustep/libobjc2/issues/357 linking error] when trying to build Oolite using the supported ABI 2.2. On Windows MinGW64, there are unfortunately issues that prevent building GNUStep Base with ABI 1.9. Curiously, compiling with the following (still using Clang) but leaving the ABI as 1.9 in Oolite's GNUmakefile also worked:&lt;br /&gt;
&lt;br /&gt;
 ./configure --prefix=/usr --with-library-combo=gnu-gnu-gnu --with-libdir=lib --with-objc-lib-flag=&amp;quot;-L/usr/lib/x86_64-linux-gnu/ -lobjc&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Clang ABI 1.9 only works with Oolite on Linux not MinGW64. ABI 1.9 is unsupported so GNUStep developers do not offer assistance or bug fixes for it. Hence even if it were possible to get it to work on all platforms, it would probably be inadvisable to switch Oolite to use Clang ABI 1.9.&lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
*[https://bb.oolite.space/viewtopic.php?t=21898 BB thread: Clang build ABI 1.9 Linux only (+latest gnustep-base) (solved)] (2025)&lt;br /&gt;
&lt;br /&gt;
[[Category:Oolite Development]]&lt;/div&gt;</summary>
		<author><name>Mcarans</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.alioth.net/index.php?title=Compiling_with_Clang_instead_of_gcc&amp;diff=87204</id>
		<title>Compiling with Clang instead of gcc</title>
		<link rel="alternate" type="text/html" href="https://wiki.alioth.net/index.php?title=Compiling_with_Clang_instead_of_gcc&amp;diff=87204"/>
		<updated>2025-10-29T07:14:47Z</updated>

		<summary type="html">&lt;p&gt;Mcarans: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This article describes how to build Oolite from source using Clang instead of gcc on Linux. &lt;br /&gt;
&lt;br /&gt;
The following lines must be run inside a shell. They are set up for Ubuntu flavours, but can be adapted for other Linux distributions.&lt;br /&gt;
&lt;br /&gt;
 export CC=/usr/bin/clang&lt;br /&gt;
 export CXX=/usr/bin/clang++&lt;br /&gt;
&lt;br /&gt;
 cd libobjc2&lt;br /&gt;
 rm -rf build&lt;br /&gt;
 mkdir build&lt;br /&gt;
 cd build&lt;br /&gt;
 cmake -DTESTS=on -DCMAKE_BUILD_TYPE=Release -DGNUSTEP_INSTALL_TYPE=NONE -DCMAKE_INSTALL_PREFIX=/usr -DEMBEDDED_BLOCKS_RUNTIME=ON -DOLDABI_COMPAT=ON ../&lt;br /&gt;
 cmake --build .&lt;br /&gt;
 sudo cmake --install .&lt;br /&gt;
 cd ../..&lt;br /&gt;
&lt;br /&gt;
 cd tools-make&lt;br /&gt;
 ./configure --prefix=/usr --with-library-combo=ng-gnu-gnu --with-libdir=lib --with-runtime-abi=gnustep-1.9 --with-objc-lib-flag=&amp;quot;-L/usr/lib/x86_64-linux-gnu/ -lobjc&amp;quot;&lt;br /&gt;
 make&lt;br /&gt;
 sudo make install&lt;br /&gt;
 cd ..&lt;br /&gt;
&lt;br /&gt;
 cd libs-base&lt;br /&gt;
 . /usr/share/GNUstep/Makefiles/GNUstep.sh&lt;br /&gt;
 ./configure --prefix=/usr&lt;br /&gt;
 make -j16&lt;br /&gt;
 sudo make install&lt;br /&gt;
 cd ..&lt;br /&gt;
&lt;br /&gt;
The export lines force building with Clang for all subsequent commands by creating environment variables for CC and CXX that point to clang. &lt;br /&gt;
&lt;br /&gt;
It is assumed that the latest release of ''libobjc2'' ([https://github.com/gnustep/libobjc2/releases/tag/v2.2.1 2.2.1] at time of writing) is in the folder libobjc2. More on building the package from source [https://github.com/gnustep/libobjc2/blob/master/INSTALL here].&lt;br /&gt;
&lt;br /&gt;
It is assumed that the latest release of ''gnustep-make'' ([https://github.com/gnustep/tools-make/releases/tag/make-2_9_3 2.9.3] at time of writing) is in the folder tools-make. More on building the package from source [https://github.com/gnustep/tools-make/blob/master/INSTALL here].&lt;br /&gt;
&lt;br /&gt;
It is assumed that the latest release of ''gnustep-base'' ([https://github.com/gnustep/libs-base/releases/tag/base-1_31_1 1.31.1] at time of writing) is in the folder libs-base. More on building the package from source [https://github.com/gnustep/libs-base/blob/master/INSTALL here].&lt;br /&gt;
&lt;br /&gt;
A compiler flag required when building Oolite with Clang is directly in Oolite's ''GNUmakefile'' (and so doesn't need to be added manually as was previously needed). You can see the flag if you open a text editor and load ''GNUmakefile''. There is a line that looks like this:&lt;br /&gt;
 &lt;br /&gt;
 ADDITIONAL_OBJCFLAGS += -fobjc-runtime=gnustep-1.9&lt;br /&gt;
&lt;br /&gt;
Now you can build Oolite in the usual way eg. for Linux:&lt;br /&gt;
&lt;br /&gt;
 source /usr/share/GNUstep/Makefiles/GNUstep.sh&lt;br /&gt;
 make -f Makefile release-deployment -j$(nproc)&lt;br /&gt;
&lt;br /&gt;
You can force the use of the Clang/LLVM linker ldd instead of GNU's ld by adding this line to ''GNUmakefile'' next to the line with &amp;lt;code&amp;gt;-fobjc-runtime=gnustep-1.9&amp;lt;/code&amp;gt; in it:&lt;br /&gt;
&lt;br /&gt;
 ADDITIONAL_LDFLAGS += -fuse-ld=lld&lt;br /&gt;
&lt;br /&gt;
However, it gave a segmentation fault for me which means that rather strangely, I must use GNU's linker ld for linking when compiling with Clang.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The &amp;lt;code&amp;gt;-fobjc-runtime&amp;lt;/code&amp;gt; flag is described as follows [https://github.com/gnustep/libobjc2/blob/master/README.md here]:&lt;br /&gt;
&lt;br /&gt;
The GNUstep Objective-C runtime was designed as a drop-in replacement for the GCC runtime. It supports three ABIs:&lt;br /&gt;
&lt;br /&gt;
* The old GCC ABI, which provides support for Objective-C 1.0 features. This can be selected via the &amp;lt;code&amp;gt;-fobjc-runtime=gcc&amp;lt;/code&amp;gt; flag in Clang or by compiling with GCC.&lt;br /&gt;
* The initial GNUstep non-fragile ABI, which was intended to be compatible with the GCC ABI, but provide support for modern Objective-C features. This can be selected with the &amp;lt;code&amp;gt;-fobjc-runtime=gnustep-1.9&amp;lt;/code&amp;gt; flag in Clang.&lt;br /&gt;
* The modern (v2) ABI, which provides richer reflection metadata, smaller binaries and reduced memory usage. This is selected with the &amp;lt;code&amp;gt;-fobjc-runtime=gnustep-2.0&amp;lt;/code&amp;gt; flag in Clang 7.0 or later.&lt;br /&gt;
&lt;br /&gt;
Note that currently there is a [https://github.com/gnustep/libobjc2/issues/357 linking error] when trying to build Oolite using the supported ABI 2.2. On Windows MinGW64, there are unfortunately issues that prevent building GNUStep Base with ABI 1.9. Curiously, compiling with the following (still using Clang) but leaving the ABI as 1.9 in Oolite's GNUmakefile also worked:&lt;br /&gt;
&lt;br /&gt;
 ./configure --prefix=/usr --with-library-combo=gnu-gnu-gnu --with-libdir=lib --with-objc-lib-flag=&amp;quot;-L/usr/lib/x86_64-linux-gnu/ -lobjc&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Clang ABI 1.9 only works with Oolite on Linux not MinGW64. ABI 1.9 is unsupported so GNUStep developers do not offer assistance or bug fixes for it. Hence even if it were possible to get it to work on all platforms, it would probably be inadvisable to switch Oolite to use Clang ABI 1.9.&lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
*[https://bb.oolite.space/viewtopic.php?t=21898 BB thread: Clang build ABI 1.9 (+latest gnustep-base) (solved)] (2025)&lt;br /&gt;
&lt;br /&gt;
[[Category:Oolite Development]]&lt;/div&gt;</summary>
		<author><name>Mcarans</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.alioth.net/index.php?title=Compiling_with_Clang_instead_of_gcc&amp;diff=87189</id>
		<title>Compiling with Clang instead of gcc</title>
		<link rel="alternate" type="text/html" href="https://wiki.alioth.net/index.php?title=Compiling_with_Clang_instead_of_gcc&amp;diff=87189"/>
		<updated>2025-10-28T01:42:55Z</updated>

		<summary type="html">&lt;p&gt;Mcarans: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This article describes how to build Oolite from source using Clang instead of gcc on Linux. &lt;br /&gt;
&lt;br /&gt;
The following lines must be run inside a shell. They are set up for Ubuntu flavours, but can be adapted for other Linux distributions.&lt;br /&gt;
&lt;br /&gt;
 export CC=/usr/bin/clang&lt;br /&gt;
 export CXX=/usr/bin/clang++&lt;br /&gt;
&lt;br /&gt;
 cd libobjc2&lt;br /&gt;
 rm -rf build&lt;br /&gt;
 mkdir build&lt;br /&gt;
 cd build&lt;br /&gt;
 cmake -DTESTS=on -DCMAKE_BUILD_TYPE=Release -DGNUSTEP_INSTALL_TYPE=NONE -DCMAKE_INSTALL_PREFIX=/usr -DEMBEDDED_BLOCKS_RUNTIME=ON -DOLDABI_COMPAT=ON ../&lt;br /&gt;
 cmake --build .&lt;br /&gt;
 sudo cmake --install .&lt;br /&gt;
 cd ../..&lt;br /&gt;
&lt;br /&gt;
 cd tools-make&lt;br /&gt;
 ./configure --prefix=/usr --with-library-combo=ng-gnu-gnu --with-libdir=lib --with-runtime-abi=gnustep-1.9 --with-objc-lib-flag=&amp;quot;-L/usr/lib/x86_64-linux-gnu/ -lobjc&amp;quot;&lt;br /&gt;
 make&lt;br /&gt;
 sudo make install&lt;br /&gt;
 cd ..&lt;br /&gt;
&lt;br /&gt;
 cd libs-base&lt;br /&gt;
 . /usr/share/GNUstep/Makefiles/GNUstep.sh&lt;br /&gt;
 ./configure --prefix=/usr&lt;br /&gt;
 make -j16&lt;br /&gt;
 sudo make install&lt;br /&gt;
 cd ..&lt;br /&gt;
&lt;br /&gt;
The export lines force building with Clang for all subsequent commands by creating environment variables for CC and CXX that point to clang. &lt;br /&gt;
&lt;br /&gt;
It is assumed that the latest release of ''libobjc2'' ([https://github.com/gnustep/libobjc2/releases/tag/v2.2.1 2.2.1] at time of writing) is in the folder libobjc2. More on building the package from source [https://github.com/gnustep/libobjc2/blob/master/INSTALL here].&lt;br /&gt;
&lt;br /&gt;
It is assumed that the latest release of ''gnustep-make'' ([https://github.com/gnustep/tools-make/releases/tag/make-2_9_3 2.9.3] at time of writing) is in the folder tools-make. More on building the package from source [https://github.com/gnustep/tools-make/blob/master/INSTALL here].&lt;br /&gt;
&lt;br /&gt;
It is assumed that the latest release of ''gnustep-base'' ([https://github.com/gnustep/libs-base/releases/tag/base-1_31_1 1.31.1] at time of writing) is in the folder libs-base. More on building the package from source [https://github.com/gnustep/libs-base/blob/master/INSTALL here].&lt;br /&gt;
&lt;br /&gt;
A compiler flag required when building Oolite with Clang is directly in Oolite's ''GNUmakefile'' (and so doesn't need to be added manually as was previously needed). You can see the flag if you open a text editor and load ''GNUmakefile''. There is a line that looks like this:&lt;br /&gt;
 &lt;br /&gt;
 ADDITIONAL_OBJCFLAGS += -fobjc-runtime=gnustep-1.9&lt;br /&gt;
&lt;br /&gt;
Now you can build Oolite in the usual way eg. for Linux:&lt;br /&gt;
&lt;br /&gt;
 source /usr/share/GNUstep/Makefiles/GNUstep.sh&lt;br /&gt;
 make -f Makefile release-deployment -j$(nproc)&lt;br /&gt;
&lt;br /&gt;
You can force the use of the Clang/LLVM linker ldd instead of GNU's ld by adding this line to ''GNUmakefile'' next to the line with &amp;lt;code&amp;gt;-fobjc-runtime=gnustep-1.9&amp;lt;/code&amp;gt; in it:&lt;br /&gt;
&lt;br /&gt;
 ADDITIONAL_LDFLAGS += -fuse-ld=lld&lt;br /&gt;
&lt;br /&gt;
However, it gave a segmentation fault for me which means that rather strangely, I must use GNU's linker ld for linking when compiling with Clang.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The &amp;lt;code&amp;gt;-fobjc-runtime&amp;lt;/code&amp;gt; flag is described as follows [https://github.com/gnustep/libobjc2/blob/master/README.md here]:&lt;br /&gt;
&lt;br /&gt;
The GNUstep Objective-C runtime was designed as a drop-in replacement for the GCC runtime. It supports three ABIs:&lt;br /&gt;
&lt;br /&gt;
* The old GCC ABI, which provides support for Objective-C 1.0 features. This can be selected via the &amp;lt;code&amp;gt;-fobjc-runtime=gcc&amp;lt;/code&amp;gt; flag in Clang or by compiling with GCC.&lt;br /&gt;
* The initial GNUstep non-fragile ABI, which was intended to be compatible with the GCC ABI, but provide support for modern Objective-C features. This can be selected with the &amp;lt;code&amp;gt;-fobjc-runtime=gnustep-1.9&amp;lt;/code&amp;gt; flag in Clang.&lt;br /&gt;
* The modern (v2) ABI, which provides richer reflection metadata, smaller binaries and reduced memory usage. This is selected with the &amp;lt;code&amp;gt;-fobjc-runtime=gnustep-2.0&amp;lt;/code&amp;gt; flag in Clang 7.0 or later.&lt;br /&gt;
&lt;br /&gt;
Note that currently there is a [https://github.com/gnustep/libobjc2/issues/357 linking error] when trying to build Oolite using the supported ABI 2.2. On Windows MinGW64, there are unfortunately issues that prevent building GNUStep Base with ABI 1.9. Curiously, compiling with the following (still using Clang) but leaving the ABI as 1.9 in Oolite's GNUmakefile also worked possibly opening up a way to get Clang working on MinGW64:&lt;br /&gt;
&lt;br /&gt;
 ./configure --prefix=/usr --with-library-combo=gnu-gnu-gnu --with-libdir=lib --with-objc-lib-flag=&amp;quot;-L/usr/lib/x86_64-linux-gnu/ -lobjc&amp;quot;&lt;br /&gt;
&lt;br /&gt;
ABI 1.9 is unsupported so GNUStep developers do not offer assistance or bug fixes for it. Hence even if it were possible to get it to work on all platforms, it would probably be inadvisable to switch Oolite to use Clang ABI 1.9.&lt;/div&gt;</summary>
		<author><name>Mcarans</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.alioth.net/index.php?title=Compiling_with_Clang_instead_of_gcc&amp;diff=87188</id>
		<title>Compiling with Clang instead of gcc</title>
		<link rel="alternate" type="text/html" href="https://wiki.alioth.net/index.php?title=Compiling_with_Clang_instead_of_gcc&amp;diff=87188"/>
		<updated>2025-10-28T01:02:45Z</updated>

		<summary type="html">&lt;p&gt;Mcarans: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This article describes how to build Oolite from source using Clang instead of gcc on Linux. &lt;br /&gt;
&lt;br /&gt;
The following lines must be run inside a shell. They are set up for Ubuntu flavours, but can be adapted for other Linux distributions.&lt;br /&gt;
&lt;br /&gt;
 export CC=/usr/bin/clang&lt;br /&gt;
 export CXX=/usr/bin/clang++&lt;br /&gt;
&lt;br /&gt;
 cd libobjc2&lt;br /&gt;
 rm -rf build&lt;br /&gt;
 mkdir build&lt;br /&gt;
 cd build&lt;br /&gt;
 cmake -DTESTS=on -DCMAKE_BUILD_TYPE=Release -DGNUSTEP_INSTALL_TYPE=NONE -DCMAKE_INSTALL_PREFIX=/usr -DEMBEDDED_BLOCKS_RUNTIME=ON -DOLDABI_COMPAT=ON ../&lt;br /&gt;
 cmake --build .&lt;br /&gt;
 sudo cmake --install .&lt;br /&gt;
 cd ../..&lt;br /&gt;
&lt;br /&gt;
 cd tools-make&lt;br /&gt;
 ./configure --prefix=/usr --with-library-combo=ng-gnu-gnu --with-libdir=lib --with-runtime-abi=gnustep-1.9 --with-objc-lib-flag=&amp;quot;-L/usr/lib/x86_64-linux-gnu/ -lobjc&amp;quot;&lt;br /&gt;
 make&lt;br /&gt;
 sudo make install&lt;br /&gt;
 cd ..&lt;br /&gt;
&lt;br /&gt;
 cd libs-base&lt;br /&gt;
 . /usr/share/GNUstep/Makefiles/GNUstep.sh&lt;br /&gt;
 ./configure --prefix=/usr&lt;br /&gt;
 make -j16&lt;br /&gt;
 sudo make install&lt;br /&gt;
 cd ..&lt;br /&gt;
&lt;br /&gt;
The export lines force building with Clang for all subsequent commands by creating environment variables for CC and CXX that point to clang. &lt;br /&gt;
&lt;br /&gt;
It is assumed that the latest release of ''libobjc2'' ([https://github.com/gnustep/libobjc2/releases/tag/v2.2.1 2.2.1] at time of writing) is in the folder libobjc2. More on building the package from source [https://github.com/gnustep/libobjc2/blob/master/INSTALL here].&lt;br /&gt;
&lt;br /&gt;
It is assumed that the latest release of ''gnustep-make'' ([https://github.com/gnustep/tools-make/releases/tag/make-2_9_3 2.9.3] at time of writing) is in the folder tools-make. More on building the package from source [https://github.com/gnustep/tools-make/blob/master/INSTALL here].&lt;br /&gt;
&lt;br /&gt;
It is assumed that the latest release of ''gnustep-base'' ([https://github.com/gnustep/libs-base/releases/tag/base-1_31_1 1.31.1] at time of writing) is in the folder libs-base. More on building the package from source [https://github.com/gnustep/libs-base/blob/master/INSTALL here].&lt;br /&gt;
&lt;br /&gt;
A compiler flag required when building Oolite with Clang is directly in Oolite's ''GNUmakefile'' (and so doesn't need to be added manually as was previously needed). You can see the flag if you open a text editor and load ''GNUmakefile''. There is a line that looks like this:&lt;br /&gt;
 &lt;br /&gt;
 ADDITIONAL_OBJCFLAGS += -fobjc-runtime=gnustep-1.9&lt;br /&gt;
&lt;br /&gt;
Now you can build Oolite in the usual way eg. for Linux:&lt;br /&gt;
&lt;br /&gt;
 source /usr/share/GNUstep/Makefiles/GNUstep.sh&lt;br /&gt;
 make -f Makefile release-deployment -j$(nproc)&lt;br /&gt;
&lt;br /&gt;
You can force the use of the Clang/LLVM linker ldd instead of GNU's ld by adding this line to ''GNUmakefile'' next to the line with &amp;lt;code&amp;gt;-fobjc-runtime=gnustep-1.9&amp;lt;/code&amp;gt; in it:&lt;br /&gt;
&lt;br /&gt;
 ADDITIONAL_LDFLAGS += -fuse-ld=lld&lt;br /&gt;
&lt;br /&gt;
However, it gave a segmentation fault for me which means that rather strangely, I must use GNU's linker ld for linking when compiling with Clang.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The &amp;lt;code&amp;gt;-fobjc-runtime&amp;lt;/code&amp;gt; flag is described as follows [https://github.com/gnustep/libobjc2/blob/master/README.md here]:&lt;br /&gt;
&lt;br /&gt;
The GNUstep Objective-C runtime was designed as a drop-in replacement for the GCC runtime. It supports three ABIs:&lt;br /&gt;
&lt;br /&gt;
* The old GCC ABI, which provides support for Objective-C 1.0 features. This can be selected via the &amp;lt;code&amp;gt;-fobjc-runtime=gcc&amp;lt;/code&amp;gt; flag in Clang or by compiling with GCC.&lt;br /&gt;
* The initial GNUstep non-fragile ABI, which was intended to be compatible with the GCC ABI, but provide support for modern Objective-C features. This can be selected with the &amp;lt;code&amp;gt;-fobjc-runtime=gnustep-1.9&amp;lt;/code&amp;gt; flag in Clang.&lt;br /&gt;
* The modern (v2) ABI, which provides richer reflection metadata, smaller binaries and reduced memory usage. This is selected with the &amp;lt;code&amp;gt;-fobjc-runtime=gnustep-2.0&amp;lt;/code&amp;gt; flag in Clang 7.0 or later.&lt;br /&gt;
&lt;br /&gt;
Note that currently there is a [https://github.com/gnustep/libobjc2/issues/357 linking error] when trying to build Oolite using the supported ABI 2.2. On Windows MinGW64, there are unfortunately issues that prevent building GNUStep Base with ABI 1.9. Curiously, compiling with the following but leaving the ABI as 1.9 in Oolite's GNUmakefile also worked possibly opening up a way to get Clang working on MinGW64:&lt;br /&gt;
&lt;br /&gt;
 ./configure --prefix=/usr --with-library-combo=gnu-gnu-gnu --with-libdir=lib --with-objc-lib-flag=&amp;quot;-L/usr/lib/x86_64-linux-gnu/ -lobjc&amp;quot;&lt;br /&gt;
&lt;br /&gt;
ABI 1.9 is unsupported so GNUStep developers do not offer assistance or bug fixes for it. Hence even if it were possible to get it to work on all platforms, it would probably be inadvisable to switch Oolite to use Clang ABI 1.9.&lt;/div&gt;</summary>
		<author><name>Mcarans</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.alioth.net/index.php?title=Compiling_with_Clang_instead_of_gcc&amp;diff=87187</id>
		<title>Compiling with Clang instead of gcc</title>
		<link rel="alternate" type="text/html" href="https://wiki.alioth.net/index.php?title=Compiling_with_Clang_instead_of_gcc&amp;diff=87187"/>
		<updated>2025-10-27T23:10:58Z</updated>

		<summary type="html">&lt;p&gt;Mcarans: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This article describes how to build Oolite from source using Clang instead of gcc on Linux. &lt;br /&gt;
&lt;br /&gt;
The following lines must be run inside a shell. They are set up for Ubuntu flavours, but can be adapted for other Linux distributions.&lt;br /&gt;
&lt;br /&gt;
 export CC=/usr/bin/clang&lt;br /&gt;
 export CXX=/usr/bin/clang++&lt;br /&gt;
&lt;br /&gt;
 cd libobjc2&lt;br /&gt;
 rm -rf build&lt;br /&gt;
 mkdir build&lt;br /&gt;
 cd build&lt;br /&gt;
 cmake -DTESTS=on -DCMAKE_BUILD_TYPE=Release -DGNUSTEP_INSTALL_TYPE=NONE -DCMAKE_INSTALL_PREFIX=/usr -DEMBEDDED_BLOCKS_RUNTIME=ON -DOLDABI_COMPAT=ON ../&lt;br /&gt;
 cmake --build .&lt;br /&gt;
 sudo cmake --install .&lt;br /&gt;
 cd ../..&lt;br /&gt;
&lt;br /&gt;
 cd tools-make&lt;br /&gt;
 ./configure --prefix=/usr --with-library-combo=ng-gnu-gnu --with-libdir=lib --with-runtime-abi=gnustep-1.9 --with-objc-lib-flag=&amp;quot;-L/usr/lib/x86_64-linux-gnu/ -lobjc&amp;quot;&lt;br /&gt;
 make&lt;br /&gt;
 sudo make install&lt;br /&gt;
 cd ..&lt;br /&gt;
&lt;br /&gt;
 cd libs-base&lt;br /&gt;
 . /usr/share/GNUstep/Makefiles/GNUstep.sh&lt;br /&gt;
 ./configure --prefix=/usr&lt;br /&gt;
 make -j16&lt;br /&gt;
 sudo make install&lt;br /&gt;
 cd ..&lt;br /&gt;
&lt;br /&gt;
The export lines force building with Clang for all subsequent commands by creating environment variables for CC and CXX that point to clang. &lt;br /&gt;
&lt;br /&gt;
It is assumed that the latest release of ''libobjc2'' ([https://github.com/gnustep/libobjc2/releases/tag/v2.2.1 2.2.1] at time of writing) is in the folder libobjc2. More on building the package from source [https://github.com/gnustep/libobjc2/blob/master/INSTALL here].&lt;br /&gt;
&lt;br /&gt;
It is assumed that the latest release of ''gnustep-make'' ([https://github.com/gnustep/tools-make/releases/tag/make-2_9_3 2.9.3] at time of writing) is in the folder tools-make. More on building the package from source [https://github.com/gnustep/tools-make/blob/master/INSTALL here].&lt;br /&gt;
&lt;br /&gt;
It is assumed that the latest release of ''gnustep-base'' ([https://github.com/gnustep/libs-base/releases/tag/base-1_31_1 1.31.1] at time of writing) is in the folder libs-base. More on building the package from source [https://github.com/gnustep/libs-base/blob/master/INSTALL here].&lt;br /&gt;
&lt;br /&gt;
A compiler flag required when building Oolite with Clang is directly in Oolite's ''GNUmakefile'' (and so doesn't need to be added manually as was previously needed). You can see the flag if you open a text editor and load ''GNUmakefile''. There is a line that looks like this:&lt;br /&gt;
 &lt;br /&gt;
 ADDITIONAL_OBJCFLAGS += -fobjc-runtime=gnustep-1.9&lt;br /&gt;
&lt;br /&gt;
Now you can build Oolite in the usual way eg. for Linux:&lt;br /&gt;
&lt;br /&gt;
 source /usr/share/GNUstep/Makefiles/GNUstep.sh&lt;br /&gt;
 make -f Makefile release-deployment -j$(nproc)&lt;br /&gt;
&lt;br /&gt;
You can force the use of the Clang/LLVM linker ldd instead of GNU's ld by adding this line to ''GNUmakefile'' next to the line with &amp;lt;code&amp;gt;-fobjc-runtime=gnustep-1.9&amp;lt;/code&amp;gt; in it:&lt;br /&gt;
&lt;br /&gt;
 ADDITIONAL_LDFLAGS += -fuse-ld=lld&lt;br /&gt;
&lt;br /&gt;
However, it gave a segmentation fault for me which means that rather strangely, I must use GNU's linker ld for linking when compiling with Clang.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The &amp;lt;code&amp;gt;-fobjc-runtime&amp;lt;/code&amp;gt; flag is described as follows [https://github.com/gnustep/libobjc2/blob/master/README.md here]:&lt;br /&gt;
&lt;br /&gt;
The GNUstep Objective-C runtime was designed as a drop-in replacement for the GCC runtime. It supports three ABIs:&lt;br /&gt;
&lt;br /&gt;
* The old GCC ABI, which provides support for Objective-C 1.0 features. This can be selected via the &amp;lt;code&amp;gt;-fobjc-runtime=gcc&amp;lt;/code&amp;gt; flag in Clang or by compiling with GCC.&lt;br /&gt;
* The initial GNUstep non-fragile ABI, which was intended to be compatible with the GCC ABI, but provide support for modern Objective-C features. This can be selected with the &amp;lt;code&amp;gt;-fobjc-runtime=gnustep-1.9&amp;lt;/code&amp;gt; flag in Clang.&lt;br /&gt;
* The modern (v2) ABI, which provides richer reflection metadata, smaller binaries and reduced memory usage. This is selected with the &amp;lt;code&amp;gt;-fobjc-runtime=gnustep-2.0&amp;lt;/code&amp;gt; flag in Clang 7.0 or later.&lt;br /&gt;
&lt;br /&gt;
Note that currently there is a [https://github.com/gnustep/libobjc2/issues/357 linking error] when trying to build Oolite using the supported ABI 2.2. On Windows MinGW64, there are unfortunately issues that prevent building GNUStep Base with ABI 1.9. ABI 1.9 is unsupported so GNUStep developers do not offer assistance or bug fixes for it. Hence even if it were possible to get it to work on all platforms, it would be inadvisable to switch Oolite to use Clang ABI 1.9.&lt;/div&gt;</summary>
		<author><name>Mcarans</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.alioth.net/index.php?title=Compiling_with_Clang_instead_of_gcc&amp;diff=87186</id>
		<title>Compiling with Clang instead of gcc</title>
		<link rel="alternate" type="text/html" href="https://wiki.alioth.net/index.php?title=Compiling_with_Clang_instead_of_gcc&amp;diff=87186"/>
		<updated>2025-10-27T23:08:32Z</updated>

		<summary type="html">&lt;p&gt;Mcarans: Clarification&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This article describes how to build Oolite from source using Clang instead of gcc on Linux. &lt;br /&gt;
&lt;br /&gt;
The following lines must be run inside a shell. They are set up for Ubuntu flavours, but can be adapted for other Linux distributions.&lt;br /&gt;
&lt;br /&gt;
 export CC=/usr/bin/clang&lt;br /&gt;
 export CXX=/usr/bin/clang++&lt;br /&gt;
&lt;br /&gt;
 cd libobjc2&lt;br /&gt;
 rm -rf build&lt;br /&gt;
 mkdir build&lt;br /&gt;
 cd build&lt;br /&gt;
 cmake -DTESTS=on -DCMAKE_BUILD_TYPE=Release -DGNUSTEP_INSTALL_TYPE=NONE -DCMAKE_INSTALL_PREFIX=/usr -DEMBEDDED_BLOCKS_RUNTIME=ON -DOLDABI_COMPAT=ON ../&lt;br /&gt;
 cmake --build .&lt;br /&gt;
 sudo cmake --install .&lt;br /&gt;
 cd ../..&lt;br /&gt;
&lt;br /&gt;
 cd tools-make&lt;br /&gt;
 ./configure --prefix=/usr --with-library-combo=ng-gnu-gnu --with-libdir=lib --with-runtime-abi=gnustep-1.9 --with-objc-lib-flag=&amp;quot;-L/usr/lib/x86_64-linux-gnu/ -lobjc&amp;quot;&lt;br /&gt;
 make&lt;br /&gt;
 sudo make install&lt;br /&gt;
 cd ..&lt;br /&gt;
&lt;br /&gt;
 cd libs-base&lt;br /&gt;
 . /usr/share/GNUstep/Makefiles/GNUstep.sh&lt;br /&gt;
 ./configure --prefix=/usr&lt;br /&gt;
 make -j16&lt;br /&gt;
 sudo make install&lt;br /&gt;
 cd ..&lt;br /&gt;
&lt;br /&gt;
The export lines force building with Clang for all subsequent commands by creating environment variables for CC and CXX that point to clang. &lt;br /&gt;
&lt;br /&gt;
It is assumed that the latest release of ''libobjc2'' ([https://github.com/gnustep/libobjc2/releases/tag/v2.2.1 2.2.1] at time of writing) is in the folder libobjc2. More on building the package from source [https://github.com/gnustep/libobjc2/blob/master/INSTALL here].&lt;br /&gt;
&lt;br /&gt;
It is assumed that the latest release of ''gnustep-make'' ([https://github.com/gnustep/tools-make/releases/tag/make-2_9_3 2.9.3] at time of writing) is in the folder tools-make. More on building the package from source [https://github.com/gnustep/tools-make/blob/master/INSTALL here].&lt;br /&gt;
&lt;br /&gt;
It is assumed that the latest release of ''gnustep-base'' ([https://github.com/gnustep/libs-base/releases/tag/base-1_31_1 1.31.1] at time of writing) is in the folder libs-base. More on building the package from source [https://github.com/gnustep/libs-base/blob/master/INSTALL here].&lt;br /&gt;
&lt;br /&gt;
A compiler flag required when building Oolite with Clang is directly in Oolite's ''GNUmakefile'' (and so doesn't need to be added manually as was previously needed). You can see the flag if you open a text editor and load ''GNUmakefile''. There is a line that looks like this:&lt;br /&gt;
 &lt;br /&gt;
 ADDITIONAL_OBJCFLAGS += -fobjc-runtime=gnustep-1.9&lt;br /&gt;
&lt;br /&gt;
Now you can build Oolite in the usual way eg. for Linux:&lt;br /&gt;
&lt;br /&gt;
 source /usr/share/GNUstep/Makefiles/GNUstep.sh&lt;br /&gt;
 make -f Makefile release-deployment -j$(nproc)&lt;br /&gt;
&lt;br /&gt;
You can force the use of the Clang/LLVM linker ldd instead of GNU's ld by adding this line to ''GNUmakefile'' next to the line with &amp;lt;code&amp;gt;-fobjc-runtime=gnustep-1.9&amp;lt;/code&amp;gt; in it:&lt;br /&gt;
&lt;br /&gt;
 ADDITIONAL_LDFLAGS += -fuse-ld=lld&lt;br /&gt;
&lt;br /&gt;
However, it gave a segmentation fault for me which means that rather strangely, I must use GNU's linker ld for linking when compiling with Clang.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The &amp;lt;code&amp;gt;-fobjc-runtime&amp;lt;/code&amp;gt; flag is described as follows [https://github.com/gnustep/libobjc2/blob/master/README.md here]:&lt;br /&gt;
&lt;br /&gt;
The GNUstep Objective-C runtime was designed as a drop-in replacement for the GCC runtime. It supports three ABIs:&lt;br /&gt;
&lt;br /&gt;
* The old GCC ABI, which provides support for Objective-C 1.0 features. This can be selected via the &amp;lt;code&amp;gt;-fobjc-runtime=gcc&amp;lt;/code&amp;gt; flag in Clang or by compiling with GCC.&lt;br /&gt;
* The initial GNUstep non-fragile ABI, which was intended to be compatible with the GCC ABI, but provide support for modern Objective-C features. This can be selected with the &amp;lt;code&amp;gt;-fobjc-runtime=gnustep-1.9&amp;lt;/code&amp;gt; flag in Clang.&lt;br /&gt;
* The modern (v2) ABI, which provides richer reflection metadata, smaller binaries and reduced memory usage. This is selected with the &amp;lt;code&amp;gt;-fobjc-runtime=gnustep-2.0&amp;lt;/code&amp;gt; flag in Clang 7.0 or later.&lt;br /&gt;
&lt;br /&gt;
Note that currently there is a [https://github.com/gnustep/libobjc2/issues/357 linking error] when trying to build Oolite using the supported ABI 2.2. On Windows MinGW64, there are unfortunately issues that prevent building GNUStep Base with ABI 1.9. ABI 1.9 is not a supported GNUStep ABI so their developers do not offer assistance or bug fixes for this 1.9. Hence even if it were possible to get it to work on all platforms, it would be inadvisable to switch Oolite to use Clang ABI 1.9.&lt;/div&gt;</summary>
		<author><name>Mcarans</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.alioth.net/index.php?title=Compiling_with_Clang_instead_of_gcc&amp;diff=86902</id>
		<title>Compiling with Clang instead of gcc</title>
		<link rel="alternate" type="text/html" href="https://wiki.alioth.net/index.php?title=Compiling_with_Clang_instead_of_gcc&amp;diff=86902"/>
		<updated>2025-08-03T21:34:41Z</updated>

		<summary type="html">&lt;p&gt;Mcarans: -fobjc-runtime=gnustep-1.9 is now in Gnumakefile&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This article describes how to build Oolite from source using Clang instead of gcc.&lt;br /&gt;
&lt;br /&gt;
Open a shell. To force building with Clang for all subsequent commands in your shell, you need to create environment variables for CC and CXX that point to clang. For Linux, it is like this:&lt;br /&gt;
&lt;br /&gt;
 export CC=/usr/bin/clang&lt;br /&gt;
 export CXX=/usr/bin/clang++&lt;br /&gt;
&lt;br /&gt;
Then build the latest release of ''libobjc2'' ([https://github.com/gnustep/libobjc2/releases/tag/v2.2.1 2.2.1] at time of writing) from source as described [https://github.com/gnustep/libobjc2/blob/master/INSTALL here].&lt;br /&gt;
&lt;br /&gt;
Then build the latest release of ''gnustep-base'' ([https://github.com/gnustep/libs-base/releases/tag/base-1_31_1 1.31.1] at time of writing) from source as described [https://github.com/gnustep/libs-base/blob/master/INSTALL here].&lt;br /&gt;
&lt;br /&gt;
A compiler flag required when building Oolite with Clang is directly in Oolite's ''GNUmakefile'' (and so doesn't need to be added manually as used to be necessary). You can see the flag if you open a text editor and load ''GNUmakefile''. There is a line that looks like this:&lt;br /&gt;
 &lt;br /&gt;
 ADDITIONAL_OBJCFLAGS += -fobjc-runtime=gnustep-1.9&lt;br /&gt;
&lt;br /&gt;
Now you can build Oolite in the usual way eg. for Linux:&lt;br /&gt;
&lt;br /&gt;
 source /usr/share/GNUstep/Makefiles/GNUstep.sh&lt;br /&gt;
 make -f Makefile release-deployment -j$(nproc)&lt;br /&gt;
&lt;br /&gt;
You can force the use of the Clang/LLVM linker ldd instead of GNU's ld by adding this line to ''GNUmakefile'' next to the line with &amp;lt;code&amp;gt;-fobjc-runtime=gnustep-1.9&amp;lt;/code&amp;gt; in it:&lt;br /&gt;
&lt;br /&gt;
 ADDITIONAL_LDFLAGS += -fuse-ld=lld&lt;br /&gt;
&lt;br /&gt;
However, it gave a segmentation fault for me which means that rather strangely, I must use GNU's linker ld for linking when compiling with Clang.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The &amp;lt;code&amp;gt;-fobjc-runtime&amp;lt;/code&amp;gt; flag is described as follows [https://github.com/gnustep/libobjc2/blob/master/README.md here]:&lt;br /&gt;
&lt;br /&gt;
The GNUstep Objective-C runtime was designed as a drop-in replacement for the GCC runtime. It supports three ABIs:&lt;br /&gt;
&lt;br /&gt;
* The old GCC ABI, which provides support for Objective-C 1.0 features. This can be selected via the &amp;lt;code&amp;gt;-fobjc-runtime=gcc&amp;lt;/code&amp;gt; flag in Clang or by compiling with GCC.&lt;br /&gt;
* The initial GNUstep non-fragile ABI, which was intended to be compatible with the GCC ABI, but provide support for modern Objective-C features. This can be selected with the &amp;lt;code&amp;gt;-fobjc-runtime=gnustep-1.9&amp;lt;/code&amp;gt; flag in Clang.&lt;br /&gt;
* The modern (v2) ABI, which provides richer reflection metadata, smaller binaries and reduced memory usage. This is selected with the &amp;lt;code&amp;gt;-fobjc-runtime=gnustep-2.0&amp;lt;/code&amp;gt; flag in Clang 7.0 or later.&lt;/div&gt;</summary>
		<author><name>Mcarans</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.alioth.net/index.php?title=Compiling_with_Clang_instead_of_gcc&amp;diff=86520</id>
		<title>Compiling with Clang instead of gcc</title>
		<link rel="alternate" type="text/html" href="https://wiki.alioth.net/index.php?title=Compiling_with_Clang_instead_of_gcc&amp;diff=86520"/>
		<updated>2025-07-23T06:02:40Z</updated>

		<summary type="html">&lt;p&gt;Mcarans: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This article describes how to build Oolite from source using Clang instead of gcc.&lt;br /&gt;
&lt;br /&gt;
Open a shell. To force building with Clang for all subsequent commands in your shell, you need to create environment variables for CC and CXX that point to clang. For Linux, it is like this:&lt;br /&gt;
&lt;br /&gt;
 export CC=/usr/bin/clang&lt;br /&gt;
 export CXX=/usr/bin/clang++&lt;br /&gt;
&lt;br /&gt;
Then build the latest release of ''libobjc2'' ([https://github.com/gnustep/libobjc2/releases/tag/v2.2.1 2.2.1] at time of writing) from source as described [https://github.com/gnustep/libobjc2/blob/master/INSTALL here].&lt;br /&gt;
&lt;br /&gt;
Then build the latest release of ''gnustep-base'' ([https://github.com/gnustep/libs-base/releases/tag/base-1_31_1 1.31.1] at time of writing) from source as described [https://github.com/gnustep/libs-base/blob/master/INSTALL here].&lt;br /&gt;
&lt;br /&gt;
Open a text editor and load Oolite's ''GNUmakefile''. Look for the line:&lt;br /&gt;
 &lt;br /&gt;
 OBJC_PROGRAM_NAME = oolite:&lt;br /&gt;
&lt;br /&gt;
Above this line put:&lt;br /&gt;
&lt;br /&gt;
 ADDITIONAL_OBJCFLAGS += -fobjc-runtime=gnustep-1.9&lt;br /&gt;
&lt;br /&gt;
Save the file.&lt;br /&gt;
&lt;br /&gt;
Now you can build Oolite in the usual way eg. for Linux:&lt;br /&gt;
&lt;br /&gt;
 source /usr/share/GNUstep/Makefiles/GNUstep.sh&lt;br /&gt;
 make -f Makefile release-deployment -j$(nproc)&lt;br /&gt;
&lt;br /&gt;
You can force the use of the Clang/LLVM linker ldd instead of GNU's ld by adding this line to ''GNUmakefile'':&lt;br /&gt;
&lt;br /&gt;
 ADDITIONAL_LDFLAGS += -fuse-ld=lld&lt;br /&gt;
&lt;br /&gt;
However, it gave a segmentation fault for me which means that rather strangely, I must use GNU's linker ld for linking when compiling with Clang.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The &amp;lt;code&amp;gt;-fobjc-runtime&amp;lt;/code&amp;gt; flag is described as follows [https://github.com/gnustep/libobjc2/blob/master/README.md here]:&lt;br /&gt;
&lt;br /&gt;
The GNUstep Objective-C runtime was designed as a drop-in replacement for the GCC runtime. It supports three ABIs:&lt;br /&gt;
&lt;br /&gt;
* The old GCC ABI, which provides support for Objective-C 1.0 features. This can be selected via the &amp;lt;code&amp;gt;-fobjc-runtime=gcc&amp;lt;/code&amp;gt; flag in Clang or by compiling with GCC.&lt;br /&gt;
* The initial GNUstep non-fragile ABI, which was intended to be compatible with the GCC ABI, but provide support for modern Objective-C features. This can be selected with the &amp;lt;code&amp;gt;-fobjc-runtime=gnustep-1.9&amp;lt;/code&amp;gt; flag in Clang.&lt;br /&gt;
* The modern (v2) ABI, which provides richer reflection metadata, smaller binaries and reduced memory usage. This is selected with the &amp;lt;code&amp;gt;-fobjc-runtime=gnustep-2.0&amp;lt;/code&amp;gt; flag in Clang 7.0 or later.&lt;/div&gt;</summary>
		<author><name>Mcarans</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.alioth.net/index.php?title=Compiling_with_Clang_instead_of_gcc&amp;diff=86519</id>
		<title>Compiling with Clang instead of gcc</title>
		<link rel="alternate" type="text/html" href="https://wiki.alioth.net/index.php?title=Compiling_with_Clang_instead_of_gcc&amp;diff=86519"/>
		<updated>2025-07-23T06:01:47Z</updated>

		<summary type="html">&lt;p&gt;Mcarans: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This article describes how to build Oolite from source using Clang instead of gcc.&lt;br /&gt;
&lt;br /&gt;
Open a shell. To force building with Clang for all subsequent commands in your shell, you need to create environment variables for CC and CXX that point to clang. For Linux, it is like this:&lt;br /&gt;
&lt;br /&gt;
 export CC=/usr/bin/clang&lt;br /&gt;
 export CXX=/usr/bin/clang++&lt;br /&gt;
&lt;br /&gt;
Then build the latest release of libobjc2 ([https://github.com/gnustep/libobjc2/releases/tag/v2.2.1 2.2.1] at time of writing) from source as described [https://github.com/gnustep/libobjc2/blob/master/INSTALL here].&lt;br /&gt;
&lt;br /&gt;
Then build the latest release of gnustep-base ([https://github.com/gnustep/libs-base/releases/tag/base-1_31_1 1.31.1] at time of writing) from source as described [https://github.com/gnustep/libs-base/blob/master/INSTALL here].&lt;br /&gt;
&lt;br /&gt;
Open a text editor and load Oolite's ''GNUmakefile''. Look for the line:&lt;br /&gt;
 &lt;br /&gt;
 OBJC_PROGRAM_NAME = oolite:&lt;br /&gt;
&lt;br /&gt;
Above this line put:&lt;br /&gt;
&lt;br /&gt;
 ADDITIONAL_OBJCFLAGS += -fobjc-runtime=gnustep-1.9&lt;br /&gt;
&lt;br /&gt;
Save the file.&lt;br /&gt;
&lt;br /&gt;
Now you can build Oolite in the usual way eg. for Linux:&lt;br /&gt;
&lt;br /&gt;
 source /usr/share/GNUstep/Makefiles/GNUstep.sh&lt;br /&gt;
 make -f Makefile release-deployment -j$(nproc)&lt;br /&gt;
&lt;br /&gt;
You can force the use of the Clang/LLVM linker ldd instead of GNU's ld by adding this line to ''GNUmakefile'':&lt;br /&gt;
&lt;br /&gt;
 ADDITIONAL_LDFLAGS += -fuse-ld=lld&lt;br /&gt;
&lt;br /&gt;
However, it gave a segmentation fault for me which means that rather strangely, I must use GNU's linker ld for linking when compiling with Clang.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The &amp;lt;code&amp;gt;-fobjc-runtime&amp;lt;/code&amp;gt; flag is described as follows [https://github.com/gnustep/libobjc2/blob/master/README.md here]:&lt;br /&gt;
&lt;br /&gt;
The GNUstep Objective-C runtime was designed as a drop-in replacement for the GCC runtime. It supports three ABIs:&lt;br /&gt;
&lt;br /&gt;
* The old GCC ABI, which provides support for Objective-C 1.0 features. This can be selected via the &amp;lt;code&amp;gt;-fobjc-runtime=gcc&amp;lt;/code&amp;gt; flag in Clang or by compiling with GCC.&lt;br /&gt;
* The initial GNUstep non-fragile ABI, which was intended to be compatible with the GCC ABI, but provide support for modern Objective-C features. This can be selected with the &amp;lt;code&amp;gt;-fobjc-runtime=gnustep-1.9&amp;lt;/code&amp;gt; flag in Clang.&lt;br /&gt;
* The modern (v2) ABI, which provides richer reflection metadata, smaller binaries and reduced memory usage. This is selected with the &amp;lt;code&amp;gt;-fobjc-runtime=gnustep-2.0&amp;lt;/code&amp;gt; flag in Clang 7.0 or later.&lt;/div&gt;</summary>
		<author><name>Mcarans</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.alioth.net/index.php?title=Compiling_with_Clang_instead_of_gcc&amp;diff=86518</id>
		<title>Compiling with Clang instead of gcc</title>
		<link rel="alternate" type="text/html" href="https://wiki.alioth.net/index.php?title=Compiling_with_Clang_instead_of_gcc&amp;diff=86518"/>
		<updated>2025-07-23T06:00:08Z</updated>

		<summary type="html">&lt;p&gt;Mcarans: New page on Clang&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This article describes how to build Oolite from source using Clang instead of gcc.&lt;br /&gt;
&lt;br /&gt;
Open a shell. To force building with Clang for all subsequent commands in your shell, you need to create environment variables for CC and CXX that point to clang. For Linux, it is like this:&lt;br /&gt;
&lt;br /&gt;
 export CC=/usr/bin/clang&lt;br /&gt;
 export CXX=/usr/bin/clang++&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Then build the latest release of libobjc2 ([https://github.com/gnustep/libobjc2/releases/tag/v2.2.1 2.2.1] at time of writing) from source as described [https://github.com/gnustep/libobjc2/blob/master/INSTALL here].&lt;br /&gt;
&lt;br /&gt;
Then build the latest release of gnustep-base ([https://github.com/gnustep/libs-base/releases/tag/base-1_31_1 1.31.1] at time of writing) from source as described [https://github.com/gnustep/libs-base/blob/master/INSTALL here].&lt;br /&gt;
&lt;br /&gt;
Open a text editor and load Oolite's ''GNUmakefile''. Look for the line:&lt;br /&gt;
 &lt;br /&gt;
 OBJC_PROGRAM_NAME = oolite:&lt;br /&gt;
&lt;br /&gt;
Above this line put:&lt;br /&gt;
&lt;br /&gt;
 ADDITIONAL_OBJCFLAGS += -fobjc-runtime=gnustep-1.9&lt;br /&gt;
&lt;br /&gt;
Save the file.&lt;br /&gt;
&lt;br /&gt;
Now you can build Oolite in the usual way eg. for Linux:&lt;br /&gt;
&lt;br /&gt;
 source /usr/share/GNUstep/Makefiles/GNUstep.sh&lt;br /&gt;
 make -f Makefile release-deployment -j$(nproc)&lt;br /&gt;
&lt;br /&gt;
You can force the use of the Clang/LLVM linker ldd instead of GNU's ld by adding this line to ''GNUmakefile'':&lt;br /&gt;
&lt;br /&gt;
 ADDITIONAL_LDFLAGS += -fuse-ld=lld&lt;br /&gt;
&lt;br /&gt;
However, it gave a segmentation fault for me which means that rather strangely, I must use GNU's linker ld for linking when compiling with Clang.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The &amp;lt;code&amp;gt;-fobjc-runtime&amp;lt;/code&amp;gt; flag is described as follows [https://github.com/gnustep/libobjc2/blob/master/README.md here]:&lt;br /&gt;
&lt;br /&gt;
The GNUstep Objective-C runtime was designed as a drop-in replacement for the GCC runtime. It supports three ABIs:&lt;br /&gt;
&lt;br /&gt;
* The old GCC ABI, which provides support for Objective-C 1.0 features. This can be selected via the &amp;lt;code&amp;gt;-fobjc-runtime=gcc&amp;lt;/code&amp;gt; flag in Clang or by compiling with GCC.&lt;br /&gt;
* The initial GNUstep non-fragile ABI, which was intended to be compatible with the GCC ABI, but provide support for modern Objective-C features. This can be selected with the &amp;lt;code&amp;gt;-fobjc-runtime=gnustep-1.9&amp;lt;/code&amp;gt; flag in Clang.&lt;br /&gt;
* The modern (v2) ABI, which provides richer reflection metadata, smaller binaries and reduced memory usage. This is selected with the &amp;lt;code&amp;gt;-fobjc-runtime=gnustep-2.0&amp;lt;/code&amp;gt; flag in Clang 7.0 or later.&lt;/div&gt;</summary>
		<author><name>Mcarans</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.alioth.net/index.php?title=Developer%27s_Corner&amp;diff=86517</id>
		<title>Developer's Corner</title>
		<link rel="alternate" type="text/html" href="https://wiki.alioth.net/index.php?title=Developer%27s_Corner&amp;diff=86517"/>
		<updated>2025-07-23T05:39:19Z</updated>

		<summary type="html">&lt;p&gt;Mcarans: Add new page about Clang&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Here you will find information that helps understanding the Oolite source code, build and test the project.&lt;br /&gt;
&lt;br /&gt;
* [[Contributing to the project]]&lt;br /&gt;
* [[Release Process]]&lt;br /&gt;
* [[Branding]]&lt;br /&gt;
* [https://ooliteproject.github.io/oolite/ Oolite API documentation]&lt;br /&gt;
* [https://ooliteproject.github.io/oolite/ Doxygen Documentation]&lt;br /&gt;
* [https://ooliteproject.github.io/oolite/coverage/index.html Code Coverage Report]&lt;br /&gt;
* [[Cross Platform IDEs]]&lt;br /&gt;
* [[Compiling with Clang instead of gcc]] (Windows/Linux)&lt;br /&gt;
&lt;br /&gt;
== OS Specific parts ==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;margin:auto&amp;quot;&lt;br /&gt;
|+ Operating System dependent stuff&lt;br /&gt;
|-&lt;br /&gt;
! Procedure !! Apple Mac !! Linux !! Windows&lt;br /&gt;
|-&lt;br /&gt;
| Setting up a development environment || [[Development on Apple Mac]] [[Cross Platform IDEs]] || [[Development on Linux]] [[Cross Platform IDEs]] || [[Development on Windows]] [[Cross Platform IDEs]]&lt;br /&gt;
|-&lt;br /&gt;
| Compiling || [[Compiling on Apple Mac]] || [[Compiling on Linux]] || [[Developing Oolite#On_Windows_2 | Compiling on Windows]]&lt;br /&gt;
|-&lt;br /&gt;
| Testing || [[Testing on Apple Mac]] || [[Testing on Linux]] || [[Testing on Windows]]&lt;br /&gt;
|-&lt;br /&gt;
| Packaging into Installer || [[Installer on Apple Mac]] || [[Installer on Linux]] || [[Installer on Windows]]&lt;br /&gt;
|-&lt;br /&gt;
| Running                  || [[Running_Oolite-Mac]] || ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Releasing the code==&lt;br /&gt;
&lt;br /&gt;
Once you developed a while you are no longer happy that all you created is called 'nightly' or 'prerelease' or 'unstable'.&lt;br /&gt;
If you are convinced the current status should be published as 'stable' or 'release', follow the [[Oolite Release Process]].&lt;br /&gt;
&lt;br /&gt;
[[Category:Oolite Development]]&lt;br /&gt;
&lt;br /&gt;
== Hints ==&lt;br /&gt;
&lt;br /&gt;
The code is organized across several git repositories. The main one refers to the others as submodules - but always to a concise commit.&lt;br /&gt;
If you need to update submodules you also need to tell update the reference in the main repository. Here you can see that handling submodules can lead to strange effects: https://bb.oolite.space/viewtopic.php?f=3&amp;amp;t=21470&lt;br /&gt;
&lt;br /&gt;
To learn mode about submodules read the fine manual at https://git-scm.com/book/en/v2/Git-Tools-Submodules&lt;/div&gt;</summary>
		<author><name>Mcarans</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.alioth.net/index.php?title=User:Mcarans&amp;diff=86403</id>
		<title>User:Mcarans</title>
		<link rel="alternate" type="text/html" href="https://wiki.alioth.net/index.php?title=User:Mcarans&amp;diff=86403"/>
		<updated>2025-07-16T23:57:09Z</updated>

		<summary type="html">&lt;p&gt;Mcarans: Start&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Mike - played Elite on C64 all the way through Frontier and FFE on PC and some similar games like Freelancer.&lt;br /&gt;
&lt;br /&gt;
First played Oolite way back in 2010/2011. I worked on the OXP sortable list (https://wiki.alioth.net/index.php/OXP_List) back then. &lt;br /&gt;
&lt;br /&gt;
In 2025 I came back to Oolite and I'm happy to see much progress has been made in many areas of the game as well as in OXP discovery and installation.&lt;br /&gt;
&lt;br /&gt;
Since coming back, I've updated the wiki page on setting up Linux game controllers, including calibration and assigning buttons to keyboard keys: [[Linux Joysticks and Gamepads]].&lt;br /&gt;
&lt;br /&gt;
I've also written a page about setting up cross platform IDEs JetBrains CLion and Visual Studio Code: [[Cross Platform IDEs]].&lt;br /&gt;
&lt;br /&gt;
I'll update this page as and when I have time.&lt;/div&gt;</summary>
		<author><name>Mcarans</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.alioth.net/index.php?title=Oolite_FAQ&amp;diff=86402</id>
		<title>Oolite FAQ</title>
		<link rel="alternate" type="text/html" href="https://wiki.alioth.net/index.php?title=Oolite_FAQ&amp;diff=86402"/>
		<updated>2025-07-16T23:54:50Z</updated>

		<summary type="html">&lt;p&gt;Mcarans: /* Getting Started */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:Oolite-IconBW.png | right | width=90px | height=90px ]]&lt;br /&gt;
== Getting Started ==&lt;br /&gt;
&lt;br /&gt;
{{FAQ|question=Where do I get the program? And what about the different versions that exist?|answer= The latest 'official' stable release is version 1.90, available on the [https://oolite.space/download oolite.space download page] for OS X, Windows, and Linux(x86). You can download the latest nightly (development version) from [http://terrastorage.no-ip.info/oolite/status_win64.html here], More detailed information can be found on the [https://bb.oolite.space/index.php Oolite Bulletin Board], in the respective sections for [https://bb.oolite.space/viewforum.php?f=10 Oolite-Mac], [https://bb.oolite.space/viewforum.php?f=9 Oolite-Linux] and [https://bb.oolite.space/viewforum.php?f=8 Oolite-PC].&lt;br /&gt;
The last stable release made by the original programmer, Giles Williams (a.k.a. Aegidian) was 1.65 and is best available from his website [http://oolite.aegidian.org/ oolite.aegidian.org].}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{FAQ|question=What's the point of the game?|answer=To fly from planet to planet, buying and selling goods, shooting pirates or committing acts of piracy. There's no goal other than perhaps to achieve the rank of ELITE.}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{FAQ|question=I'm still confused, how do I play?|answer=It's a good idea to start with the [https://github.com/OoliteProject/oolite/blob/master/Doc/OoliteReadMe.pdf Oolite ReadMe] file for some basic information. For further information you may wish to consult the [http://wiki.alioth.net/index.php/Oolite_Instruction_Manual Oolite Instruction Manual] here on the wiki. A load of helpful information can be obtained from [http://wiki.alioth.net/index.php/Mr_Gimlet Mr Gimlet], the quite talkative dockmaster on Lave Station. If you're a fresh graduate from the Flight Academy on the way to your first ship, you should see him. It's also a good idea to have a look at Ian Bell's [http://www.iancgbell.clara.net/elite/manual.htm Flight Training Manual] for the original BBC Elite, although some of Oolite's control keys are different from the original, so be careful.}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{FAQ|question=How do I configure my joystick or gamepad for Oolite?|answer=See [[Joysticks: Guide to Setting Up]].}}&lt;br /&gt;
&lt;br /&gt;
{{FAQ|question=How do I calibrate my joystick or gamepad for Oolite in Linux and map its buttons to keyboard keys?|answer=See [[Linux Joysticks and Gamepads]].}}&lt;br /&gt;
&lt;br /&gt;
{{FAQ|question=Where do I find quick reference pages?|answer=See '''OoliteRS''' (Reference Sheets) and '''AdviceforNewCommanders''' which came as .pdfs in your original game download. Probably worth printing out!}}&lt;br /&gt;
&lt;br /&gt;
== Gameplay ==&lt;br /&gt;
&lt;br /&gt;
{{FAQ|question=What do the various colors represent on the radar?|answer=White - unpowered items that can't mass-lock the in-system [[Torus Drive|Torus jump-drive]]. Green/Yellow - navigation buoys. Yellow - powered craft. Red - powered craft identified as hostile. Green - space stations. Green/Red - thargoids. Purple - police. Blue/Red - police on intercept. Red/Yellow - active mine (about to detonate). Blue/Cyan - witchspace wormhole. See [[IFF System]]}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{FAQ|question=I keep crashing when trying to dock. How do I dock manually?|answer=Many young Jamesons have met a sticky end and had to be scraped from the docking port of Lave Station whilst attempting docking. It's fairly easy once you get the hang of it. Check the [[How_to_Dock|How to Dock]] guide from the Galactic Navy Flight Manual. Or you can get the [[Traffic_Control_OXP|Traffic Control OXP]] for friendly instructions given by the station crew as you try to dock. Another good piece of kit is the [[Dock_Assist_System_OXP | Dock Assist System]]}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{FAQ|question=How do I make decent profits?|answer=Trade between a Poor or Average Agricultural and a Rich or Average Industrial planet. Write down the prices for everything on both planets and find out where you make the most profit per ton. &lt;br /&gt;
If you're not in the mood for making notes and calculating, you can download the [[MarketObserver | Market Observer OXP]]. The old-fashioned way would be to use the table of average prices in [https://github.com/OoliteProject/oolite/blob/master/Doc/OoliteRS.pdf Oolite Reference Sheet] to figure out whether you're on a buyers' or a sellers' market. The [http://wiki.alioth.net/images/9/9e/OoliteTradingChart2.zip Trading Chart] allows you to create your own statistics along your way. Pressing the ? key in Star Chart will cycle between a map of governments and tech levels, making it easy to pinpoint Poor Agricultural and Rich Industrial planets. [http://www.box.net/shared/bchkkloi32 This spreadsheet] highlights Poor Agricultural and Rich Industrial planets on a star chart (the spreadsheet is in .xls format and needs the Analysis Toolpak installed). [[GalCop Galactic Registry]] also helps.&lt;br /&gt;
 &lt;br /&gt;
Another option is to fit one or more [http://wiki.alioth.net/index.php/Passenger_Berth Passenger Berths] in your ship and earn credits by transporting individuals who, for one reason or another, prefer not to use the commercial Passenger Liners to reach their destination.  As with cargo contracts, you can build your reputation up, which will result in your being offered more lucrative fares. Yet another option is to earn credits by taking cargo contracts - courier goods of varied type and volume between planets near and far.    The spreadsheet helps assess whether you will be be able to complete the contract on time, and so build your reputation as an outstanding courier.}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{FAQ|question=It takes so long to get to the station after each jump. Can I do anything to speed the trip up?|answer=Well, space is huge. It is vast. I mean, have you ever imagined a football-field with an orange in one of the goals and a walnut in the other goal? If you haven't, then don't. It takes you nowhere. As will your ship's engine at normal speed. But then that's what your [[Torus Drive|Torus/jumpdrive]] is for. Hit '''J''', and your journey speeds up. Unfortunately your Torus/jumpdrive doesn't work when other masses, like ships or planets, are nearby. They will 'lock' it. And in the 'corridor' between the witchpoint and the planet you are very likely to meet other ships. On the other hand there is no rule that you have to stick to the corridor. Just leave it sideways in any direction with your jumpdrive engaged for about 10-15 seconds, and head for the planet then. Makes your voyage much smoother. If you're a bounty-hunter and eager to meet lots of pirates, however, this is not your method of choice.}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{FAQ|question=I have already made my first intergalactic jump to Galaxy 2, but now I remember that I forgot my Zero-G cricket set/food blender/deadly lobstoid/edible arts graduate on Lave/Tionisla/Xeesle/Reesdice! Or I just found out that there are some more missions I'd like to do in the first galaxy. So how can I jump back to Galaxy 1?|answer=You can't. Unfortunately due to their very physical nature intergalactic wormholes allow for one-way travel only. Fortunately, though, the intergalactic wormhole in Galaxy 8 connects back to Galaxy 1. So you can go full circle. And you have to, if you want to return to the first galaxy. Of course that will cost you another 5000 credits for each galactic hyperjump. So the complete 8-Galaxies-Sightseeing-Tour has a pricetag of a total 40000 credits.}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{FAQ|question=I've got a [[Trumble|trumble]]! First it was cute and fluffy. But then it started to multiply. Even worse, they started to eat everything on board and they are confusing my sights. I don't want them any more! How can I get rid of them? Help!|answer=First of all, don't feel embarrassed. It happens to all commanders sooner or later. I mean, they're really cute and fluffy, aren't they? But seriously, there are several things you could try. E.g. sell them to other unsuspecting noobs. If you don't find enough willing buyers, you could use your escape capsule and abandon your infested ship, hoping that they haven't yet made it into the escape pod, of course. I mean, you can always hope, can't you? If that all doesn't work for you, just remember the old Klingon saying: 'Revenge is a dish that is best served cold.' Now consider that for trumbles it's just the opposite. Want some BBQ-sauce?}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{FAQ|question=My keyboard doesn't have a particular key used by [[Oolite]], or I even want to change the keyboard layout completely to my liking. What can I do to change the keys?|answer=Oolite reads a key configuration file called keyconfig.plist that you can find at /AddOns/Config/keyconfig.plist; that is the Config-folder that you find inside your AddOns-folder; which is where you put your OXPs. (PC-users have to create the folder /AddOns/Config/ first and then drop a copy of the keyconfig.plist found in /Oolite.app/Contents/Resources/Config/ to this folder.) You can open this file in any text editor and change the ASCII values of the keys used to suit your own preferences. Information on the default keys is also found in the [http://wiki.alioth.net/index.php/Oolite_Keyboard_Controls Oolite Keybord Controls-documentation] here on the wiki.}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{FAQ|question=I've completed a number of native and [http://wiki.alioth.net/index.php/OXP OXP] missions and my [[Cobra_Mk.3_%28Oolite%29|Cobra Mk. III]] has a number of new and funky pieces of equipment. However, I'm planning a change of ship, what pieces of equipment will I lose as a result?|answer=Many missions award equipment as a result of either accepting or completing them. For the majority of ship equipment, trading ships will result in the equipment being sold as well, with a few exceptions. The '''Cloaking Device''' and the '''Mark Transponder Scanner''', available from the (native) Cloaking Device and (OXP) Assassins missions respectively are transferred to your new ship. The '''Naval Energy Unit''', although awarded with the completion of the (native) Thargoid Plans mission, will be sold when you trade ships. However, completing the mission allows you to buy these units from high TL systems.}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{FAQ|question=I’m using [[ECM Hardened Missile]]s, but enemies are still able to destroy them! I never seem to be able to destroy enemy hardheads, though. What gives?|answer=ECM-hardened missiles are not ECM-proof. The probability of a hardened missile being destroyed by [[E.C.M. System|ECM]] is 10%–34% depending on range, and if it is destroyed, there’s a 50% chance that it will detonate. This applies equally to hardened missiles fired by computer-controlled ships and those fired by the player. The most effective use of hardened missiles is to use them against relatively slow targets at moderate range, and only use them on nimble ships if you desperately need to force them to break off an attack. Also, don’t use your ECM until a missile is close to blast range (250 metres).&lt;br /&gt;
&lt;br /&gt;
Specifically, the ECM sends out four pulses with different ranges, at half-second intervals. Each pulse has a 10% chance of destroying each hardhead it encounters. For a missile fired at close range, that’s 1 - 0.9&amp;lt;small&amp;gt;&amp;lt;sup&amp;gt;4&amp;lt;/sup&amp;gt;&amp;lt;/small&amp;gt; = 34.39% chance of being destroyed within two seconds.}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{FAQ|question=If I believe that sizes and distances in [[Oolite]] are given in meters, it is so ''unrealistic''. The planets have a diameter of only 30–50 kilometers, and the suns are only 1000 kilometers away. Can't we get a little more realism in space, please?|answer=First of all, remember that Oolite is a ''game'', not a ''space simulation''. This is because it ''wants to'' be a game, not a sim. So yes, sizes and distances are all messed up. Ships and stations are too big, planets and suns are too small, and too close to each other. But this is ''deliberately'' so, and we are not going to change it.&lt;br /&gt;
&lt;br /&gt;
The reason is simple: Realistic sizes and distances don't make a good game. In reality space is so huge that you never would meet anybody else on your journey. Imagine the dozen or so ships you meet in the 500 or so kilometers between witchpoint and planet spread over the realistic 150 '''million''' kilometers between Sun and Earth. Even if your direction is only one degree off the perfect line, you would miss them all. And how interesting would that be for the gameplay? And finally, if you had a realistically sized station in front of a realistically sized planet, how would you ever even notice it? A grain of sand in front of a, well, '''planet'''. The result would be players in complete loneliness and virtually no interaction with NPCs. An utterly, utterly boring game. Therefore it was the right decision to screw realism in the layout of the planetary systems in Elite and Oolite. But you may care to look here: [[Distance (Oolite)]]}}&lt;br /&gt;
&lt;br /&gt;
== Expanding the Game ==&lt;br /&gt;
&lt;br /&gt;
{{FAQ|question=Speaking of OXPs, I've heard a lot about them. What are they? And where do I find them?|answer=OXP stands for 'Oolite eXpansion Pack'. As the name suggests, an OXP is an expansion to the game. It can contain virtually everything: new graphics for your ship, new ships for the player and/or the NPCs, new stations, new missions, new fun. The easiest way to install an OXP is to use the download expansion manager accessed within the game itself. The manager has access to over 500 expansion packs and will provide information on each one. You can also download and install OXP's manually. To install an OXP you simply have to drag it into your AddOns-folder (only the OXP itself, not the folder it probably comes in). And as for finding them, you're already at the right place. All OXPs are now (or will become) accessible through the [[OXP|OXP-page of the wiki]]. Just follow the link. And if you fancy trying to create an OXP, the modifying Oolite FAQ can be found [[Modifying Oolite Informal FAQ|here]].}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{FAQ|question=Are there any OXPs that are highly recommended? Or can I get a list of 'must-have' OXPs?|answer=This is a difficult one to answer, because it depends so much on personal taste. There is no list of 'must-have' or necessary OXPs that could be agreed upon by all—or even most—players or contributors. But if you have a look at the [https://bb.oolite.space/index.php Oolite Bulletin Board], especially the [https://bb.oolite.space/viewforum.php?f=2 Discussion]- and the [https://bb.oolite.space/viewforum.php?f=4 Expansion Pack]-forums, you will surely find some topics about this question, and the personal answers of a couple of board members.}}&lt;br /&gt;
&lt;br /&gt;
== Why does this and that not exist? ==&lt;br /&gt;
&lt;br /&gt;
{{FAQ|question=Will there ever be an Oolite Massive Multi-player Online Role-Play Game (MMORPG)?|answer=At present Ahruman and Co. (the developers) have no plans to develop either Oolite or a separate branch to accommodate either an MMORPG or an MOG (Multi-player Online Game). This, however, doesn't mean one of you clever bods out there can't try ;-) We suggest you read [https://bb.oolite.space/viewtopic.php?t=6173 this Bulletin Board thread] before you commence though, it may save you a lot of hair-tearing!}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{FAQ|question=Can the range of hyperspace jumps/my fuel capacity be increased?|answer=No. Jump range in Oolite is hard-coded for a reason. The game would become less challenging and thus less fun. (Although I can imagine hacks that give unlimited fuel.) And don't forget that there are already various ways of refuelling while you are in flight.}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{FAQ|question=I want Laser Cooling Boosters!|answer=There are none at the moment and the reason is simple. It would unbalance the game too much. If they were available for the player only, things would get too easy. And if the NPCs could get them, too, things would get too hard. It's all about maintaining a reasonable balance. So the ultimate advice on this is: aim carefully; don't waste your laser fire; prevent overheating.}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{FAQ|question=The other day I got killed when I launched from a Behemoth/Carrier/whatever, and all the profits/kills that I made before were gone. Why couldn't I save there? Why only on main stations or Rock Hermits?|answer=First of all, congratulations to you for having internalized the ''Golden Rule'': save early, save often! There are some limitations in Oolite about where you can save and load a commander from. In the core game (ie, a game with no OXP's installed), that's main stations and Rock Hermits. When it comes to OXP stations, many of them will now allow for saving and loading of game files. But some OXP stations, particularly older ones or carriers that will actively move around in the system, won't have this ability. That's because they aren't 'fixed' objects in space, and they, along with the rest of the system, are populated anew each time you load a game. So chances are that the Behemoth you docked with when saving simply wouldn't exist when you load again, and you would find yourself in nirvana instead of in a safe haven. To prevent odd behavior like this, saving and loading is prohibited anywhere other than in a main station or at Rock Hermits. Some station OXP's will now allow you to save at their location. Alternatively you could install [[Save_Anywhere | Save Anywhere.oxp]], which does exactly what it says on the tin. Note, however, that it is still in beta state so read the documentation first.}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{FAQ|question=I would like to switch between different ships of mine, e.g. have a nice racer for the weekends, meanwhile leave my freighter docked somewhere and take it back on Monday. Why can't I do this?|answer=It is possible for OXPs to provide this facility in 1.77 or later versions. Check the [[OXP_List|OXP List]] or ask on the forum to find one that suits you.}}&lt;br /&gt;
&lt;br /&gt;
== Known Issues / Bugs ==&lt;br /&gt;
&lt;br /&gt;
{{FAQ|question=I am running Oolite on Windows Vista/7 and have installed the game in C:\Program Files\Oolite. I cannot find my saved games, log files, game preferences .GNUstepDefaults file and/or any saved screenshots, although I can see the saved games in the game and use them normally. Where are my files?|answer=You are experiencing file virtualization under Windows. Any application installed in %programfiles%, %systemroot%, %systemdrive% or %programdata that writes files under its folder structure is subject to this. As per Microsoft Support's article KB927387, the resolution for finding your files again is using one of the following methods:&lt;br /&gt;
•Click the Compatibility Files button that appears on the Explorer bar to view virtualized files in the folder. The Compatibility Files button appears only if there are virtualized files in the folder.&lt;br /&gt;
&lt;br /&gt;
•Look in the C:\Users\User_name\AppData\Local\VirtualStore folder to locate files and folders. &lt;br /&gt;
&lt;br /&gt;
•Save your application's data in a folder under your user profile.}}&lt;br /&gt;
&lt;br /&gt;
== System Requirements ==&lt;br /&gt;
&lt;br /&gt;
{{FAQ|question=Does it work on Mac OS X 10.2 (Jaguar) &amp;amp; 10.3 (Panther)?|answer=Sadly, no. The minimum OS requirement for Oolite on the Mac is now Mac OS X 10.4. The previous stable version (1.65) is however compatible with Mac OS X 10.3.9 but no longer works with (for example) Mac OS X 10.15.3}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{FAQ|question=Does it work on both Intel and PPC Macs?|answer=Yes, since 1.65 Oolite has been Universal Binary. It was PPC only in previous (antiquated) versions.}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{FAQ|question=What's the latest version?|answer=The last stable release is 1.90. The last stable and latest test versions can be downloaded from [https://oolite.space/download Oolite's homepage]. More information can be found through the [https://bb.oolite.space/viewforum.php?f=1 Oolite forums].}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{FAQ|question=Is there a port for the PC or Linux?|answer=Yes. Both ports are stable and are at the same level of development as Oolite for the Mac. You can download Oolite for Windows and for Linux PCs from [https://oolite.space/download Oolite's homepage] (click on &amp;quot;show all platforms&amp;quot; if you can't see the version you're looking for). Information on test releases can be found through the Oolite forums, for the [https://bb.oolite.space/viewforum.php?f=9 Linux version], and for the [https://bb.oolite.space/viewforum.php?f=8 Windows version].}}&lt;br /&gt;
&lt;br /&gt;
== Writing OXPs ==&lt;br /&gt;
&lt;br /&gt;
{{FAQ|question=I would like to contribute to Oolite and write my own OXP, but unfortunately my knowledge in scripting/programming is limited. How can I get started?|answer=First of all the Oolite community welcomes all efforts to enhance and enrich their favorite game, so be our guest! Many of us have started with very little knowledge, but over time were able to write and release astonishing OXPs, so why shouldn't you? Anyway, scripting can be learned. Currently there are two scripting languages in use for Oolite, plist-scripting (sometimes referred to as legacy-scripting) and JavaScript. For any serious OXP-plans you will have to learn them. A general starting point is the [http://wiki.alioth.net/index.php/OXP_howto OXP howto]-page, which will link you to further documentation. For plist-scripting you should read the [http://wiki.alioth.net/index.php/OXP_howto_plist OXP howto plist]-page, and also the [http://wiki.alioth.net/index.php/Property_list Property list]-intro. Information on the ongoing implementation of scripting with JavaScript can be found in the [http://wiki.alioth.net/index.php/Category:Oolite_scripting Category page for scripting] (work in progress). If you want to design a new ship, you should have a look at the [http://wiki.alioth.net/index.php/OXP_howto_model OXP howto model]-page and the [http://wiki.alioth.net/index.php/OXP_howto_texture OXP howto texture]-page. And if you want to give it a behavior of its own, you should consult the [http://wiki.alioth.net/index.php/OXP_howto_AI OXP howto AI]-page. I suggest you try to read and understand these first. If you still have questions afterwards, there is always the [https://bb.oolite.space/index.php Oolite Bulletin Board], where lots of friendly people usually are very willing to lend a helping hand and to answer lots of questions.}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{FAQ|question=I want to write an OXP or add content to the Wiki, but some (or all) of the content was written by another author. What copyright issues do I face?|answer=Anything submitted to the Wiki is on the basis that anyone else may edit or fiddle with it. OXPs are submitted under the creative commons licence. The author (strictly speaking) owns the copyright, but licenses users to use or distribute the OXP as long as they don't sell or charge for it. In practice virtually all OXP authors don't assert copyright and are pleased and flattered that somebody thinks their stuff is worth writing about or pinching to use in another OXP (it is good manners to credit the original author in the readme though). I expect the author will be pleased if you want to add some background, but if you are in doubt, send him or her a PM asking him for permission. At the end of the day, Oolite is a fun project and everybody is doing stuff for it on that basis. (nicked wholesale from [https://bb.oolite.space/viewtopic.php?p=44813#44813 Little_Bear's] post on the [https://bb.oolite.space/index.php Oolite Bulletin Board])}}&lt;br /&gt;
&lt;br /&gt;
== Diagnosing Problems ==&lt;br /&gt;
&lt;br /&gt;
{{FAQ|question=Someone asked me for my log file. What is that, and where is it?|answer=While Oolite runs, various diagnostic information is written to a file called [[Latest.log]]. Where it is depends on your operating system:&lt;br /&gt;
* '''Mac OS X''': Restart Oolite, and select “Show Previous Log” from the “'''Oolite'''” menu in the menu bar. Alternatively, in the Finder, select “Go to Folder…” from the Go menu, and enter “~/Library/Logs/Oolite/”, and find Latest.log.&lt;br /&gt;
* '''Windows''': in Oolite’s folder (typically in C:\''Oolite''), there is a folder called ''oolite.app'', which contains a folder called ''Logs''. A shortcut to this folder is created at Oolite's Start Menu entries during installation. If you have installed the game in a folder subject to file virtualization like C:\Program Files\Oolite and encounter difficulty in locating the log files, then please refer to the Known Issues section of this FAQ for information on how to access them.&lt;br /&gt;
* '''Linux and other Unix-like systems''': ~/.Oolite/Logs (that is, in the hidden folder ''.Oolite'' in your home folder). If you’re using Nautilus or Konqueror—if you’ve never heard of them, you probably are—select Show Hidden Files from the View menu.}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{FAQ|question=Why do none of the OXPs I have installed appear to work in the game?|answer=Check you do not have Oolite in 'Strict Play' mode.  When docked or paused press F2 and if it says 'Reset to Unrestricted Play' then OXPs will not work.  It needs to say 'Reset to Strict Play'. Alternately perhaps you downloaded and extracted an OXP straight to the &amp;quot;add ons&amp;quot; file. Without then checking that the file ending &amp;quot;.oxp&amp;quot; is moved up from any subdirectory folders to the &amp;quot;add ons&amp;quot; folder itself, as Oolite simply ignores folders etc not ending in .OXP in &amp;quot;add ons&amp;quot;}}&lt;br /&gt;
&lt;br /&gt;
== Other Questions ==&lt;br /&gt;
&lt;br /&gt;
{{FAQ|question=I have a question not answered here, where can I get help?|answer=Try one of these:&lt;br /&gt;
*Post your queries onto [https://bb.oolite.space/index.php the friendliest board this side of Riedquat™]. Satisfaction is not guaranteed, but then what is, in this mixed-up universe? Help keep the board friendly by making sure your question isn't already answered here!&lt;br /&gt;
*Check [[How do I ...]] a collection of Help and guide pages on this wiki.&lt;br /&gt;
*If you want to report a bug, please read [https://bb.oolite.space/viewtopic.php?t=3778 this]. Yes, all that work is a drag, but if nobody reports the bug it probably won’t get fixed.&lt;br /&gt;
*Or join us in #oolite, or #oolite-dev if you're working on Oolite or OXPs, on irc.oftc.net or ipv6.oftc.net.}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Oolite]][[Category:Help pages]]&lt;/div&gt;</summary>
		<author><name>Mcarans</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.alioth.net/index.php?title=Joysticks:_Guide_to_Setting_Up&amp;diff=86401</id>
		<title>Joysticks: Guide to Setting Up</title>
		<link rel="alternate" type="text/html" href="https://wiki.alioth.net/index.php?title=Joysticks:_Guide_to_Setting_Up&amp;diff=86401"/>
		<updated>2025-07-16T23:47:13Z</updated>

		<summary type="html">&lt;p&gt;Mcarans: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:TFlight HOTAS 4.png|200px|thumb|right|'''Thrustmaster''' TFlight Hotas 4: Throttle &amp;amp; joystick detachable-ish]]&lt;br /&gt;
'''Cholly's guide to Setting up Joystick Configurations in Oolite 1.90'''&lt;br /&gt;
&lt;br /&gt;
== Introduction ==&lt;br /&gt;
&lt;br /&gt;
This guide deals '''only''' with assigning in-game functions (such as steering or firing a missile) to the axes and buttons on a joystick/throttle.&lt;br /&gt;
&lt;br /&gt;
For setting up an '''axis profile''' (to correct a drunken bias - or to achieve more precision in flight) - read [[Dizzy's guide to Setting up Joystick Axis Profiles in Oolite 1.80|Dizzy's guide to Setting up Joystick Axis Profiles]]&lt;br /&gt;
&lt;br /&gt;
For correcting jitter (''eg'' in a faulty joystick) try out the [[BGS]] OXP with [[Library OXP]]'s F4 screen Config for AddOns.&lt;br /&gt;
&lt;br /&gt;
For setting up in '''Linux''', including calibration and assigning buttons to keyboard keys, read [[Linux Joysticks and Gamepads]].&lt;br /&gt;
&lt;br /&gt;
=== Important Points ===&lt;br /&gt;
'''*Be careful''' of what you assign to buttons/axes on the base of the joystick/throttle. You will need to let go of the joystick/throttle to get to the buttons on the base. If this is in the middle of a combat, you could find yourself well and truly stuffed, as you can no longer steer/change speed. So avoid assigning functions such as witchspace fuel injectors (i) or firing missiles (m) to the base of your unit!&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
[[File:Game Start-up screen (with BGS).png|thumb|right|Oolite's Opening Screen (garnished with [[BGS]])&amp;lt;br&amp;gt;&amp;quot;Game Options&amp;quot; is in the middle of the list]]&lt;br /&gt;
== Finding the &amp;quot;Joystick Configuration&amp;quot; screen ==&lt;br /&gt;
&lt;br /&gt;
=== On starting up Oolite ===&lt;br /&gt;
On the opening screen, skip over &amp;quot;Start New Commander&amp;quot;/&amp;quot;Load Commander&amp;quot; etc. and select &amp;quot;Game Options&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
&amp;quot;Joystick Configuration&amp;quot; will be greyed out on the Game Options screen if no controller/joystick is plugged in/detected.&lt;br /&gt;
=== Midgame: docked ===&lt;br /&gt;
Press the &amp;lt;font color=&amp;quot;Red&amp;quot;&amp;gt;'''2/F2'''&amp;lt;/font&amp;gt; button and then select &amp;quot;Game Options&amp;quot; as above.&lt;br /&gt;
=== Midgame: in flight ===&lt;br /&gt;
Pause your game (press &amp;lt;font color=&amp;quot;Red&amp;quot;&amp;gt;'''p'''&amp;lt;/font&amp;gt; to pause/unpause) and then press &amp;lt;font color=&amp;quot;Red&amp;quot;&amp;gt;'''2/F2'''&amp;lt;/font&amp;gt; and select &amp;quot;Game Options&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
Don't forget to ''unpause'' your game!&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Gallery of Configurations Screens (Oolite v.1.90) ===&lt;br /&gt;
There are four screens, and a fifth for the 3 axis profiles (toggling between pitch/roll/yaw)&amp;lt;br&amp;gt;&lt;br /&gt;
Click on an image to enlarge&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
Image:Configure Joysticks 1.png &lt;br /&gt;
Image:Configure Joysticks 2.png &lt;br /&gt;
Image:Configure Joysticks 3.png &lt;br /&gt;
Image:Configure Joysticks 4.png &lt;br /&gt;
Image:Configure Joysticks - Axis Profile.png&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
Oolite v.1.91 has ''seven'' screens!&lt;br /&gt;
&lt;br /&gt;
== Joysticks: Some definitions ==&lt;br /&gt;
''For more details on Throttles, see Thrustmaster TM4 &amp;amp; CH Throttle Pro below''&lt;br /&gt;
{| cellspacing=&amp;quot;30&amp;quot; align=&amp;quot;center&amp;quot; border=&amp;quot;0&amp;quot; text-align=&amp;quot;center&amp;quot;&lt;br /&gt;
| align=&amp;quot;center&amp;quot; width=&amp;quot;172&amp;quot; height=&amp;quot;20&amp;quot;|[[File:Joystick Definitions.png|300px|thumb|&amp;lt;br&amp;gt;|1. stick, 2. base, 3. trigger, 4. extra buttons, 5. 2-way switch, 6. thumbwheel axis, 7. hat switch (4-way), 8. suction cup]]&lt;br /&gt;
| align=&amp;quot;center&amp;quot; width=&amp;quot;172&amp;quot; height=&amp;quot;20&amp;quot;|[[File:Joystick Directions.png|300px|thumb|&amp;lt;br&amp;gt;|Hat switch in green at top, Thumbwheel axis in yellow at bottom]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
*'''Axis'''&lt;br /&gt;
:An analogue-style input where your movements select the ''amount'' of change (not available for purely keyboard inputs)&lt;br /&gt;
:''There are at least 4 types of axis:''&lt;br /&gt;
::The usual two axes of a joystick (forwards ↔ backwards &amp;amp; left ↔ right) - '''x''' &amp;amp; '''y''' ''above right''&lt;br /&gt;
::Some joysticks have twist as well (clockwise ↔ anti-clockwise) - '''z''' ''above right''&lt;br /&gt;
::A '''thumbwheel''' - '''6''' ''above left'' (often used for speed in the absence of a separate throttle unit)&lt;br /&gt;
::A '''mini-joystick''' - ''not shown above'' - can look identical to the hat switch, but with very different operation - will add two more '''x''' &amp;amp; '''y''' axes&lt;br /&gt;
&lt;br /&gt;
*'''Button'''&lt;br /&gt;
:A more digital On/Off input: Either (i) press once (F2 rear view), (ii) keep pressed (Fire laser)&lt;br /&gt;
:''There are at least 6 types of button:'' &lt;br /&gt;
::A '''button''' that looks like a button! - '''4''' ''above left''&lt;br /&gt;
::A '''switch''' (operates like 2 buttons) - '''7''' ''above left''&lt;br /&gt;
::A '''trigger''' (operates like a button) - '''3''' ''above left''&lt;br /&gt;
::A '''hat switch''' (operates like 4 buttons) - '''6''' ''above left''&lt;br /&gt;
::A button incorporated into a mini-joystick - ''not shown here - but see the CH Pro Throttle below''&lt;br /&gt;
::A '''rotary switch''' where one turns the knob to select one of a number of options - ''not shown here - but see the black left hand knobs on the Saitek radio panel [[Buttonboxes#Saitek|here]]''&lt;br /&gt;
&lt;br /&gt;
*'''Hat switch''' (used to be called a coolie hat switch) - ''see buttons''&lt;br /&gt;
*'''POV switch''' ('''P'''oint '''O'''f '''V'''iew switch – same as hat switch) - ''see buttons''&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Joysticks ==&lt;br /&gt;
&lt;br /&gt;
=== CH Combat Stick &amp;amp; Throttle Pro ===&lt;br /&gt;
[[File:CH Combat Stick with Pro Throttle.png|450px|thumb|right|Throttle Pro with Combat Stick - the mid-range of CH's 3 joysticks]]&lt;br /&gt;
CH's stuff is rugged and was expected to last for decades. It is less so since the company changed changed hands, but many feel it is still the best in this respect. It is also light-weight and looks clunky! And big for the hands. &amp;lt;br&amp;gt;&lt;br /&gt;
The '''CH Combat Stick''' has a two-axis joystick only (no twist) with fine-tuning thumbwheels which can eliminate drunkenness. There is the trigger, a pinky button (Joy_4) and 4 other buttons (Joy_5 is on the far side of the joystick, reached by the index finger). There are two hat-switches. There is a 3rd thumbwheel which can act as a throttle. &amp;lt;br&amp;gt;&lt;br /&gt;
'''The Pro Throttle''' has ''all'' the controls on the throttle itself - none on the base (''ie'' you need never take your hand off the throttle). There are 3 buttons behind the throttle handle and 5 hat-switches! The rightmost of these on the 'lozenge' on the side of the throttle is actually a mini-joystick which can be pressed and acts as a fourth button. &amp;lt;br&amp;gt;&lt;br /&gt;
'''The CH Control Manager Software''' only works on Windows computers. It is supposedly top notch in terms of capability - and also highly complex to master!&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
'''Cranky's''' settings: Cranky is new to Oolite, and favours the [[Roll vs Yaw crusades|yaw]] take on astrogation.&lt;br /&gt;
*Joy Y axis - pitch&lt;br /&gt;
*Joy X axis - yaw&lt;br /&gt;
*Throttle - speed&lt;br /&gt;
*Mini-joystick - only x-axis - for roll only (y-axis and button not used)&lt;br /&gt;
*Top right hat-switch on Joystick - F1-F4 POV settings&lt;br /&gt;
*Bottom left hat switch on Joystick - ''combat settings'': UP (ECM: '''e'''); DOWN (Activate 1st fast equipment ''defensive'' '''Tab'''); RIGHT (Activate *2nd fast equipment offensive '''0'''); LEFT unset. &lt;br /&gt;
*Left-hand hat switch on throttle side - unset (''too often fiddled with by accident'').&lt;br /&gt;
*Top hat switch on throttle side - ''Special .oxp equipment'': UP (Prime: '''shift-n'''); DOWN (Activate: '''n'''); LEFT (Modify: '''b''')&lt;br /&gt;
*Bottom hat switch on throttle side - ''Docking'': UP (Fast docking: '''shift-c'''); DOWN (Blue Danube docking: '''c'''); LEFT (request docking clearance: '''shift-l''')&lt;br /&gt;
*Hat switch on back side of throttle - ''Scanner/Compass'': UP (Scanner Zoom: '''z'''); DOWN (Unzoom: '''shift-z'''); LEFT ([[ASC]] next target: '''\''')&lt;br /&gt;
*The right side settings of the throttle hat switches not used (waiting for reverse prime '''ctrl-shift-n''' &amp;amp; ASC last target '''|''' options to be added to the configuration pages).&lt;br /&gt;
*Joy_1 - (trigger) - fire laser ('''a''')&lt;br /&gt;
*Joy_2 - toggle ID ('''r''')&lt;br /&gt;
*Joy_3 - precison flying toggle ('''ctrl''')&lt;br /&gt;
*Joy_4 - fire missile ('''m''')&lt;br /&gt;
*Joy_5 - toggle weapons on/off ('''shift-hyphen''' or '''_''')&lt;br /&gt;
*Joy_6 - unset missile ('''u''') ''to neuter the ILS and the Automatic Targetting when they select an unwanted target''&lt;br /&gt;
*3 buttons on the back side of the throttle: ''drives!'': Witchfuel injectors ('''i'''); Torus drive ('''j''') &amp;amp; Witchspace drive ('''h''')&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
[[File:Logitech joystick.jpg|300px|thumb|right|note right fore-finger on black ''trigger'', right thumb on white ''button 2'' &amp;amp; left thumb on ''throttle'']]&lt;br /&gt;
[[File:Logitech Stick Map.jpg|400px|thumb|right|Joystick Map]]&lt;br /&gt;
=== Logitech Extreme 3D Pro ===&lt;br /&gt;
:Note: as with a number of these items, this joystick has been &amp;quot;produced&amp;quot; by a number of different companies over the past decade and under a range of different names!&lt;br /&gt;
&lt;br /&gt;
*The Logitech joystick has a 3-way axis for the stick (including the 3rd twist axis) and another throttle axis on the base.&lt;br /&gt;
*There are twelve buttons: 6 on the stick (including the trigger and button 2 on the left of the stick where the thumb rests) and 6 on the base.&lt;br /&gt;
*The hat switch on the stick is actually an 8-way switch which ''can'' function as a mini-joystick giving another 2 axes if desired.&lt;br /&gt;
*The software for the Logitech joystick allows the buttons to be programmed to operate macros if so desired.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
[[User:Cody|Cody]]'s settings for the Logitech Extreme 3D Pro: ''Cody uses this joystick with a keyboard. The precision toggle is '''not''' used because the axis profiles were set so as to no longer need it''. Cody is an old timer who mastered Classic Elite before joining the Oolite boards over a decade ago.  &lt;br /&gt;
*Axis 1 - roll ('''left'''/'''right''' arrows)&lt;br /&gt;
*Axis 2 - pitch ('''up'''/'''down''' arrows)&lt;br /&gt;
*Axis 3 - not used (twist): ''Cody favours the Rollers in the [[Roll vs Yaw crusades]]''&lt;br /&gt;
*Axis 4 - not used (throttle)&lt;br /&gt;
*Axis 5 - (hatswitch) used instead as buttons - for views - left &amp;amp; right ('''F3''' &amp;amp; '''F4''')&lt;br /&gt;
*Axis 6 - (hatswitch) used instead as buttons - for views - up &amp;amp; down ('''F1''' &amp;amp; '''F2''')&lt;br /&gt;
*Button 1 - (trigger) - fire laser ('''a''')&lt;br /&gt;
*Button 2 - ''docking'' - request docking clearance ('''shift-l''')&lt;br /&gt;
*Button 3 - ''missile'' - arm missile ('''t''')&lt;br /&gt;
*Button 4 - ''missile'' - fire missile ('''m''')&lt;br /&gt;
*Button 5 - take snapshot ('''*''')&lt;br /&gt;
*Button 6 - ''missile'' - cycle missile ('''y''')&lt;br /&gt;
*Button 7 - next [[ASC]] compass target ('''\''')&lt;br /&gt;
*Button 8 - not yet used&lt;br /&gt;
*Button 9 - ''docking'' - Blue Danube docking computer ('''c''')&lt;br /&gt;
*Button 10 - ''docking'' - fast docking computer ('''shift-c''')&lt;br /&gt;
*Button 11 - Activate .oxp equipment ('''n''')&lt;br /&gt;
*Button 12 - Prime .oxp equipment ('''shift-n''')&lt;br /&gt;
:And see [https://app.box.com/s/gythr56ev88f1uvoijevfqncwmmjtlat Cody's 2017] key-bindings, before axis bindings. Not all buttons used.&lt;br /&gt;
----&lt;br /&gt;
[https://bb.oolite.space/viewtopic.php?p=261310#p261310 Nite Owl's] settings for the Logitech Extreme 3D Pro. Another veteran, like Cody, but with a more combat oriented set of joystick bindings.&lt;br /&gt;
&lt;br /&gt;
*Axis 1 - Joystick left and right axis as Left and Right Roll. (Editorial note: like Cody, a veteran elitist in the [[Roll vs Yaw crusades]])&lt;br /&gt;
*Axis 2 - Joystick forward and back axis as Pitch Up and Down.&lt;br /&gt;
*Axis 3 - Joystick left and right twist axis as Pitch Left and Right.&lt;br /&gt;
*Axis 4 - The throttle axis for the ship's Throttle.&lt;br /&gt;
*The hat switch for changing views in the obvious manner.&lt;br /&gt;
*Button 1              Fire main weapon (Laser) ('''a''')&lt;br /&gt;
*Button 2              Fire secondary weapon (Pylon) ('''m''')&lt;br /&gt;
*Button 3              Targeting I.D. On/Off ('''r''')&lt;br /&gt;
*Button 4              Weapons On/Off (shift-hyphen: '''_''')&lt;br /&gt;
*Button 5              Torus Drive On/Off ('''j''')&lt;br /&gt;
*Button 6              Fuel Injectors (Hold to Use) ('''i''')&lt;br /&gt;
*Button 7              Set Equipment Mode ('''b''')&lt;br /&gt;
*Button 8              Prime Equipment ('''shift-n''')&lt;br /&gt;
*Button 9              Target Incoming Missile  ('''shift-t''')&lt;br /&gt;
*Button 10             Fast Target Selector (OXZ set up as Fast Activate 1, key = zero, and then the zero key is mapped to the Joystick)&lt;br /&gt;
*Button 11             Scanner Zoom  ('''z''')&lt;br /&gt;
*Button 12             Activate E.C.M. ('''e''')&lt;br /&gt;
&lt;br /&gt;
&amp;quot;''Axes 2 &amp;amp; 3 may seem counter intuitive - but they work for me. My guess is that most Commanders would have these two reversed. Also have some very nice spline curves set up as per Dizzy's Guide mentioned at the top and bottom of this page. Everything else is accessed via the keyboard controls. The Advanced Navigation Computer (OXZ) is mapped to Fast Activate 2, key = Tab. Docking Clearance (mandatory at all but Rock Hermits in my Ooniverse) is accessed via the Communications M.F.D. (OXZ). With the Communications M.F.D. active, use the '''n''' key to select the &amp;quot;Request Docking Clearance&amp;quot; option and then press '''b'''. All other keyboard commands are at their default settings.''&amp;quot; (Nite Owl)&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
[[File:Logitech X56.png|right|320px]]&lt;br /&gt;
=== Logitech X52 Pro HOTAS ===&lt;br /&gt;
See Darkened Room's partial set up [https://drive.google.com/drive/folders/1dM9k9Cl9TFGU-S0cBOkPd39LB7RVyJOm?usp=sharing here] (2023: layout pdf &amp;amp; config file).&lt;br /&gt;
&lt;br /&gt;
=== Logitech G X56 HOTAS ===&lt;br /&gt;
Note that Logitech bought out MadCatz in 2016 (who had bought out Saitek in 2007).&lt;br /&gt;
 X-56 H.O.T.A.S. System (2018)&lt;br /&gt;
 X-55 Rhino H.O.T.A.S. System (2014)&lt;br /&gt;
 X-65F Flight Combat Control System (2008)&lt;br /&gt;
 X52 Pro Flight Control System (2007)&lt;br /&gt;
 X52 Flight Control System (2004)&lt;br /&gt;
 X45 Digital Joystick and Throttle (2001)&lt;br /&gt;
 X36 Flight Control System (1999), consisting of the X36F Control stick and X35T throttle&lt;br /&gt;
&lt;br /&gt;
There may be issues with playing Oolite in Windows with this HOTAS - the throttle may not connect.&lt;br /&gt;
&lt;br /&gt;
:If so, you may need to (re)-install the Logitech X56 software from [https://support.logi.com/hc/en-us/articles/360024844133--Downloads-X56-Space-Flight-H-O-T-A-S- here]&lt;br /&gt;
&lt;br /&gt;
:Once that's installed you can go into the X56 &amp;quot;HUD&amp;quot; program and go to Programming. From there, select the Throttle.&lt;br /&gt;
&lt;br /&gt;
:You then need to create a new profile and start adding your controls to it. The Logitech manual is a little obtuse on the subject but it gets the job done. In order for Oolite to effectively recognize the throttle axis you need to set it to Band mode, which lets you assign W to the lower third of the band, S to the upper third (yes, these are reversed from expectation) and nothing to the central band.&lt;br /&gt;
&lt;br /&gt;
:After that the rest of the controls are pretty easy to set up.&lt;br /&gt;
&lt;br /&gt;
:Then you need to save and activate the profile - there's a button on the same programming screen, or you use the background program in the carat ( ^ ) menu on the Taskbar. If you're using the background program, right click on the program icon and select your saved profile.&lt;br /&gt;
&lt;br /&gt;
:Once activated, the software will override your default settings and Oolite will accept those commands instead of the throttle's &amp;quot;real&amp;quot; inputs. You can then &amp;quot;clear&amp;quot; the profile if you want to play a different game. (Details from [https://bb.oolite.space/viewtopic.php?p=281448#p281448 Arquebus 2021]).&lt;br /&gt;
&lt;br /&gt;
Arquebus also has a [https://www.youtube.com/watch?v=llQk_J0Ty38&amp;amp;list=PLsYaAtYv_5eUpD3FBWQk7XQuKQQsrVhNV&amp;amp;index=10 youtube video] explaining his set up (it includes Touch Portal)&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Thrustmaster TM4 ===&lt;br /&gt;
[[File:TFlight HOTAS 4.png|250px|thumb|right|note that joystick and throttle units have not been separated]]&lt;br /&gt;
There are some 3 very similar Thrustmaster entry-level HOTAS ('''H'''ands '''o'''n '''T'''hrottle '''a'''nd '''S'''tick) sets: T.Flight 3, 4 &amp;amp; X. They seem mostly designed for those using gaming consoles as the buttons on each are quite limited in number.&lt;br /&gt;
&lt;br /&gt;
They are very nicely designed - nice curves, screw holes at the bottom for attaching to something heavy like a desk (if so desired), an Allen key (living in a base recess) to separate the two halves of the throttle and joystick, a simple knob to stiffen up the joystick ''etc''. Another point is that since the joystick and throttle are wired together, they only occupy one USB slot on the dreaded computer.&lt;br /&gt;
&lt;br /&gt;
*The TM4 joystick has a 3-way axis for the stick (including the 3rd twist axis - disable-able with a screwdriver), a throttle axis on the left, and a fifth axis (rudder) on the back of the throttle stick.&lt;br /&gt;
*There are 13 buttons: 4 on the stick (including the trigger) and 6 on the throttle and 3 on the base of the throttle.&lt;br /&gt;
*The hat switch on the stick is a regular 4-way switch.&lt;br /&gt;
*The software for the TM3/4/X hotas is needed. It allows the PS button on the base of the throttle to toggle between vanilla PlayStation mode (where the twist joystick z-axis and the throttle's rudder axis are disabled) and Joystick mode where everything works.&lt;br /&gt;
&lt;br /&gt;
==== Use with AppleMac ==== &amp;lt;!-- Apple AppleMac Thrustmaster TFlight HOTAS_4 TM4 --&amp;gt;&lt;br /&gt;
It seems that this is not compatible with the AppleMac, with the twist, throttle and axis on the back of the throttle not seeming functional.&lt;br /&gt;
What neither Thrustmaster nor Apple can be bothered to tell you is that you need to keep the '''PS''', '''SHARE''' &amp;amp; '''OPTIONS''' buttons held down while you plug it into your AppleMac. The green light should then come on under your PS button, and you should find the HOTAS fully functional. This is without the Thrustmaster software being loaded. This worked for Cholmondely but not for Murgh.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
[[User:Cholmondely|Cholly]]'s settings: Cholly uses this HOTAS with an Elgato [[Buttonboxes|Streamdeck]], so the confusing missile controls are ''there'' where they can be clearly labelled and understood. Cholly is quite new to Oolite, and has no other real experience of space sims.&lt;br /&gt;
&lt;br /&gt;
*Axis 1 - (Joystick left/right): roll (left/right arrows) - Cholly read too many of Cody's old BB posts and got converted to rolling!&lt;br /&gt;
*Axis 2 - (Joystick left/right): pitch (up/down arrows)&lt;br /&gt;
*Axis 3 - (throttle): speed ('''w''' and '''s''')&lt;br /&gt;
*Axis 4 - (twist on joystick): not used ''Cholly finds 3 axes on the same stick too confusing for words''&lt;br /&gt;
*Axis 5 - ''possibly refers to optional pedals?''&lt;br /&gt;
*Axis 6 - (rudder on throttle): yaw - (''',''' &amp;amp; '''.''')&lt;br /&gt;
*Button 1 - (trigger on joystick): fire laser ('''a''')&lt;br /&gt;
*Button 2 - (L1 button): witchfuel injectors ('''i''')&lt;br /&gt;
*Button 3 - (R3 button): roll/pitch Precision toggle (sort of '''ctrl''' but as a toggle: Cholly has yet to master the art of splining - see Dizzy's Guide) &lt;br /&gt;
*Button 4 - (L3 button): Toggle ID ('''r''')&lt;br /&gt;
*Button 5 - (square on button): ECM ('''e''')&lt;br /&gt;
*Button 6 - (x on button): Activate first fast equipment (defensive) ('''Tab''')&lt;br /&gt;
*Button 7 - (circle on button): Activate second fast equipment (offensive) ('''0''')&lt;br /&gt;
*Button 8 - (triangle on button): toggle weapons (shift-hyphen: '''_''')&lt;br /&gt;
*Button 9 - (R2 button): zoom scanner ('''z''')&lt;br /&gt;
*Button 10 - (L2 button): reset scanner ('''shift-z''')&lt;br /&gt;
*Button 11 - (Share button): ''hyperspeed'' - Torus jump drive ('''j''') &lt;br /&gt;
*Button 12 - (Options button): ''hyperdrive'' - Witchspace drive ('''h''')&lt;br /&gt;
*Button 13 - (PS red/green LED button): not used (as it disables rudder yawing)&lt;br /&gt;
*Hat Switch - (on joystick): used as 4 buttons - for the 4 views - ('''F1 - F4''')&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
----&lt;br /&gt;
== Controllers ==&lt;br /&gt;
&lt;br /&gt;
=== Sony PlayStation ===&lt;br /&gt;
[[File:Controller- Sony PlayStation.png]]&amp;lt;br&amp;gt;&lt;br /&gt;
This mapping is from 2015/6 at which stage it did not function when the ship was docked.&lt;br /&gt;
From [https://bb.oolite.space/viewtopic.php?f=2&amp;amp;t=17985&amp;amp;p=246778#p246778  this] BB thread.&lt;br /&gt;
&lt;br /&gt;
=== Logitech dual-action Profiler ===&lt;br /&gt;
[[File:Controller- Logitech dual-action Profiler.gif]]&amp;lt;br&amp;gt;&lt;br /&gt;
This mapping is from 2013. A ''shift key'' doubles the mapping potentialities.&lt;br /&gt;
From [https://bb.oolite.space/viewtopic.php?p=202759#p202759 this] BB thread.&lt;br /&gt;
&lt;br /&gt;
=== Logitech F310 ===&lt;br /&gt;
&lt;br /&gt;
 Left stick up/down: pitch up/down&lt;br /&gt;
 Left stick left/right: yaw left/right (I know, I know...)&lt;br /&gt;
 Left stick push: Request docking clearance (Shift-L)&lt;br /&gt;
 &lt;br /&gt;
 Right stick up/down: speed increase/decrease (W/S)&lt;br /&gt;
 Right stick left/right: roll left/right&lt;br /&gt;
 Right stick push: ECM (E)&lt;br /&gt;
 &lt;br /&gt;
 4 way hat: views (F1/2/3/4)&lt;br /&gt;
 &lt;br /&gt;
 A Button: Fire laser (A)&lt;br /&gt;
 B Button: Fire missile (M)&lt;br /&gt;
 X Button: Space compass next target (\)&lt;br /&gt;
 Y Button: Missile target seek (T) &lt;br /&gt;
 &lt;br /&gt;
 View Button (Back button on the F310): Fast activate second equipment (ie Tab key)&lt;br /&gt;
 Menu Button (Start button on the F310): Begin hyperspace countdown (H)&lt;br /&gt;
 &lt;br /&gt;
 LB: Engage torus (J)&lt;br /&gt;
 RB: Injectors (I)&lt;br /&gt;
 LT: Fast activate first equipment (ie 0 key)&lt;br /&gt;
 RT: Activate ID recognition (R)&lt;br /&gt;
&lt;br /&gt;
[https://bb.oolite.space/viewtopic.php?p=257091#p257091 Phkb, 2017]&lt;br /&gt;
&lt;br /&gt;
== Problem Solving ==&lt;br /&gt;
*Is your joystick compatible with your computer?&lt;br /&gt;
*Do you have too many joysticks/controllers/USB gadgets [https://bb.oolite.space/viewtopic.php?f=2&amp;amp;t=20894 plugged in]?&lt;br /&gt;
*Does your joystick make your craft swerve to the side (See Dizzy's Guide below)?&lt;br /&gt;
&lt;br /&gt;
== History ==&lt;br /&gt;
The code for all this was published by Kanthoney back in February 2014. Dizzy's guide was crucial in explaining it all to people (July '14). In the years since, it has been expanded.&lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
* [[Dizzy's guide to Setting up Joystick Axis Profiles]] (splines and stuff!)&lt;br /&gt;
* [[Joysticks and Gamepads]] (contains instructions for eliminating jitter from your joystick. Some throttles jitter when &amp;quot;off&amp;quot;, causing &amp;quot;engine-revving&amp;quot; sounds with BGS)&lt;br /&gt;
* [[Linux Joysticks and Gamepads]] (Guide to setting up game controllers in Linux)&lt;br /&gt;
* [https://bb.oolite.space/viewtopic.php?f=2&amp;amp;t=20841 Joysticks]: how to configure (BB thread basis for this page).&lt;br /&gt;
* [https://bb.oolite.space/viewtopic.php?f=2&amp;amp;t=17315 Ship Tuning 2015]: how to dampen the agility of your ship - and has notes on altering the joystick precision setting&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [https://bb.oolite.space/viewtopic.php?f=6&amp;amp;t=15770 2013] thread about coding Oolite for Joysticks (Macs vs Windows/Linux).&lt;br /&gt;
* [[AppleMac]] - see section on HOTAS for some background.&lt;br /&gt;
* [https://bb.oolite.space/viewtopic.php?f=8&amp;amp;t=17857 2015] thread about problems with setting up several Windows joysticks (with Linux mentions)&lt;br /&gt;
* [https://bb.oolite.space/viewtopic.php?f=2&amp;amp;t=17985 2016] thread about T.FlightHotas4, Logitech Extreme 3D Pro, controllers &amp;amp; yaw issues. &lt;br /&gt;
* [https://bb.oolite.space/viewtopic.php?f=8&amp;amp;t=11987 2012-13] thread about the PS3 controller&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [https://bb.oolite.space/viewtopic.php?f=2&amp;amp;t=19309 2018] Is it possible to control OOlite entirely with Joystick/Gamepad? &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*[https://bb.oolite.space/viewtopic.php?f=8&amp;amp;t=6958 2009] Old thread about yaw and throttle problems (now fixed in Oolite code). Links to older threads.&lt;br /&gt;
&lt;br /&gt;
*[https://bb.oolite.space/viewtopic.php?f=6&amp;amp;t=5428 Force-Feedback Joystick Support?] (2008-17: see Getafix's last posts for Linux)&lt;br /&gt;
&lt;br /&gt;
=== Other advice pages ===&lt;br /&gt;
*[[How do I ...]] dock / succeed in trading / win a fight / configure my controller/joystick ''etc''&lt;br /&gt;
&lt;br /&gt;
[[Category:Oolite]][[Category:Factual]][[Category:Help pages]]&lt;/div&gt;</summary>
		<author><name>Mcarans</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.alioth.net/index.php?title=Joysticks:_Guide_to_Setting_Up&amp;diff=86400</id>
		<title>Joysticks: Guide to Setting Up</title>
		<link rel="alternate" type="text/html" href="https://wiki.alioth.net/index.php?title=Joysticks:_Guide_to_Setting_Up&amp;diff=86400"/>
		<updated>2025-07-16T23:44:16Z</updated>

		<summary type="html">&lt;p&gt;Mcarans: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:TFlight HOTAS 4.png|200px|thumb|right|'''Thrustmaster''' TFlight Hotas 4: Throttle &amp;amp; joystick detachable-ish]]&lt;br /&gt;
'''Cholly's guide to Setting up Joystick Configurations in Oolite 1.90'''&lt;br /&gt;
&lt;br /&gt;
== Introduction ==&lt;br /&gt;
&lt;br /&gt;
This guide deals '''only''' with assigning in-game functions (such as steering or firing a missile) to the axes and buttons on a joystick/throttle.&lt;br /&gt;
&lt;br /&gt;
For setting up in '''Linux''', including calibration and assigning buttons to keyboard keys, read [[Linux Joysticks and Gamepads]].&lt;br /&gt;
&lt;br /&gt;
For setting up an '''axis profile''' (to correct a drunken bias - or to achieve more precision in flight) - read [[Dizzy's guide to Setting up Joystick Axis Profiles in Oolite 1.80|Dizzy's guide to Setting up Joystick Axis Profiles]]&lt;br /&gt;
&lt;br /&gt;
For correcting jitter (''eg'' in a faulty joystick) try out the [[BGS]] OXP with [[Library OXP]]'s F4 screen Config for AddOns.&lt;br /&gt;
&lt;br /&gt;
=== Important Points ===&lt;br /&gt;
'''*Be careful''' of what you assign to buttons/axes on the base of the joystick/throttle. You will need to let go of the joystick/throttle to get to the buttons on the base. If this is in the middle of a combat, you could find yourself well and truly stuffed, as you can no longer steer/change speed. So avoid assigning functions such as witchspace fuel injectors (i) or firing missiles (m) to the base of your unit!&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
[[File:Game Start-up screen (with BGS).png|thumb|right|Oolite's Opening Screen (garnished with [[BGS]])&amp;lt;br&amp;gt;&amp;quot;Game Options&amp;quot; is in the middle of the list]]&lt;br /&gt;
== Finding the &amp;quot;Joystick Configuration&amp;quot; screen ==&lt;br /&gt;
&lt;br /&gt;
=== On starting up Oolite ===&lt;br /&gt;
On the opening screen, skip over &amp;quot;Start New Commander&amp;quot;/&amp;quot;Load Commander&amp;quot; etc. and select &amp;quot;Game Options&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
&amp;quot;Joystick Configuration&amp;quot; will be greyed out on the Game Options screen if no controller/joystick is plugged in/detected.&lt;br /&gt;
=== Midgame: docked ===&lt;br /&gt;
Press the &amp;lt;font color=&amp;quot;Red&amp;quot;&amp;gt;'''2/F2'''&amp;lt;/font&amp;gt; button and then select &amp;quot;Game Options&amp;quot; as above.&lt;br /&gt;
=== Midgame: in flight ===&lt;br /&gt;
Pause your game (press &amp;lt;font color=&amp;quot;Red&amp;quot;&amp;gt;'''p'''&amp;lt;/font&amp;gt; to pause/unpause) and then press &amp;lt;font color=&amp;quot;Red&amp;quot;&amp;gt;'''2/F2'''&amp;lt;/font&amp;gt; and select &amp;quot;Game Options&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
Don't forget to ''unpause'' your game!&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Gallery of Configurations Screens (Oolite v.1.90) ===&lt;br /&gt;
There are four screens, and a fifth for the 3 axis profiles (toggling between pitch/roll/yaw)&amp;lt;br&amp;gt;&lt;br /&gt;
Click on an image to enlarge&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
Image:Configure Joysticks 1.png &lt;br /&gt;
Image:Configure Joysticks 2.png &lt;br /&gt;
Image:Configure Joysticks 3.png &lt;br /&gt;
Image:Configure Joysticks 4.png &lt;br /&gt;
Image:Configure Joysticks - Axis Profile.png&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
Oolite v.1.91 has ''seven'' screens!&lt;br /&gt;
&lt;br /&gt;
== Joysticks: Some definitions ==&lt;br /&gt;
''For more details on Throttles, see Thrustmaster TM4 &amp;amp; CH Throttle Pro below''&lt;br /&gt;
{| cellspacing=&amp;quot;30&amp;quot; align=&amp;quot;center&amp;quot; border=&amp;quot;0&amp;quot; text-align=&amp;quot;center&amp;quot;&lt;br /&gt;
| align=&amp;quot;center&amp;quot; width=&amp;quot;172&amp;quot; height=&amp;quot;20&amp;quot;|[[File:Joystick Definitions.png|300px|thumb|&amp;lt;br&amp;gt;|1. stick, 2. base, 3. trigger, 4. extra buttons, 5. 2-way switch, 6. thumbwheel axis, 7. hat switch (4-way), 8. suction cup]]&lt;br /&gt;
| align=&amp;quot;center&amp;quot; width=&amp;quot;172&amp;quot; height=&amp;quot;20&amp;quot;|[[File:Joystick Directions.png|300px|thumb|&amp;lt;br&amp;gt;|Hat switch in green at top, Thumbwheel axis in yellow at bottom]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
*'''Axis'''&lt;br /&gt;
:An analogue-style input where your movements select the ''amount'' of change (not available for purely keyboard inputs)&lt;br /&gt;
:''There are at least 4 types of axis:''&lt;br /&gt;
::The usual two axes of a joystick (forwards ↔ backwards &amp;amp; left ↔ right) - '''x''' &amp;amp; '''y''' ''above right''&lt;br /&gt;
::Some joysticks have twist as well (clockwise ↔ anti-clockwise) - '''z''' ''above right''&lt;br /&gt;
::A '''thumbwheel''' - '''6''' ''above left'' (often used for speed in the absence of a separate throttle unit)&lt;br /&gt;
::A '''mini-joystick''' - ''not shown above'' - can look identical to the hat switch, but with very different operation - will add two more '''x''' &amp;amp; '''y''' axes&lt;br /&gt;
&lt;br /&gt;
*'''Button'''&lt;br /&gt;
:A more digital On/Off input: Either (i) press once (F2 rear view), (ii) keep pressed (Fire laser)&lt;br /&gt;
:''There are at least 6 types of button:'' &lt;br /&gt;
::A '''button''' that looks like a button! - '''4''' ''above left''&lt;br /&gt;
::A '''switch''' (operates like 2 buttons) - '''7''' ''above left''&lt;br /&gt;
::A '''trigger''' (operates like a button) - '''3''' ''above left''&lt;br /&gt;
::A '''hat switch''' (operates like 4 buttons) - '''6''' ''above left''&lt;br /&gt;
::A button incorporated into a mini-joystick - ''not shown here - but see the CH Pro Throttle below''&lt;br /&gt;
::A '''rotary switch''' where one turns the knob to select one of a number of options - ''not shown here - but see the black left hand knobs on the Saitek radio panel [[Buttonboxes#Saitek|here]]''&lt;br /&gt;
&lt;br /&gt;
*'''Hat switch''' (used to be called a coolie hat switch) - ''see buttons''&lt;br /&gt;
*'''POV switch''' ('''P'''oint '''O'''f '''V'''iew switch – same as hat switch) - ''see buttons''&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Joysticks ==&lt;br /&gt;
&lt;br /&gt;
=== CH Combat Stick &amp;amp; Throttle Pro ===&lt;br /&gt;
[[File:CH Combat Stick with Pro Throttle.png|450px|thumb|right|Throttle Pro with Combat Stick - the mid-range of CH's 3 joysticks]]&lt;br /&gt;
CH's stuff is rugged and was expected to last for decades. It is less so since the company changed changed hands, but many feel it is still the best in this respect. It is also light-weight and looks clunky! And big for the hands. &amp;lt;br&amp;gt;&lt;br /&gt;
The '''CH Combat Stick''' has a two-axis joystick only (no twist) with fine-tuning thumbwheels which can eliminate drunkenness. There is the trigger, a pinky button (Joy_4) and 4 other buttons (Joy_5 is on the far side of the joystick, reached by the index finger). There are two hat-switches. There is a 3rd thumbwheel which can act as a throttle. &amp;lt;br&amp;gt;&lt;br /&gt;
'''The Pro Throttle''' has ''all'' the controls on the throttle itself - none on the base (''ie'' you need never take your hand off the throttle). There are 3 buttons behind the throttle handle and 5 hat-switches! The rightmost of these on the 'lozenge' on the side of the throttle is actually a mini-joystick which can be pressed and acts as a fourth button. &amp;lt;br&amp;gt;&lt;br /&gt;
'''The CH Control Manager Software''' only works on Windows computers. It is supposedly top notch in terms of capability - and also highly complex to master!&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
'''Cranky's''' settings: Cranky is new to Oolite, and favours the [[Roll vs Yaw crusades|yaw]] take on astrogation.&lt;br /&gt;
*Joy Y axis - pitch&lt;br /&gt;
*Joy X axis - yaw&lt;br /&gt;
*Throttle - speed&lt;br /&gt;
*Mini-joystick - only x-axis - for roll only (y-axis and button not used)&lt;br /&gt;
*Top right hat-switch on Joystick - F1-F4 POV settings&lt;br /&gt;
*Bottom left hat switch on Joystick - ''combat settings'': UP (ECM: '''e'''); DOWN (Activate 1st fast equipment ''defensive'' '''Tab'''); RIGHT (Activate *2nd fast equipment offensive '''0'''); LEFT unset. &lt;br /&gt;
*Left-hand hat switch on throttle side - unset (''too often fiddled with by accident'').&lt;br /&gt;
*Top hat switch on throttle side - ''Special .oxp equipment'': UP (Prime: '''shift-n'''); DOWN (Activate: '''n'''); LEFT (Modify: '''b''')&lt;br /&gt;
*Bottom hat switch on throttle side - ''Docking'': UP (Fast docking: '''shift-c'''); DOWN (Blue Danube docking: '''c'''); LEFT (request docking clearance: '''shift-l''')&lt;br /&gt;
*Hat switch on back side of throttle - ''Scanner/Compass'': UP (Scanner Zoom: '''z'''); DOWN (Unzoom: '''shift-z'''); LEFT ([[ASC]] next target: '''\''')&lt;br /&gt;
*The right side settings of the throttle hat switches not used (waiting for reverse prime '''ctrl-shift-n''' &amp;amp; ASC last target '''|''' options to be added to the configuration pages).&lt;br /&gt;
*Joy_1 - (trigger) - fire laser ('''a''')&lt;br /&gt;
*Joy_2 - toggle ID ('''r''')&lt;br /&gt;
*Joy_3 - precison flying toggle ('''ctrl''')&lt;br /&gt;
*Joy_4 - fire missile ('''m''')&lt;br /&gt;
*Joy_5 - toggle weapons on/off ('''shift-hyphen''' or '''_''')&lt;br /&gt;
*Joy_6 - unset missile ('''u''') ''to neuter the ILS and the Automatic Targetting when they select an unwanted target''&lt;br /&gt;
*3 buttons on the back side of the throttle: ''drives!'': Witchfuel injectors ('''i'''); Torus drive ('''j''') &amp;amp; Witchspace drive ('''h''')&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
[[File:Logitech joystick.jpg|300px|thumb|right|note right fore-finger on black ''trigger'', right thumb on white ''button 2'' &amp;amp; left thumb on ''throttle'']]&lt;br /&gt;
[[File:Logitech Stick Map.jpg|400px|thumb|right|Joystick Map]]&lt;br /&gt;
=== Logitech Extreme 3D Pro ===&lt;br /&gt;
:Note: as with a number of these items, this joystick has been &amp;quot;produced&amp;quot; by a number of different companies over the past decade and under a range of different names!&lt;br /&gt;
&lt;br /&gt;
*The Logitech joystick has a 3-way axis for the stick (including the 3rd twist axis) and another throttle axis on the base.&lt;br /&gt;
*There are twelve buttons: 6 on the stick (including the trigger and button 2 on the left of the stick where the thumb rests) and 6 on the base.&lt;br /&gt;
*The hat switch on the stick is actually an 8-way switch which ''can'' function as a mini-joystick giving another 2 axes if desired.&lt;br /&gt;
*The software for the Logitech joystick allows the buttons to be programmed to operate macros if so desired.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
[[User:Cody|Cody]]'s settings for the Logitech Extreme 3D Pro: ''Cody uses this joystick with a keyboard. The precision toggle is '''not''' used because the axis profiles were set so as to no longer need it''. Cody is an old timer who mastered Classic Elite before joining the Oolite boards over a decade ago.  &lt;br /&gt;
*Axis 1 - roll ('''left'''/'''right''' arrows)&lt;br /&gt;
*Axis 2 - pitch ('''up'''/'''down''' arrows)&lt;br /&gt;
*Axis 3 - not used (twist): ''Cody favours the Rollers in the [[Roll vs Yaw crusades]]''&lt;br /&gt;
*Axis 4 - not used (throttle)&lt;br /&gt;
*Axis 5 - (hatswitch) used instead as buttons - for views - left &amp;amp; right ('''F3''' &amp;amp; '''F4''')&lt;br /&gt;
*Axis 6 - (hatswitch) used instead as buttons - for views - up &amp;amp; down ('''F1''' &amp;amp; '''F2''')&lt;br /&gt;
*Button 1 - (trigger) - fire laser ('''a''')&lt;br /&gt;
*Button 2 - ''docking'' - request docking clearance ('''shift-l''')&lt;br /&gt;
*Button 3 - ''missile'' - arm missile ('''t''')&lt;br /&gt;
*Button 4 - ''missile'' - fire missile ('''m''')&lt;br /&gt;
*Button 5 - take snapshot ('''*''')&lt;br /&gt;
*Button 6 - ''missile'' - cycle missile ('''y''')&lt;br /&gt;
*Button 7 - next [[ASC]] compass target ('''\''')&lt;br /&gt;
*Button 8 - not yet used&lt;br /&gt;
*Button 9 - ''docking'' - Blue Danube docking computer ('''c''')&lt;br /&gt;
*Button 10 - ''docking'' - fast docking computer ('''shift-c''')&lt;br /&gt;
*Button 11 - Activate .oxp equipment ('''n''')&lt;br /&gt;
*Button 12 - Prime .oxp equipment ('''shift-n''')&lt;br /&gt;
:And see [https://app.box.com/s/gythr56ev88f1uvoijevfqncwmmjtlat Cody's 2017] key-bindings, before axis bindings. Not all buttons used.&lt;br /&gt;
----&lt;br /&gt;
[https://bb.oolite.space/viewtopic.php?p=261310#p261310 Nite Owl's] settings for the Logitech Extreme 3D Pro. Another veteran, like Cody, but with a more combat oriented set of joystick bindings.&lt;br /&gt;
&lt;br /&gt;
*Axis 1 - Joystick left and right axis as Left and Right Roll. (Editorial note: like Cody, a veteran elitist in the [[Roll vs Yaw crusades]])&lt;br /&gt;
*Axis 2 - Joystick forward and back axis as Pitch Up and Down.&lt;br /&gt;
*Axis 3 - Joystick left and right twist axis as Pitch Left and Right.&lt;br /&gt;
*Axis 4 - The throttle axis for the ship's Throttle.&lt;br /&gt;
*The hat switch for changing views in the obvious manner.&lt;br /&gt;
*Button 1              Fire main weapon (Laser) ('''a''')&lt;br /&gt;
*Button 2              Fire secondary weapon (Pylon) ('''m''')&lt;br /&gt;
*Button 3              Targeting I.D. On/Off ('''r''')&lt;br /&gt;
*Button 4              Weapons On/Off (shift-hyphen: '''_''')&lt;br /&gt;
*Button 5              Torus Drive On/Off ('''j''')&lt;br /&gt;
*Button 6              Fuel Injectors (Hold to Use) ('''i''')&lt;br /&gt;
*Button 7              Set Equipment Mode ('''b''')&lt;br /&gt;
*Button 8              Prime Equipment ('''shift-n''')&lt;br /&gt;
*Button 9              Target Incoming Missile  ('''shift-t''')&lt;br /&gt;
*Button 10             Fast Target Selector (OXZ set up as Fast Activate 1, key = zero, and then the zero key is mapped to the Joystick)&lt;br /&gt;
*Button 11             Scanner Zoom  ('''z''')&lt;br /&gt;
*Button 12             Activate E.C.M. ('''e''')&lt;br /&gt;
&lt;br /&gt;
&amp;quot;''Axes 2 &amp;amp; 3 may seem counter intuitive - but they work for me. My guess is that most Commanders would have these two reversed. Also have some very nice spline curves set up as per Dizzy's Guide mentioned at the top and bottom of this page. Everything else is accessed via the keyboard controls. The Advanced Navigation Computer (OXZ) is mapped to Fast Activate 2, key = Tab. Docking Clearance (mandatory at all but Rock Hermits in my Ooniverse) is accessed via the Communications M.F.D. (OXZ). With the Communications M.F.D. active, use the '''n''' key to select the &amp;quot;Request Docking Clearance&amp;quot; option and then press '''b'''. All other keyboard commands are at their default settings.''&amp;quot; (Nite Owl)&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
[[File:Logitech X56.png|right|320px]]&lt;br /&gt;
=== Logitech X52 Pro HOTAS ===&lt;br /&gt;
See Darkened Room's partial set up [https://drive.google.com/drive/folders/1dM9k9Cl9TFGU-S0cBOkPd39LB7RVyJOm?usp=sharing here] (2023: layout pdf &amp;amp; config file).&lt;br /&gt;
&lt;br /&gt;
=== Logitech G X56 HOTAS ===&lt;br /&gt;
Note that Logitech bought out MadCatz in 2016 (who had bought out Saitek in 2007).&lt;br /&gt;
 X-56 H.O.T.A.S. System (2018)&lt;br /&gt;
 X-55 Rhino H.O.T.A.S. System (2014)&lt;br /&gt;
 X-65F Flight Combat Control System (2008)&lt;br /&gt;
 X52 Pro Flight Control System (2007)&lt;br /&gt;
 X52 Flight Control System (2004)&lt;br /&gt;
 X45 Digital Joystick and Throttle (2001)&lt;br /&gt;
 X36 Flight Control System (1999), consisting of the X36F Control stick and X35T throttle&lt;br /&gt;
&lt;br /&gt;
There may be issues with playing Oolite in Windows with this HOTAS - the throttle may not connect.&lt;br /&gt;
&lt;br /&gt;
:If so, you may need to (re)-install the Logitech X56 software from [https://support.logi.com/hc/en-us/articles/360024844133--Downloads-X56-Space-Flight-H-O-T-A-S- here]&lt;br /&gt;
&lt;br /&gt;
:Once that's installed you can go into the X56 &amp;quot;HUD&amp;quot; program and go to Programming. From there, select the Throttle.&lt;br /&gt;
&lt;br /&gt;
:You then need to create a new profile and start adding your controls to it. The Logitech manual is a little obtuse on the subject but it gets the job done. In order for Oolite to effectively recognize the throttle axis you need to set it to Band mode, which lets you assign W to the lower third of the band, S to the upper third (yes, these are reversed from expectation) and nothing to the central band.&lt;br /&gt;
&lt;br /&gt;
:After that the rest of the controls are pretty easy to set up.&lt;br /&gt;
&lt;br /&gt;
:Then you need to save and activate the profile - there's a button on the same programming screen, or you use the background program in the carat ( ^ ) menu on the Taskbar. If you're using the background program, right click on the program icon and select your saved profile.&lt;br /&gt;
&lt;br /&gt;
:Once activated, the software will override your default settings and Oolite will accept those commands instead of the throttle's &amp;quot;real&amp;quot; inputs. You can then &amp;quot;clear&amp;quot; the profile if you want to play a different game. (Details from [https://bb.oolite.space/viewtopic.php?p=281448#p281448 Arquebus 2021]).&lt;br /&gt;
&lt;br /&gt;
Arquebus also has a [https://www.youtube.com/watch?v=llQk_J0Ty38&amp;amp;list=PLsYaAtYv_5eUpD3FBWQk7XQuKQQsrVhNV&amp;amp;index=10 youtube video] explaining his set up (it includes Touch Portal)&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Thrustmaster TM4 ===&lt;br /&gt;
[[File:TFlight HOTAS 4.png|250px|thumb|right|note that joystick and throttle units have not been separated]]&lt;br /&gt;
There are some 3 very similar Thrustmaster entry-level HOTAS ('''H'''ands '''o'''n '''T'''hrottle '''a'''nd '''S'''tick) sets: T.Flight 3, 4 &amp;amp; X. They seem mostly designed for those using gaming consoles as the buttons on each are quite limited in number.&lt;br /&gt;
&lt;br /&gt;
They are very nicely designed - nice curves, screw holes at the bottom for attaching to something heavy like a desk (if so desired), an Allen key (living in a base recess) to separate the two halves of the throttle and joystick, a simple knob to stiffen up the joystick ''etc''. Another point is that since the joystick and throttle are wired together, they only occupy one USB slot on the dreaded computer.&lt;br /&gt;
&lt;br /&gt;
*The TM4 joystick has a 3-way axis for the stick (including the 3rd twist axis - disable-able with a screwdriver), a throttle axis on the left, and a fifth axis (rudder) on the back of the throttle stick.&lt;br /&gt;
*There are 13 buttons: 4 on the stick (including the trigger) and 6 on the throttle and 3 on the base of the throttle.&lt;br /&gt;
*The hat switch on the stick is a regular 4-way switch.&lt;br /&gt;
*The software for the TM3/4/X hotas is needed. It allows the PS button on the base of the throttle to toggle between vanilla PlayStation mode (where the twist joystick z-axis and the throttle's rudder axis are disabled) and Joystick mode where everything works.&lt;br /&gt;
&lt;br /&gt;
==== Use with AppleMac ==== &amp;lt;!-- Apple AppleMac Thrustmaster TFlight HOTAS_4 TM4 --&amp;gt;&lt;br /&gt;
It seems that this is not compatible with the AppleMac, with the twist, throttle and axis on the back of the throttle not seeming functional.&lt;br /&gt;
What neither Thrustmaster nor Apple can be bothered to tell you is that you need to keep the '''PS''', '''SHARE''' &amp;amp; '''OPTIONS''' buttons held down while you plug it into your AppleMac. The green light should then come on under your PS button, and you should find the HOTAS fully functional. This is without the Thrustmaster software being loaded. This worked for Cholmondely but not for Murgh.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
[[User:Cholmondely|Cholly]]'s settings: Cholly uses this HOTAS with an Elgato [[Buttonboxes|Streamdeck]], so the confusing missile controls are ''there'' where they can be clearly labelled and understood. Cholly is quite new to Oolite, and has no other real experience of space sims.&lt;br /&gt;
&lt;br /&gt;
*Axis 1 - (Joystick left/right): roll (left/right arrows) - Cholly read too many of Cody's old BB posts and got converted to rolling!&lt;br /&gt;
*Axis 2 - (Joystick left/right): pitch (up/down arrows)&lt;br /&gt;
*Axis 3 - (throttle): speed ('''w''' and '''s''')&lt;br /&gt;
*Axis 4 - (twist on joystick): not used ''Cholly finds 3 axes on the same stick too confusing for words''&lt;br /&gt;
*Axis 5 - ''possibly refers to optional pedals?''&lt;br /&gt;
*Axis 6 - (rudder on throttle): yaw - (''',''' &amp;amp; '''.''')&lt;br /&gt;
*Button 1 - (trigger on joystick): fire laser ('''a''')&lt;br /&gt;
*Button 2 - (L1 button): witchfuel injectors ('''i''')&lt;br /&gt;
*Button 3 - (R3 button): roll/pitch Precision toggle (sort of '''ctrl''' but as a toggle: Cholly has yet to master the art of splining - see Dizzy's Guide) &lt;br /&gt;
*Button 4 - (L3 button): Toggle ID ('''r''')&lt;br /&gt;
*Button 5 - (square on button): ECM ('''e''')&lt;br /&gt;
*Button 6 - (x on button): Activate first fast equipment (defensive) ('''Tab''')&lt;br /&gt;
*Button 7 - (circle on button): Activate second fast equipment (offensive) ('''0''')&lt;br /&gt;
*Button 8 - (triangle on button): toggle weapons (shift-hyphen: '''_''')&lt;br /&gt;
*Button 9 - (R2 button): zoom scanner ('''z''')&lt;br /&gt;
*Button 10 - (L2 button): reset scanner ('''shift-z''')&lt;br /&gt;
*Button 11 - (Share button): ''hyperspeed'' - Torus jump drive ('''j''') &lt;br /&gt;
*Button 12 - (Options button): ''hyperdrive'' - Witchspace drive ('''h''')&lt;br /&gt;
*Button 13 - (PS red/green LED button): not used (as it disables rudder yawing)&lt;br /&gt;
*Hat Switch - (on joystick): used as 4 buttons - for the 4 views - ('''F1 - F4''')&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
----&lt;br /&gt;
== Controllers ==&lt;br /&gt;
&lt;br /&gt;
=== Sony PlayStation ===&lt;br /&gt;
[[File:Controller- Sony PlayStation.png]]&amp;lt;br&amp;gt;&lt;br /&gt;
This mapping is from 2015/6 at which stage it did not function when the ship was docked.&lt;br /&gt;
From [https://bb.oolite.space/viewtopic.php?f=2&amp;amp;t=17985&amp;amp;p=246778#p246778  this] BB thread.&lt;br /&gt;
&lt;br /&gt;
=== Logitech dual-action Profiler ===&lt;br /&gt;
[[File:Controller- Logitech dual-action Profiler.gif]]&amp;lt;br&amp;gt;&lt;br /&gt;
This mapping is from 2013. A ''shift key'' doubles the mapping potentialities.&lt;br /&gt;
From [https://bb.oolite.space/viewtopic.php?p=202759#p202759 this] BB thread.&lt;br /&gt;
&lt;br /&gt;
=== Logitech F310 ===&lt;br /&gt;
&lt;br /&gt;
 Left stick up/down: pitch up/down&lt;br /&gt;
 Left stick left/right: yaw left/right (I know, I know...)&lt;br /&gt;
 Left stick push: Request docking clearance (Shift-L)&lt;br /&gt;
 &lt;br /&gt;
 Right stick up/down: speed increase/decrease (W/S)&lt;br /&gt;
 Right stick left/right: roll left/right&lt;br /&gt;
 Right stick push: ECM (E)&lt;br /&gt;
 &lt;br /&gt;
 4 way hat: views (F1/2/3/4)&lt;br /&gt;
 &lt;br /&gt;
 A Button: Fire laser (A)&lt;br /&gt;
 B Button: Fire missile (M)&lt;br /&gt;
 X Button: Space compass next target (\)&lt;br /&gt;
 Y Button: Missile target seek (T) &lt;br /&gt;
 &lt;br /&gt;
 View Button (Back button on the F310): Fast activate second equipment (ie Tab key)&lt;br /&gt;
 Menu Button (Start button on the F310): Begin hyperspace countdown (H)&lt;br /&gt;
 &lt;br /&gt;
 LB: Engage torus (J)&lt;br /&gt;
 RB: Injectors (I)&lt;br /&gt;
 LT: Fast activate first equipment (ie 0 key)&lt;br /&gt;
 RT: Activate ID recognition (R)&lt;br /&gt;
&lt;br /&gt;
[https://bb.oolite.space/viewtopic.php?p=257091#p257091 Phkb, 2017]&lt;br /&gt;
&lt;br /&gt;
== Problem Solving ==&lt;br /&gt;
*Is your joystick compatible with your computer?&lt;br /&gt;
*Do you have too many joysticks/controllers/USB gadgets [https://bb.oolite.space/viewtopic.php?f=2&amp;amp;t=20894 plugged in]?&lt;br /&gt;
*Does your joystick make your craft swerve to the side (See Dizzy's Guide below)?&lt;br /&gt;
&lt;br /&gt;
== History ==&lt;br /&gt;
The code for all this was published by Kanthoney back in February 2014. Dizzy's guide was crucial in explaining it all to people (July '14). In the years since, it has been expanded.&lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
* [[Dizzy's guide to Setting up Joystick Axis Profiles]] (splines and stuff!)&lt;br /&gt;
* [[Joysticks and Gamepads]] (contains instructions for eliminating jitter from your joystick. Some throttles jitter when &amp;quot;off&amp;quot;, causing &amp;quot;engine-revving&amp;quot; sounds with BGS)&lt;br /&gt;
* [[Linux Joysticks and Gamepads]] (Guide to setting up game controllers in Linux)&lt;br /&gt;
* [https://bb.oolite.space/viewtopic.php?f=2&amp;amp;t=20841 Joysticks]: how to configure (BB thread basis for this page).&lt;br /&gt;
* [https://bb.oolite.space/viewtopic.php?f=2&amp;amp;t=17315 Ship Tuning 2015]: how to dampen the agility of your ship - and has notes on altering the joystick precision setting&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [https://bb.oolite.space/viewtopic.php?f=6&amp;amp;t=15770 2013] thread about coding Oolite for Joysticks (Macs vs Windows/Linux).&lt;br /&gt;
* [[AppleMac]] - see section on HOTAS for some background.&lt;br /&gt;
* [https://bb.oolite.space/viewtopic.php?f=8&amp;amp;t=17857 2015] thread about problems with setting up several Windows joysticks (with Linux mentions)&lt;br /&gt;
* [https://bb.oolite.space/viewtopic.php?f=2&amp;amp;t=17985 2016] thread about T.FlightHotas4, Logitech Extreme 3D Pro, controllers &amp;amp; yaw issues. &lt;br /&gt;
* [https://bb.oolite.space/viewtopic.php?f=8&amp;amp;t=11987 2012-13] thread about the PS3 controller&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [https://bb.oolite.space/viewtopic.php?f=2&amp;amp;t=19309 2018] Is it possible to control OOlite entirely with Joystick/Gamepad? &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*[https://bb.oolite.space/viewtopic.php?f=8&amp;amp;t=6958 2009] Old thread about yaw and throttle problems (now fixed in Oolite code). Links to older threads.&lt;br /&gt;
&lt;br /&gt;
*[https://bb.oolite.space/viewtopic.php?f=6&amp;amp;t=5428 Force-Feedback Joystick Support?] (2008-17: see Getafix's last posts for Linux)&lt;br /&gt;
&lt;br /&gt;
=== Other advice pages ===&lt;br /&gt;
*[[How do I ...]] dock / succeed in trading / win a fight / configure my controller/joystick ''etc''&lt;br /&gt;
&lt;br /&gt;
[[Category:Oolite]][[Category:Factual]][[Category:Help pages]]&lt;/div&gt;</summary>
		<author><name>Mcarans</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.alioth.net/index.php?title=Joysticks:_Guide_to_Setting_Up&amp;diff=86399</id>
		<title>Joysticks: Guide to Setting Up</title>
		<link rel="alternate" type="text/html" href="https://wiki.alioth.net/index.php?title=Joysticks:_Guide_to_Setting_Up&amp;diff=86399"/>
		<updated>2025-07-16T23:43:48Z</updated>

		<summary type="html">&lt;p&gt;Mcarans: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:TFlight HOTAS 4.png|200px|thumb|right|'''Thrustmaster''' TFlight Hotas 4: Throttle &amp;amp; joystick detachable-ish]]&lt;br /&gt;
'''Cholly's guide to Setting up Joystick Configurations in Oolite 1.90'''&lt;br /&gt;
&lt;br /&gt;
== Introduction ==&lt;br /&gt;
&lt;br /&gt;
This guide deals '''only''' with assigning in-game functions (such as steering or firing a missile) to the axes and buttons on a joystick/throttle.&lt;br /&gt;
&lt;br /&gt;
For setting up in Linux, including calibration and assigning buttons to keyboard keys, read [[Linux Joysticks and Gamepads]].&lt;br /&gt;
&lt;br /&gt;
For setting up an '''axis profile''' (to correct a drunken bias - or to achieve more precision in flight) - read [[Dizzy's guide to Setting up Joystick Axis Profiles in Oolite 1.80|Dizzy's guide to Setting up Joystick Axis Profiles]]&lt;br /&gt;
&lt;br /&gt;
For correcting jitter (''eg'' in a faulty joystick) try out the [[BGS]] OXP with [[Library OXP]]'s F4 screen Config for AddOns.&lt;br /&gt;
&lt;br /&gt;
=== Important Points ===&lt;br /&gt;
'''*Be careful''' of what you assign to buttons/axes on the base of the joystick/throttle. You will need to let go of the joystick/throttle to get to the buttons on the base. If this is in the middle of a combat, you could find yourself well and truly stuffed, as you can no longer steer/change speed. So avoid assigning functions such as witchspace fuel injectors (i) or firing missiles (m) to the base of your unit!&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
[[File:Game Start-up screen (with BGS).png|thumb|right|Oolite's Opening Screen (garnished with [[BGS]])&amp;lt;br&amp;gt;&amp;quot;Game Options&amp;quot; is in the middle of the list]]&lt;br /&gt;
== Finding the &amp;quot;Joystick Configuration&amp;quot; screen ==&lt;br /&gt;
&lt;br /&gt;
=== On starting up Oolite ===&lt;br /&gt;
On the opening screen, skip over &amp;quot;Start New Commander&amp;quot;/&amp;quot;Load Commander&amp;quot; etc. and select &amp;quot;Game Options&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
&amp;quot;Joystick Configuration&amp;quot; will be greyed out on the Game Options screen if no controller/joystick is plugged in/detected.&lt;br /&gt;
=== Midgame: docked ===&lt;br /&gt;
Press the &amp;lt;font color=&amp;quot;Red&amp;quot;&amp;gt;'''2/F2'''&amp;lt;/font&amp;gt; button and then select &amp;quot;Game Options&amp;quot; as above.&lt;br /&gt;
=== Midgame: in flight ===&lt;br /&gt;
Pause your game (press &amp;lt;font color=&amp;quot;Red&amp;quot;&amp;gt;'''p'''&amp;lt;/font&amp;gt; to pause/unpause) and then press &amp;lt;font color=&amp;quot;Red&amp;quot;&amp;gt;'''2/F2'''&amp;lt;/font&amp;gt; and select &amp;quot;Game Options&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
Don't forget to ''unpause'' your game!&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Gallery of Configurations Screens (Oolite v.1.90) ===&lt;br /&gt;
There are four screens, and a fifth for the 3 axis profiles (toggling between pitch/roll/yaw)&amp;lt;br&amp;gt;&lt;br /&gt;
Click on an image to enlarge&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
Image:Configure Joysticks 1.png &lt;br /&gt;
Image:Configure Joysticks 2.png &lt;br /&gt;
Image:Configure Joysticks 3.png &lt;br /&gt;
Image:Configure Joysticks 4.png &lt;br /&gt;
Image:Configure Joysticks - Axis Profile.png&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
Oolite v.1.91 has ''seven'' screens!&lt;br /&gt;
&lt;br /&gt;
== Joysticks: Some definitions ==&lt;br /&gt;
''For more details on Throttles, see Thrustmaster TM4 &amp;amp; CH Throttle Pro below''&lt;br /&gt;
{| cellspacing=&amp;quot;30&amp;quot; align=&amp;quot;center&amp;quot; border=&amp;quot;0&amp;quot; text-align=&amp;quot;center&amp;quot;&lt;br /&gt;
| align=&amp;quot;center&amp;quot; width=&amp;quot;172&amp;quot; height=&amp;quot;20&amp;quot;|[[File:Joystick Definitions.png|300px|thumb|&amp;lt;br&amp;gt;|1. stick, 2. base, 3. trigger, 4. extra buttons, 5. 2-way switch, 6. thumbwheel axis, 7. hat switch (4-way), 8. suction cup]]&lt;br /&gt;
| align=&amp;quot;center&amp;quot; width=&amp;quot;172&amp;quot; height=&amp;quot;20&amp;quot;|[[File:Joystick Directions.png|300px|thumb|&amp;lt;br&amp;gt;|Hat switch in green at top, Thumbwheel axis in yellow at bottom]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
*'''Axis'''&lt;br /&gt;
:An analogue-style input where your movements select the ''amount'' of change (not available for purely keyboard inputs)&lt;br /&gt;
:''There are at least 4 types of axis:''&lt;br /&gt;
::The usual two axes of a joystick (forwards ↔ backwards &amp;amp; left ↔ right) - '''x''' &amp;amp; '''y''' ''above right''&lt;br /&gt;
::Some joysticks have twist as well (clockwise ↔ anti-clockwise) - '''z''' ''above right''&lt;br /&gt;
::A '''thumbwheel''' - '''6''' ''above left'' (often used for speed in the absence of a separate throttle unit)&lt;br /&gt;
::A '''mini-joystick''' - ''not shown above'' - can look identical to the hat switch, but with very different operation - will add two more '''x''' &amp;amp; '''y''' axes&lt;br /&gt;
&lt;br /&gt;
*'''Button'''&lt;br /&gt;
:A more digital On/Off input: Either (i) press once (F2 rear view), (ii) keep pressed (Fire laser)&lt;br /&gt;
:''There are at least 6 types of button:'' &lt;br /&gt;
::A '''button''' that looks like a button! - '''4''' ''above left''&lt;br /&gt;
::A '''switch''' (operates like 2 buttons) - '''7''' ''above left''&lt;br /&gt;
::A '''trigger''' (operates like a button) - '''3''' ''above left''&lt;br /&gt;
::A '''hat switch''' (operates like 4 buttons) - '''6''' ''above left''&lt;br /&gt;
::A button incorporated into a mini-joystick - ''not shown here - but see the CH Pro Throttle below''&lt;br /&gt;
::A '''rotary switch''' where one turns the knob to select one of a number of options - ''not shown here - but see the black left hand knobs on the Saitek radio panel [[Buttonboxes#Saitek|here]]''&lt;br /&gt;
&lt;br /&gt;
*'''Hat switch''' (used to be called a coolie hat switch) - ''see buttons''&lt;br /&gt;
*'''POV switch''' ('''P'''oint '''O'''f '''V'''iew switch – same as hat switch) - ''see buttons''&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Joysticks ==&lt;br /&gt;
&lt;br /&gt;
=== CH Combat Stick &amp;amp; Throttle Pro ===&lt;br /&gt;
[[File:CH Combat Stick with Pro Throttle.png|450px|thumb|right|Throttle Pro with Combat Stick - the mid-range of CH's 3 joysticks]]&lt;br /&gt;
CH's stuff is rugged and was expected to last for decades. It is less so since the company changed changed hands, but many feel it is still the best in this respect. It is also light-weight and looks clunky! And big for the hands. &amp;lt;br&amp;gt;&lt;br /&gt;
The '''CH Combat Stick''' has a two-axis joystick only (no twist) with fine-tuning thumbwheels which can eliminate drunkenness. There is the trigger, a pinky button (Joy_4) and 4 other buttons (Joy_5 is on the far side of the joystick, reached by the index finger). There are two hat-switches. There is a 3rd thumbwheel which can act as a throttle. &amp;lt;br&amp;gt;&lt;br /&gt;
'''The Pro Throttle''' has ''all'' the controls on the throttle itself - none on the base (''ie'' you need never take your hand off the throttle). There are 3 buttons behind the throttle handle and 5 hat-switches! The rightmost of these on the 'lozenge' on the side of the throttle is actually a mini-joystick which can be pressed and acts as a fourth button. &amp;lt;br&amp;gt;&lt;br /&gt;
'''The CH Control Manager Software''' only works on Windows computers. It is supposedly top notch in terms of capability - and also highly complex to master!&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
'''Cranky's''' settings: Cranky is new to Oolite, and favours the [[Roll vs Yaw crusades|yaw]] take on astrogation.&lt;br /&gt;
*Joy Y axis - pitch&lt;br /&gt;
*Joy X axis - yaw&lt;br /&gt;
*Throttle - speed&lt;br /&gt;
*Mini-joystick - only x-axis - for roll only (y-axis and button not used)&lt;br /&gt;
*Top right hat-switch on Joystick - F1-F4 POV settings&lt;br /&gt;
*Bottom left hat switch on Joystick - ''combat settings'': UP (ECM: '''e'''); DOWN (Activate 1st fast equipment ''defensive'' '''Tab'''); RIGHT (Activate *2nd fast equipment offensive '''0'''); LEFT unset. &lt;br /&gt;
*Left-hand hat switch on throttle side - unset (''too often fiddled with by accident'').&lt;br /&gt;
*Top hat switch on throttle side - ''Special .oxp equipment'': UP (Prime: '''shift-n'''); DOWN (Activate: '''n'''); LEFT (Modify: '''b''')&lt;br /&gt;
*Bottom hat switch on throttle side - ''Docking'': UP (Fast docking: '''shift-c'''); DOWN (Blue Danube docking: '''c'''); LEFT (request docking clearance: '''shift-l''')&lt;br /&gt;
*Hat switch on back side of throttle - ''Scanner/Compass'': UP (Scanner Zoom: '''z'''); DOWN (Unzoom: '''shift-z'''); LEFT ([[ASC]] next target: '''\''')&lt;br /&gt;
*The right side settings of the throttle hat switches not used (waiting for reverse prime '''ctrl-shift-n''' &amp;amp; ASC last target '''|''' options to be added to the configuration pages).&lt;br /&gt;
*Joy_1 - (trigger) - fire laser ('''a''')&lt;br /&gt;
*Joy_2 - toggle ID ('''r''')&lt;br /&gt;
*Joy_3 - precison flying toggle ('''ctrl''')&lt;br /&gt;
*Joy_4 - fire missile ('''m''')&lt;br /&gt;
*Joy_5 - toggle weapons on/off ('''shift-hyphen''' or '''_''')&lt;br /&gt;
*Joy_6 - unset missile ('''u''') ''to neuter the ILS and the Automatic Targetting when they select an unwanted target''&lt;br /&gt;
*3 buttons on the back side of the throttle: ''drives!'': Witchfuel injectors ('''i'''); Torus drive ('''j''') &amp;amp; Witchspace drive ('''h''')&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
[[File:Logitech joystick.jpg|300px|thumb|right|note right fore-finger on black ''trigger'', right thumb on white ''button 2'' &amp;amp; left thumb on ''throttle'']]&lt;br /&gt;
[[File:Logitech Stick Map.jpg|400px|thumb|right|Joystick Map]]&lt;br /&gt;
=== Logitech Extreme 3D Pro ===&lt;br /&gt;
:Note: as with a number of these items, this joystick has been &amp;quot;produced&amp;quot; by a number of different companies over the past decade and under a range of different names!&lt;br /&gt;
&lt;br /&gt;
*The Logitech joystick has a 3-way axis for the stick (including the 3rd twist axis) and another throttle axis on the base.&lt;br /&gt;
*There are twelve buttons: 6 on the stick (including the trigger and button 2 on the left of the stick where the thumb rests) and 6 on the base.&lt;br /&gt;
*The hat switch on the stick is actually an 8-way switch which ''can'' function as a mini-joystick giving another 2 axes if desired.&lt;br /&gt;
*The software for the Logitech joystick allows the buttons to be programmed to operate macros if so desired.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
[[User:Cody|Cody]]'s settings for the Logitech Extreme 3D Pro: ''Cody uses this joystick with a keyboard. The precision toggle is '''not''' used because the axis profiles were set so as to no longer need it''. Cody is an old timer who mastered Classic Elite before joining the Oolite boards over a decade ago.  &lt;br /&gt;
*Axis 1 - roll ('''left'''/'''right''' arrows)&lt;br /&gt;
*Axis 2 - pitch ('''up'''/'''down''' arrows)&lt;br /&gt;
*Axis 3 - not used (twist): ''Cody favours the Rollers in the [[Roll vs Yaw crusades]]''&lt;br /&gt;
*Axis 4 - not used (throttle)&lt;br /&gt;
*Axis 5 - (hatswitch) used instead as buttons - for views - left &amp;amp; right ('''F3''' &amp;amp; '''F4''')&lt;br /&gt;
*Axis 6 - (hatswitch) used instead as buttons - for views - up &amp;amp; down ('''F1''' &amp;amp; '''F2''')&lt;br /&gt;
*Button 1 - (trigger) - fire laser ('''a''')&lt;br /&gt;
*Button 2 - ''docking'' - request docking clearance ('''shift-l''')&lt;br /&gt;
*Button 3 - ''missile'' - arm missile ('''t''')&lt;br /&gt;
*Button 4 - ''missile'' - fire missile ('''m''')&lt;br /&gt;
*Button 5 - take snapshot ('''*''')&lt;br /&gt;
*Button 6 - ''missile'' - cycle missile ('''y''')&lt;br /&gt;
*Button 7 - next [[ASC]] compass target ('''\''')&lt;br /&gt;
*Button 8 - not yet used&lt;br /&gt;
*Button 9 - ''docking'' - Blue Danube docking computer ('''c''')&lt;br /&gt;
*Button 10 - ''docking'' - fast docking computer ('''shift-c''')&lt;br /&gt;
*Button 11 - Activate .oxp equipment ('''n''')&lt;br /&gt;
*Button 12 - Prime .oxp equipment ('''shift-n''')&lt;br /&gt;
:And see [https://app.box.com/s/gythr56ev88f1uvoijevfqncwmmjtlat Cody's 2017] key-bindings, before axis bindings. Not all buttons used.&lt;br /&gt;
----&lt;br /&gt;
[https://bb.oolite.space/viewtopic.php?p=261310#p261310 Nite Owl's] settings for the Logitech Extreme 3D Pro. Another veteran, like Cody, but with a more combat oriented set of joystick bindings.&lt;br /&gt;
&lt;br /&gt;
*Axis 1 - Joystick left and right axis as Left and Right Roll. (Editorial note: like Cody, a veteran elitist in the [[Roll vs Yaw crusades]])&lt;br /&gt;
*Axis 2 - Joystick forward and back axis as Pitch Up and Down.&lt;br /&gt;
*Axis 3 - Joystick left and right twist axis as Pitch Left and Right.&lt;br /&gt;
*Axis 4 - The throttle axis for the ship's Throttle.&lt;br /&gt;
*The hat switch for changing views in the obvious manner.&lt;br /&gt;
*Button 1              Fire main weapon (Laser) ('''a''')&lt;br /&gt;
*Button 2              Fire secondary weapon (Pylon) ('''m''')&lt;br /&gt;
*Button 3              Targeting I.D. On/Off ('''r''')&lt;br /&gt;
*Button 4              Weapons On/Off (shift-hyphen: '''_''')&lt;br /&gt;
*Button 5              Torus Drive On/Off ('''j''')&lt;br /&gt;
*Button 6              Fuel Injectors (Hold to Use) ('''i''')&lt;br /&gt;
*Button 7              Set Equipment Mode ('''b''')&lt;br /&gt;
*Button 8              Prime Equipment ('''shift-n''')&lt;br /&gt;
*Button 9              Target Incoming Missile  ('''shift-t''')&lt;br /&gt;
*Button 10             Fast Target Selector (OXZ set up as Fast Activate 1, key = zero, and then the zero key is mapped to the Joystick)&lt;br /&gt;
*Button 11             Scanner Zoom  ('''z''')&lt;br /&gt;
*Button 12             Activate E.C.M. ('''e''')&lt;br /&gt;
&lt;br /&gt;
&amp;quot;''Axes 2 &amp;amp; 3 may seem counter intuitive - but they work for me. My guess is that most Commanders would have these two reversed. Also have some very nice spline curves set up as per Dizzy's Guide mentioned at the top and bottom of this page. Everything else is accessed via the keyboard controls. The Advanced Navigation Computer (OXZ) is mapped to Fast Activate 2, key = Tab. Docking Clearance (mandatory at all but Rock Hermits in my Ooniverse) is accessed via the Communications M.F.D. (OXZ). With the Communications M.F.D. active, use the '''n''' key to select the &amp;quot;Request Docking Clearance&amp;quot; option and then press '''b'''. All other keyboard commands are at their default settings.''&amp;quot; (Nite Owl)&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
[[File:Logitech X56.png|right|320px]]&lt;br /&gt;
=== Logitech X52 Pro HOTAS ===&lt;br /&gt;
See Darkened Room's partial set up [https://drive.google.com/drive/folders/1dM9k9Cl9TFGU-S0cBOkPd39LB7RVyJOm?usp=sharing here] (2023: layout pdf &amp;amp; config file).&lt;br /&gt;
&lt;br /&gt;
=== Logitech G X56 HOTAS ===&lt;br /&gt;
Note that Logitech bought out MadCatz in 2016 (who had bought out Saitek in 2007).&lt;br /&gt;
 X-56 H.O.T.A.S. System (2018)&lt;br /&gt;
 X-55 Rhino H.O.T.A.S. System (2014)&lt;br /&gt;
 X-65F Flight Combat Control System (2008)&lt;br /&gt;
 X52 Pro Flight Control System (2007)&lt;br /&gt;
 X52 Flight Control System (2004)&lt;br /&gt;
 X45 Digital Joystick and Throttle (2001)&lt;br /&gt;
 X36 Flight Control System (1999), consisting of the X36F Control stick and X35T throttle&lt;br /&gt;
&lt;br /&gt;
There may be issues with playing Oolite in Windows with this HOTAS - the throttle may not connect.&lt;br /&gt;
&lt;br /&gt;
:If so, you may need to (re)-install the Logitech X56 software from [https://support.logi.com/hc/en-us/articles/360024844133--Downloads-X56-Space-Flight-H-O-T-A-S- here]&lt;br /&gt;
&lt;br /&gt;
:Once that's installed you can go into the X56 &amp;quot;HUD&amp;quot; program and go to Programming. From there, select the Throttle.&lt;br /&gt;
&lt;br /&gt;
:You then need to create a new profile and start adding your controls to it. The Logitech manual is a little obtuse on the subject but it gets the job done. In order for Oolite to effectively recognize the throttle axis you need to set it to Band mode, which lets you assign W to the lower third of the band, S to the upper third (yes, these are reversed from expectation) and nothing to the central band.&lt;br /&gt;
&lt;br /&gt;
:After that the rest of the controls are pretty easy to set up.&lt;br /&gt;
&lt;br /&gt;
:Then you need to save and activate the profile - there's a button on the same programming screen, or you use the background program in the carat ( ^ ) menu on the Taskbar. If you're using the background program, right click on the program icon and select your saved profile.&lt;br /&gt;
&lt;br /&gt;
:Once activated, the software will override your default settings and Oolite will accept those commands instead of the throttle's &amp;quot;real&amp;quot; inputs. You can then &amp;quot;clear&amp;quot; the profile if you want to play a different game. (Details from [https://bb.oolite.space/viewtopic.php?p=281448#p281448 Arquebus 2021]).&lt;br /&gt;
&lt;br /&gt;
Arquebus also has a [https://www.youtube.com/watch?v=llQk_J0Ty38&amp;amp;list=PLsYaAtYv_5eUpD3FBWQk7XQuKQQsrVhNV&amp;amp;index=10 youtube video] explaining his set up (it includes Touch Portal)&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Thrustmaster TM4 ===&lt;br /&gt;
[[File:TFlight HOTAS 4.png|250px|thumb|right|note that joystick and throttle units have not been separated]]&lt;br /&gt;
There are some 3 very similar Thrustmaster entry-level HOTAS ('''H'''ands '''o'''n '''T'''hrottle '''a'''nd '''S'''tick) sets: T.Flight 3, 4 &amp;amp; X. They seem mostly designed for those using gaming consoles as the buttons on each are quite limited in number.&lt;br /&gt;
&lt;br /&gt;
They are very nicely designed - nice curves, screw holes at the bottom for attaching to something heavy like a desk (if so desired), an Allen key (living in a base recess) to separate the two halves of the throttle and joystick, a simple knob to stiffen up the joystick ''etc''. Another point is that since the joystick and throttle are wired together, they only occupy one USB slot on the dreaded computer.&lt;br /&gt;
&lt;br /&gt;
*The TM4 joystick has a 3-way axis for the stick (including the 3rd twist axis - disable-able with a screwdriver), a throttle axis on the left, and a fifth axis (rudder) on the back of the throttle stick.&lt;br /&gt;
*There are 13 buttons: 4 on the stick (including the trigger) and 6 on the throttle and 3 on the base of the throttle.&lt;br /&gt;
*The hat switch on the stick is a regular 4-way switch.&lt;br /&gt;
*The software for the TM3/4/X hotas is needed. It allows the PS button on the base of the throttle to toggle between vanilla PlayStation mode (where the twist joystick z-axis and the throttle's rudder axis are disabled) and Joystick mode where everything works.&lt;br /&gt;
&lt;br /&gt;
==== Use with AppleMac ==== &amp;lt;!-- Apple AppleMac Thrustmaster TFlight HOTAS_4 TM4 --&amp;gt;&lt;br /&gt;
It seems that this is not compatible with the AppleMac, with the twist, throttle and axis on the back of the throttle not seeming functional.&lt;br /&gt;
What neither Thrustmaster nor Apple can be bothered to tell you is that you need to keep the '''PS''', '''SHARE''' &amp;amp; '''OPTIONS''' buttons held down while you plug it into your AppleMac. The green light should then come on under your PS button, and you should find the HOTAS fully functional. This is without the Thrustmaster software being loaded. This worked for Cholmondely but not for Murgh.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
[[User:Cholmondely|Cholly]]'s settings: Cholly uses this HOTAS with an Elgato [[Buttonboxes|Streamdeck]], so the confusing missile controls are ''there'' where they can be clearly labelled and understood. Cholly is quite new to Oolite, and has no other real experience of space sims.&lt;br /&gt;
&lt;br /&gt;
*Axis 1 - (Joystick left/right): roll (left/right arrows) - Cholly read too many of Cody's old BB posts and got converted to rolling!&lt;br /&gt;
*Axis 2 - (Joystick left/right): pitch (up/down arrows)&lt;br /&gt;
*Axis 3 - (throttle): speed ('''w''' and '''s''')&lt;br /&gt;
*Axis 4 - (twist on joystick): not used ''Cholly finds 3 axes on the same stick too confusing for words''&lt;br /&gt;
*Axis 5 - ''possibly refers to optional pedals?''&lt;br /&gt;
*Axis 6 - (rudder on throttle): yaw - (''',''' &amp;amp; '''.''')&lt;br /&gt;
*Button 1 - (trigger on joystick): fire laser ('''a''')&lt;br /&gt;
*Button 2 - (L1 button): witchfuel injectors ('''i''')&lt;br /&gt;
*Button 3 - (R3 button): roll/pitch Precision toggle (sort of '''ctrl''' but as a toggle: Cholly has yet to master the art of splining - see Dizzy's Guide) &lt;br /&gt;
*Button 4 - (L3 button): Toggle ID ('''r''')&lt;br /&gt;
*Button 5 - (square on button): ECM ('''e''')&lt;br /&gt;
*Button 6 - (x on button): Activate first fast equipment (defensive) ('''Tab''')&lt;br /&gt;
*Button 7 - (circle on button): Activate second fast equipment (offensive) ('''0''')&lt;br /&gt;
*Button 8 - (triangle on button): toggle weapons (shift-hyphen: '''_''')&lt;br /&gt;
*Button 9 - (R2 button): zoom scanner ('''z''')&lt;br /&gt;
*Button 10 - (L2 button): reset scanner ('''shift-z''')&lt;br /&gt;
*Button 11 - (Share button): ''hyperspeed'' - Torus jump drive ('''j''') &lt;br /&gt;
*Button 12 - (Options button): ''hyperdrive'' - Witchspace drive ('''h''')&lt;br /&gt;
*Button 13 - (PS red/green LED button): not used (as it disables rudder yawing)&lt;br /&gt;
*Hat Switch - (on joystick): used as 4 buttons - for the 4 views - ('''F1 - F4''')&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
----&lt;br /&gt;
== Controllers ==&lt;br /&gt;
&lt;br /&gt;
=== Sony PlayStation ===&lt;br /&gt;
[[File:Controller- Sony PlayStation.png]]&amp;lt;br&amp;gt;&lt;br /&gt;
This mapping is from 2015/6 at which stage it did not function when the ship was docked.&lt;br /&gt;
From [https://bb.oolite.space/viewtopic.php?f=2&amp;amp;t=17985&amp;amp;p=246778#p246778  this] BB thread.&lt;br /&gt;
&lt;br /&gt;
=== Logitech dual-action Profiler ===&lt;br /&gt;
[[File:Controller- Logitech dual-action Profiler.gif]]&amp;lt;br&amp;gt;&lt;br /&gt;
This mapping is from 2013. A ''shift key'' doubles the mapping potentialities.&lt;br /&gt;
From [https://bb.oolite.space/viewtopic.php?p=202759#p202759 this] BB thread.&lt;br /&gt;
&lt;br /&gt;
=== Logitech F310 ===&lt;br /&gt;
&lt;br /&gt;
 Left stick up/down: pitch up/down&lt;br /&gt;
 Left stick left/right: yaw left/right (I know, I know...)&lt;br /&gt;
 Left stick push: Request docking clearance (Shift-L)&lt;br /&gt;
 &lt;br /&gt;
 Right stick up/down: speed increase/decrease (W/S)&lt;br /&gt;
 Right stick left/right: roll left/right&lt;br /&gt;
 Right stick push: ECM (E)&lt;br /&gt;
 &lt;br /&gt;
 4 way hat: views (F1/2/3/4)&lt;br /&gt;
 &lt;br /&gt;
 A Button: Fire laser (A)&lt;br /&gt;
 B Button: Fire missile (M)&lt;br /&gt;
 X Button: Space compass next target (\)&lt;br /&gt;
 Y Button: Missile target seek (T) &lt;br /&gt;
 &lt;br /&gt;
 View Button (Back button on the F310): Fast activate second equipment (ie Tab key)&lt;br /&gt;
 Menu Button (Start button on the F310): Begin hyperspace countdown (H)&lt;br /&gt;
 &lt;br /&gt;
 LB: Engage torus (J)&lt;br /&gt;
 RB: Injectors (I)&lt;br /&gt;
 LT: Fast activate first equipment (ie 0 key)&lt;br /&gt;
 RT: Activate ID recognition (R)&lt;br /&gt;
&lt;br /&gt;
[https://bb.oolite.space/viewtopic.php?p=257091#p257091 Phkb, 2017]&lt;br /&gt;
&lt;br /&gt;
== Problem Solving ==&lt;br /&gt;
*Is your joystick compatible with your computer?&lt;br /&gt;
*Do you have too many joysticks/controllers/USB gadgets [https://bb.oolite.space/viewtopic.php?f=2&amp;amp;t=20894 plugged in]?&lt;br /&gt;
*Does your joystick make your craft swerve to the side (See Dizzy's Guide below)?&lt;br /&gt;
&lt;br /&gt;
== History ==&lt;br /&gt;
The code for all this was published by Kanthoney back in February 2014. Dizzy's guide was crucial in explaining it all to people (July '14). In the years since, it has been expanded.&lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
* [[Dizzy's guide to Setting up Joystick Axis Profiles]] (splines and stuff!)&lt;br /&gt;
* [[Joysticks and Gamepads]] (contains instructions for eliminating jitter from your joystick. Some throttles jitter when &amp;quot;off&amp;quot;, causing &amp;quot;engine-revving&amp;quot; sounds with BGS)&lt;br /&gt;
* [[Linux Joysticks and Gamepads]] (Guide to setting up game controllers in Linux)&lt;br /&gt;
* [https://bb.oolite.space/viewtopic.php?f=2&amp;amp;t=20841 Joysticks]: how to configure (BB thread basis for this page).&lt;br /&gt;
* [https://bb.oolite.space/viewtopic.php?f=2&amp;amp;t=17315 Ship Tuning 2015]: how to dampen the agility of your ship - and has notes on altering the joystick precision setting&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [https://bb.oolite.space/viewtopic.php?f=6&amp;amp;t=15770 2013] thread about coding Oolite for Joysticks (Macs vs Windows/Linux).&lt;br /&gt;
* [[AppleMac]] - see section on HOTAS for some background.&lt;br /&gt;
* [https://bb.oolite.space/viewtopic.php?f=8&amp;amp;t=17857 2015] thread about problems with setting up several Windows joysticks (with Linux mentions)&lt;br /&gt;
* [https://bb.oolite.space/viewtopic.php?f=2&amp;amp;t=17985 2016] thread about T.FlightHotas4, Logitech Extreme 3D Pro, controllers &amp;amp; yaw issues. &lt;br /&gt;
* [https://bb.oolite.space/viewtopic.php?f=8&amp;amp;t=11987 2012-13] thread about the PS3 controller&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [https://bb.oolite.space/viewtopic.php?f=2&amp;amp;t=19309 2018] Is it possible to control OOlite entirely with Joystick/Gamepad? &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*[https://bb.oolite.space/viewtopic.php?f=8&amp;amp;t=6958 2009] Old thread about yaw and throttle problems (now fixed in Oolite code). Links to older threads.&lt;br /&gt;
&lt;br /&gt;
*[https://bb.oolite.space/viewtopic.php?f=6&amp;amp;t=5428 Force-Feedback Joystick Support?] (2008-17: see Getafix's last posts for Linux)&lt;br /&gt;
&lt;br /&gt;
=== Other advice pages ===&lt;br /&gt;
*[[How do I ...]] dock / succeed in trading / win a fight / configure my controller/joystick ''etc''&lt;br /&gt;
&lt;br /&gt;
[[Category:Oolite]][[Category:Factual]][[Category:Help pages]]&lt;/div&gt;</summary>
		<author><name>Mcarans</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.alioth.net/index.php?title=File:VSCode2.png&amp;diff=86398</id>
		<title>File:VSCode2.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.alioth.net/index.php?title=File:VSCode2.png&amp;diff=86398"/>
		<updated>2025-07-16T21:11:07Z</updated>

		<summary type="html">&lt;p&gt;Mcarans: Mcarans uploaded a new version of File:VSCode2.png&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Mcarans</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.alioth.net/index.php?title=File:VSCode1.png&amp;diff=86397</id>
		<title>File:VSCode1.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.alioth.net/index.php?title=File:VSCode1.png&amp;diff=86397"/>
		<updated>2025-07-16T21:10:40Z</updated>

		<summary type="html">&lt;p&gt;Mcarans: Mcarans uploaded a new version of File:VSCode1.png&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Mcarans</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.alioth.net/index.php?title=Cross_Platform_IDEs&amp;diff=86378</id>
		<title>Cross Platform IDEs</title>
		<link rel="alternate" type="text/html" href="https://wiki.alioth.net/index.php?title=Cross_Platform_IDEs&amp;diff=86378"/>
		<updated>2025-07-16T06:19:54Z</updated>

		<summary type="html">&lt;p&gt;Mcarans: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;There are two major cross platform IDEs that support Objective-C and are free. These are [https://www.jetbrains.com/clion/ CLion] and [https://code.visualstudio.com/ Visual Studio Code]. CLion is free for non-commercial use and since Oolite is not a commercial product, it can be used for free while Visual Studio Code is free for both private or commercial use.&lt;br /&gt;
&lt;br /&gt;
Both IDEs support syntax highlighting of Objective-C code (as well as C, C++ and a variety of other languages). It is possible to set up both to run Oolite's makefile so that the project can be built. This requires sourcing the relevant GNUstep file in a shell before launching   the IDE in that shell (or making a script that does this). For example, on Linux sourcing the GNUstep file looks like this:&lt;br /&gt;
&lt;br /&gt;
 source /usr/share/GNUstep/Makefiles/GNUstep.sh&lt;br /&gt;
&lt;br /&gt;
It may be possible to get debugging in the IDE to work. &lt;br /&gt;
&lt;br /&gt;
== CLion ==&lt;br /&gt;
&lt;br /&gt;
More information about CLion's Objective-C support can be found [https://www.jetbrains.com/help/clion/objective-c-c-support.html here].&lt;br /&gt;
&lt;br /&gt;
This is a view of the project in CLion:&lt;br /&gt;
&lt;br /&gt;
[[File:CLion1.png]]&lt;br /&gt;
&lt;br /&gt;
It shows all the Git submodules:&lt;br /&gt;
&lt;br /&gt;
[[File:CLion2.png]]&lt;br /&gt;
&lt;br /&gt;
These are all the make targets that are autodetected if the GNUstep file is sourced before launching the IDE as described above:&lt;br /&gt;
&lt;br /&gt;
[[File:CLion3.png]]&lt;br /&gt;
&lt;br /&gt;
== Visual Studio Code ==&lt;br /&gt;
&lt;br /&gt;
This is a view of the project in Visual Studio Code. Extensions that have been added include Microsoft's ones for C/C++ and Makefile Tools. &lt;br /&gt;
In addition, these third party ones have been added: &lt;br /&gt;
* [https://marketplace.visualstudio.com/items?itemName=mitaki28.vscode-clang C/C++ Clang Command Adapter] which offers &amp;quot;Completion and Diagnostic for C/C++/Objective-C using Clang Command&amp;quot;&lt;br /&gt;
* [https://marketplace.visualstudio.com/items?itemName=lfm.vscode-makefile-term vscode-makefile-term] which &amp;quot;allows you to run a Makefile target from within the editor by clicking above the target&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
[[File:VSCode1.png]]&lt;br /&gt;
&lt;br /&gt;
This shows the extension running makefile targets:&lt;br /&gt;
&lt;br /&gt;
[[File:VSCode2.png]]&lt;/div&gt;</summary>
		<author><name>Mcarans</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.alioth.net/index.php?title=Cross_Platform_IDEs&amp;diff=86377</id>
		<title>Cross Platform IDEs</title>
		<link rel="alternate" type="text/html" href="https://wiki.alioth.net/index.php?title=Cross_Platform_IDEs&amp;diff=86377"/>
		<updated>2025-07-16T06:17:44Z</updated>

		<summary type="html">&lt;p&gt;Mcarans: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;There are two major cross platform IDEs that support Objective-C and are free. These are [https://www.jetbrains.com/clion/ CLion] and [https://code.visualstudio.com/ Visual Studio Code]. CLion is free for non-commercial use and since Oolite is not a commercial product, it can be used for free while Visual Studio Code is free for both private or commercial use.&lt;br /&gt;
&lt;br /&gt;
Both IDEs support syntax highlighting of Objective-C code (as well as C, C++ and a variety of other languages). It is possible to set up both to run Oolite's makefile so that the project can be built. This requires sourcing the relevant GNUstep file in a shell before launching   the IDE in that shell (or making a script that does this). For example, on Linux sourcing the GNUstep file looks like this:&lt;br /&gt;
&lt;br /&gt;
 source /usr/share/GNUstep/Makefiles/GNUstep.sh&lt;br /&gt;
&lt;br /&gt;
It may be possible to get debugging in the IDE to work. &lt;br /&gt;
&lt;br /&gt;
== CLion ==&lt;br /&gt;
&lt;br /&gt;
More information about CLion's Objective-C support can be found [https://www.jetbrains.com/help/clion/objective-c-c-support.html here].&lt;br /&gt;
&lt;br /&gt;
This is a view of the project in CLion:&lt;br /&gt;
&lt;br /&gt;
[[File:CLion1.png]]&lt;br /&gt;
&lt;br /&gt;
It shows all the Git submodules:&lt;br /&gt;
&lt;br /&gt;
[[File:CLion2.png]]&lt;br /&gt;
&lt;br /&gt;
These are all the make targets that are autodetected if the GNUstep file is sourced before launching the IDE as described above:&lt;br /&gt;
&lt;br /&gt;
[[File:CLion3.png]]&lt;br /&gt;
&lt;br /&gt;
== Visual Studio Code ==&lt;br /&gt;
&lt;br /&gt;
This is a view of the project in Visual Studio Code. Extensions that have been added include Microsoft's ones for C/C++ and Makefile Tools and third party ones: [https://marketplace.visualstudio.com/items?itemName=mitaki28.vscode-clang C/C++ Clang Command Adapter] which offers &amp;quot;Completion and Diagnostic for C/C++/Objective-C using Clang Command&amp;quot; and [https://marketplace.visualstudio.com/items?itemName=lfm.vscode-makefile-term vscode-makefile-term] which &amp;quot;allows you to run a Makefile target from within the editor by clicking above the target&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
[[File:VSCode1.png]]&lt;br /&gt;
&lt;br /&gt;
This shows the extension running makefile targets:&lt;br /&gt;
&lt;br /&gt;
[[File:VSCode2.png]]&lt;/div&gt;</summary>
		<author><name>Mcarans</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.alioth.net/index.php?title=Cross_Platform_IDEs&amp;diff=86376</id>
		<title>Cross Platform IDEs</title>
		<link rel="alternate" type="text/html" href="https://wiki.alioth.net/index.php?title=Cross_Platform_IDEs&amp;diff=86376"/>
		<updated>2025-07-16T06:16:50Z</updated>

		<summary type="html">&lt;p&gt;Mcarans: IDE info&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;There are two major cross platform IDEs that support Objective-C and are free. These are [https://www.jetbrains.com/clion/ CLion] and [https://code.visualstudio.com/ Visual Studio Code]. CLion is free for non-commercial use and since Oolite is not a commercial product, it can be used for free while Visual Studio Code is free for both private or commercial use.&lt;br /&gt;
&lt;br /&gt;
Both IDEs support syntax highlighting of Objective-C code (as well as C, C++ and a variety of other languages). It is possible to set up both to run Oolite's makefile so that the project can be built. This requires sourcing the relevant GNUstep file in a shell before launching   the IDE in that shell (or making a script that does this). For example, on Linux sourcing the GNUstep file looks like this:&lt;br /&gt;
&lt;br /&gt;
 source /usr/share/GNUstep/Makefiles/GNUstep.sh&lt;br /&gt;
&lt;br /&gt;
It may be possible to get debugging in the IDE to work. &lt;br /&gt;
&lt;br /&gt;
More information about CLion's Objective-C support can be found [https://www.jetbrains.com/help/clion/objective-c-c-support.html here].&lt;br /&gt;
&lt;br /&gt;
This is a view of the project in CLion:&lt;br /&gt;
&lt;br /&gt;
[[File:CLion1.png]]&lt;br /&gt;
&lt;br /&gt;
It shows all the Git submodules:&lt;br /&gt;
&lt;br /&gt;
[[File:CLion2.png]]&lt;br /&gt;
&lt;br /&gt;
These are all the make targets that are autodetected if the GNUstep file is sourced before launching the IDE as described above:&lt;br /&gt;
&lt;br /&gt;
[[File:CLion3.png]]&lt;br /&gt;
&lt;br /&gt;
This is a view of the project in Visual Studio Code. Extensions that have been added include Microsoft's ones for C/C++ and Makefile Tools and third party ones: [https://marketplace.visualstudio.com/items?itemName=mitaki28.vscode-clang C/C++ Clang Command Adapter] which offers &amp;quot;Completion and Diagnostic for C/C++/Objective-C using Clang Command&amp;quot; and [https://marketplace.visualstudio.com/items?itemName=lfm.vscode-makefile-term vscode-makefile-term] which &amp;quot;allows you to run a Makefile target from within the editor by clicking above the target&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
[[File:VSCode1.png]]&lt;br /&gt;
&lt;br /&gt;
This shows the extension running makefile targets:&lt;br /&gt;
&lt;br /&gt;
[[File:VSCode2.png]]&lt;/div&gt;</summary>
		<author><name>Mcarans</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.alioth.net/index.php?title=File:VSCode2.png&amp;diff=86375</id>
		<title>File:VSCode2.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.alioth.net/index.php?title=File:VSCode2.png&amp;diff=86375"/>
		<updated>2025-07-16T05:57:15Z</updated>

		<summary type="html">&lt;p&gt;Mcarans: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Mcarans</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.alioth.net/index.php?title=File:VSCode1.png&amp;diff=86374</id>
		<title>File:VSCode1.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.alioth.net/index.php?title=File:VSCode1.png&amp;diff=86374"/>
		<updated>2025-07-16T05:57:03Z</updated>

		<summary type="html">&lt;p&gt;Mcarans: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Mcarans</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.alioth.net/index.php?title=File:CLion3.png&amp;diff=86373</id>
		<title>File:CLion3.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.alioth.net/index.php?title=File:CLion3.png&amp;diff=86373"/>
		<updated>2025-07-16T05:56:51Z</updated>

		<summary type="html">&lt;p&gt;Mcarans: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Mcarans</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.alioth.net/index.php?title=File:CLion2.png&amp;diff=86372</id>
		<title>File:CLion2.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.alioth.net/index.php?title=File:CLion2.png&amp;diff=86372"/>
		<updated>2025-07-16T05:56:34Z</updated>

		<summary type="html">&lt;p&gt;Mcarans: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Mcarans</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.alioth.net/index.php?title=File:CLion1.png&amp;diff=86371</id>
		<title>File:CLion1.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.alioth.net/index.php?title=File:CLion1.png&amp;diff=86371"/>
		<updated>2025-07-16T05:56:13Z</updated>

		<summary type="html">&lt;p&gt;Mcarans: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Mcarans</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.alioth.net/index.php?title=Developer%27s_Corner&amp;diff=86370</id>
		<title>Developer's Corner</title>
		<link rel="alternate" type="text/html" href="https://wiki.alioth.net/index.php?title=Developer%27s_Corner&amp;diff=86370"/>
		<updated>2025-07-16T04:56:27Z</updated>

		<summary type="html">&lt;p&gt;Mcarans: Add IDEs link&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Here you will find information that helps understanding the Oolite source code, build and test the project.&lt;br /&gt;
&lt;br /&gt;
* [[Contributing to the project]]&lt;br /&gt;
* [[Release Process]]&lt;br /&gt;
* [[Branding]]&lt;br /&gt;
* [https://ooliteproject.github.io/oolite/ Oolite API documentation]&lt;br /&gt;
* [https://ooliteproject.github.io/oolite/ Doxygen Documentation]&lt;br /&gt;
* [https://ooliteproject.github.io/oolite/coverage/index.html Code Coverage Report]&lt;br /&gt;
* [[Cross Platform IDEs]]&lt;br /&gt;
&lt;br /&gt;
== OS Specific parts ==&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;margin:auto&amp;quot;&lt;br /&gt;
|+ Operating System dependent stuff&lt;br /&gt;
|-&lt;br /&gt;
! Procedure !! Apple Mac !! Linux !! Windows&lt;br /&gt;
|-&lt;br /&gt;
| Setting up a development environment || [[Development on Apple Mac]] || [[Development on Linux]] || [[Development on Windows]]&lt;br /&gt;
|-&lt;br /&gt;
| Compiling || [[Compiling on Apple Mac]] || [[Compiling on Linux]] || [[Developing Oolite#On_Windows_2 | Compiling on Windows]]&lt;br /&gt;
|-&lt;br /&gt;
| Testing || [[Testing on Apple Mac]] || [[Testing on Linux]] || [[Testing on Windows]]&lt;br /&gt;
|-&lt;br /&gt;
| Packaging into Installer || [[Installer on Apple Mac]] || [[Installer on Linux]] || [[Installer on Windows]]&lt;br /&gt;
|-&lt;br /&gt;
| Running                  || [[Running_Oolite-Mac]] || ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Releasing the code==&lt;br /&gt;
&lt;br /&gt;
Once you developed a while you are no longer happy that all you created is called 'nightly' or 'prerelease' or 'unstable'.&lt;br /&gt;
If you are convinced the current status should be published as 'stable' or 'release', follow the [[Oolite Release Process]].&lt;br /&gt;
&lt;br /&gt;
[[Category:Oolite Development]]&lt;br /&gt;
&lt;br /&gt;
== Hints ==&lt;br /&gt;
&lt;br /&gt;
The code is organized across several git repositories. The main one refers to the others as submodules - but always to a concise commit.&lt;br /&gt;
If you need to update submodules you also need to tell update the reference in the main repository. Here you can see that handling submodules can lead to strange effects: https://bb.oolite.space/viewtopic.php?f=3&amp;amp;t=21470&lt;br /&gt;
&lt;br /&gt;
To learn mode about submodules read the fine manual at https://git-scm.com/book/en/v2/Git-Tools-Submodules&lt;/div&gt;</summary>
		<author><name>Mcarans</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.alioth.net/index.php?title=Linux_Joysticks_and_Gamepads&amp;diff=86362</id>
		<title>Linux Joysticks and Gamepads</title>
		<link rel="alternate" type="text/html" href="https://wiki.alioth.net/index.php?title=Linux_Joysticks_and_Gamepads&amp;diff=86362"/>
		<updated>2025-07-15T22:12:20Z</updated>

		<summary type="html">&lt;p&gt;Mcarans: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:PS3 Controller.jpeg|right|320px]]&lt;br /&gt;
== Overview ==&lt;br /&gt;
&lt;br /&gt;
Generally speaking, Linux is quite good with joystick and gamepad detection and support, but sometimes things can go wrong. Failing to detect a joystick at all is fairly uncommon, and most reported problems revolve around button detection/assignment, and/or axis range. This article provides information on setting up game controllers so that they work well in Oolite Linux.&lt;br /&gt;
&lt;br /&gt;
== Calibrating a Joystick or Gamepad ==&lt;br /&gt;
&lt;br /&gt;
Although Oolite provides options to set up dead zones, a full calibration within the game is not possible. The best way to calibrate game controllers on Linux is using a utility such as [https://github.com/Grumbel/jstest-gtk jstest-gtk] which will probably be present in your distribution's Software Manager. Launch the ''jstest-gtk'' gui (it will probably be located in the System Menu) and, underneath the name of your joystick, it will list the device details, such as &amp;quot;Device: /dev/input/js0&amp;quot;. Keep a record of this device information.&lt;br /&gt;
&lt;br /&gt;
After calibrating and before closing the gui, execute the following command in a shell to store the calibration information: &lt;br /&gt;
 &lt;br /&gt;
 sudo jscal-store /dev/input/js0&lt;br /&gt;
&lt;br /&gt;
Ensure you use the device information you recorded earlier in place of ''/dev/input/js0''.&lt;br /&gt;
&lt;br /&gt;
== Button Detection &amp;amp; Axis Range Problems ==&lt;br /&gt;
&lt;br /&gt;
If your calibration is ignored, then you need to do the following: add the appropriate environment variable to either the ''/etc/environment'' file, or the ''.bashrc'' startup script.&lt;br /&gt;
&lt;br /&gt;
[https://help.ubuntu.com/community/EnvironmentVariables Officially speaking], ''/etc/environment'' is the correct place for system-wide environment variables. To add the environment variable to the ''/etc/environment'' file, '''as root''', open ''/etc/environment'' in your text editor, add the following (on a new line) to the file, and save:&lt;br /&gt;
&lt;br /&gt;
 SDL_JOYSTICK_DEVICE=&amp;quot;/dev/input/js0&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Again, use the device information you recorded earlier.&lt;br /&gt;
&lt;br /&gt;
For the change to 'take', you then need to log out and back in again. Rebooting is unnecessary. &lt;br /&gt;
&lt;br /&gt;
If you prefer changing the ''.bashrc'' startup script instead, you should add the above line to ''.bashrc'' in your ''Home'' folder. As the dot in front of the filename indicates, this is a hidden file, so you may need to set the view in your file browser to &amp;quot;Show Hidden Files&amp;quot; before it will become visible. Once done, save the file and log out, then back in.&lt;br /&gt;
&lt;br /&gt;
Explanation: Oolite uses [https://www.libsdl.org/ Simple DirectMedia Layer (SDL)]. For unknown reasons, it appears that sometimes SDL takes raw input from the evdev device drivers, instead of using the correct joystick device. This fix forces SDL to use the &amp;quot;real&amp;quot; joystick driver for input.&lt;br /&gt;
&lt;br /&gt;
== Using Saved Calibration ==&lt;br /&gt;
&lt;br /&gt;
The calibration will be forgotten after rebooting, so to ensure the saved calibration is used, make a file called for example ''run_oolite'' with the following contents: &lt;br /&gt;
&lt;br /&gt;
 #!/bin/bash&lt;br /&gt;
 jscal-restore /dev/input/js0&lt;br /&gt;
 cd ${1%/*}&lt;br /&gt;
 $1&lt;br /&gt;
&lt;br /&gt;
Again, use the device information you recorded earlier. Save the file (which is a bash script) in a folder which is in your system's ''PATH'' or you can save it in the same folder as the ''oolite'' executable. The ''oolite'' executable is located in a folder like this: ''/home/USERNAME/GNUstep/Applications/Oolite/'' which hereafter we'll call ''OOLITE_FOLDER''. Make that file executable (which can usually be done in your distro's file explorer by right clicking on the file and choosing to edit Permissions). Then you can run Oolite in a shell using:&lt;br /&gt;
&lt;br /&gt;
 OOLITE_FOLDER/run_oolite OOLITE_FOLDER/oolite&lt;br /&gt;
&lt;br /&gt;
The first ''OOLITE_FOLDER'' in the command above should be removed if ''run_oolite'' is in your system's ''PATH''.&lt;br /&gt;
&lt;br /&gt;
If you are using the [https://github.com/OoliteProject/OoliteStarter Oolite Starter] then replace ''OOLITE_FOLDER/oolite'' with the path to Oolite Starter which will look something like: ''/opt/oolitestarter-innocuous/bin/OoliteStarter_innocuous''.&lt;br /&gt;
&lt;br /&gt;
== Mapping Axes and Buttons to Keyboard Key Presses ==&lt;br /&gt;
&lt;br /&gt;
Sometimes it is desirable to have an axis act more like a keyboard key press, for example to increase and decrease speed. This can be achieved with the utility [https://github.com/AntiMicroX/antimicrox AntiMicroX], a graphical program used to map joystick and gamepad controls to keyboard, mouse, scripts and macros. More information on Oolite's default keyboard controls can be found [https://wiki.alioth.net/index.php/Oolite_Keyboard_Controls here]. Once you have set up AntiMicroX the way you want, you can use your configuration by modifying the ''run_oolite'' script described earlier:&lt;br /&gt;
&lt;br /&gt;
 #!/bin/bash&lt;br /&gt;
 jscal-restore /dev/input/js0&lt;br /&gt;
 antimicrox --tray &amp;amp;&lt;br /&gt;
 cd ${1%/*}&lt;br /&gt;
 $1&lt;br /&gt;
&lt;br /&gt;
Again, use the device information you recorded earlier.&lt;br /&gt;
&lt;br /&gt;
== Other problems ==&lt;br /&gt;
&lt;br /&gt;
Should you require further guidance in creating or editing the above files, or the methods given above fail to resolve, or don't address your particular problem, please don't hesitate to post a thread detailing the issue, and your attempts to fix it, to the [https://bb.oolite.space/viewforum.php?f=9 Oolite-Linux forum]. The forum has several Linux gurus available, who would be more than happy to assist.&lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
*[[Joysticks and Gamepads]]&lt;br /&gt;
*[[Joysticks: Guide to Setting Up]]&lt;br /&gt;
*[[Dizzy's guide to Setting up Joystick Axis Profiles]]&lt;br /&gt;
*[[Keyboard Issues]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Oolite]][[Category:Help pages]]&lt;/div&gt;</summary>
		<author><name>Mcarans</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.alioth.net/index.php?title=Linux_Joysticks_and_Gamepads&amp;diff=86361</id>
		<title>Linux Joysticks and Gamepads</title>
		<link rel="alternate" type="text/html" href="https://wiki.alioth.net/index.php?title=Linux_Joysticks_and_Gamepads&amp;diff=86361"/>
		<updated>2025-07-15T22:03:18Z</updated>

		<summary type="html">&lt;p&gt;Mcarans: Add link&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:PS3 Controller.jpeg|right|320px]]&lt;br /&gt;
== Overview ==&lt;br /&gt;
&lt;br /&gt;
Generally speaking, Linux is quite good with joystick and gamepad detection and support, but sometimes things can go wrong. Failing to detect a joystick at all is fairly uncommon, and most reported problems revolve around button detection/assignment, and/or axis range. This article provides information on setting up game controllers so that they work well in Oolite Linux.&lt;br /&gt;
&lt;br /&gt;
== Calibrating a Joystick or Gamepad ==&lt;br /&gt;
&lt;br /&gt;
Although Oolite provides options to set up dead zones, a full calibration within the game is not possible. The best way to calibrate game controllers on Linux is using a utility such as [https://github.com/Grumbel/jstest-gtk jstest-gtk] which will probably be present in your distribution's Software Manager. Launch the ''jstest-gtk'' gui (it will probably be located in the System Menu) and, underneath the name of your joystick, it will list the device details, such as &amp;quot;Device: /dev/input/js0&amp;quot;. Keep a record of this device information.&lt;br /&gt;
&lt;br /&gt;
After calibrating and before closing the gui, execute the following command in a shell to store the calibration information: &lt;br /&gt;
 &lt;br /&gt;
 sudo jscal-store /dev/input/js0&lt;br /&gt;
&lt;br /&gt;
Ensure you use the device information you recorded earlier in place of ''/dev/input/js0''.&lt;br /&gt;
&lt;br /&gt;
== Button Detection &amp;amp; Axis Range Problems ==&lt;br /&gt;
&lt;br /&gt;
If your calibration is ignored, then you need to do the following: add the appropriate environment variable to either the ''/etc/environment'' file, or the ''.bashrc'' startup script.&lt;br /&gt;
&lt;br /&gt;
[https://help.ubuntu.com/community/EnvironmentVariables Officially speaking], ''/etc/environment'' is the correct place for system-wide environment variables. To add the environment variable to the ''/etc/environment'' file, '''as root''', open ''/etc/environment'' in your text editor, add the following (on a new line) to the file, and save:&lt;br /&gt;
&lt;br /&gt;
 SDL_JOYSTICK_DEVICE=&amp;quot;/dev/input/js0&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Again, use the device information you recorded earlier.&lt;br /&gt;
&lt;br /&gt;
For the change to 'take', you then need to log out and back in again. Rebooting is unnecessary. &lt;br /&gt;
&lt;br /&gt;
If you prefer changing the ''.bashrc'' startup script instead, you should add the above line to ''.bashrc'' in your ''Home'' folder. As the dot in front of the filename indicates, this is a hidden file, so you may need to set the view in your file browser to &amp;quot;Show Hidden Files&amp;quot; before it will become visible. Once done, save the file and log out, then back in.&lt;br /&gt;
&lt;br /&gt;
Explanation: Oolite uses [https://www.libsdl.org/ Simple DirectMedia Layer (SDL)]. for unknown reasons, it appears that sometimes SDL takes raw input from the evdev device drivers, instead of using the correct joystick device. This fix forces SDL to use the &amp;quot;real&amp;quot; joystick driver for input.&lt;br /&gt;
&lt;br /&gt;
== Using Saved Calibration ==&lt;br /&gt;
&lt;br /&gt;
The calibration will be forgotten after rebooting, so to ensure the saved calibration is used, make a file called for example ''run_oolite'' with the following contents: &lt;br /&gt;
&lt;br /&gt;
 #!/bin/bash&lt;br /&gt;
 jscal-restore /dev/input/js0&lt;br /&gt;
 cd ${1%/*}&lt;br /&gt;
 $1&lt;br /&gt;
&lt;br /&gt;
Again, use the device information you recorded earlier. Save the file (which is a bash script) in a folder which is in your system's ''PATH'' or you can save it in the same folder as the ''oolite'' executable. The ''oolite'' executable is located in a folder like this: ''/home/USERNAME/GNUstep/Applications/Oolite/'' which hereafter we'll call ''OOLITE_FOLDER''. Make that file executable (which can usually be done in your distro's file explorer by right clicking on the file and choosing to edit Permissions). Then you can run Oolite in a shell using:&lt;br /&gt;
&lt;br /&gt;
 OOLITE_FOLDER/run_oolite OOLITE_FOLDER/oolite&lt;br /&gt;
&lt;br /&gt;
The first ''OOLITE_FOLDER'' in the command above should be removed if ''run_oolite'' is in your system's ''PATH''.&lt;br /&gt;
&lt;br /&gt;
If you are using the [https://github.com/OoliteProject/OoliteStarter Oolite Starter] then replace ''OOLITE_FOLDER/oolite'' with the path to Oolite Starter which will look something like: ''/opt/oolitestarter-innocuous/bin/OoliteStarter_innocuous''.&lt;br /&gt;
&lt;br /&gt;
== Mapping Axes and Buttons to Keyboard Key Presses ==&lt;br /&gt;
&lt;br /&gt;
Sometimes it is desirable to have an axis act more like a keyboard key press, for example to increase and decrease speed. This can be achieved with the utility [https://github.com/AntiMicroX/antimicrox AntiMicroX], a graphical program used to map joystick and gamepad controls to keyboard, mouse, scripts and macros. More information on Oolite's default keyboard controls can be found [https://wiki.alioth.net/index.php/Oolite_Keyboard_Controls here]. Once you have set up AntiMicroX the way you want, you can use your configuration by modifying the ''run_oolite'' script described earlier:&lt;br /&gt;
&lt;br /&gt;
 #!/bin/bash&lt;br /&gt;
 jscal-restore /dev/input/js0&lt;br /&gt;
 antimicrox --tray &amp;amp;&lt;br /&gt;
 cd ${1%/*}&lt;br /&gt;
 $1&lt;br /&gt;
&lt;br /&gt;
Again, use the device information you recorded earlier.&lt;br /&gt;
&lt;br /&gt;
== Other problems ==&lt;br /&gt;
&lt;br /&gt;
Should you require further guidance in creating or editing the above files, or the methods given above fail to resolve, or don't address your particular problem, please don't hesitate to post a thread detailing the issue, and your attempts to fix it, to the [https://bb.oolite.space/viewforum.php?f=9 Oolite-Linux forum]. The forum has several Linux gurus available, who would be more than happy to assist.&lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
*[[Joysticks and Gamepads]]&lt;br /&gt;
*[[Joysticks: Guide to Setting Up]]&lt;br /&gt;
*[[Dizzy's guide to Setting up Joystick Axis Profiles]]&lt;br /&gt;
*[[Keyboard Issues]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Oolite]][[Category:Help pages]]&lt;/div&gt;</summary>
		<author><name>Mcarans</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.alioth.net/index.php?title=Linux_Joysticks_and_Gamepads&amp;diff=86342</id>
		<title>Linux Joysticks and Gamepads</title>
		<link rel="alternate" type="text/html" href="https://wiki.alioth.net/index.php?title=Linux_Joysticks_and_Gamepads&amp;diff=86342"/>
		<updated>2025-07-14T21:20:48Z</updated>

		<summary type="html">&lt;p&gt;Mcarans: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:PS3 Controller.jpeg|right|320px]]&lt;br /&gt;
== Overview ==&lt;br /&gt;
&lt;br /&gt;
Generally speaking, Linux is quite good with joystick and gamepad detection and support, but sometimes things can go wrong. Failing to detect a joystick at all is fairly uncommon, and most reported problems revolve around button detection/assignment, and/or axis range. This article provides information on setting up game controllers so that they work well in Oolite Linux.&lt;br /&gt;
&lt;br /&gt;
== Calibrating a Joystick or Gamepad ==&lt;br /&gt;
&lt;br /&gt;
Although Oolite provides options to set up dead zones, a full calibration within the game is not possible. The best way to calibrate game controllers on Linux is using a utility such as [https://github.com/Grumbel/jstest-gtk jstest-gtk] which will probably be present in your distribution's Software Manager. Launch the ''jstest-gtk'' gui (it will probably be located in the System Menu) and, underneath the name of your joystick, it will list the device details, such as &amp;quot;Device: /dev/input/js0&amp;quot;. Keep a record of this device information.&lt;br /&gt;
&lt;br /&gt;
After calibrating and before closing the gui, execute the following command in a shell to store the calibration information: &lt;br /&gt;
 &lt;br /&gt;
 sudo jscal-store /dev/input/js0&lt;br /&gt;
&lt;br /&gt;
Ensure you use the device information you recorded earlier in place of ''/dev/input/js0''.&lt;br /&gt;
&lt;br /&gt;
== Button Detection &amp;amp; Axis Range Problems ==&lt;br /&gt;
&lt;br /&gt;
If your calibration is ignored, then you need to do the following: add the appropriate environment variable to either the ''/etc/environment'' file, or the ''.bashrc'' startup script.&lt;br /&gt;
&lt;br /&gt;
[https://help.ubuntu.com/community/EnvironmentVariables Officially speaking], ''/etc/environment'' is the correct place for system-wide environment variables. To add the environment variable to the ''/etc/environment'' file, '''as root''', open ''/etc/environment'' in your text editor, add the following (on a new line) to the file, and save:&lt;br /&gt;
&lt;br /&gt;
 SDL_JOYSTICK_DEVICE=&amp;quot;/dev/input/js0&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Again, use the device information you recorded earlier.&lt;br /&gt;
&lt;br /&gt;
For the change to 'take', you then need to log out and back in again. Rebooting is unnecessary. &lt;br /&gt;
&lt;br /&gt;
If you prefer changing the ''.bashrc'' startup script instead, you should add the above line to ''.bashrc'' in your ''Home'' folder. As the dot in front of the filename indicates, this is a hidden file, so you may need to set the view in your file browser to &amp;quot;Show Hidden Files&amp;quot; before it will become visible. Once done, save the file and log out, then back in.&lt;br /&gt;
&lt;br /&gt;
Explanation: Oolite uses [https://www.libsdl.org/ Simple DirectMedia Layer (SDL)]. for unknown reasons, it appears that sometimes SDL takes raw input from the evdev device drivers, instead of using the correct joystick device. This fix forces SDL to use the &amp;quot;real&amp;quot; joystick driver for input.&lt;br /&gt;
&lt;br /&gt;
== Using Saved Calibration ==&lt;br /&gt;
&lt;br /&gt;
The calibration will be forgotten after rebooting, so to ensure the saved calibration is used, make a file called for example ''run_oolite'' with the following contents: &lt;br /&gt;
&lt;br /&gt;
 #!/bin/bash&lt;br /&gt;
 jscal-restore /dev/input/js0&lt;br /&gt;
 cd ${1%/*}&lt;br /&gt;
 $1&lt;br /&gt;
&lt;br /&gt;
Again, use the device information you recorded earlier. Save the file (which is a bash script) in a folder which is in your system's ''PATH'' or you can save it in the same folder as the ''oolite'' executable. The ''oolite'' executable is located in a folder like this: ''/home/USERNAME/GNUstep/Applications/Oolite/'' which hereafter we'll call ''OOLITE_FOLDER''. Make that file executable (which can usually be done in your distro's file explorer by right clicking on the file and choosing to edit Permissions). Then you can run Oolite in a shell using:&lt;br /&gt;
&lt;br /&gt;
 OOLITE_FOLDER/run_oolite OOLITE_FOLDER/oolite&lt;br /&gt;
&lt;br /&gt;
The first ''OOLITE_FOLDER'' in the command above should be removed if ''run_oolite'' is in your system's ''PATH''.&lt;br /&gt;
&lt;br /&gt;
If you are using the [https://github.com/OoliteProject/OoliteStarter Oolite Starter] then replace ''OOLITE_FOLDER/oolite'' with the path to Oolite Starter which will look something like: ''/opt/oolitestarter-innocuous/bin/OoliteStarter_innocuous''.&lt;br /&gt;
&lt;br /&gt;
== Mapping Axes and Buttons to Keyboard Key Presses ==&lt;br /&gt;
&lt;br /&gt;
Sometimes it is desirable to have an axis act more like a keyboard key press, for example to increase and decrease speed. This can be achieved with the utility [https://github.com/AntiMicroX/antimicrox AntiMicroX], a graphical program used to map joystick and gamepad controls to keyboard, mouse, scripts and macros. More information on Oolite's default keyboard controls can be found [https://wiki.alioth.net/index.php/Oolite_Keyboard_Controls here]. Once you have set up AntiMicroX the way you want, you can use your configuration by modifying the ''run_oolite'' script described earlier:&lt;br /&gt;
&lt;br /&gt;
 #!/bin/bash&lt;br /&gt;
 jscal-restore /dev/input/js0&lt;br /&gt;
 antimicrox --tray &amp;amp;&lt;br /&gt;
 cd ${1%/*}&lt;br /&gt;
 $1&lt;br /&gt;
&lt;br /&gt;
Again, use the device information you recorded earlier.&lt;br /&gt;
&lt;br /&gt;
== Other problems ==&lt;br /&gt;
&lt;br /&gt;
Should you require further guidance in creating or editing the above files, or the methods given above fail to resolve, or don't address your particular problem, please don't hesitate to post a thread detailing the issue, and your attempts to fix it, to the [https://bb.oolite.space/viewforum.php?f=9 Oolite-Linux forum]. The forum has several Linux gurus available, who would be more than happy to assist.&lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
*[[Joysticks and Gamepads]]&lt;br /&gt;
*[[Joysticks: Guide to Setting Up]]&lt;br /&gt;
*[[Keyboard Issues]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Oolite]][[Category:Help pages]]&lt;/div&gt;</summary>
		<author><name>Mcarans</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.alioth.net/index.php?title=Linux_Joysticks_and_Gamepads&amp;diff=86341</id>
		<title>Linux Joysticks and Gamepads</title>
		<link rel="alternate" type="text/html" href="https://wiki.alioth.net/index.php?title=Linux_Joysticks_and_Gamepads&amp;diff=86341"/>
		<updated>2025-07-14T21:16:42Z</updated>

		<summary type="html">&lt;p&gt;Mcarans: Fix brackets&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:PS3 Controller.jpeg|right|320px]]&lt;br /&gt;
== Overview ==&lt;br /&gt;
&lt;br /&gt;
Generally speaking, Linux is quite good with joystick and gamepad detection and support, but sometimes things can go wrong. Failing to detect a joystick at all is fairly uncommon, and most reported problems revolve around button detection/assignment, and/or axis range. This article provides information on setting up game controllers so that they work well in Oolite Linux.&lt;br /&gt;
&lt;br /&gt;
== Calibrating a Joystick or Gamepad ==&lt;br /&gt;
&lt;br /&gt;
Although Oolite provides options to set up dead zones, a full calibration within the game is not possible. The best way to calibrate game controllers on Linux is using a utility such as [https://github.com/Grumbel/jstest-gtk jstest-gtk] which will probably be present in your distribution's Software Manager. Launch the ''jstest-gtk'' gui (it will probably be located in the System Menu) and, underneath the name of your joystick, it will list the device details, such as &amp;quot;Device:/dev/input/js0&amp;quot;. Keep a record of this device information.&lt;br /&gt;
&lt;br /&gt;
After calibrating and before closing the gui, execute the following command in a shell to store the calibration information: &lt;br /&gt;
 &lt;br /&gt;
 sudo jscal-store /dev/input/js0&lt;br /&gt;
&lt;br /&gt;
Ensure you use the device information you recorded earlier in place of ''/dev/input/js0''.&lt;br /&gt;
&lt;br /&gt;
== Button Detection &amp;amp; Axis Range Problems ==&lt;br /&gt;
&lt;br /&gt;
If your calibration is ignored, then you need to do the following: add the appropriate environment variable to either the ''/etc/environment'' file, or the ''.bashrc'' startup script.&lt;br /&gt;
&lt;br /&gt;
[https://help.ubuntu.com/community/EnvironmentVariables Officially speaking], ''/etc/environment'' is the correct place for system-wide environment variables. To add the environment variable to the ''/etc/environment'' file, '''as root''', open ''/etc/environment'' in your text editor, add the following (on a new line) to the file, and save:&lt;br /&gt;
&lt;br /&gt;
 SDL_JOYSTICK_DEVICE=&amp;quot;/dev/input/js0&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Again, use the device information you recorded earlier.&lt;br /&gt;
&lt;br /&gt;
For the change to 'take', you then need to log out and back in again. Rebooting is unnecessary. &lt;br /&gt;
&lt;br /&gt;
If you prefer changing the ''.bashrc'' startup script instead, you should add the above line to ''.bashrc'' in your ''Home'' folder. As the dot in front of the filename indicates, this is a hidden file, so you may need to set the view in your file browser to &amp;quot;Show Hidden Files&amp;quot; before it will become visible. Once done, save the file and log out, then back in.&lt;br /&gt;
&lt;br /&gt;
Explanation: Oolite uses [https://www.libsdl.org/ Simple DirectMedia Layer (SDL)]. for unknown reasons, it appears that sometimes SDL takes raw input from the evdev device drivers, instead of using the correct joystick device. This fix forces SDL to use the &amp;quot;real&amp;quot; joystick driver for input.&lt;br /&gt;
&lt;br /&gt;
== Using Saved Calibration ==&lt;br /&gt;
&lt;br /&gt;
The calibration will be forgotten after rebooting, so to ensure the saved calibration is used, make a file called for example ''run_oolite'' with the following contents: &lt;br /&gt;
&lt;br /&gt;
 #!/bin/bash&lt;br /&gt;
 jscal-restore /dev/input/js0&lt;br /&gt;
 cd ${1%/*}&lt;br /&gt;
 $1&lt;br /&gt;
&lt;br /&gt;
Again, use the device information you recorded earlier. Save the file (which is a bash script) in a folder which is in your system's ''PATH'' or you can save it in the same folder as the ''oolite'' executable. The ''oolite'' executable is located in a folder like this: ''/home/USERNAME/GNUstep/Applications/Oolite/'' which hereafter we'll call ''OOLITE_FOLDER''. Make that file executable (which can usually be done in your distro's file explorer by right clicking on the file and choosing to edit Permissions). Then you can run Oolite in a shell using:&lt;br /&gt;
&lt;br /&gt;
 OOLITE_FOLDER/run_oolite OOLITE_FOLDER/oolite&lt;br /&gt;
&lt;br /&gt;
The first ''OOLITE_FOLDER'' in the command above should be removed if ''run_oolite'' is in your system's ''PATH''.&lt;br /&gt;
&lt;br /&gt;
If you are using the [https://github.com/OoliteProject/OoliteStarter Oolite Starter] then replace ''OOLITE_FOLDER/oolite'' with the path to Oolite Starter which will look something like: ''/opt/oolitestarter-innocuous/bin/OoliteStarter_innocuous''.&lt;br /&gt;
&lt;br /&gt;
== Mapping Axes and Buttons to Keyboard Key Presses ==&lt;br /&gt;
&lt;br /&gt;
Sometimes it is desirable to have an axis act more like a keyboard key press, for example to increase and decrease speed. This can be achieved with the utility [https://github.com/AntiMicroX/antimicrox AntiMicroX], a graphical program used to map joystick and gamepad controls to keyboard, mouse, scripts and macros. More information on Oolite's default keyboard controls can be found [https://wiki.alioth.net/index.php/Oolite_Keyboard_Controls here]. Once you have set up AntiMicroX the way you want, you can use your configuration by modifying the ''run_oolite'' script described earlier:&lt;br /&gt;
&lt;br /&gt;
 #!/bin/bash&lt;br /&gt;
 jscal-restore /dev/input/js0&lt;br /&gt;
 antimicrox --tray &amp;amp;&lt;br /&gt;
 cd ${1%/*}&lt;br /&gt;
 $1&lt;br /&gt;
&lt;br /&gt;
Again, use the device information you recorded earlier.&lt;br /&gt;
&lt;br /&gt;
== Other problems ==&lt;br /&gt;
&lt;br /&gt;
Should you require further guidance in creating or editing the above files, or the methods given above fail to resolve, or don't address your particular problem, please don't hesitate to post a thread detailing the issue, and your attempts to fix it, to the [https://bb.oolite.space/viewforum.php?f=9 Oolite-Linux forum]. The forum has several Linux gurus available, who would be more than happy to assist.&lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
*[[Joysticks and Gamepads]]&lt;br /&gt;
*[[Joysticks: Guide to Setting Up]]&lt;br /&gt;
*[[Keyboard Issues]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Oolite]][[Category:Help pages]]&lt;/div&gt;</summary>
		<author><name>Mcarans</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.alioth.net/index.php?title=Linux_Joysticks_and_Gamepads&amp;diff=86338</id>
		<title>Linux Joysticks and Gamepads</title>
		<link rel="alternate" type="text/html" href="https://wiki.alioth.net/index.php?title=Linux_Joysticks_and_Gamepads&amp;diff=86338"/>
		<updated>2025-07-14T05:28:56Z</updated>

		<summary type="html">&lt;p&gt;Mcarans: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:PS3 Controller.jpeg|right|320px]]&lt;br /&gt;
== Overview ==&lt;br /&gt;
&lt;br /&gt;
Generally speaking, Linux is quite good with joystick and gamepad detection and support, but sometimes things can go wrong. Failing to detect a joystick at all is fairly uncommon, and most reported problems revolve around button detection/assignment, and/or axis range. This article provides information on setting up game controllers so that they work well in Oolite Linux.&lt;br /&gt;
&lt;br /&gt;
== Calibrating a Joystick or Gamepad ==&lt;br /&gt;
&lt;br /&gt;
Although Oolite provides options to set up dead zones, a full calibration within the game is not possible. The best way to calibrate game controllers on Linux is using a utility such as [[https://github.com/Grumbel/jstest-gtk jstest-gtk]] which will probably be present in your distribution's Software Manager. Launch the ''jstest-gtk'' gui (it will probably be located in the System Menu) and, underneath the name of your joystick, it will list the device details, such as &amp;quot;Device:/dev/input/js0&amp;quot;. Keep a record of this device information.&lt;br /&gt;
&lt;br /&gt;
After calibrating and before closing the gui, execute the following command to store the calibration information: &lt;br /&gt;
 &lt;br /&gt;
 sudo jscal-store /dev/input/js0&lt;br /&gt;
&lt;br /&gt;
Ensure you use the device information you recorded earlier.&lt;br /&gt;
&lt;br /&gt;
== Button Detection &amp;amp; Axis Range Problems ==&lt;br /&gt;
&lt;br /&gt;
For unknown reasons, it appears that sometimes SDL ([https://www.libsdl.org/ Simple DirectMedia Layer]) (which is used by Oolite) takes raw input from the evdev device drivers, instead of using the correct joystick device. If this happens, then the calibration will be ignored. By adding the appropriate environment variable to either the ''/etc/environment'' file, or the ''.bashrc'' startup script, you can force SDL to use the &amp;quot;real&amp;quot; joystick driver for input.&lt;br /&gt;
&lt;br /&gt;
[https://help.ubuntu.com/community/EnvironmentVariables Officially speaking], ''/etc/environment'' is the correct place for system-wide environment variables. To add the environment variable to the ''/etc/environment'' file, '''as root''', open ''/etc/environment'' in your text editor, add the following (on a new line) to the file, and save:&lt;br /&gt;
&lt;br /&gt;
 SDL_JOYSTICK_DEVICE=&amp;quot;/dev/input/js0&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Again, use the device information you recorded earlier.&lt;br /&gt;
&lt;br /&gt;
For the change to 'take', you then need to log out and back in again. Rebooting is unnecessary. &lt;br /&gt;
&lt;br /&gt;
If you prefer changing the ''.bashrc'' startup script instead, you should add the above line to ''.bashrc'' in your ''Home'' folder. As the dot in front of the filename indicates, this is a hidden file, so you may need to set the view in your file browser to &amp;quot;Show Hidden Files&amp;quot; before it will become visible. Once done, save the file and log out, then back in.&lt;br /&gt;
&lt;br /&gt;
== Using Saved Calibration ==&lt;br /&gt;
&lt;br /&gt;
The calibration will be forgotten after rebooting, so to ensure the saved calibration is used, make a bash script called for example ''run_oolite'' with: &lt;br /&gt;
&lt;br /&gt;
 #!/bin/bash&lt;br /&gt;
 jscal-restore /dev/input/js0&lt;br /&gt;
 cd ${1%/*}&lt;br /&gt;
 $1&lt;br /&gt;
&lt;br /&gt;
Again, use the device information you recorded earlier. Make that script executable and then you can run Oolite assuming ''run_oolite'' is in your path, using:&lt;br /&gt;
&lt;br /&gt;
 run_oolite PATH_TO_OOLITE&lt;br /&gt;
&lt;br /&gt;
PATH_TO_OOLITE can be something like ''/home/USERNAME/GNUstep/Applications/Oolite/oolite''&lt;br /&gt;
&lt;br /&gt;
If you are using the [[https://github.com/OoliteProject/OoliteStarter Oolite Starter]] then replace PATH_TO_OOLITE with PATH_TO_OOLITE_STARTER (which may look something like: ''/opt/oolitestarter-innocuous/bin/OoliteStarter_innocuous'')&lt;br /&gt;
&lt;br /&gt;
== Mapping Axes and Buttons to Keyboard Key Presses ==&lt;br /&gt;
&lt;br /&gt;
Sometimes it is desirable to have an axis act more like a keyboard key press, for example to increase and decrease speed. This can be achieved with the utility [[https://github.com/AntiMicroX/antimicrox AntiMicroX]], a graphical program used to map gamepad keys to keyboard, mouse, scripts and macros. More information on keyboard controls can be found [[https://wiki.alioth.net/index.php/Oolite_Keyboard_Controls here]]. Once you have set up AntiMicroX the way you want, you can use your configuration by modifying the ''run_oolite'' script described earlier:&lt;br /&gt;
&lt;br /&gt;
 #!/bin/bash&lt;br /&gt;
 jscal-restore /dev/input/js0&lt;br /&gt;
 antimicrox --tray &amp;amp;&lt;br /&gt;
 cd ${1%/*}&lt;br /&gt;
 $1&lt;br /&gt;
&lt;br /&gt;
Again, use the device information you recorded earlier.&lt;br /&gt;
&lt;br /&gt;
== Other problems ==&lt;br /&gt;
&lt;br /&gt;
Should you require further guidance in creating or editing the above files, or the methods given above fail to resolve, or don't address your particular problem, please don't hesitate to post a thread detailing the issue, and your attempts to fix it, to the [https://bb.oolite.space/viewforum.php?f=9 Oolite-Linux forum]. The forum has several Linux gurus available, who would be more than happy to assist.&lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
*[[Joysticks and Gamepads]]&lt;br /&gt;
*[[Joysticks: Guide to Setting Up]]&lt;br /&gt;
*[[Keyboard Issues]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Oolite]][[Category:Help pages]]&lt;/div&gt;</summary>
		<author><name>Mcarans</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.alioth.net/index.php?title=Linux_Joysticks_and_Gamepads&amp;diff=86337</id>
		<title>Linux Joysticks and Gamepads</title>
		<link rel="alternate" type="text/html" href="https://wiki.alioth.net/index.php?title=Linux_Joysticks_and_Gamepads&amp;diff=86337"/>
		<updated>2025-07-14T05:28:03Z</updated>

		<summary type="html">&lt;p&gt;Mcarans: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:PS3 Controller.jpeg|right|320px]]&lt;br /&gt;
== Overview ==&lt;br /&gt;
&lt;br /&gt;
Generally speaking, Linux is quite good with joystick and gamepad detection and support, but sometimes things can go wrong. Failing to detect a joystick at all is fairly uncommon, and most reported problems revolve around button detection/assignment, and/or axis range. This article provides information on setting up game controllers so that they work well in Oolite Linux.&lt;br /&gt;
&lt;br /&gt;
== Calibrating a Joystick or Gamepad ==&lt;br /&gt;
&lt;br /&gt;
Although Oolite provides options to set up dead zones, a full calibration within the game is not possible. The best way to calibrate game controllers on Linux is using a utility such as [[https://github.com/Grumbel/jstest-gtk jstest-gtk]] which will probably be present in your distribution's Software Manager. Launch the ''jstest-gtk'' gui (it will probably be located in the System Menu) and, underneath the name of your joystick, it will list the device details, such as &amp;quot;Device:/dev/input/js0&amp;quot;. Keep a record of this device information.&lt;br /&gt;
&lt;br /&gt;
After calibrating and before closing the gui, execute the following command to store the calibration information: &lt;br /&gt;
 &lt;br /&gt;
 sudo jscal-store /dev/input/js0&lt;br /&gt;
&lt;br /&gt;
Ensure you use the device information you recorded earlier.&lt;br /&gt;
&lt;br /&gt;
== Button Detection &amp;amp; Axis Range Problems ==&lt;br /&gt;
&lt;br /&gt;
For unknown reasons, it appears that sometimes SDL ([https://www.libsdl.org/ Simple DirectMedia Layer]) (which is used by Oolite) takes raw input from the evdev device drivers, instead of using the correct joystick device. If this happens, then the calibration will be ignored. By adding the appropriate environment variable to either the ''/etc/environment'' file, or the ''.bashrc'' startup script, you can force SDL to use the &amp;quot;real&amp;quot; joystick driver for input.&lt;br /&gt;
&lt;br /&gt;
[https://help.ubuntu.com/community/EnvironmentVariables Officially speaking], ''/etc/environment'' is the correct place for system-wide environment variables. To add the environment variable to the ''/etc/environment'' file, '''as root''', open ''/etc/environment'' in your text editor, add the following (on a new line) to the file, and save:&lt;br /&gt;
&lt;br /&gt;
 SDL_JOYSTICK_DEVICE=&amp;quot;/dev/input/js0&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Again, use the device information you recorded earlier.&lt;br /&gt;
&lt;br /&gt;
For the change to 'take', you then need to log out and back in again. Rebooting is unnecessary. &lt;br /&gt;
&lt;br /&gt;
If you prefer changing the ''.bashrc'' startup script instead, you should add the above line to ''.bashrc'' in your ''Home'' folder. As the dot in front of the filename indicates, this is a hidden file, so you may need to set the view in your file browser to &amp;quot;Show Hidden Files&amp;quot; before it will become visible. Once done, save the file and log out, then back in.&lt;br /&gt;
&lt;br /&gt;
== Using Saved Calibration ==&lt;br /&gt;
&lt;br /&gt;
The calibration will be forgotten after rebooting, so to ensure the saved calibration is used, make a bash script called for example ''run_oolite'' with: &lt;br /&gt;
&lt;br /&gt;
 #!/bin/bash&lt;br /&gt;
 jscal-restore /dev/input/js0&lt;br /&gt;
 cd ${1%/*}&lt;br /&gt;
 $1&lt;br /&gt;
&lt;br /&gt;
Again, use the device information you recorded earlier. Make that script executable and then you can run Oolite assuming ''run_oolite'' is in your path, using:&lt;br /&gt;
&lt;br /&gt;
 run_oolite PATH_TO_OOLITE&lt;br /&gt;
&lt;br /&gt;
PATH_TO_OOLITE can be something like ''/home/USERNAME/GNUstep/Applications/Oolite/oolite''&lt;br /&gt;
&lt;br /&gt;
If you are using the [[https://github.com/OoliteProject/OoliteStarter Oolite Starter]] then replace PATH_TO_OOLITE with PATH_TO_OOLITE_STARTER (which may look something like: /opt/oolitestarter-innocuous/bin/OoliteStarter_innocuous)&lt;br /&gt;
&lt;br /&gt;
== Mapping Axes and Buttons to Keyboard Key Presses ==&lt;br /&gt;
&lt;br /&gt;
Sometimes it is desirable to have an axis act more like a keyboard key press, for example to increase and decrease speed. This can be achieved with the utility [[https://github.com/AntiMicroX/antimicrox AntiMicroX]], a graphical program used to map gamepad keys to keyboard, mouse, scripts and macros. More information on keyboard controls can be found [[https://wiki.alioth.net/index.php/Oolite_Keyboard_Controls here]]. Once you have set up AntiMicroX the way you want, you can use your configuration by modifying the ''run_oolite'' script described earlier:&lt;br /&gt;
&lt;br /&gt;
 #!/bin/bash&lt;br /&gt;
 jscal-restore /dev/input/js0&lt;br /&gt;
 antimicrox --tray &amp;amp;&lt;br /&gt;
 cd ${1%/*}&lt;br /&gt;
 $1&lt;br /&gt;
&lt;br /&gt;
Again, use the device information you recorded earlier.&lt;br /&gt;
&lt;br /&gt;
== Other problems ==&lt;br /&gt;
&lt;br /&gt;
Should you require further guidance in creating or editing the above files, or the methods given above fail to resolve, or don't address your particular problem, please don't hesitate to post a thread detailing the issue, and your attempts to fix it, to the [https://bb.oolite.space/viewforum.php?f=9 Oolite-Linux forum]. The forum has several Linux gurus available, who would be more than happy to assist.&lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
*[[Joysticks and Gamepads]]&lt;br /&gt;
*[[Joysticks: Guide to Setting Up]]&lt;br /&gt;
*[[Keyboard Issues]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Oolite]][[Category:Help pages]]&lt;/div&gt;</summary>
		<author><name>Mcarans</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.alioth.net/index.php?title=Linux_Joysticks_and_Gamepads&amp;diff=86336</id>
		<title>Linux Joysticks and Gamepads</title>
		<link rel="alternate" type="text/html" href="https://wiki.alioth.net/index.php?title=Linux_Joysticks_and_Gamepads&amp;diff=86336"/>
		<updated>2025-07-14T05:25:16Z</updated>

		<summary type="html">&lt;p&gt;Mcarans: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:PS3 Controller.jpeg|right|320px]]&lt;br /&gt;
== Overview ==&lt;br /&gt;
&lt;br /&gt;
Generally speaking, Linux is quite good with joystick and gamepad detection and support, but sometimes things can go wrong. Failing to detect a joystick at all is fairly uncommon, and most reported problems revolve around button detection/assignment, and/or axis range. This article provides information on setting up game controllers so that they work well in Oolite Linux.&lt;br /&gt;
&lt;br /&gt;
== Calibrating a Joystick or Gamepad ==&lt;br /&gt;
&lt;br /&gt;
Although Oolite provides options to set up dead zones, a full calibration within the game is not possible. The best way to calibrate game controllers on Linux is using a utility such as [[https://github.com/Grumbel/jstest-gtk jstest-gtk]] which will probably be present in your distribution's Software Manager. Launch the ''jstest-gtk'' gui (it will probably be located in the System Menu) and, underneath the name of your joystick, it will list the device details, such as &amp;quot;Device:/dev/input/js0&amp;quot;. Keep a record of this device information.&lt;br /&gt;
&lt;br /&gt;
After calibrating and before closing the gui, execute the following command to store the calibration information: &lt;br /&gt;
 &lt;br /&gt;
 sudo jscal-store /dev/input/js0&lt;br /&gt;
&lt;br /&gt;
Ensure you use the device information you recorded earlier.&lt;br /&gt;
&lt;br /&gt;
== Button Detection &amp;amp; Axis Range Problems ==&lt;br /&gt;
&lt;br /&gt;
For unknown reasons, it appears that sometimes SDL ([https://www.libsdl.org/ Simple DirectMedia Layer]) (which is used by Oolite) takes raw input from the evdev device drivers, instead of using the correct joystick device. If this happens, then the calibration will be ignored. By adding the appropriate environment variable to either the ''/etc/environment'' file, or the ''.bashrc'' startup script, you can force SDL to use the &amp;quot;real&amp;quot; joystick driver for input.&lt;br /&gt;
&lt;br /&gt;
[https://help.ubuntu.com/community/EnvironmentVariables Officially speaking], ''/etc/environment'' is the correct place for system-wide environment variables. To add the environment variable to the ''/etc/environment'' file, '''as root''', open ''/etc/environment'' in your text editor, add the following (on a new line) to the file, and save:&lt;br /&gt;
&lt;br /&gt;
 SDL_JOYSTICK_DEVICE=&amp;quot;/dev/input/js0&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Again, use the device information you recorded earlier.&lt;br /&gt;
&lt;br /&gt;
For the change to 'take', you then need to log out and back in again. Rebooting is unnecessary. &lt;br /&gt;
&lt;br /&gt;
If you prefer changing the ''.bashrc'' startup script instead, you should add the above line to ''.bashrc'' in your ''Home'' folder. As the dot in front of the filename indicates, this is a hidden file, so you may need to set the view in your file browser to &amp;quot;Show Hidden Files&amp;quot; before it will become visible. Once done, save the file and log out, then back in.&lt;br /&gt;
&lt;br /&gt;
== Using Saved Calibration ==&lt;br /&gt;
&lt;br /&gt;
The calibration will be forgotten after rebooting, so to ensure the saved calibration is used, make a bash script called for example ''run_oolite'' with: &lt;br /&gt;
&lt;br /&gt;
 #!/bin/bash&lt;br /&gt;
 jscal-restore /dev/input/js0&lt;br /&gt;
 cd ${1%/*}&lt;br /&gt;
 $1&lt;br /&gt;
&lt;br /&gt;
Make that script executable and then you can run Oolite assuming ''run_oolite&amp;quot;&amp;quot; is in your path, using:&lt;br /&gt;
&lt;br /&gt;
 run_oolite PATH_TO_OOLITE&lt;br /&gt;
&lt;br /&gt;
PATH_TO_OOLITE can be something like ''/home/USERNAME/GNUstep/Applications/Oolite/oolite''&lt;br /&gt;
&lt;br /&gt;
If you are using the [[https://github.com/OoliteProject/OoliteStarter Oolite Starter]] then replace PATH_TO_OOLITE with PATH_TO_OOLITE_STARTER (which may look something like: /opt/oolitestarter-innocuous/bin/OoliteStarter_innocuous)&lt;br /&gt;
&lt;br /&gt;
== Mapping Axes and Buttons to Keyboard Key Presses ==&lt;br /&gt;
&lt;br /&gt;
Sometimes it is desirable to have an axis act more like a keyboard key press, for example to increase and decrease speed. This can be achieved with the utility [[https://github.com/AntiMicroX/antimicrox AntiMicroX]], a graphical program used to map gamepad keys to keyboard, mouse, scripts and macros. More information on keyboard controls can be found [[https://wiki.alioth.net/index.php/Oolite_Keyboard_Controls here]]. Once you have set up AntiMicroX the way you want, you can use your configuration by modifying the ''run_oolite'' script described earlier:&lt;br /&gt;
&lt;br /&gt;
 #!/bin/bash&lt;br /&gt;
 jscal-restore /dev/input/js0&lt;br /&gt;
 antimicrox --tray &amp;amp;&lt;br /&gt;
 cd ${1%/*}&lt;br /&gt;
 $1&lt;br /&gt;
&lt;br /&gt;
== Other problems ==&lt;br /&gt;
&lt;br /&gt;
Should you require further guidance in creating or editing the above files, or the methods given above fail to resolve, or don't address your particular problem, please don't hesitate to post a thread detailing the issue, and your attempts to fix it, to the [https://bb.oolite.space/viewforum.php?f=9 Oolite-Linux forum]. The forum has several Linux gurus available, who would be more than happy to assist.&lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
*[[Joysticks and Gamepads]]&lt;br /&gt;
*[[Joysticks: Guide to Setting Up]]&lt;br /&gt;
*[[Keyboard Issues]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Oolite]][[Category:Help pages]]&lt;/div&gt;</summary>
		<author><name>Mcarans</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.alioth.net/index.php?title=Joysticks:_Guide_to_Setting_Up&amp;diff=86335</id>
		<title>Joysticks: Guide to Setting Up</title>
		<link rel="alternate" type="text/html" href="https://wiki.alioth.net/index.php?title=Joysticks:_Guide_to_Setting_Up&amp;diff=86335"/>
		<updated>2025-07-14T05:22:02Z</updated>

		<summary type="html">&lt;p&gt;Mcarans: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:TFlight HOTAS 4.png|200px|thumb|right|'''Thrustmaster''' TFlight Hotas 4: Throttle &amp;amp; joystick detachable-ish]]&lt;br /&gt;
'''Cholly's guide to Setting up Joystick Configurations in Oolite 1.90'''&lt;br /&gt;
&lt;br /&gt;
== Introduction ==&lt;br /&gt;
&lt;br /&gt;
This guide deals '''only''' with assigning in-game functions (such as steering or firing a missile) to the axes and buttons on a joystick/throttle.&lt;br /&gt;
&lt;br /&gt;
For setting up an '''axis profile''' (to correct a drunken bias - or to achieve more precision in flight) - read [[Dizzy's guide to Setting up Joystick Axis Profiles in Oolite 1.80|Dizzy's guide to Setting up Joystick Axis Profiles]]&lt;br /&gt;
&lt;br /&gt;
For correcting jitter (''eg'' in a faulty joystick) try out the [[BGS]] OXP with [[Library OXP]]'s F4 screen Config for AddOns.&lt;br /&gt;
&lt;br /&gt;
=== Important Points ===&lt;br /&gt;
'''*Be careful''' of what you assign to buttons/axes on the base of the joystick/throttle. You will need to let go of the joystick/throttle to get to the buttons on the base. If this is in the middle of a combat, you could find yourself well and truly stuffed, as you can no longer steer/change speed. So avoid assigning functions such as witchspace fuel injectors (i) or firing missiles (m) to the base of your unit!&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
[[File:Game Start-up screen (with BGS).png|thumb|right|Oolite's Opening Screen (garnished with [[BGS]])&amp;lt;br&amp;gt;&amp;quot;Game Options&amp;quot; is in the middle of the list]]&lt;br /&gt;
== Finding the &amp;quot;Joystick Configuration&amp;quot; screen ==&lt;br /&gt;
&lt;br /&gt;
=== On starting up Oolite ===&lt;br /&gt;
On the opening screen, skip over &amp;quot;Start New Commander&amp;quot;/&amp;quot;Load Commander&amp;quot; etc. and select &amp;quot;Game Options&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
&amp;quot;Joystick Configuration&amp;quot; will be greyed out on the Game Options screen if no controller/joystick is plugged in/detected.&lt;br /&gt;
=== Midgame: docked ===&lt;br /&gt;
Press the &amp;lt;font color=&amp;quot;Red&amp;quot;&amp;gt;'''2/F2'''&amp;lt;/font&amp;gt; button and then select &amp;quot;Game Options&amp;quot; as above.&lt;br /&gt;
=== Midgame: in flight ===&lt;br /&gt;
Pause your game (press &amp;lt;font color=&amp;quot;Red&amp;quot;&amp;gt;'''p'''&amp;lt;/font&amp;gt; to pause/unpause) and then press &amp;lt;font color=&amp;quot;Red&amp;quot;&amp;gt;'''2/F2'''&amp;lt;/font&amp;gt; and select &amp;quot;Game Options&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
Don't forget to ''unpause'' your game!&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Gallery of Configurations Screens (Oolite v.1.90) ===&lt;br /&gt;
There are four screens, and a fifth for the 3 axis profiles (toggling between pitch/roll/yaw)&amp;lt;br&amp;gt;&lt;br /&gt;
Click on an image to enlarge&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
Image:Configure Joysticks 1.png &lt;br /&gt;
Image:Configure Joysticks 2.png &lt;br /&gt;
Image:Configure Joysticks 3.png &lt;br /&gt;
Image:Configure Joysticks 4.png &lt;br /&gt;
Image:Configure Joysticks - Axis Profile.png&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
Oolite v.1.91 has ''seven'' screens!&lt;br /&gt;
&lt;br /&gt;
== Joysticks: Some definitions ==&lt;br /&gt;
''For more details on Throttles, see Thrustmaster TM4 &amp;amp; CH Throttle Pro below''&lt;br /&gt;
{| cellspacing=&amp;quot;30&amp;quot; align=&amp;quot;center&amp;quot; border=&amp;quot;0&amp;quot; text-align=&amp;quot;center&amp;quot;&lt;br /&gt;
| align=&amp;quot;center&amp;quot; width=&amp;quot;172&amp;quot; height=&amp;quot;20&amp;quot;|[[File:Joystick Definitions.png|300px|thumb|&amp;lt;br&amp;gt;|1. stick, 2. base, 3. trigger, 4. extra buttons, 5. 2-way switch, 6. thumbwheel axis, 7. hat switch (4-way), 8. suction cup]]&lt;br /&gt;
| align=&amp;quot;center&amp;quot; width=&amp;quot;172&amp;quot; height=&amp;quot;20&amp;quot;|[[File:Joystick Directions.png|300px|thumb|&amp;lt;br&amp;gt;|Hat switch in green at top, Thumbwheel axis in yellow at bottom]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
*'''Axis'''&lt;br /&gt;
:An analogue-style input where your movements select the ''amount'' of change (not available for purely keyboard inputs)&lt;br /&gt;
:''There are at least 4 types of axis:''&lt;br /&gt;
::The usual two axes of a joystick (forwards ↔ backwards &amp;amp; left ↔ right) - '''x''' &amp;amp; '''y''' ''above right''&lt;br /&gt;
::Some joysticks have twist as well (clockwise ↔ anti-clockwise) - '''z''' ''above right''&lt;br /&gt;
::A '''thumbwheel''' - '''6''' ''above left'' (often used for speed in the absence of a separate throttle unit)&lt;br /&gt;
::A '''mini-joystick''' - ''not shown above'' - can look identical to the hat switch, but with very different operation - will add two more '''x''' &amp;amp; '''y''' axes&lt;br /&gt;
&lt;br /&gt;
*'''Button'''&lt;br /&gt;
:A more digital On/Off input: Either (i) press once (F2 rear view), (ii) keep pressed (Fire laser)&lt;br /&gt;
:''There are at least 6 types of button:'' &lt;br /&gt;
::A '''button''' that looks like a button! - '''4''' ''above left''&lt;br /&gt;
::A '''switch''' (operates like 2 buttons) - '''7''' ''above left''&lt;br /&gt;
::A '''trigger''' (operates like a button) - '''3''' ''above left''&lt;br /&gt;
::A '''hat switch''' (operates like 4 buttons) - '''6''' ''above left''&lt;br /&gt;
::A button incorporated into a mini-joystick - ''not shown here - but see the CH Pro Throttle below''&lt;br /&gt;
::A '''rotary switch''' where one turns the knob to select one of a number of options - ''not shown here - but see the black left hand knobs on the Saitek radio panel [[Buttonboxes#Saitek|here]]''&lt;br /&gt;
&lt;br /&gt;
*'''Hat switch''' (used to be called a coolie hat switch) - ''see buttons''&lt;br /&gt;
*'''POV switch''' ('''P'''oint '''O'''f '''V'''iew switch – same as hat switch) - ''see buttons''&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Joysticks ==&lt;br /&gt;
&lt;br /&gt;
=== CH Combat Stick &amp;amp; Throttle Pro ===&lt;br /&gt;
[[File:CH Combat Stick with Pro Throttle.png|450px|thumb|right|Throttle Pro with Combat Stick - the mid-range of CH's 3 joysticks]]&lt;br /&gt;
CH's stuff is rugged and was expected to last for decades. It is less so since the company changed changed hands, but many feel it is still the best in this respect. It is also light-weight and looks clunky! And big for the hands. &amp;lt;br&amp;gt;&lt;br /&gt;
The '''CH Combat Stick''' has a two-axis joystick only (no twist) with fine-tuning thumbwheels which can eliminate drunkenness. There is the trigger, a pinky button (Joy_4) and 4 other buttons (Joy_5 is on the far side of the joystick, reached by the index finger). There are two hat-switches. There is a 3rd thumbwheel which can act as a throttle. &amp;lt;br&amp;gt;&lt;br /&gt;
'''The Pro Throttle''' has ''all'' the controls on the throttle itself - none on the base (''ie'' you need never take your hand off the throttle). There are 3 buttons behind the throttle handle and 5 hat-switches! The rightmost of these on the 'lozenge' on the side of the throttle is actually a mini-joystick which can be pressed and acts as a fourth button. &amp;lt;br&amp;gt;&lt;br /&gt;
'''The CH Control Manager Software''' only works on Windows computers. It is supposedly top notch in terms of capability - and also highly complex to master!&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
'''Cranky's''' settings: Cranky is new to Oolite, and favours the [[Roll vs Yaw crusades|yaw]] take on astrogation.&lt;br /&gt;
*Joy Y axis - pitch&lt;br /&gt;
*Joy X axis - yaw&lt;br /&gt;
*Throttle - speed&lt;br /&gt;
*Mini-joystick - only x-axis - for roll only (y-axis and button not used)&lt;br /&gt;
*Top right hat-switch on Joystick - F1-F4 POV settings&lt;br /&gt;
*Bottom left hat switch on Joystick - ''combat settings'': UP (ECM: '''e'''); DOWN (Activate 1st fast equipment ''defensive'' '''Tab'''); RIGHT (Activate *2nd fast equipment offensive '''0'''); LEFT unset. &lt;br /&gt;
*Left-hand hat switch on throttle side - unset (''too often fiddled with by accident'').&lt;br /&gt;
*Top hat switch on throttle side - ''Special .oxp equipment'': UP (Prime: '''shift-n'''); DOWN (Activate: '''n'''); LEFT (Modify: '''b''')&lt;br /&gt;
*Bottom hat switch on throttle side - ''Docking'': UP (Fast docking: '''shift-c'''); DOWN (Blue Danube docking: '''c'''); LEFT (request docking clearance: '''shift-l''')&lt;br /&gt;
*Hat switch on back side of throttle - ''Scanner/Compass'': UP (Scanner Zoom: '''z'''); DOWN (Unzoom: '''shift-z'''); LEFT ([[ASC]] next target: '''\''')&lt;br /&gt;
*The right side settings of the throttle hat switches not used (waiting for reverse prime '''ctrl-shift-n''' &amp;amp; ASC last target '''|''' options to be added to the configuration pages).&lt;br /&gt;
*Joy_1 - (trigger) - fire laser ('''a''')&lt;br /&gt;
*Joy_2 - toggle ID ('''r''')&lt;br /&gt;
*Joy_3 - precison flying toggle ('''ctrl''')&lt;br /&gt;
*Joy_4 - fire missile ('''m''')&lt;br /&gt;
*Joy_5 - toggle weapons on/off ('''shift-hyphen''' or '''_''')&lt;br /&gt;
*Joy_6 - unset missile ('''u''') ''to neuter the ILS and the Automatic Targetting when they select an unwanted target''&lt;br /&gt;
*3 buttons on the back side of the throttle: ''drives!'': Witchfuel injectors ('''i'''); Torus drive ('''j''') &amp;amp; Witchspace drive ('''h''')&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
[[File:Logitech joystick.jpg|300px|thumb|right|note right fore-finger on black ''trigger'', right thumb on white ''button 2'' &amp;amp; left thumb on ''throttle'']]&lt;br /&gt;
[[File:Logitech Stick Map.jpg|400px|thumb|right|Joystick Map]]&lt;br /&gt;
=== Logitech Extreme 3D Pro ===&lt;br /&gt;
:Note: as with a number of these items, this joystick has been &amp;quot;produced&amp;quot; by a number of different companies over the past decade and under a range of different names!&lt;br /&gt;
&lt;br /&gt;
*The Logitech joystick has a 3-way axis for the stick (including the 3rd twist axis) and another throttle axis on the base.&lt;br /&gt;
*There are twelve buttons: 6 on the stick (including the trigger and button 2 on the left of the stick where the thumb rests) and 6 on the base.&lt;br /&gt;
*The hat switch on the stick is actually an 8-way switch which ''can'' function as a mini-joystick giving another 2 axes if desired.&lt;br /&gt;
*The software for the Logitech joystick allows the buttons to be programmed to operate macros if so desired.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
[[User:Cody|Cody]]'s settings for the Logitech Extreme 3D Pro: ''Cody uses this joystick with a keyboard. The precision toggle is '''not''' used because the axis profiles were set so as to no longer need it''. Cody is an old timer who mastered Classic Elite before joining the Oolite boards over a decade ago.  &lt;br /&gt;
*Axis 1 - roll ('''left'''/'''right''' arrows)&lt;br /&gt;
*Axis 2 - pitch ('''up'''/'''down''' arrows)&lt;br /&gt;
*Axis 3 - not used (twist): ''Cody favours the Rollers in the [[Roll vs Yaw crusades]]''&lt;br /&gt;
*Axis 4 - not used (throttle)&lt;br /&gt;
*Axis 5 - (hatswitch) used instead as buttons - for views - left &amp;amp; right ('''F3''' &amp;amp; '''F4''')&lt;br /&gt;
*Axis 6 - (hatswitch) used instead as buttons - for views - up &amp;amp; down ('''F1''' &amp;amp; '''F2''')&lt;br /&gt;
*Button 1 - (trigger) - fire laser ('''a''')&lt;br /&gt;
*Button 2 - ''docking'' - request docking clearance ('''shift-l''')&lt;br /&gt;
*Button 3 - ''missile'' - arm missile ('''t''')&lt;br /&gt;
*Button 4 - ''missile'' - fire missile ('''m''')&lt;br /&gt;
*Button 5 - take snapshot ('''*''')&lt;br /&gt;
*Button 6 - ''missile'' - cycle missile ('''y''')&lt;br /&gt;
*Button 7 - next [[ASC]] compass target ('''\''')&lt;br /&gt;
*Button 8 - not yet used&lt;br /&gt;
*Button 9 - ''docking'' - Blue Danube docking computer ('''c''')&lt;br /&gt;
*Button 10 - ''docking'' - fast docking computer ('''shift-c''')&lt;br /&gt;
*Button 11 - Activate .oxp equipment ('''n''')&lt;br /&gt;
*Button 12 - Prime .oxp equipment ('''shift-n''')&lt;br /&gt;
:And see [https://app.box.com/s/gythr56ev88f1uvoijevfqncwmmjtlat Cody's 2017] key-bindings, before axis bindings. Not all buttons used.&lt;br /&gt;
----&lt;br /&gt;
[https://bb.oolite.space/viewtopic.php?p=261310#p261310 Nite Owl's] settings for the Logitech Extreme 3D Pro. Another veteran, like Cody, but with a more combat oriented set of joystick bindings.&lt;br /&gt;
&lt;br /&gt;
*Axis 1 - Joystick left and right axis as Left and Right Roll. (Editorial note: like Cody, a veteran elitist in the [[Roll vs Yaw crusades]])&lt;br /&gt;
*Axis 2 - Joystick forward and back axis as Pitch Up and Down.&lt;br /&gt;
*Axis 3 - Joystick left and right twist axis as Pitch Left and Right.&lt;br /&gt;
*Axis 4 - The throttle axis for the ship's Throttle.&lt;br /&gt;
*The hat switch for changing views in the obvious manner.&lt;br /&gt;
*Button 1              Fire main weapon (Laser) ('''a''')&lt;br /&gt;
*Button 2              Fire secondary weapon (Pylon) ('''m''')&lt;br /&gt;
*Button 3              Targeting I.D. On/Off ('''r''')&lt;br /&gt;
*Button 4              Weapons On/Off (shift-hyphen: '''_''')&lt;br /&gt;
*Button 5              Torus Drive On/Off ('''j''')&lt;br /&gt;
*Button 6              Fuel Injectors (Hold to Use) ('''i''')&lt;br /&gt;
*Button 7              Set Equipment Mode ('''b''')&lt;br /&gt;
*Button 8              Prime Equipment ('''shift-n''')&lt;br /&gt;
*Button 9              Target Incoming Missile  ('''shift-t''')&lt;br /&gt;
*Button 10             Fast Target Selector (OXZ set up as Fast Activate 1, key = zero, and then the zero key is mapped to the Joystick)&lt;br /&gt;
*Button 11             Scanner Zoom  ('''z''')&lt;br /&gt;
*Button 12             Activate E.C.M. ('''e''')&lt;br /&gt;
&lt;br /&gt;
&amp;quot;''Axes 2 &amp;amp; 3 may seem counter intuitive - but they work for me. My guess is that most Commanders would have these two reversed. Also have some very nice spline curves set up as per Dizzy's Guide mentioned at the top and bottom of this page. Everything else is accessed via the keyboard controls. The Advanced Navigation Computer (OXZ) is mapped to Fast Activate 2, key = Tab. Docking Clearance (mandatory at all but Rock Hermits in my Ooniverse) is accessed via the Communications M.F.D. (OXZ). With the Communications M.F.D. active, use the '''n''' key to select the &amp;quot;Request Docking Clearance&amp;quot; option and then press '''b'''. All other keyboard commands are at their default settings.''&amp;quot; (Nite Owl)&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
[[File:Logitech X56.png|right|320px]]&lt;br /&gt;
=== Logitech X52 Pro HOTAS ===&lt;br /&gt;
See Darkened Room's partial set up [https://drive.google.com/drive/folders/1dM9k9Cl9TFGU-S0cBOkPd39LB7RVyJOm?usp=sharing here] (2023: layout pdf &amp;amp; config file).&lt;br /&gt;
&lt;br /&gt;
=== Logitech G X56 HOTAS ===&lt;br /&gt;
Note that Logitech bought out MadCatz in 2016 (who had bought out Saitek in 2007).&lt;br /&gt;
 X-56 H.O.T.A.S. System (2018)&lt;br /&gt;
 X-55 Rhino H.O.T.A.S. System (2014)&lt;br /&gt;
 X-65F Flight Combat Control System (2008)&lt;br /&gt;
 X52 Pro Flight Control System (2007)&lt;br /&gt;
 X52 Flight Control System (2004)&lt;br /&gt;
 X45 Digital Joystick and Throttle (2001)&lt;br /&gt;
 X36 Flight Control System (1999), consisting of the X36F Control stick and X35T throttle&lt;br /&gt;
&lt;br /&gt;
There may be issues with playing Oolite in Windows with this HOTAS - the throttle may not connect.&lt;br /&gt;
&lt;br /&gt;
:If so, you may need to (re)-install the Logitech X56 software from [https://support.logi.com/hc/en-us/articles/360024844133--Downloads-X56-Space-Flight-H-O-T-A-S- here]&lt;br /&gt;
&lt;br /&gt;
:Once that's installed you can go into the X56 &amp;quot;HUD&amp;quot; program and go to Programming. From there, select the Throttle.&lt;br /&gt;
&lt;br /&gt;
:You then need to create a new profile and start adding your controls to it. The Logitech manual is a little obtuse on the subject but it gets the job done. In order for Oolite to effectively recognize the throttle axis you need to set it to Band mode, which lets you assign W to the lower third of the band, S to the upper third (yes, these are reversed from expectation) and nothing to the central band.&lt;br /&gt;
&lt;br /&gt;
:After that the rest of the controls are pretty easy to set up.&lt;br /&gt;
&lt;br /&gt;
:Then you need to save and activate the profile - there's a button on the same programming screen, or you use the background program in the carat ( ^ ) menu on the Taskbar. If you're using the background program, right click on the program icon and select your saved profile.&lt;br /&gt;
&lt;br /&gt;
:Once activated, the software will override your default settings and Oolite will accept those commands instead of the throttle's &amp;quot;real&amp;quot; inputs. You can then &amp;quot;clear&amp;quot; the profile if you want to play a different game. (Details from [https://bb.oolite.space/viewtopic.php?p=281448#p281448 Arquebus 2021]).&lt;br /&gt;
&lt;br /&gt;
Arquebus also has a [https://www.youtube.com/watch?v=llQk_J0Ty38&amp;amp;list=PLsYaAtYv_5eUpD3FBWQk7XQuKQQsrVhNV&amp;amp;index=10 youtube video] explaining his set up (it includes Touch Portal)&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Thrustmaster TM4 ===&lt;br /&gt;
[[File:TFlight HOTAS 4.png|250px|thumb|right|note that joystick and throttle units have not been separated]]&lt;br /&gt;
There are some 3 very similar Thrustmaster entry-level HOTAS ('''H'''ands '''o'''n '''T'''hrottle '''a'''nd '''S'''tick) sets: T.Flight 3, 4 &amp;amp; X. They seem mostly designed for those using gaming consoles as the buttons on each are quite limited in number.&lt;br /&gt;
&lt;br /&gt;
They are very nicely designed - nice curves, screw holes at the bottom for attaching to something heavy like a desk (if so desired), an Allen key (living in a base recess) to separate the two halves of the throttle and joystick, a simple knob to stiffen up the joystick ''etc''. Another point is that since the joystick and throttle are wired together, they only occupy one USB slot on the dreaded computer.&lt;br /&gt;
&lt;br /&gt;
*The TM4 joystick has a 3-way axis for the stick (including the 3rd twist axis - disable-able with a screwdriver), a throttle axis on the left, and a fifth axis (rudder) on the back of the throttle stick.&lt;br /&gt;
*There are 13 buttons: 4 on the stick (including the trigger) and 6 on the throttle and 3 on the base of the throttle.&lt;br /&gt;
*The hat switch on the stick is a regular 4-way switch.&lt;br /&gt;
*The software for the TM3/4/X hotas is needed. It allows the PS button on the base of the throttle to toggle between vanilla PlayStation mode (where the twist joystick z-axis and the throttle's rudder axis are disabled) and Joystick mode where everything works.&lt;br /&gt;
&lt;br /&gt;
==== Use with AppleMac ==== &amp;lt;!-- Apple AppleMac Thrustmaster TFlight HOTAS_4 TM4 --&amp;gt;&lt;br /&gt;
It seems that this is not compatible with the AppleMac, with the twist, throttle and axis on the back of the throttle not seeming functional.&lt;br /&gt;
What neither Thrustmaster nor Apple can be bothered to tell you is that you need to keep the '''PS''', '''SHARE''' &amp;amp; '''OPTIONS''' buttons held down while you plug it into your AppleMac. The green light should then come on under your PS button, and you should find the HOTAS fully functional. This is without the Thrustmaster software being loaded. This worked for Cholmondely but not for Murgh.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
[[User:Cholmondely|Cholly]]'s settings: Cholly uses this HOTAS with an Elgato [[Buttonboxes|Streamdeck]], so the confusing missile controls are ''there'' where they can be clearly labelled and understood. Cholly is quite new to Oolite, and has no other real experience of space sims.&lt;br /&gt;
&lt;br /&gt;
*Axis 1 - (Joystick left/right): roll (left/right arrows) - Cholly read too many of Cody's old BB posts and got converted to rolling!&lt;br /&gt;
*Axis 2 - (Joystick left/right): pitch (up/down arrows)&lt;br /&gt;
*Axis 3 - (throttle): speed ('''w''' and '''s''')&lt;br /&gt;
*Axis 4 - (twist on joystick): not used ''Cholly finds 3 axes on the same stick too confusing for words''&lt;br /&gt;
*Axis 5 - ''possibly refers to optional pedals?''&lt;br /&gt;
*Axis 6 - (rudder on throttle): yaw - (''',''' &amp;amp; '''.''')&lt;br /&gt;
*Button 1 - (trigger on joystick): fire laser ('''a''')&lt;br /&gt;
*Button 2 - (L1 button): witchfuel injectors ('''i''')&lt;br /&gt;
*Button 3 - (R3 button): roll/pitch Precision toggle (sort of '''ctrl''' but as a toggle: Cholly has yet to master the art of splining - see Dizzy's Guide) &lt;br /&gt;
*Button 4 - (L3 button): Toggle ID ('''r''')&lt;br /&gt;
*Button 5 - (square on button): ECM ('''e''')&lt;br /&gt;
*Button 6 - (x on button): Activate first fast equipment (defensive) ('''Tab''')&lt;br /&gt;
*Button 7 - (circle on button): Activate second fast equipment (offensive) ('''0''')&lt;br /&gt;
*Button 8 - (triangle on button): toggle weapons (shift-hyphen: '''_''')&lt;br /&gt;
*Button 9 - (R2 button): zoom scanner ('''z''')&lt;br /&gt;
*Button 10 - (L2 button): reset scanner ('''shift-z''')&lt;br /&gt;
*Button 11 - (Share button): ''hyperspeed'' - Torus jump drive ('''j''') &lt;br /&gt;
*Button 12 - (Options button): ''hyperdrive'' - Witchspace drive ('''h''')&lt;br /&gt;
*Button 13 - (PS red/green LED button): not used (as it disables rudder yawing)&lt;br /&gt;
*Hat Switch - (on joystick): used as 4 buttons - for the 4 views - ('''F1 - F4''')&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
----&lt;br /&gt;
== Controllers ==&lt;br /&gt;
&lt;br /&gt;
=== Sony PlayStation ===&lt;br /&gt;
[[File:Controller- Sony PlayStation.png]]&amp;lt;br&amp;gt;&lt;br /&gt;
This mapping is from 2015/6 at which stage it did not function when the ship was docked.&lt;br /&gt;
From [https://bb.oolite.space/viewtopic.php?f=2&amp;amp;t=17985&amp;amp;p=246778#p246778  this] BB thread.&lt;br /&gt;
&lt;br /&gt;
=== Logitech dual-action Profiler ===&lt;br /&gt;
[[File:Controller- Logitech dual-action Profiler.gif]]&amp;lt;br&amp;gt;&lt;br /&gt;
This mapping is from 2013. A ''shift key'' doubles the mapping potentialities.&lt;br /&gt;
From [https://bb.oolite.space/viewtopic.php?p=202759#p202759 this] BB thread.&lt;br /&gt;
&lt;br /&gt;
=== Logitech F310 ===&lt;br /&gt;
&lt;br /&gt;
 Left stick up/down: pitch up/down&lt;br /&gt;
 Left stick left/right: yaw left/right (I know, I know...)&lt;br /&gt;
 Left stick push: Request docking clearance (Shift-L)&lt;br /&gt;
 &lt;br /&gt;
 Right stick up/down: speed increase/decrease (W/S)&lt;br /&gt;
 Right stick left/right: roll left/right&lt;br /&gt;
 Right stick push: ECM (E)&lt;br /&gt;
 &lt;br /&gt;
 4 way hat: views (F1/2/3/4)&lt;br /&gt;
 &lt;br /&gt;
 A Button: Fire laser (A)&lt;br /&gt;
 B Button: Fire missile (M)&lt;br /&gt;
 X Button: Space compass next target (\)&lt;br /&gt;
 Y Button: Missile target seek (T) &lt;br /&gt;
 &lt;br /&gt;
 View Button (Back button on the F310): Fast activate second equipment (ie Tab key)&lt;br /&gt;
 Menu Button (Start button on the F310): Begin hyperspace countdown (H)&lt;br /&gt;
 &lt;br /&gt;
 LB: Engage torus (J)&lt;br /&gt;
 RB: Injectors (I)&lt;br /&gt;
 LT: Fast activate first equipment (ie 0 key)&lt;br /&gt;
 RT: Activate ID recognition (R)&lt;br /&gt;
&lt;br /&gt;
[https://bb.oolite.space/viewtopic.php?p=257091#p257091 Phkb, 2017]&lt;br /&gt;
&lt;br /&gt;
== Problem Solving ==&lt;br /&gt;
*Is your joystick compatible with your computer?&lt;br /&gt;
*Do you have too many joysticks/controllers/USB gadgets [https://bb.oolite.space/viewtopic.php?f=2&amp;amp;t=20894 plugged in]?&lt;br /&gt;
*Does your joystick make your craft swerve to the side (See Dizzy's Guide below)?&lt;br /&gt;
&lt;br /&gt;
== History ==&lt;br /&gt;
The code for all this was published by Kanthoney back in February 2014. Dizzy's guide was crucial in explaining it all to people (July '14). In the years since, it has been expanded.&lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
* [[Dizzy's guide to Setting up Joystick Axis Profiles]] (splines and stuff!)&lt;br /&gt;
* [[Joysticks and Gamepads]] (contains instructions for eliminating jitter from your joystick. Some throttles jitter when &amp;quot;off&amp;quot;, causing &amp;quot;engine-revving&amp;quot; sounds with BGS)&lt;br /&gt;
* [[Linux Joysticks and Gamepads]] (Guide to setting up game controllers in Linux)&lt;br /&gt;
* [https://bb.oolite.space/viewtopic.php?f=2&amp;amp;t=20841 Joysticks]: how to configure (BB thread basis for this page).&lt;br /&gt;
* [https://bb.oolite.space/viewtopic.php?f=2&amp;amp;t=17315 Ship Tuning 2015]: how to dampen the agility of your ship - and has notes on altering the joystick precision setting&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [https://bb.oolite.space/viewtopic.php?f=6&amp;amp;t=15770 2013] thread about coding Oolite for Joysticks (Macs vs Windows/Linux).&lt;br /&gt;
* [[AppleMac]] - see section on HOTAS for some background.&lt;br /&gt;
* [https://bb.oolite.space/viewtopic.php?f=8&amp;amp;t=17857 2015] thread about problems with setting up several Windows joysticks (with Linux mentions)&lt;br /&gt;
* [https://bb.oolite.space/viewtopic.php?f=2&amp;amp;t=17985 2016] thread about T.FlightHotas4, Logitech Extreme 3D Pro, controllers &amp;amp; yaw issues. &lt;br /&gt;
* [https://bb.oolite.space/viewtopic.php?f=8&amp;amp;t=11987 2012-13] thread about the PS3 controller&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [https://bb.oolite.space/viewtopic.php?f=2&amp;amp;t=19309 2018] Is it possible to control OOlite entirely with Joystick/Gamepad? &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*[https://bb.oolite.space/viewtopic.php?f=8&amp;amp;t=6958 2009] Old thread about yaw and throttle problems (now fixed in Oolite code). Links to older threads.&lt;br /&gt;
&lt;br /&gt;
*[https://bb.oolite.space/viewtopic.php?f=6&amp;amp;t=5428 Force-Feedback Joystick Support?] (2008-17: see Getafix's last posts for Linux)&lt;br /&gt;
&lt;br /&gt;
=== Other advice pages ===&lt;br /&gt;
*[[How do I ...]] dock / succeed in trading / win a fight / configure my controller/joystick ''etc''&lt;br /&gt;
&lt;br /&gt;
[[Category:Oolite]][[Category:Factual]][[Category:Help pages]]&lt;/div&gt;</summary>
		<author><name>Mcarans</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.alioth.net/index.php?title=Joysticks:_Guide_to_Setting_Up&amp;diff=86334</id>
		<title>Joysticks: Guide to Setting Up</title>
		<link rel="alternate" type="text/html" href="https://wiki.alioth.net/index.php?title=Joysticks:_Guide_to_Setting_Up&amp;diff=86334"/>
		<updated>2025-07-14T05:21:07Z</updated>

		<summary type="html">&lt;p&gt;Mcarans: Add Linux joysticks link&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:TFlight HOTAS 4.png|200px|thumb|right|'''Thrustmaster''' TFlight Hotas 4: Throttle &amp;amp; joystick detachable-ish]]&lt;br /&gt;
'''Cholly's guide to Setting up Joystick Configurations in Oolite 1.90'''&lt;br /&gt;
&lt;br /&gt;
== Introduction ==&lt;br /&gt;
&lt;br /&gt;
This guide deals '''only''' with assigning in-game functions (such as steering or firing a missile) to the axes and buttons on a joystick/throttle.&lt;br /&gt;
&lt;br /&gt;
For setting up an '''axis profile''' (to correct a drunken bias - or to achieve more precision in flight) - read [[Dizzy's guide to Setting up Joystick Axis Profiles in Oolite 1.80|Dizzy's guide to Setting up Joystick Axis Profiles]]&lt;br /&gt;
&lt;br /&gt;
For correcting jitter (''eg'' in a faulty joystick) try out the [[BGS]] OXP with [[Library OXP]]'s F4 screen Config for AddOns.&lt;br /&gt;
&lt;br /&gt;
=== Important Points ===&lt;br /&gt;
'''*Be careful''' of what you assign to buttons/axes on the base of the joystick/throttle. You will need to let go of the joystick/throttle to get to the buttons on the base. If this is in the middle of a combat, you could find yourself well and truly stuffed, as you can no longer steer/change speed. So avoid assigning functions such as witchspace fuel injectors (i) or firing missiles (m) to the base of your unit!&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
[[File:Game Start-up screen (with BGS).png|thumb|right|Oolite's Opening Screen (garnished with [[BGS]])&amp;lt;br&amp;gt;&amp;quot;Game Options&amp;quot; is in the middle of the list]]&lt;br /&gt;
== Finding the &amp;quot;Joystick Configuration&amp;quot; screen ==&lt;br /&gt;
&lt;br /&gt;
=== On starting up Oolite ===&lt;br /&gt;
On the opening screen, skip over &amp;quot;Start New Commander&amp;quot;/&amp;quot;Load Commander&amp;quot; etc. and select &amp;quot;Game Options&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
&amp;quot;Joystick Configuration&amp;quot; will be greyed out on the Game Options screen if no controller/joystick is plugged in/detected.&lt;br /&gt;
=== Midgame: docked ===&lt;br /&gt;
Press the &amp;lt;font color=&amp;quot;Red&amp;quot;&amp;gt;'''2/F2'''&amp;lt;/font&amp;gt; button and then select &amp;quot;Game Options&amp;quot; as above.&lt;br /&gt;
=== Midgame: in flight ===&lt;br /&gt;
Pause your game (press &amp;lt;font color=&amp;quot;Red&amp;quot;&amp;gt;'''p'''&amp;lt;/font&amp;gt; to pause/unpause) and then press &amp;lt;font color=&amp;quot;Red&amp;quot;&amp;gt;'''2/F2'''&amp;lt;/font&amp;gt; and select &amp;quot;Game Options&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
Don't forget to ''unpause'' your game!&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Gallery of Configurations Screens (Oolite v.1.90) ===&lt;br /&gt;
There are four screens, and a fifth for the 3 axis profiles (toggling between pitch/roll/yaw)&amp;lt;br&amp;gt;&lt;br /&gt;
Click on an image to enlarge&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
Image:Configure Joysticks 1.png &lt;br /&gt;
Image:Configure Joysticks 2.png &lt;br /&gt;
Image:Configure Joysticks 3.png &lt;br /&gt;
Image:Configure Joysticks 4.png &lt;br /&gt;
Image:Configure Joysticks - Axis Profile.png&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
Oolite v.1.91 has ''seven'' screens!&lt;br /&gt;
&lt;br /&gt;
== Joysticks: Some definitions ==&lt;br /&gt;
''For more details on Throttles, see Thrustmaster TM4 &amp;amp; CH Throttle Pro below''&lt;br /&gt;
{| cellspacing=&amp;quot;30&amp;quot; align=&amp;quot;center&amp;quot; border=&amp;quot;0&amp;quot; text-align=&amp;quot;center&amp;quot;&lt;br /&gt;
| align=&amp;quot;center&amp;quot; width=&amp;quot;172&amp;quot; height=&amp;quot;20&amp;quot;|[[File:Joystick Definitions.png|300px|thumb|&amp;lt;br&amp;gt;|1. stick, 2. base, 3. trigger, 4. extra buttons, 5. 2-way switch, 6. thumbwheel axis, 7. hat switch (4-way), 8. suction cup]]&lt;br /&gt;
| align=&amp;quot;center&amp;quot; width=&amp;quot;172&amp;quot; height=&amp;quot;20&amp;quot;|[[File:Joystick Directions.png|300px|thumb|&amp;lt;br&amp;gt;|Hat switch in green at top, Thumbwheel axis in yellow at bottom]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
*'''Axis'''&lt;br /&gt;
:An analogue-style input where your movements select the ''amount'' of change (not available for purely keyboard inputs)&lt;br /&gt;
:''There are at least 4 types of axis:''&lt;br /&gt;
::The usual two axes of a joystick (forwards ↔ backwards &amp;amp; left ↔ right) - '''x''' &amp;amp; '''y''' ''above right''&lt;br /&gt;
::Some joysticks have twist as well (clockwise ↔ anti-clockwise) - '''z''' ''above right''&lt;br /&gt;
::A '''thumbwheel''' - '''6''' ''above left'' (often used for speed in the absence of a separate throttle unit)&lt;br /&gt;
::A '''mini-joystick''' - ''not shown above'' - can look identical to the hat switch, but with very different operation - will add two more '''x''' &amp;amp; '''y''' axes&lt;br /&gt;
&lt;br /&gt;
*'''Button'''&lt;br /&gt;
:A more digital On/Off input: Either (i) press once (F2 rear view), (ii) keep pressed (Fire laser)&lt;br /&gt;
:''There are at least 6 types of button:'' &lt;br /&gt;
::A '''button''' that looks like a button! - '''4''' ''above left''&lt;br /&gt;
::A '''switch''' (operates like 2 buttons) - '''7''' ''above left''&lt;br /&gt;
::A '''trigger''' (operates like a button) - '''3''' ''above left''&lt;br /&gt;
::A '''hat switch''' (operates like 4 buttons) - '''6''' ''above left''&lt;br /&gt;
::A button incorporated into a mini-joystick - ''not shown here - but see the CH Pro Throttle below''&lt;br /&gt;
::A '''rotary switch''' where one turns the knob to select one of a number of options - ''not shown here - but see the black left hand knobs on the Saitek radio panel [[Buttonboxes#Saitek|here]]''&lt;br /&gt;
&lt;br /&gt;
*'''Hat switch''' (used to be called a coolie hat switch) - ''see buttons''&lt;br /&gt;
*'''POV switch''' ('''P'''oint '''O'''f '''V'''iew switch – same as hat switch) - ''see buttons''&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
== Joysticks ==&lt;br /&gt;
&lt;br /&gt;
=== CH Combat Stick &amp;amp; Throttle Pro ===&lt;br /&gt;
[[File:CH Combat Stick with Pro Throttle.png|450px|thumb|right|Throttle Pro with Combat Stick - the mid-range of CH's 3 joysticks]]&lt;br /&gt;
CH's stuff is rugged and was expected to last for decades. It is less so since the company changed changed hands, but many feel it is still the best in this respect. It is also light-weight and looks clunky! And big for the hands. &amp;lt;br&amp;gt;&lt;br /&gt;
The '''CH Combat Stick''' has a two-axis joystick only (no twist) with fine-tuning thumbwheels which can eliminate drunkenness. There is the trigger, a pinky button (Joy_4) and 4 other buttons (Joy_5 is on the far side of the joystick, reached by the index finger). There are two hat-switches. There is a 3rd thumbwheel which can act as a throttle. &amp;lt;br&amp;gt;&lt;br /&gt;
'''The Pro Throttle''' has ''all'' the controls on the throttle itself - none on the base (''ie'' you need never take your hand off the throttle). There are 3 buttons behind the throttle handle and 5 hat-switches! The rightmost of these on the 'lozenge' on the side of the throttle is actually a mini-joystick which can be pressed and acts as a fourth button. &amp;lt;br&amp;gt;&lt;br /&gt;
'''The CH Control Manager Software''' only works on Windows computers. It is supposedly top notch in terms of capability - and also highly complex to master!&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
'''Cranky's''' settings: Cranky is new to Oolite, and favours the [[Roll vs Yaw crusades|yaw]] take on astrogation.&lt;br /&gt;
*Joy Y axis - pitch&lt;br /&gt;
*Joy X axis - yaw&lt;br /&gt;
*Throttle - speed&lt;br /&gt;
*Mini-joystick - only x-axis - for roll only (y-axis and button not used)&lt;br /&gt;
*Top right hat-switch on Joystick - F1-F4 POV settings&lt;br /&gt;
*Bottom left hat switch on Joystick - ''combat settings'': UP (ECM: '''e'''); DOWN (Activate 1st fast equipment ''defensive'' '''Tab'''); RIGHT (Activate *2nd fast equipment offensive '''0'''); LEFT unset. &lt;br /&gt;
*Left-hand hat switch on throttle side - unset (''too often fiddled with by accident'').&lt;br /&gt;
*Top hat switch on throttle side - ''Special .oxp equipment'': UP (Prime: '''shift-n'''); DOWN (Activate: '''n'''); LEFT (Modify: '''b''')&lt;br /&gt;
*Bottom hat switch on throttle side - ''Docking'': UP (Fast docking: '''shift-c'''); DOWN (Blue Danube docking: '''c'''); LEFT (request docking clearance: '''shift-l''')&lt;br /&gt;
*Hat switch on back side of throttle - ''Scanner/Compass'': UP (Scanner Zoom: '''z'''); DOWN (Unzoom: '''shift-z'''); LEFT ([[ASC]] next target: '''\''')&lt;br /&gt;
*The right side settings of the throttle hat switches not used (waiting for reverse prime '''ctrl-shift-n''' &amp;amp; ASC last target '''|''' options to be added to the configuration pages).&lt;br /&gt;
*Joy_1 - (trigger) - fire laser ('''a''')&lt;br /&gt;
*Joy_2 - toggle ID ('''r''')&lt;br /&gt;
*Joy_3 - precison flying toggle ('''ctrl''')&lt;br /&gt;
*Joy_4 - fire missile ('''m''')&lt;br /&gt;
*Joy_5 - toggle weapons on/off ('''shift-hyphen''' or '''_''')&lt;br /&gt;
*Joy_6 - unset missile ('''u''') ''to neuter the ILS and the Automatic Targetting when they select an unwanted target''&lt;br /&gt;
*3 buttons on the back side of the throttle: ''drives!'': Witchfuel injectors ('''i'''); Torus drive ('''j''') &amp;amp; Witchspace drive ('''h''')&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
[[File:Logitech joystick.jpg|300px|thumb|right|note right fore-finger on black ''trigger'', right thumb on white ''button 2'' &amp;amp; left thumb on ''throttle'']]&lt;br /&gt;
[[File:Logitech Stick Map.jpg|400px|thumb|right|Joystick Map]]&lt;br /&gt;
=== Logitech Extreme 3D Pro ===&lt;br /&gt;
:Note: as with a number of these items, this joystick has been &amp;quot;produced&amp;quot; by a number of different companies over the past decade and under a range of different names!&lt;br /&gt;
&lt;br /&gt;
*The Logitech joystick has a 3-way axis for the stick (including the 3rd twist axis) and another throttle axis on the base.&lt;br /&gt;
*There are twelve buttons: 6 on the stick (including the trigger and button 2 on the left of the stick where the thumb rests) and 6 on the base.&lt;br /&gt;
*The hat switch on the stick is actually an 8-way switch which ''can'' function as a mini-joystick giving another 2 axes if desired.&lt;br /&gt;
*The software for the Logitech joystick allows the buttons to be programmed to operate macros if so desired.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
[[User:Cody|Cody]]'s settings for the Logitech Extreme 3D Pro: ''Cody uses this joystick with a keyboard. The precision toggle is '''not''' used because the axis profiles were set so as to no longer need it''. Cody is an old timer who mastered Classic Elite before joining the Oolite boards over a decade ago.  &lt;br /&gt;
*Axis 1 - roll ('''left'''/'''right''' arrows)&lt;br /&gt;
*Axis 2 - pitch ('''up'''/'''down''' arrows)&lt;br /&gt;
*Axis 3 - not used (twist): ''Cody favours the Rollers in the [[Roll vs Yaw crusades]]''&lt;br /&gt;
*Axis 4 - not used (throttle)&lt;br /&gt;
*Axis 5 - (hatswitch) used instead as buttons - for views - left &amp;amp; right ('''F3''' &amp;amp; '''F4''')&lt;br /&gt;
*Axis 6 - (hatswitch) used instead as buttons - for views - up &amp;amp; down ('''F1''' &amp;amp; '''F2''')&lt;br /&gt;
*Button 1 - (trigger) - fire laser ('''a''')&lt;br /&gt;
*Button 2 - ''docking'' - request docking clearance ('''shift-l''')&lt;br /&gt;
*Button 3 - ''missile'' - arm missile ('''t''')&lt;br /&gt;
*Button 4 - ''missile'' - fire missile ('''m''')&lt;br /&gt;
*Button 5 - take snapshot ('''*''')&lt;br /&gt;
*Button 6 - ''missile'' - cycle missile ('''y''')&lt;br /&gt;
*Button 7 - next [[ASC]] compass target ('''\''')&lt;br /&gt;
*Button 8 - not yet used&lt;br /&gt;
*Button 9 - ''docking'' - Blue Danube docking computer ('''c''')&lt;br /&gt;
*Button 10 - ''docking'' - fast docking computer ('''shift-c''')&lt;br /&gt;
*Button 11 - Activate .oxp equipment ('''n''')&lt;br /&gt;
*Button 12 - Prime .oxp equipment ('''shift-n''')&lt;br /&gt;
:And see [https://app.box.com/s/gythr56ev88f1uvoijevfqncwmmjtlat Cody's 2017] key-bindings, before axis bindings. Not all buttons used.&lt;br /&gt;
----&lt;br /&gt;
[https://bb.oolite.space/viewtopic.php?p=261310#p261310 Nite Owl's] settings for the Logitech Extreme 3D Pro. Another veteran, like Cody, but with a more combat oriented set of joystick bindings.&lt;br /&gt;
&lt;br /&gt;
*Axis 1 - Joystick left and right axis as Left and Right Roll. (Editorial note: like Cody, a veteran elitist in the [[Roll vs Yaw crusades]])&lt;br /&gt;
*Axis 2 - Joystick forward and back axis as Pitch Up and Down.&lt;br /&gt;
*Axis 3 - Joystick left and right twist axis as Pitch Left and Right.&lt;br /&gt;
*Axis 4 - The throttle axis for the ship's Throttle.&lt;br /&gt;
*The hat switch for changing views in the obvious manner.&lt;br /&gt;
*Button 1              Fire main weapon (Laser) ('''a''')&lt;br /&gt;
*Button 2              Fire secondary weapon (Pylon) ('''m''')&lt;br /&gt;
*Button 3              Targeting I.D. On/Off ('''r''')&lt;br /&gt;
*Button 4              Weapons On/Off (shift-hyphen: '''_''')&lt;br /&gt;
*Button 5              Torus Drive On/Off ('''j''')&lt;br /&gt;
*Button 6              Fuel Injectors (Hold to Use) ('''i''')&lt;br /&gt;
*Button 7              Set Equipment Mode ('''b''')&lt;br /&gt;
*Button 8              Prime Equipment ('''shift-n''')&lt;br /&gt;
*Button 9              Target Incoming Missile  ('''shift-t''')&lt;br /&gt;
*Button 10             Fast Target Selector (OXZ set up as Fast Activate 1, key = zero, and then the zero key is mapped to the Joystick)&lt;br /&gt;
*Button 11             Scanner Zoom  ('''z''')&lt;br /&gt;
*Button 12             Activate E.C.M. ('''e''')&lt;br /&gt;
&lt;br /&gt;
&amp;quot;''Axes 2 &amp;amp; 3 may seem counter intuitive - but they work for me. My guess is that most Commanders would have these two reversed. Also have some very nice spline curves set up as per Dizzy's Guide mentioned at the top and bottom of this page. Everything else is accessed via the keyboard controls. The Advanced Navigation Computer (OXZ) is mapped to Fast Activate 2, key = Tab. Docking Clearance (mandatory at all but Rock Hermits in my Ooniverse) is accessed via the Communications M.F.D. (OXZ). With the Communications M.F.D. active, use the '''n''' key to select the &amp;quot;Request Docking Clearance&amp;quot; option and then press '''b'''. All other keyboard commands are at their default settings.''&amp;quot; (Nite Owl)&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
[[File:Logitech X56.png|right|320px]]&lt;br /&gt;
=== Logitech X52 Pro HOTAS ===&lt;br /&gt;
See Darkened Room's partial set up [https://drive.google.com/drive/folders/1dM9k9Cl9TFGU-S0cBOkPd39LB7RVyJOm?usp=sharing here] (2023: layout pdf &amp;amp; config file).&lt;br /&gt;
&lt;br /&gt;
=== Logitech G X56 HOTAS ===&lt;br /&gt;
Note that Logitech bought out MadCatz in 2016 (who had bought out Saitek in 2007).&lt;br /&gt;
 X-56 H.O.T.A.S. System (2018)&lt;br /&gt;
 X-55 Rhino H.O.T.A.S. System (2014)&lt;br /&gt;
 X-65F Flight Combat Control System (2008)&lt;br /&gt;
 X52 Pro Flight Control System (2007)&lt;br /&gt;
 X52 Flight Control System (2004)&lt;br /&gt;
 X45 Digital Joystick and Throttle (2001)&lt;br /&gt;
 X36 Flight Control System (1999), consisting of the X36F Control stick and X35T throttle&lt;br /&gt;
&lt;br /&gt;
There may be issues with playing Oolite in Windows with this HOTAS - the throttle may not connect.&lt;br /&gt;
&lt;br /&gt;
:If so, you may need to (re)-install the Logitech X56 software from [https://support.logi.com/hc/en-us/articles/360024844133--Downloads-X56-Space-Flight-H-O-T-A-S- here]&lt;br /&gt;
&lt;br /&gt;
:Once that's installed you can go into the X56 &amp;quot;HUD&amp;quot; program and go to Programming. From there, select the Throttle.&lt;br /&gt;
&lt;br /&gt;
:You then need to create a new profile and start adding your controls to it. The Logitech manual is a little obtuse on the subject but it gets the job done. In order for Oolite to effectively recognize the throttle axis you need to set it to Band mode, which lets you assign W to the lower third of the band, S to the upper third (yes, these are reversed from expectation) and nothing to the central band.&lt;br /&gt;
&lt;br /&gt;
:After that the rest of the controls are pretty easy to set up.&lt;br /&gt;
&lt;br /&gt;
:Then you need to save and activate the profile - there's a button on the same programming screen, or you use the background program in the carat ( ^ ) menu on the Taskbar. If you're using the background program, right click on the program icon and select your saved profile.&lt;br /&gt;
&lt;br /&gt;
:Once activated, the software will override your default settings and Oolite will accept those commands instead of the throttle's &amp;quot;real&amp;quot; inputs. You can then &amp;quot;clear&amp;quot; the profile if you want to play a different game. (Details from [https://bb.oolite.space/viewtopic.php?p=281448#p281448 Arquebus 2021]).&lt;br /&gt;
&lt;br /&gt;
Arquebus also has a [https://www.youtube.com/watch?v=llQk_J0Ty38&amp;amp;list=PLsYaAtYv_5eUpD3FBWQk7XQuKQQsrVhNV&amp;amp;index=10 youtube video] explaining his set up (it includes Touch Portal)&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Thrustmaster TM4 ===&lt;br /&gt;
[[File:TFlight HOTAS 4.png|250px|thumb|right|note that joystick and throttle units have not been separated]]&lt;br /&gt;
There are some 3 very similar Thrustmaster entry-level HOTAS ('''H'''ands '''o'''n '''T'''hrottle '''a'''nd '''S'''tick) sets: T.Flight 3, 4 &amp;amp; X. They seem mostly designed for those using gaming consoles as the buttons on each are quite limited in number.&lt;br /&gt;
&lt;br /&gt;
They are very nicely designed - nice curves, screw holes at the bottom for attaching to something heavy like a desk (if so desired), an Allen key (living in a base recess) to separate the two halves of the throttle and joystick, a simple knob to stiffen up the joystick ''etc''. Another point is that since the joystick and throttle are wired together, they only occupy one USB slot on the dreaded computer.&lt;br /&gt;
&lt;br /&gt;
*The TM4 joystick has a 3-way axis for the stick (including the 3rd twist axis - disable-able with a screwdriver), a throttle axis on the left, and a fifth axis (rudder) on the back of the throttle stick.&lt;br /&gt;
*There are 13 buttons: 4 on the stick (including the trigger) and 6 on the throttle and 3 on the base of the throttle.&lt;br /&gt;
*The hat switch on the stick is a regular 4-way switch.&lt;br /&gt;
*The software for the TM3/4/X hotas is needed. It allows the PS button on the base of the throttle to toggle between vanilla PlayStation mode (where the twist joystick z-axis and the throttle's rudder axis are disabled) and Joystick mode where everything works.&lt;br /&gt;
&lt;br /&gt;
==== Use with AppleMac ==== &amp;lt;!-- Apple AppleMac Thrustmaster TFlight HOTAS_4 TM4 --&amp;gt;&lt;br /&gt;
It seems that this is not compatible with the AppleMac, with the twist, throttle and axis on the back of the throttle not seeming functional.&lt;br /&gt;
What neither Thrustmaster nor Apple can be bothered to tell you is that you need to keep the '''PS''', '''SHARE''' &amp;amp; '''OPTIONS''' buttons held down while you plug it into your AppleMac. The green light should then come on under your PS button, and you should find the HOTAS fully functional. This is without the Thrustmaster software being loaded. This worked for Cholmondely but not for Murgh.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
[[User:Cholmondely|Cholly]]'s settings: Cholly uses this HOTAS with an Elgato [[Buttonboxes|Streamdeck]], so the confusing missile controls are ''there'' where they can be clearly labelled and understood. Cholly is quite new to Oolite, and has no other real experience of space sims.&lt;br /&gt;
&lt;br /&gt;
*Axis 1 - (Joystick left/right): roll (left/right arrows) - Cholly read too many of Cody's old BB posts and got converted to rolling!&lt;br /&gt;
*Axis 2 - (Joystick left/right): pitch (up/down arrows)&lt;br /&gt;
*Axis 3 - (throttle): speed ('''w''' and '''s''')&lt;br /&gt;
*Axis 4 - (twist on joystick): not used ''Cholly finds 3 axes on the same stick too confusing for words''&lt;br /&gt;
*Axis 5 - ''possibly refers to optional pedals?''&lt;br /&gt;
*Axis 6 - (rudder on throttle): yaw - (''',''' &amp;amp; '''.''')&lt;br /&gt;
*Button 1 - (trigger on joystick): fire laser ('''a''')&lt;br /&gt;
*Button 2 - (L1 button): witchfuel injectors ('''i''')&lt;br /&gt;
*Button 3 - (R3 button): roll/pitch Precision toggle (sort of '''ctrl''' but as a toggle: Cholly has yet to master the art of splining - see Dizzy's Guide) &lt;br /&gt;
*Button 4 - (L3 button): Toggle ID ('''r''')&lt;br /&gt;
*Button 5 - (square on button): ECM ('''e''')&lt;br /&gt;
*Button 6 - (x on button): Activate first fast equipment (defensive) ('''Tab''')&lt;br /&gt;
*Button 7 - (circle on button): Activate second fast equipment (offensive) ('''0''')&lt;br /&gt;
*Button 8 - (triangle on button): toggle weapons (shift-hyphen: '''_''')&lt;br /&gt;
*Button 9 - (R2 button): zoom scanner ('''z''')&lt;br /&gt;
*Button 10 - (L2 button): reset scanner ('''shift-z''')&lt;br /&gt;
*Button 11 - (Share button): ''hyperspeed'' - Torus jump drive ('''j''') &lt;br /&gt;
*Button 12 - (Options button): ''hyperdrive'' - Witchspace drive ('''h''')&lt;br /&gt;
*Button 13 - (PS red/green LED button): not used (as it disables rudder yawing)&lt;br /&gt;
*Hat Switch - (on joystick): used as 4 buttons - for the 4 views - ('''F1 - F4''')&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
----&lt;br /&gt;
== Controllers ==&lt;br /&gt;
&lt;br /&gt;
=== Sony PlayStation ===&lt;br /&gt;
[[File:Controller- Sony PlayStation.png]]&amp;lt;br&amp;gt;&lt;br /&gt;
This mapping is from 2015/6 at which stage it did not function when the ship was docked.&lt;br /&gt;
From [https://bb.oolite.space/viewtopic.php?f=2&amp;amp;t=17985&amp;amp;p=246778#p246778  this] BB thread.&lt;br /&gt;
&lt;br /&gt;
=== Logitech dual-action Profiler ===&lt;br /&gt;
[[File:Controller- Logitech dual-action Profiler.gif]]&amp;lt;br&amp;gt;&lt;br /&gt;
This mapping is from 2013. A ''shift key'' doubles the mapping potentialities.&lt;br /&gt;
From [https://bb.oolite.space/viewtopic.php?p=202759#p202759 this] BB thread.&lt;br /&gt;
&lt;br /&gt;
=== Logitech F310 ===&lt;br /&gt;
&lt;br /&gt;
 Left stick up/down: pitch up/down&lt;br /&gt;
 Left stick left/right: yaw left/right (I know, I know...)&lt;br /&gt;
 Left stick push: Request docking clearance (Shift-L)&lt;br /&gt;
 &lt;br /&gt;
 Right stick up/down: speed increase/decrease (W/S)&lt;br /&gt;
 Right stick left/right: roll left/right&lt;br /&gt;
 Right stick push: ECM (E)&lt;br /&gt;
 &lt;br /&gt;
 4 way hat: views (F1/2/3/4)&lt;br /&gt;
 &lt;br /&gt;
 A Button: Fire laser (A)&lt;br /&gt;
 B Button: Fire missile (M)&lt;br /&gt;
 X Button: Space compass next target (\)&lt;br /&gt;
 Y Button: Missile target seek (T) &lt;br /&gt;
 &lt;br /&gt;
 View Button (Back button on the F310): Fast activate second equipment (ie Tab key)&lt;br /&gt;
 Menu Button (Start button on the F310): Begin hyperspace countdown (H)&lt;br /&gt;
 &lt;br /&gt;
 LB: Engage torus (J)&lt;br /&gt;
 RB: Injectors (I)&lt;br /&gt;
 LT: Fast activate first equipment (ie 0 key)&lt;br /&gt;
 RT: Activate ID recognition (R)&lt;br /&gt;
&lt;br /&gt;
[https://bb.oolite.space/viewtopic.php?p=257091#p257091 Phkb, 2017]&lt;br /&gt;
&lt;br /&gt;
== Problem Solving ==&lt;br /&gt;
*Is your joystick compatible with your computer?&lt;br /&gt;
*Do you have too many joysticks/controllers/USB gadgets [https://bb.oolite.space/viewtopic.php?f=2&amp;amp;t=20894 plugged in]?&lt;br /&gt;
*Does your joystick make your craft swerve to the side (See Dizzy's Guide below)?&lt;br /&gt;
&lt;br /&gt;
== History ==&lt;br /&gt;
The code for all this was published by Kanthoney back in February 2014. Dizzy's guide was crucial in explaining it all to people (July '14). In the years since, it has been expanded.&lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
* [[Dizzy's guide to Setting up Joystick Axis Profiles]] (splines and stuff!)&lt;br /&gt;
* [[Joysticks and Gamepads]] (contains instructions for eliminating jitter from your joystick. Some throttles jitter when &amp;quot;off&amp;quot;, causing &amp;quot;engine-revving&amp;quot; sounds with BGS)&lt;br /&gt;
* [[Linux Joysticks and Gamepads]] - Guide to setting up for Linux&lt;br /&gt;
* [https://bb.oolite.space/viewtopic.php?f=2&amp;amp;t=20841 Joysticks]: how to configure (BB thread basis for this page).&lt;br /&gt;
* [https://bb.oolite.space/viewtopic.php?f=2&amp;amp;t=17315 Ship Tuning 2015]: how to dampen the agility of your ship - and has notes on altering the joystick precision setting&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [https://bb.oolite.space/viewtopic.php?f=6&amp;amp;t=15770 2013] thread about coding Oolite for Joysticks (Macs vs Windows/Linux).&lt;br /&gt;
* [[AppleMac]] - see section on HOTAS for some background.&lt;br /&gt;
* [https://bb.oolite.space/viewtopic.php?f=8&amp;amp;t=17857 2015] thread about problems with setting up several Windows joysticks (with Linux mentions)&lt;br /&gt;
* [https://bb.oolite.space/viewtopic.php?f=2&amp;amp;t=17985 2016] thread about T.FlightHotas4, Logitech Extreme 3D Pro, controllers &amp;amp; yaw issues. &lt;br /&gt;
* [https://bb.oolite.space/viewtopic.php?f=8&amp;amp;t=11987 2012-13] thread about the PS3 controller&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [https://bb.oolite.space/viewtopic.php?f=2&amp;amp;t=19309 2018] Is it possible to control OOlite entirely with Joystick/Gamepad? &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*[https://bb.oolite.space/viewtopic.php?f=8&amp;amp;t=6958 2009] Old thread about yaw and throttle problems (now fixed in Oolite code). Links to older threads.&lt;br /&gt;
&lt;br /&gt;
*[https://bb.oolite.space/viewtopic.php?f=6&amp;amp;t=5428 Force-Feedback Joystick Support?] (2008-17: see Getafix's last posts for Linux)&lt;br /&gt;
&lt;br /&gt;
=== Other advice pages ===&lt;br /&gt;
*[[How do I ...]] dock / succeed in trading / win a fight / configure my controller/joystick ''etc''&lt;br /&gt;
&lt;br /&gt;
[[Category:Oolite]][[Category:Factual]][[Category:Help pages]]&lt;/div&gt;</summary>
		<author><name>Mcarans</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.alioth.net/index.php?title=Linux_Joysticks_and_Gamepads&amp;diff=86333</id>
		<title>Linux Joysticks and Gamepads</title>
		<link rel="alternate" type="text/html" href="https://wiki.alioth.net/index.php?title=Linux_Joysticks_and_Gamepads&amp;diff=86333"/>
		<updated>2025-07-14T05:16:04Z</updated>

		<summary type="html">&lt;p&gt;Mcarans: Major update for modern distros&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:PS3 Controller.jpeg|right|320px]]&lt;br /&gt;
== Overview ==&lt;br /&gt;
&lt;br /&gt;
Generally speaking, Linux is quite good with joystick and gamepad detection and support, but sometimes things can go wrong. Failing to detect a joystick at all is fairly uncommon, and most reported problems revolve around button detection/assignment, and/or axis range. This article provides information on setting up game controllers so that they work well in Oolite Linux.&lt;br /&gt;
&lt;br /&gt;
== Calibrating a Joystick or Gamepad ==&lt;br /&gt;
&lt;br /&gt;
Although Oolite provides options to set up dead zones, a full calibration within the game is not possible. The best way to calibrate game controllers on Linux is using a utility such as [[https://github.com/Grumbel/jstest-gtk jstest-gtk]] which will probably be present in your distribution's Software Manager. Launch the ''jstest-gtk'' gui (it will probably be located in the System Menu) and, underneath the name of your joystick, it will list the device details, such as &amp;quot;Device:/dev/input/js0&amp;quot;. Keep a record of this device information.&lt;br /&gt;
&lt;br /&gt;
After calibrating and before closing the gui, execute the following command to store the calibration information: &lt;br /&gt;
 &lt;br /&gt;
 sudo jscal-store /dev/input/js0&lt;br /&gt;
&lt;br /&gt;
Ensure you use the device information you recorded earlier.&lt;br /&gt;
&lt;br /&gt;
== Button Detection &amp;amp; Axis Range Problems ==&lt;br /&gt;
&lt;br /&gt;
For unknown reasons, it appears that sometimes SDL ([https://www.libsdl.org/ Simple DirectMedia Layer]) (which is used by Oolite) takes raw input from the evdev device drivers, instead of using the correct joystick device. If this happens, then the calibration will be ignored. By adding the appropriate environment variable to either the ''/etc/environment'' file, or the ''.bashrc'' startup script, you can force SDL to use the &amp;quot;real&amp;quot; joystick driver for input.&lt;br /&gt;
&lt;br /&gt;
[https://help.ubuntu.com/community/EnvironmentVariables Officially speaking], ''/etc/environment'' is the correct place for system-wide environment variables. To add the environment variable to the ''/etc/environment'' file, '''as root''', open ''/etc/environment'' in your text editor, add the following (on a new line) to the file, and save:&lt;br /&gt;
&lt;br /&gt;
 SDL_JOYSTICK_DEVICE=&amp;quot;/dev/input/js0&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Again, use the device information you recorded earlier.&lt;br /&gt;
&lt;br /&gt;
For the change to 'take', you then need to log out and back in again. Rebooting is unnecessary. &lt;br /&gt;
&lt;br /&gt;
If you prefer changing the ''.bashrc'' startup script instead, you should add the above line to ''.bashrc'' in your ''Home'' folder. As the dot in front of the filename indicates, this is a hidden file, so you may need to set the view in your file browser to &amp;quot;Show Hidden Files&amp;quot; before it will become visible. Once done, save the file and log out, then back in.&lt;br /&gt;
&lt;br /&gt;
== Using Saved Calibration ==&lt;br /&gt;
&lt;br /&gt;
The calibration will be forgotten after rebooting, so to ensure the saved calibration is used, make a bash script called for example ''run_oolite'' with: &lt;br /&gt;
&lt;br /&gt;
 #!/bin/bash&lt;br /&gt;
 jscal-restore /dev/input/js0&lt;br /&gt;
 cd ${1%/*}&lt;br /&gt;
 $1&lt;br /&gt;
&lt;br /&gt;
Make that script executable and then you can run Oolite assuming ''run_oolite&amp;quot;&amp;quot; is in your path, using:&lt;br /&gt;
&lt;br /&gt;
 run_oolite PATH_TO_OOLITE&lt;br /&gt;
&lt;br /&gt;
PATH_TO_OOLITE can be something like ''/home/USERNAME/GNUstep/Applications/Oolite/oolite''&lt;br /&gt;
&lt;br /&gt;
If you are using the [[https://github.com/OoliteProject/OoliteStarter Oolite Starter]] then replace PATH_TO_OOLITE with PATH_TO_OOLITE_STARTER (which may look something like: /opt/oolitestarter-innocuous/bin/OoliteStarter_innocuous)&lt;br /&gt;
&lt;br /&gt;
== Mapping Axes and Buttons to Keyboard Key Presses ==&lt;br /&gt;
&lt;br /&gt;
Sometimes it is desirable to have an axis act more like a keyboard key press, for example to increase and decrease speed. This can be achieved with the utility [[https://github.com/AntiMicroX/antimicrox AntiMicroX]], a graphical program used to map gamepad keys to keyboard, mouse, scripts and macros. More information on keyboard controls can be found [[https://wiki.alioth.net/index.php/Oolite_Keyboard_Controls here]]. Once you have set up AntiMicroX the way you want, you can use your configuration by modifying the ''run_oolite&amp;quot;&amp;quot; script described earlier:&lt;br /&gt;
&lt;br /&gt;
 #!/bin/bash&lt;br /&gt;
 jscal-restore /dev/input/js0&lt;br /&gt;
 antimicrox --tray &amp;amp;&lt;br /&gt;
 cd ${1%/*}&lt;br /&gt;
 $1&lt;br /&gt;
&lt;br /&gt;
== Other problems ==&lt;br /&gt;
&lt;br /&gt;
Should you require further guidance in creating or editing the above files, or the methods given above fail to resolve, or don't address your particular problem, please don't hesitate to post a thread detailing the issue, and your attempts to fix it, to the [https://bb.oolite.space/viewforum.php?f=9 Oolite-Linux forum]. The forum has several Linux gurus available, who would be more than happy to assist.&lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
*[[Joysticks and Gamepads]]&lt;br /&gt;
*[[Joysticks: Guide to Setting Up]]&lt;br /&gt;
*[[Keyboard Issues]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Oolite]][[Category:Help pages]]&lt;/div&gt;</summary>
		<author><name>Mcarans</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.alioth.net/index.php?title=OXP_List&amp;diff=29075</id>
		<title>OXP List</title>
		<link rel="alternate" type="text/html" href="https://wiki.alioth.net/index.php?title=OXP_List&amp;diff=29075"/>
		<updated>2011-10-18T13:11:04Z</updated>

		<summary type="html">&lt;p&gt;Mcarans: /* Sortable Table of OXPs */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
== OXP Categories ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; width=&amp;quot;100%&amp;quot; style=&amp;quot;border-collapse: collapse; border-width: 1px; border-style: solid; border-color: #ffffff; table-layout: fixed; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; width=&amp;quot;70px&amp;quot; style=&amp;quot;margin: 0px; padding: 0px; border-width: 1px; border-style: solid; border-color: #ffffff; background-color: #e7e7ff; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot; |&amp;lt;p style=&amp;quot;font-size: 13px;&amp;quot;&amp;gt;Category&amp;lt;/p&amp;gt;&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;margin: 0px; padding: 0px; border-width: 1px; border-style: solid; border-color: #ffffff; background-color: #e7e7ff; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot; |&amp;lt;p style=&amp;quot;font-size: 13px;&amp;quot;&amp;gt;Description of OXP Category&amp;lt;/p&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Activities_OXPs|Activities]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Allow Commanders to carry out a new activity or task eg. racing, gas giant skimming, taking out loans&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Dockables_OXPs|Dockables]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Add new objects that the player can dock with eg. carriers, space bars, casinos, fuel stations. Also, see [[Oolite Stations]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Ambience_OXPs|Ambience]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Change or add to the scenery, visuals or sound effects eg. planet skins, add new planets/moons to systems, move suns further away, dim nebulae, add monuments&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Equipment_OXPs|Equipment]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Buy upgrades for your ship excluding weapons&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Mechanics_OXPs|Mechanics]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Change the game play in a specific way eg. alter market mechanics, add more pirates&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:HUDs_OXPs|HUDs]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Modifications of your dials, gauges and other read-outs&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Missions_OXPs|Missions]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|New missions for Commanders to undertake. For more information, see [[Oolite Missions]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Retextures_OXPs|Retextures]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Retexture existing objects, either by replacing or adding variations, but without adding objects that did not exist before&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Ships_OXPs|Ships]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|New ships, except dockable ships. Also, see [[Oolite Ships]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Systems_OXPs|Systems]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Alter multiple star systems in a number of ways eg. combinations of changing main station and local police ships, adding new stations, ships, activities, missions&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Weapons_OXPs|Weapons]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Addons for your ship for blowing up the baddies&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Misc_OXPs|Misc]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|OXPs that don't fit into the other categories eg. debug consoles, internationalisations, config mechanisms, demo OXPs&lt;br /&gt;
|}&lt;br /&gt;
OXP authors: if you are unsure how to categorise your OXP or if you wish to update the details of an OXP for an author who has disappeared, please seek advice on the [http://www.aegidian.org/bb/viewforum.php?f=4 Expansion Pack Forum] before proceeding. Please put your OXP in one category only. You can edit the section below to add your OXP.&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Sortable Table of OXPs ==&lt;br /&gt;
The following table is optimized for a horizontal screen resolution of at least 1280px so that all OXP descriptions fit on one line.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; width=&amp;quot;100%&amp;quot; style=&amp;quot;border-collapse: collapse; border-width: 1px; border-style: solid; border-color: #ffffff; table-layout: fixed; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;border-width: 1px; border-style: solid; border-color: #ffffff; background-color: #e7e7ff; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot; |The &amp;quot;C&amp;quot; column indicates compatibility with Oolite beta 1.75:&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Y&amp;quot;=compatible, &amp;quot;Y*&amp;quot;=compatible (but the OXP is not in full working order), &amp;quot;N&amp;quot;=incompatible,  blank=unknown/untested.&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;!-- KEEP DESCRIPTIONS (desc=...) ALPHABETICAL --&amp;gt;&lt;br /&gt;
&amp;lt;!-- KEEP LENGTHS OF DESCRIPTIONS TO THAT OF EXISTING ENTRIES OR LESS --&amp;gt;&lt;br /&gt;
{{OXPListTableHeader}}&lt;br /&gt;
&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Accessories OXP|Accessories]] replaces the textures of all Stations and non-ship objects in Oolite with a more detailed and realistic look&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2011-09-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Accipiter]] is the market entry from Xeceesian shipyards, a strong &amp;amp; fast all purpose vessel for experienced commanders&lt;br /&gt;
|aut=CaptSolo&lt;br /&gt;
|con=Staer9, Griff&lt;br /&gt;
|date=2011-05-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Aegidian%27s Specials]] adds the powerful [[Mussurana]], the [[Asp (Oolite)#Notable features|Asp Mark II Special]], and a new cargo canister&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2009-07-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Aegidian%27s X-Ships]] adds [[Python ET Special]]s, [[Cobra Mk.2 (Oolite)|Cobra Mk II]]s, [[Taipan]]s, [[Asp (Oolite)#Notable features|Asp Mark II Special]]s, and [[Sidewinder (Oolite)#Notable features|Sidewinder Special]]s&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2009-04-29&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Pirate Clan Blitzspears|Amen Brick's Pirate Clan One: The Blitzspears]] adds the [[Assassin Blitzspear|Assassin]], the [[Hoodlum]], the [[Scoundrel]], and the [[Spiv]]&lt;br /&gt;
|aut=Amen Brick&lt;br /&gt;
|date=2008-06-30}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Amiga Replacement Sounds]] is based on the sound set used in the Amiga version of the original Elite&lt;br /&gt;
|aut=EAGLE 5&lt;br /&gt;
|date=2006-03-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Systems&lt;br /&gt;
|desc=[[Anarchies OXP|Anarchies]] overhauls legal ratings and spices up anarchies with [[Hacker Outpost]]s, [[Salvage Gang]]s, special stations &amp;amp; ships&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|con=Killer Wolf, Griff, Cdr. Wyvern, Murgh, Aegidian, 8-Bit Apocalypse&lt;br /&gt;
|date=2011-03-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9462 Another HUD] is based on Killer Wolf's Generic HUD&lt;br /&gt;
|aut=NorthenderPNE&lt;br /&gt;
|date=2011-03-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Aphid]] adds the stylish Aphid Escort Service&lt;br /&gt;
|aut=8-Bit Apocalypse&lt;br /&gt;
|date=2005-01-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Aquatics OXP|Aquatics]] adds the Aquarian Shipbuilding Corporation of Aqualina, G3 along with its ships and a mission&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-03-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Armoured Transport Type 1]] adds Gaundlet's [[Gaundlet Armoured Transport Type1|Armoured Transport Type 1]] and [[Gaundlet Armoured Escort Viper|Armoured Escort Viper]] that ferry valuables&lt;br /&gt;
|aut=Arexack Heretic&lt;br /&gt;
|date=2005-12-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Armoury OXP|Armoury]] adds AMS, captured Thargons, drones, probes, a missile rack, some bombs, and the missile machine&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-07-17&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[The Assassins Guild OXP|Assassins Guild]] adds 21 missions involving murder to order in Galaxy 7&lt;br /&gt;
|aut=Littlebear&lt;br /&gt;
|date=2011-05-03&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Asteroid Storm]] adds different types of asteroids &amp;amp; a mission where a station in G1 is threatened by a large asteroid strike&lt;br /&gt;
|aut=LittleBear, Charlie&lt;br /&gt;
|date=2011-01-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Aurora]] adds huge passenger ships for the wealthiest in society&lt;br /&gt;
|aut=pagroove&lt;br /&gt;
|con=Griff, Thargoid&lt;br /&gt;
|date=2010-11-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://www.mediafire.com/?fnc65em7uh5un1d Auto ECM] fires the ECM once when a missile is fired at the player's ship. See the [http://aegidian.org/bb/viewtopic.php?p=138124#p138124 BB] for more info&lt;br /&gt;
|aut=Switeck&lt;br /&gt;
|date=2011-05-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Auto eject OXP|Auto Eject]] ejects your escape pod automatically when your energy becomes too low&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2010-06-16&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Automatic Chaff System]] provides an enhanced chaff-based missile countermeasure system&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2010-06-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Baakili Far Trader]] adds a dockable alien ship&lt;br /&gt;
|aut=Zieman&lt;br /&gt;
|date=2010-09-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Bandersnatch]] adds a pirate capital vessel armed with 4 x fore lasers&lt;br /&gt;
|aut=Flying_Circus&lt;br /&gt;
|date=2009-11-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Beer Cooler]] allows you to fit your ship with a beer cooler&lt;br /&gt;
|aut=Maik&lt;br /&gt;
|date=2010-08-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Behemoth]] adds a dockable Navy cruiser carrying [[Navy Asp]]s and [[Navy Viper]]s&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2011-01-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Behemoth Spacewar]] adds intelligence to the Behemoth and brings a combat with Thargoids&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2010-01-09&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[BGS|BGS - Background Set]] framework for images, sounds and ambient music&lt;br /&gt;
|aut=pagroove, Svengali&lt;br /&gt;
|date=2011-09-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[BigShips OXP|Big Ships]] ensures that large ships do not dock and controls population of systems with them&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2009-11-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Black Monk Monastery]] offers loans in advanced systems and adds the [[Black Monk Gunship]] to persecute defaulters&lt;br /&gt;
|aut=LittleBear&lt;br /&gt;
|date=2010-06-14&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[BlackjacksBullion OXP|Blackjack's Bullion]] starts in galaxy 2 at Telace as Commander Blackjack arrives via escape pod&lt;br /&gt;
|aut=Rustybolts&lt;br /&gt;
|date=2010-03-08&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[BlOomberg Markets]] varies the in-game economy by generating random events that affect commodity prices&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2011-03-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Boa II Clipper Class]] is a development of the Boa Class Cruiser, adding a third engine at the cost of cargo space&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2011-01-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Boomslang]] adds a mid-range multi-role ship. Used by pirates and traders alike&lt;br /&gt;
|aut=milinks, Jar&lt;br /&gt;
|date=2008-09-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Bounty Scanner]] adds bounty details (if any) to the targeting lock-box display when locked onto other ships&lt;br /&gt;
|aut=Frame&lt;br /&gt;
|date=2010-07-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[BountyStatus OXP|Bounty Status]] displays your current bounty (and your legal status) on the F5 manifest screen&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-05-08&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Breakable_'Standard'_Equipment_OXPs|Breakable 'Standard' Equipment]] makes some standard equipment such as HUD/Scanner damageable in combat&lt;br /&gt;
|aut=Capt Murphy&lt;br /&gt;
|date=2011-07-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Bulk Haulers]] adds the [[Lynx Bulk Carrier (Oolite)|Lynx Bulk Carrier]], the [[Long Range Cruiser (Oolite)|Long Range Cruiser]], the [[Bulk Hauler]], and the [[Super Bulk Hauler]]&lt;br /&gt;
|aut=ADCK&lt;br /&gt;
|con=Aegidian, pagroove&lt;br /&gt;
|date=2010-04-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[BuoyRepair|Buoy Repair]] adds a [[Buoy Repair Facility]] and related ships to repair defect or destroyed nav-beacons&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|con=Svengali, Murgh, Zieman&lt;br /&gt;
|date=2011-06-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[[Cabal Common Library]] is a collection of snippets and helpers for OXPs&lt;br /&gt;
|aut=Svengali&lt;br /&gt;
|con=Cmd.Cheyd, PhantorGorth&lt;br /&gt;
|date=2011-08-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Caduceus]] adds the very expensive (and deadly) Caduceus&lt;br /&gt;
|aut=ClymAngus&lt;br /&gt;
|con=Cdr. Wyvern, another_commander, Eric Walch, Thargoid&lt;br /&gt;
|date=2010-12-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Capisastra]] adds [[Capisastra Defender]]s, [[Capisastra Hauler]]s, and [[Capisastra Warrior]]s&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|date=2006-01-12}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Captain Berf Engineer]] adds a voice for crew members&lt;br /&gt;
|aut=Captain Berf&lt;br /&gt;
|date=2009-12-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Captain Berf Pilot]] adds a voice for crew members&lt;br /&gt;
|aut=Captain Berf&lt;br /&gt;
|date=2009-12-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Captain Berf Pilot Alien]] adds a voice for crew members&lt;br /&gt;
|aut=Captain Berf&lt;br /&gt;
|date=2009-12-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Captain Berf Tactical Officer]] adds a voice for crew members&lt;br /&gt;
|aut=Captain Berf&lt;br /&gt;
|date=2009-12-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Cargo Shepherd OXP|Cargo Shepherd]] attracts cargo pods and holds them until you can scoop them, also includes a beacon&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-04-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://www.box.net/shared/4lphdkazs5 CB-HUD] features a HUD that changes based on installed equipment. See the [http://aegidian.org/bb/viewtopic.php?p=141035#p141035 BB post] for more information&lt;br /&gt;
|aut=Captain Beatnik&lt;br /&gt;
|date=2011-05-29&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Chopped Cobra]] By Staer9. Chopped version of Griff's Cobra. Includes Enforcer and S9 variants by Smivs.&lt;br /&gt;
|aut=Staer9&lt;br /&gt;
|con=Smivs&lt;br /&gt;
|date=2011-07-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Clear Skies OXP|Clear Skies]] reduces nebula effects and dims stars. Handy if your system is finding it hard to run Oolite&lt;br /&gt;
|aut=johnsmith&lt;br /&gt;
|date=2006-11-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Cobra 3.5|Chopped Cobra]] adds the Cobra Mk 3.5, a slightly faster and tougher variant with a reduced cargo bay&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2006-12-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9157 Cobra AC] is a faithful reproduction of the Cobra on the cover of the Dark Wheel novella with improved specs&lt;br /&gt;
|aut=dertien&lt;br /&gt;
|date=2011-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Cobra Clipper SAR]] adds a custom Cobra Mk III to rescue stranded Commanders&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2010-04-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Cobra III NjX]] adds a faster, tougher variation on the Classic Cobra Mk III&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|date=2006-08-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Cobra Mark III-XT]] Cobra3 with revamped architecture and upgraded systems to boost performance&lt;br /&gt;
|aut=CaptSolo&lt;br /&gt;
|date=2011-07-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.purgatori.net/cobra4.htm Cobra MkIV] is [[Isis Interstellar]]'s successor to the Cobra MkIII, available in trader and fighter variants&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2010-11-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[OosoundsCombined OXP|Combined Murgh, Wiggy &amp;amp; xaotik's sounds]] combines the 3 available packs from Murgh, Wiggy and xaotik&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|con=Murgh, Wiggy, xaotik&lt;br /&gt;
|date=2009-09-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Systems&lt;br /&gt;
|desc=[[Commies]] Adds [[Astro Mines]], [[CZGF|Factories]], [[SLAPU|Production Units]], [[Worker%27s Commuter|Commuters]] &amp;amp; special police ships to Communist systems&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|con=Ramirez, Murgh, johnsmith, HueijRevisited&lt;br /&gt;
|date=2010-05-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[CompactHUD|Compact HUD]] provides an alternative HUD with a clean look&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Condor]] adds a very powerful police and Navy Cruiser&lt;br /&gt;
|aut=Charlie&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2010-10-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Console HUD]] Azure themed semi-transparent HUD with balanced array of indicators&lt;br /&gt;
|aut=CaptSolo&lt;br /&gt;
|date=2011-07-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Contractor ZZ1]] Very fast combat 'stealth' ship. Appears in-game as a Bounty-hunter and rarely as Pirate. Buyable&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2011-01-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Copperhead]] Redux of core ship in Archimedes Elite slightly modified. NPC and player buyable&lt;br /&gt;
|aut=CaptSolo&lt;br /&gt;
|date=2011-05-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=10819 Coyote's Run] brings [[:User:El Viejo|El Viejo]]'s novella [[:Category:Oolite stories#El Viejo|Coyote]] to life as an exciting mission OXP&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|con=El Viejo, Smivs, Wyvern&lt;br /&gt;
|date=2011-09-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Croydon Starsoarer]] adds a ship that is similar to the Asp in specification&lt;br /&gt;
|aut=SimonB&lt;br /&gt;
|con=pagroove&lt;br /&gt;
|date=2010-05-08&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[CustomSounds OXP|CustomSounds]] replaces/adds 40+ sounds, featuring music &amp;amp; extensive use of calm female computer voice for warnings&lt;br /&gt;
|aut=milinks&lt;br /&gt;
|date=2006-12-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[DWCobra|Dark Wheel Cobra]] is a custom Cobra Mk III model, as seen on the cover of the Elite Manual&lt;br /&gt;
|aut=ramon&lt;br /&gt;
|date=2006-11-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[[Debug OXP]] is a special OXP that enables JavaScript console support in test releases of Oolite (1.70 and later)&lt;br /&gt;
|aut=Ahruman&lt;br /&gt;
|date=2010-06-19&lt;br /&gt;
|work=N}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[http://deephorizonindustries.com/Gas_Giant_Skimming.html Deep Horizon - Gas Giants Skimming] allows to skim gas giants to refuel a ship or mine them for rare minerals&lt;br /&gt;
|aut=Cdr. Cheyd&lt;br /&gt;
|date=2010-07-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://deephorizonindustries.com/Lights_Down.html Deep Horizon - Lights Down] lowers ambient light within system to give more natural feel to planets and ships&lt;br /&gt;
|aut=Cdr. Cheyd&lt;br /&gt;
|date=2010-07-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://deephorizonindustries.com/Nav_Buoy.html Deep Horizon - Nav Buoy 1.0] replaces Witchpoint, Station, and other Nav Buoys with a new model&lt;br /&gt;
|aut=Cdr. Cheyd&lt;br /&gt;
|date=2011-07-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[http://deephorizonindustries.com/Pirate_Ambushes.html Deep Horizon - Pirate Ambushes] adds pirates that ambush the player upon exit from witchspace&lt;br /&gt;
|aut=Cdr. Cheyd&lt;br /&gt;
|date=2010-07-06&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://deephorizonindustries.com/DH-Systems.html Deep Horizon - Systems] textures the main planet of a system as well as adding moons and additional planets&lt;br /&gt;
|aut=Cdr. Cheyd&lt;br /&gt;
|date=2010-07-06&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Deep Space Dredger]] adds dockable Space Dredgers, defended by [[Sabre]] fighters, and a missile to salvage derelict ships&lt;br /&gt;
|aut=Sabre&lt;br /&gt;
|date=2011-01-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[DeepSpacePirates|Deep Space Pirates]] adds pirates and asteroids outside the space lanes&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2010-01-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Deepspace Ships#Deepspace HUDs|Deepspace HUD]] is an alternative HUD with two versions&lt;br /&gt;
|aut=DeepSpace&lt;br /&gt;
|date=2010-02-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Deepspace Ships]] replaces the default ships with new textures&lt;br /&gt;
|aut=DeepSpace&lt;br /&gt;
|date=2010-02-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Deposed OXP|Deposed]] is a series of missions set in Galaxy 4 for an experienced Commander&lt;br /&gt;
|aut=Cdr. Wombat&lt;br /&gt;
|con=Commander McLane, Eric Walch&lt;br /&gt;
|date=2009-03-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Systems&lt;br /&gt;
|desc=[[Dictators OXP|Dictators]] adds a range of ships and stations to each dictatorship and offers new trading opportunities to players&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2011-07-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Diso OXP|Diso]] adds extra planets and stations to the Diso system in Galaxy 1&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2010-11-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Display reputation OXP|Display Reputation]] lets you know your current reputations in the passenger ferrying and the cargo contract market&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2010-03-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Oolite Docking Clearance Protocol (v1.72 or later)|Docking Clearance]] enables the docking clearance protocol for all stations&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2008-12-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Griff Industries|Dodo Stations]] adds new textures for Dodecahedron stations&lt;br /&gt;
|aut=Griff, CaptKev&lt;br /&gt;
|date=2010-05-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Dr HUD OXP|Dr HUD]] is an alternative HUD&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2006-12-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Dragon|Dragon Assault Craft]] adds a heavy combat ship, and the Military Smart Missile, an improved hard head&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2008-11-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Dragon#Download|Dragon Military Missile]] adds an enhanced hardhead, seeks priority targets when ECM'd&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2008-11-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.mediafire.com/?rllzzcbkwgm Dragonfly/Firefly S.T] adds [[Dragonfly S.T]] &amp;amp; much faster [[Firefly S.T]]. Ideal small fast ships for pirates or bounty hunters&lt;br /&gt;
|aut=Rustybolts&lt;br /&gt;
|date=2009-10-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Eagle Mk II]] adds the cheap Eagle Mk II escort vessel in several different versions, including an enhanced SE&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|date=2006-03-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[ADCK%27s Eagles|Eagles Mk I to IV]] adds four Eagle Long Range Fighters to the game&lt;br /&gt;
|aut=ADCK&lt;br /&gt;
|date=2010-04-07&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Energy Equipment OXP|Energy Equipment]] adds a pylon-mounted automatically triggered top-up for when the juice runs low&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-03-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Escape Pod Locator OXP|Escape Pod Locator]] is a piece of equipment to allow tracking of escape pods in system&lt;br /&gt;
|aut=Capt Murphy&lt;br /&gt;
|date=2011-07-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Escort Contracts OXP|Escort Contracts]] allows players to enter into short-term escort contracts with NPC lone wolf traders&lt;br /&gt;
|aut=Capt Murphy&lt;br /&gt;
|date=2011-09-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[ETT Homing Beacon]] marks a position in space by deploying a pylon-mounted beacon&lt;br /&gt;
|aut=Twisted&lt;br /&gt;
|con=Lone_Wolf&lt;br /&gt;
|date=2011-04-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Executive SpaceWays]] adds [[Delta Long-Range Escort|Delta]]/[[Gemini Escort|Gemini]] Escorts, [[Starseeker Personal Shuttle|Starseeker]]/[[Trident Executive Shuttle|Trident Exec]] Shuttles, [[Strelka Cruise Liner]]s&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2010-06-19&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.box.net/shared/moreq536ht#/shared/moreq536ht/1/71484311/786362645/1 Extra Thargoids] adds 2 types of Thargoid ship, each of which packs surprises. Replaces the 'Poet' Frigate OXP&lt;br /&gt;
|aut=UK_Eliter&lt;br /&gt;
|date=2011-09-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Systems&lt;br /&gt;
|desc=[[Factions OXP|Factions]] from anarchy, feudal, dictatorship &amp;amp; communist systems meet in multi-government systems and start fighting&lt;br /&gt;
|aut= m4r35n357&lt;br /&gt;
|date=2011-07-29&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Famous Planets OXP|Famous Planets]] adds unique textures, new descriptions, and theme tunes for many planets in G1 and G2&lt;br /&gt;
|aut=pagroove&lt;br /&gt;
|con=Cdr. Cheyd, Stromboli, Pangloss, CaptKev, Drew Wagar, Thargoid, Svengali, Lestradae, UK Eliter&lt;br /&gt;
|date=2010-09-30&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Famous Planets Liners OXP|Famous Planets Liners]] adds Spaceway Liners on the 4 spaceways from Lave to Zadies&lt;br /&gt;
|aut=pagroove&lt;br /&gt;
|con=Ramirez, Presti70, Thargoid&lt;br /&gt;
|date=2009-03-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Far Arm ships|Far Arm Ships]] adds [[Far Arm Sunracer|Sunracer]]s, [[Far Arm Scow|Scow]]s, [[Far Arm Tanker|Tanker]]s, [[Far Arm Corsair|Corsair]]s, [[Far Arm Dart|Dart]]s, [[Far Arm Hunter|Hunter]]s, [[Far Arm Cruiser|Cruiser]]s, [[Far Arm Titan|Titan]]s, [[Far Arm Manchi Vulture|Vulture]]s, and [[Far Arm Manchi Wasp|Wasp]]s&lt;br /&gt;
|aut=Zieman&lt;br /&gt;
|date=2010-10-02&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Far Star Murderer]] adds a mid-range fighter / trader, with a fair sized cargo bay&lt;br /&gt;
|aut=8-Bit Apocalypse&lt;br /&gt;
|date=2005-01-01&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://www.box.net/shared/d57y0uip74 Far Sun] places suns further away from the planet than standard Oolite&lt;br /&gt;
|aut=Kaks&lt;br /&gt;
|date=2010-05-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.box.net/shared/moreq536ht Fer de Lance 3G] adds player &amp;amp; NPC Fer de Lance versions with custom paint jobs &amp;amp; altered specs&lt;br /&gt;
|aut=UK_Eliter&lt;br /&gt;
|date=2011-10-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Fer de Lance NG]] adds a more powerful version of the Fer de Lance with several custom paint jobs&lt;br /&gt;
|aut=alien&lt;br /&gt;
|date=2005-03-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Ferdepai]] adds a new fighter / trader to Galaxy 2&lt;br /&gt;
|aut=johnsmith&lt;br /&gt;
|date=2006-12-17&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Systems&lt;br /&gt;
|desc=[[Feudal States]] adds the [[Jäger]], the [[Korvette]], the [[Zerstörer]], a [[Royal Hunting Lodge]] and other elements to feudal systems&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2011-05-30&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Fighter HUD (Oolite)|Fighter HUD]] is an alternative HUD&lt;br /&gt;
|aut=CaptKev&lt;br /&gt;
|date=2008-05-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Firewasp]] adds a fast interceptor&lt;br /&gt;
|aut=Draco_Caeles&lt;br /&gt;
|date=2006-05-10&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Fireworks OXP|Fireworks]] allows you a joyful celebration of whatever it is you want to celebrate&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-05-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Flight Log OXP|Flight Log]] adds a log of the last 10 systems visited&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-01-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Flying Dutchman OXP|Flying Dutchman]] adds the small chance to meet a Ghost Ship in the Ooniverse&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|con=Griff&lt;br /&gt;
|date=2011-04-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[[Freaky Thargoids OXP|Freaky Thargoids]] is a shader demonstration for Oolite&lt;br /&gt;
|aut=Ahruman&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2011-02-03&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Free Trade Zone]] adds an independent trading post of dubious legality to Multi-Government systems&lt;br /&gt;
|aut=Disembodied&lt;br /&gt;
|con=Commander McLane&lt;br /&gt;
|date=2010-10-08&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Frog Space Rickshaw]] adds a chatty space taxi service to the safer systems&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2006-01-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Fuel Collector OXP|Fuel Collector]] scoops fuel from killed ships and collects fuel while cruising, even in witch space&lt;br /&gt;
|aut=Frame&lt;br /&gt;
|con=Commander McLane&lt;br /&gt;
|date=2011-07-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Fuel Station OXP|Fuel Station]] adds fly-thru Fuel Stations and Fuel Satellites near the witchpoint and along route one&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-08-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Fuel Tank]] v2.2 mounts in place of a missile, to top up 3 light years of fuel&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2008-05-31&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Furball OXP|Furball]] adds barroom brawls that've got out of hand. Furious fugitives flee from pissed off police on the station's doorstep&lt;br /&gt;
|aut=Caracal&lt;br /&gt;
|con=m4r35n357&lt;br /&gt;
|date=2011-06-06&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Systems&lt;br /&gt;
|desc=[[Galactic Navy OXP|Galactic Navy]] adds more ships and stations to the arsenal of the Galactic Navy. Allows to join the Navy Reserves&lt;br /&gt;
|aut=Nemoricus&lt;br /&gt;
|date=2011-10-13&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[GalDrivePod]] A portable Galactic Hyperdrive unit, allowing you to complete the &amp;quot;Lost Worlds Grand Tour&amp;quot;&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2011-03-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://www.boxcn.net/shared/5dqx22u06i Galaxy Info] helps you search for systems by criteria you select and will try to locate the nearest one&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-04-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Gates OXP|Gates]] ads short-cut jump gates to suitable systems, speeding journeys between the main station and witchpoint&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-04-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Generation Ships OXP|Generation Ships]] adds encounters with the mythical Generation Ships from time to time&lt;br /&gt;
|aut=Draco_Caeles&lt;br /&gt;
|con=Commander McLane&lt;br /&gt;
|date=2011-04-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Globe station|Globe Station]] is a new type of stations that appears in advanced systems&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|con=Svengali&lt;br /&gt;
|date=2009-10-22&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Greek Ships OXP|Greek Ships]] adds [[Penelope Class Freighter]]s, [[Telemachus Class Escort]]s, and [[Ulysses Class Interceptor]]s&lt;br /&gt;
|aut=8-Bit Apocalypse&lt;br /&gt;
|date=2005-07-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.box.net/shared/oqpkkzbl30jmm14vj2bo Green Gecko]: meet the Green Knights of Lago in their awesome twin-laser Geckos&lt;br /&gt;
|aut=El Viejo&lt;br /&gt;
|date=2011-09-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Griff ArcElite|Griff's ArcElite]] adds versions of native Oolite ships textured &amp;amp; shaded to resemble the Acorn Archimedes version of Elite&lt;br /&gt;
|aut=Griff&lt;br /&gt;
|date=2008-09-29&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Griff Boa]] contains the famous Griff Boa&lt;br /&gt;
|aut=Griff&lt;br /&gt;
|date=2010-06-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://www.boxcn.net/shared/k2lvh3enuy Griff's Explosion Debris] adds new alloy &amp;amp; debris models to exploding ships&lt;br /&gt;
|aut=Griff&lt;br /&gt;
|con=Thargoid&lt;br /&gt;
|date=2009-02-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Griff Krait]] adds a heavily modified Krait, similar in design to the Griff Boa&lt;br /&gt;
|aut=Griff&lt;br /&gt;
|date=2010-06-17&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Griff Industries|Griff's Normalmapped Ships]] adds some of the best looking ships, stations, and flotsam available in Oolite&lt;br /&gt;
|aut=Griff&lt;br /&gt;
|date=2011-08-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Griffin Two (Oolite)|Griffin Two]] adds the Griffin Mk II from Frontier&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2005-10-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Gritty Coriolis OXP|Gritty Coriolis]] alternates the Coriolis stations with two elaborate gritty Corioli&lt;br /&gt;
|aut=xaotik&lt;br /&gt;
|date=2006-02-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://wiki.alioth.net/images/2/2d/G-HUD_Mk2.oxp.zip G-HUD Mk2] adds an alternative HUD&lt;br /&gt;
|aut=Gunney Plym&lt;br /&gt;
|date=2008-07-08&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Halsis]] features a female cockpit voice, sometimes called Hal's Hot Sister&lt;br /&gt;
|aut=Ovvldc&lt;br /&gt;
|date=2006-08-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[BoyRacer|Hatchling BoyRacers]] adds the  talkative (and often insulting) [[BoyRacer]]s to more advanced systems&lt;br /&gt;
|date=2006-01-13&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Staer9 haulerp30|Hauler P30]] is a very large cargo ship made by Staer9 Industries&lt;br /&gt;
|date=2011-05-11&lt;br /&gt;
|aut=Staer9&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Hawksound]] features a quality female computer voice, new weapon, damage and some station interface sounds&lt;br /&gt;
|aut=Hawkstrom&lt;br /&gt;
|date=2008-11-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Herald Military Gunboat|Herald]] adds the [[Herald Military Gunboat]], a powerful police and Navy interceptor&lt;br /&gt;
||aut=Flying_Circus&lt;br /&gt;
|date=2005-01-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Hired Guns OXP|Hired Guns]] adds escort ships that can be contracted to accompany you on your next journey&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-02-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Hognose|Hognose Tugships]] adds the [[Hognose]], a chatty tug ship that can be seen towing broken down ships&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|con=Jonnycuba&lt;br /&gt;
|date=2006-03-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[HoOpy Casino]]s appear near the station in advanced systems. You can win or lose credits in games of chance&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2010-06-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Hotrods OXP|Hotrods]] adds custom paint jobs to classic Elite ships, racing vehicles, and a space gang that doesn't like the player&lt;br /&gt;
|aut=Kaks&lt;br /&gt;
|con=Arexack_Heretic, Murgh&lt;br /&gt;
|date=2009-03-16&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[HyperCargo OXP|HyperCargo]] adds an extended and expanded cargo handling system&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-09-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Hyperradio js OXP|Hyperradio]] is an expandable music-player&lt;br /&gt;
|aut=Svengali&lt;br /&gt;
|date=2011-02-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Icarus (Oolite)|Icarus]] adds a small fighter / trader based on blueprints from the lost Solice system&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|date=2007-07-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Illegal_Goods_Tweak_OXP|Illegal Goods Tweak 1.5]] adds interactions with Galcop customs on docking at a main station with Contraband in the hold&lt;br /&gt;
|aut=Capt Murphy&lt;br /&gt;
|date=2011-08-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Illicit Unlock OXP|Illicit Unlock]] allows the player to fly all the classic Elite ships&lt;br /&gt;
|aut=tgape&lt;br /&gt;
|date=2005-10-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Griff_Industries#Related_OXP's_by_Other_Authors|Illicit Unlock - Griff Version]] allows the player to fly [[Griff Industries#Griff's Normalmapped Ships OXP|Griff's]] pirate/viper Ships&lt;br /&gt;
|aut=ADCK&lt;br /&gt;
|con=dertien&lt;br /&gt;
|date=2011-02-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Imperial Courier (Oolite)|Imperial Courier]] adds the powerful Imperial Courier from Frontier, constructed by [[Seldar Shipyards]]&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|con=Commander McLane&lt;br /&gt;
|date=2007-06-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Imperial Trader (Oolite)|Imperial Trader]] adds the powerful Imperial Trader from Frontier&lt;br /&gt;
|aut=ADCK&lt;br /&gt;
|date=2010-06-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Interstellar help OXP|Interstellar Help]] allows you to help out traders who got stuck in interstellar space without fuel&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-03-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Ionics OXP|Ionics]] adds a series of missions featuring the Ionics Company of Zaria, the Ramaza Liberation Front and The Link&lt;br /&gt;
|aut=Galileo&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2010-08-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[IronHide OXP|IronHide]] introduces the new range of IronHide ship armour from the Aquarian Shipbuilding Corporation&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-02-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Iron Raven]] is a multi-stage mission to investigate a dangerous conspiracy on behalf of GalCop High Command&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2011-10-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Ixian Ships|Ixian Military Ships]] adds Ixian [[Ixian Battle Cruiser|Battle Cruiser]]s, [[Ixian Bezerka|Bezerka]]s, [[Ixian Gunship|Gunship]]s and [[Ixian No-Ship Mark I|No-Ship]]s from Dune&lt;br /&gt;
|aut=8-Bit Apocalypse&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2009-03-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Ixian Ships#Ixian Freighter|Ixian Freighter]] adds a civilian freighter to the universe&lt;br /&gt;
|aut=8-Bit Apocalypse&lt;br /&gt;
|date=2005-01-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Jabberwocky]] adds the powerful Jabberwocky fighter / trader&lt;br /&gt;
|aut=Flying_Circus&lt;br /&gt;
|date=2006-03-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[JellyBaby Dispenser]] adds a handy Jellybaby Dispenser for your cockpit&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2011-03-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Kestrel &amp;amp; Falcon OXP|Kestrel &amp;amp; Falcon]] adds buyable Star Wars style [[Falcon_%28Oolite%29|Falcon]] for pirates/traders and the [[Kestrel]], a police/navy interceptor&lt;br /&gt;
|aut=Charlie&lt;br /&gt;
|con=Kaks&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Killer_Wolf's_Dynamic_HUD|Killer Wolf's Dynamic HUD]] adds a version of the dynamic HUD first seen in Killer Wolf's Werewolf ships, to all ships&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|con=Thargoid&lt;br /&gt;
|date=2010-07-08&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Killit_OXP|Killit]] adds a bunch of insane super weapons&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-05-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Kirin]] adds a heavy military hauler, CV &amp;amp; XM versions used by both pirates &amp;amp; traders&lt;br /&gt;
|aut=ClymAngus&lt;br /&gt;
|con=Cdr. Wyvern&lt;br /&gt;
|date=2009-09-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Klepto-HUD OXP|Klepto-HUD]] is a different take on a HUD with precise crosshairs&lt;br /&gt;
|aut=Kleptoid&lt;br /&gt;
|date=2006-03-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://sancho.dk/oolite/lane_legal.zip ''Lane Legal Racers''] adds NPC versions of [[Krait]]s, [[Mamba]]s, and [[Sidewinder]]s from different [[Racers#Listing_of_sponsored_teams|racing teams]]&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-09-27&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Lave OXP|Lave]] is a system make-over for Lave, adding all features described in The Dark Wheel novella included with original Elite&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2009-12-31&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Lave Academy OXP|Lave Academy]] adds Lave Academy Station above Lave &amp;amp; other planets, with 3 mini-games to test Commanders' skills&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-06-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[http://www.boxcn.net/shared/9q1cbydgan LinkG7] is a mission in Galaxy 7&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-02-16&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Llama]] adds the Llama fighter / trader. Updated from the version of Oosat1 to fix a small bug&lt;br /&gt;
|aut=Flying_Circus&lt;br /&gt;
|date=2006-02-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://www.boxcn.net/shared/jtpt2vlol5 Long Range Target Scanner] shows all ships currently in your system and allows to target them&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-05-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[LongWay_OXP|Long Way Around]] adds a transport mission well suited to the novice in Galaxy 1&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2009-04-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Longshot]] adds the Longshot fighter / trader, regarded by many as a cheaper alternative to the Cobra Mk III&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Lovecats.oxp|Lovecats]] is a mission about love &amp;amp; betrayal amongst the feline races of Galaxy 4. Fast ship &amp;amp; hard heart required!&lt;br /&gt;
|aut=johnsmith&lt;br /&gt;
|date=2011-07-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Second-hand ships|M-Pack (rusties)]] adds rusty banger versions of all Classic Elite ships in poor condition but still can haul cargo&lt;br /&gt;
|aut=murgh&lt;br /&gt;
|date=2006-01-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Manta]] adds the Manta light escort craft&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Marett Space Corporation OXP|Marett Space Corporation]] releases [[Adder Mk II]], [[Mosquito Trader]], [[Mosquito Sport]], new fighters / medium traders&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://www.crimsonforge.co.uk/cloister/MedusaHud.oxp.zip Medusa HUD] is an alternative HUD&lt;br /&gt;
|aut=ClymAngus&lt;br /&gt;
|date=2009-01-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Mega-Walnut Dashboard OXP|Mega-Walnut Dashboard]] is a generic version of the fabled Fer de Lance HUD&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2005-07-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Merlin_(Oolite)|Merlin]] Ships are interceptors used by the Police &amp;amp; Navy, but also available on the open market&lt;br /&gt;
|aut=Charlie&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[MildAudio]] Sound Set&lt;br /&gt;
|aut=xaotik&lt;br /&gt;
|date=2006-02-15&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Military_Fiasco|Military Fiasco]] adds a navy mission for Commanders with &amp;gt; 1,000 kills. Also equips Navy with powerful cruisers&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2011-01-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Military Fuel Injectors OXP|Military Fuel Injectors]] is an upgrade to the vanilla injectors that gives a velocity boost and recaptures unburnt fuel&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-07-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Military station|Military Station]] adds well armed Military Stations to the more advanced systems&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Military Stingray Mk. II|Military Stingray]] adds an ex-military ship that may show up in pirate hands or for the player to buy&lt;br /&gt;
|aut=CaptKev&lt;br /&gt;
|date=2007-03-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Milspec HUD|Milspec HUD]] is an alternative HUD with targeting aids and an emphasis on functionality&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2010-07-08&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Misjump_Analyser|Misjump Analyser]] scans witchspace &amp;amp; on detection of disturbances sounds an alarm &amp;amp; logs location of disturbance&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2010-05-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?p=135619#p135619 Misjump Inducer] can turn on/off misjumps on demand&lt;br /&gt;
|aut=Switeck&lt;br /&gt;
|date=2011-04-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Missile_Analyser|Missile Analyser]] scans incoming missiles &amp;amp; sets target to incoming missile when it is no standard missile&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2010-05-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Missiles_and_Bombs|Missiles &amp;amp; Bombs]] adds a wide variety of missiles &amp;amp; bombs that are are available to player &amp;amp; NPCs alike&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2009-12-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Missionaries OXP|Missionaries]] adds clerics of four faiths who spam Commanders with requests to worship their Gods&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Moccasin]] adds light escort craft from Xeceesian Shipyards modeled after ArcElite core ship&lt;br /&gt;
|aut=CaptSolo&lt;br /&gt;
|date=2011-06-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Mod-HUD]] is a slight modification / re-organization of the standard Oolite HUD without surround boxes&lt;br /&gt;
|aut=CaptSolo&lt;br /&gt;
|date=2011-05-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/monument.zip Monument] sometimes adds a monument to famous Commanders close to the Sun&lt;br /&gt;
|aut=dajt&lt;br /&gt;
|date=2005-05-28&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Morrigan]] adds a vast trade ship to the Universe&lt;br /&gt;
|aut=Flying_Circus&lt;br /&gt;
|date=2009-12-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Oosounds2_OXP|''Murgh's Replacement Sounds'']] contains 10 new sounds&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2005-08-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Murgh_Xships OXP|Murgh's X-Ships]] adds [[Bandy-Bandy]], [[Chuckwalla]], [[Eel Rapier]], [[Taipan]] (fast courier craft &amp;amp; 2 light escort ships)&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2009-09-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[NavalGrid OXP|Naval Grid]] enhances recharging rates by linking the naval energy unit to military-boosted shields&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-03-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Neolite Ships]] is an Oolite ships replacement set&lt;br /&gt;
|aut=SimonB&lt;br /&gt;
|date=2009-07-11&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/newships.oxp.zip ''New Ships''] adds [[Hamadryad]], [[Josher]], [[Naga]], [[Ringhals]] (mining and trade ships from previous versions of Elite)&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2006-05-15&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[http://www.box.net/shared/moreq536ht Nexus missile] adds multiple versions of a multi-warhead, 'anti-hostile' (or, in one case, anti-thargoid) missile&lt;br /&gt;
|aut=UK_Eliter&lt;br /&gt;
|date=2011-10-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/hud_ng.oxp.zip NG HUD] is an alternate HUD. All standard functions, but with a personal view&lt;br /&gt;
|aut=alien&lt;br /&gt;
|date=2005-03-06&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[NPC-shields OXP|NPC-shields]] gives shields to NPCs, together with a nice glow effect&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-04-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://wiki.alioth.net/index.php/Numeric_Style_HUDs Numeric Style HUDs] New invention/numeric gauges.[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9977 Info]&lt;br /&gt;
|aut=CommonSenseOTB&lt;br /&gt;
|date=2011-06-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/nuvipers.zip Nu Vipers] increases the types of Viper patrol ships with [[GalCop Viper Mark II]], [[GalCop Viper Cruiser]]&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Nukes.oxp|Nuclear Torpedos]] adds some powerful, but slow moving, missiles&lt;br /&gt;
|aut=E. Walch, Cdr. Wyvern&lt;br /&gt;
|date=2010-06-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Offender traders OXP|Offender Traders]] makes some traders into offenders/fugitives&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-04-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Old Ships]] adds Elite-A [[Bushmaster Miner]]s, [[Cat (Oolite)|Cat]]s, [[Chameleon (Oolite)|Chameleon]]s, [[Ghavial (Oolite)|Ghavial]]s, [[Iguana (Oolite)|Iguana]]s, [[Monitor (Oolite)|Monitor]]s, [[Ophidian (Oolite)|Ophidian]]s, [[Salamander (Oolite)|Salamander]]s&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2006-08-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Old Ships 2010]] is a retextured version of [[Old Ships]], adding the bonus Monitor 2 ship&lt;br /&gt;
|aut=pagroove&lt;br /&gt;
|con=Murgh, ADCK, Simon B, Lestradae&lt;br /&gt;
|date=2011-02-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Oo-Haul]] adds vast bulk [[L-Crate Hauler]]s to the space lanes and offers missions at [[Your Ad Here!|constores]] to safely escort them&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|con=Eric Walch, Ark&lt;br /&gt;
|date=2009-02-21&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[ooCheat_OXP|ooCheat]] adds a cheat menu to the game&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-02-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[http://www.box.net/shared/rrlm77ztzm Oolite en français] is a French Oolite localization&lt;br /&gt;
|aut=Pierre-Olivier&lt;br /&gt;
|date=2009-07-12}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[http://marc-schaffer.ch/data/OoliteGerman_V0.3.zip Oolite auf Deutsch] is a German Oolite localization&lt;br /&gt;
|aut=SwissMäc&lt;br /&gt;
|date=2009-06-02&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[http://www.box.net/shared/p3engis1ds Oolite Italiano] is an Italian Oolite localization&lt;br /&gt;
|aut=another_commander&lt;br /&gt;
|date=2010-06-15&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=Oolite in Russian: [http://www.roolite.org Roolite.org] provides localizations of Oolite 1.74.2 and some OXPs. Also check [http://www.elite-games.ru/conference/viewtopic.php?t=48476&amp;amp;start=0 Elite Games]&lt;br /&gt;
|aut=Seventh&lt;br /&gt;
|date=2009-03-26&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://www.box.net/shared/x9u5xoulkq Orbits] positions planets on orbits around the sun&lt;br /&gt;
|date=2010-07-01&lt;br /&gt;
|aut=Ebi&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Ore Processor]] extracts valuable materials from asteroid fragments when mounted to a ship's fuel scoop&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|con=Ark, Kaks, Eric Walch&lt;br /&gt;
|date=2011-01-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Orisis]] BigTraders are new passenger liners that ferry passengers around&lt;br /&gt;
|aut=pagroove&lt;br /&gt;
|con=ADCK, Thargoid&lt;br /&gt;
|date=2010-01-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Outrider (Oolite)|Outrider]] is a medium fighter produced by the [[Taranis Corporation HQ (Oolite)|Taranis Corporation]]&lt;br /&gt;
|aut=Roberto&lt;br /&gt;
|date=2006-08-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[[OXPConfig]] provides means to configure supported OXPs, to recognize errors, or to avoid clashes&lt;br /&gt;
|aut=Svengali&lt;br /&gt;
|date=2011-07-16&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[P.A. Groove Stations OXP|P.A. Groove Stations]] adds lots of different types of Coriolis and Dodec Stations&lt;br /&gt;
|aut=pagroove&lt;br /&gt;
|con=Griff, Commander McLane&lt;br /&gt;
|date=2010-04-16&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Pallas]] adds a fast but lightly shielded fighter.&lt;br /&gt;
|aut=Charlie&lt;br /&gt;
|con=Svengali&lt;br /&gt;
|date=2010-12-02&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Pelamis]] adds the Pelamis trade ship&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2006-04-24&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Phoenix]] is a strange ship, built from salvaged parts from various Serpent Class ships&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2007-01-17&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://wiki.alioth.net/index.php/Pie_Chart_Style_HUDs Pie Chart Style HUDs] New invention=&amp;gt;pie gauges.[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9788 Info]&lt;br /&gt;
|aut=CommonSenseOTB&lt;br /&gt;
|date=2011-05-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Pirate Coves OXP|Pirate Coves]] adds rock hermits that have been taken over by pirates in more dangerous systems&lt;br /&gt;
|aut=lazygun&lt;br /&gt;
|date=2011-08-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/piratetraps.oxp.zip Pirate Traps] are dummy traders which transmit details of pirates firing on them to the police&lt;br /&gt;
|aut=popsch&lt;br /&gt;
|date=2006-01-04&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Planetfall_OXP|Planetfall]] allows the player to land on and trade at the planets and moons of each system&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-04-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Pods_OXP|Pods]] adds fuel, missile, bulk &amp;amp; empty cargo pods and pods which jam, explode, have trumbles or take a few scoops&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-03-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Police_IFF_Scanner_Upgrade|Police IFF Scanner Upgrade]] highlights offender and fugitive ships with custom IFF scanner colours&lt;br /&gt;
|aut=Capt Murphy&lt;br /&gt;
|date=2011-09-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Pteradyne Technologies Ships OXP|Pteradyne Technologies Ships]] adds the [[Excalibur]], a buyable combat ship and the [[Paladin]], a military version&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2006-12-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://www.boxcn.net/shared/xccp8ml5cq Pylon Based Equipment Remover] allows to remove a selected piece of equipment from your pylons&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-04-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Python Class Cruiser]] is a large powerful trade ship, which can also hold its own in battle&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2007-07-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://wiki.alioth.net/index.php/Q-Charger Q-Charger] is a Quirium supercharger which promises a 100% speed gain with twice the fuel efficiency of fuel injectors&lt;br /&gt;
|aut=CommonSenseOTB&lt;br /&gt;
|date=2011-08-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/racers.oxp.zip Racers] adds [[Chicaneer Mk II]], [[Chicaneer Mk IV]], [[Dragster Mk I]], and [[Dragster Mk II]] racing ships&lt;br /&gt;
|aut=murgh&lt;br /&gt;
|date=2006-01-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Railgun OXP|Railgun]] introduces a revolutionary new weapons system to the Ooniverse&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-05-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Ramon's Anaconda]] is a fantastic re-imagining of the Anaconda freighter. Check out its special features&lt;br /&gt;
|aut=Ramon&lt;br /&gt;
|con=Griff&lt;br /&gt;
|date=2009-04-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Random_Docking_Music_OXP|Random Docking Music]] plays a random music track from a pre-set list on activating docking computers&lt;br /&gt;
|aut=Frame&lt;br /&gt;
|date=2010-05-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Random Hits OXP|Random Hits]] adds [[Space Bar|seedy space bars]] to anarchy systems that offer large bounties on the galaxy's Most Wanted Criminals&lt;br /&gt;
|aut=LittleBear&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2011-03-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://terrastorage.ath.cx/Marmagka/e8e9ce360da6bb40f5952cbe00f02501/RedSet.zip RedSet] contains red-themed backgrounds for the UI screens&lt;br /&gt;
|aut=another_commander&lt;br /&gt;
|date=2010-06-18&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.purgatori.net/reduxedvamps.htm Reduxed Vampires] adds reworked versions of the Vampire Mk I and Mk II and a Reaper &amp;quot;Gold Edition&amp;quot;&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2010-10-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[RegistrationID|Registration ID]] adds ID tags to all Oolite standard ships&lt;br /&gt;
|aut=Frame&lt;br /&gt;
|date=2010-02-28&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Remorse_Of_Conscience_v2|Remorse Of Conscience]] is a trade ship with a large hold, that can hold its own in combat&lt;br /&gt;
|aut=8-bit Apocalypse&lt;br /&gt;
|date=2005-02-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Renegade Pirates OXP|Renegade Pirates]] adds rare, very well-armed, high bounty pirate versions of Classic Elite ships&lt;br /&gt;
|aut=LittleBear&lt;br /&gt;
|con=Aegidian, Griff&lt;br /&gt;
|date=2006-12-03&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/RVandGS.zip Renegade Viper + Grass Snake] adds [[Renegade Viper|stolen Vipers]] which earn large bounties &amp;amp; [[Grass Snake]], a large pirate trade ship&lt;br /&gt;
|aut=8-bit Apocalypse&lt;br /&gt;
|date=2004-11-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Repair_Bots_OXP|Repair 'Bots]] adds a pylon mounted canister of repair nanobots which attempt to fix damaged equipment in mid-flight&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-02-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Resistance Commander]] gives players a chance to command a squadron in combat&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2011-09-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Retro Rockets OXP|Retro Rockets]] are a handy little piece of equipment which gives your ship a backwards boost out of trouble&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-07-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Ringpod|Ring Pod]] adds a series of racing rings to the Galaxy 1 systems of Lave and Zaonce&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2011-10-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Ring_Racer_OXP|Ring Racer]] adds the Corporate Systems Ring Racing League to Galaxy 1&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-04-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Rock Hermit Locator]] adds equipment to locate Rock Hermits&lt;br /&gt;
|aut=Frame&lt;br /&gt;
|date=2011-03-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Saleza Aeronautics]] adds [[Bellatrix Cruiser]]s, [[Rigel Bomber|Rigel Tactical Bomber]]s, and [[Saiph Interceptor]]s to high tech corporate systems&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2010-10-24&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Santa]] adds very rare Santa Sledge to space lanes escorted by plasma gun toting reindeer space bikers!&lt;br /&gt;
|aut=Griff&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2010-05-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.purgatori.net/scorpius.htm Scorpius] adds a heavily armoured private trading and transport vessel, protected by Vampire escorts&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|con=Griff&lt;br /&gt;
|date=2011-08-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Scourge of the Black Baron]] features combat &amp;amp; transport Galaxy 1 missions&lt;br /&gt;
|aut=Rxke&lt;br /&gt;
|con=Kaks, Thargoid&lt;br /&gt;
|date=2010-08-07&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Scout]] is a cheap but good looking ship from Staer9 that shares a lot of technology with the [[Xeikil]]&lt;br /&gt;
|aut=Staer9&lt;br /&gt;
|date=2011-05-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Second Wave OXP|Second Wave]] adds variants of Thargoid Warship, Thargon Robot Fighter and alien ships&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-06-06&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Selezen's S-Ships]] adds [[GalCop SWAT Viper]]s and [[Oresrian Trader]]s&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|date=2007-07-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Sell equipment OXP|Sell Equipment]] allows for small fee, resale of equipment at 60% price at suitable tech level world&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-02-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[[Shady Cobra OXP|Shady Cobra]] adds shader effects to Cobra Mk III&lt;br /&gt;
|aut=Ahruman&lt;br /&gt;
|date=2007-07-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Shady Sungs]] adds replacement textures for all Classic Elite Ships&lt;br /&gt;
|aut=Sung, ADCK&lt;br /&gt;
|date=2010-05-21&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://wiki.alioth.net/index.php/Shield_Equalizer_%26_Capacitors_OXP Shield Equalizer] balances shield energy automatically. [http://wiki.alioth.net/index.php/Shield_Equalizer_%26_Capacitors_OXP Capacitors] store unused shield energy for use later&lt;br /&gt;
|aut=CommonSenseOTB&lt;br /&gt;
|date=2011-07-03&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Skrounk All-Stars Limited]] adds [[All Stars Large Freighter|Large Freighter]], [[Seymour Class Sled]], [[Starbelly Class Sled]], [[Starhawk]] &amp;amp; [[Starwolf_Mark_I|Starwolf Mk I]]&lt;br /&gt;
|aut=goji62&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Smivs%27_ShipSet|Smiv's Shipset 3.1]] re-skins the ships with a realistic look &amp;amp; non-shader lighting effects. Customisable Player Cobra3&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2011-08-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Snark]] is a powerful fighter/trader, often used by pirates and bounty hunters&lt;br /&gt;
|aut=Flying_Circus&lt;br /&gt;
|date=2006-06-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://wiki.alioth.net/index.php/Sniper_Camera_System_HUD Sniper Camera System] Zoomable camera for surveillance and long-range sniping.[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=10461 Info]&lt;br /&gt;
|aut=CommonSenseOTB&lt;br /&gt;
|date=2011-07-30&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=10515 Sniper Sight] is equipment to help with long distance targeting&lt;br /&gt;
|aut=Wildeblood&lt;br /&gt;
|date=2011-07-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=10176 Sniper Scope MilHUD integrated] is an version of MilHUD with integrated Sniper Sight functionality&lt;br /&gt;
|aut=Wildeblood&lt;br /&gt;
|date=2011-06-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Snoopers]] adds the galactic news network channels&lt;br /&gt;
|aut=DaddyHoggy&lt;br /&gt;
|con=Disembodied, Drew, Svengali&lt;br /&gt;
|date=2011-10-06&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Solid Gold Cobra Mk.3]] is a limited edition Cobra Mk3 to celebrate its 25 years anniversary&lt;br /&gt;
|aut=ADCK&lt;br /&gt;
|date=2010-06-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Solo%27s_Silver_Ships|Solo's Silver Ships]] Adds three ships with silver themed textures &lt;br /&gt;
|aut=CaptSolo&lt;br /&gt;
|date=2011-08-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[http://www.purgatori.net/Sothis.htm Sothis Space Station] is a station from [[Isis Interstellar]] with a compact design of comparable size to a standard Coriolis&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2010-08-08&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Spearhead Interceptor Mk.I]] is a pure fighter, fast &amp;amp; nippy but with weak shields, no cargo bay. Can be twitchy to fly&lt;br /&gt;
|aut=Randell&lt;br /&gt;
|date=2006-07-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[S.I.R.F.|Special Interstellar Repair Facilities]] offer different trading strategies &amp;amp; repair facilities on uncommon trading routes&lt;br /&gt;
|aut=Tinker&lt;br /&gt;
|date=2010-07-02&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.purgatori.net/spectres.htm Spectre] adds [[Isis Interstellar]]'s Vampire Mk V, a secret military vessel fighting Thargoids in witch space&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2011-01-16&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Spy Hunter OXP|Spy Hunter]] is a mission for Galactic Navy for Commander with rating of 'Dangerous' or above&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|date=2009-04-11&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Staer9 Spectre]] is a cheap small fighter with high maneuverability that flopped in the market&lt;br /&gt;
|aut=Staer9&lt;br /&gt;
|date=2011-05-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Star-Jelly]] Beautiful translucent organisms sometimes found in Asteroid fields&lt;br /&gt;
|aut=Smivs,Staer9&lt;br /&gt;
|date=2011-05-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Star Wars Ships]] adds [[A-Wing]], [[B-Wing]], [[Lambda Shuttle]], [[Tie-Fighter]], [[Tie-Interceptor]], [[X-Wing]], [[Y-Wing]]&lt;br /&gt;
|aut=Azzameen&lt;br /&gt;
|date=2006-05-31&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Status Quo Q-bomb OXP|Status Quo Q-bomb]] changes the behaviour of Q-bombs according to the [[Status Quo]] novel&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-02-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[S.T.E]] is a step up from the Cobra III with improved trading capabilities and increased speed&lt;br /&gt;
|aut=Rustybolts&lt;br /&gt;
|date=2009-07-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Stealth OXP|Stealth]] is a small G3 mission showcasing new scanner capabilities &amp;amp; introducing stealth ships&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-03-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://www.purgatori.net/Steampunk%20HUD.htm Steampunk HUD] adds a steampunk style HUD by [[Isis Interstellar]]&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2010-01-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Stellar Serpents OXP|Stellar Serpents]] adds huge space-born serpent monsters which move from system to system and are good hunting prey&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-07-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[http://sancho.dk/oolite/sunskimmers.zip Sunskimmers] adds ships to the sun/planet corridor&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-08-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[SuperCobra]] is larger, faster with stronger hull than Cobra Mk III&lt;br /&gt;
|aut=8-Bit Apocalypse&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2010-10-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Superhub]] from GASEC is the first station that is capable of transporting itself to its destination&lt;br /&gt;
|aut=P.A. Groove&lt;br /&gt;
|date=2009-11-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Swift]] is a very fast ship often used by pirates or bounty hunters with limited cargo space &amp;amp; nominal shields&lt;br /&gt;
|aut=Charlie&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Switeck's Shipping OXP|Switeck's Shipping]] tweaks ships, market prices and NPC behavior. Adds Medium, Hard, and Harder Jameson saves&lt;br /&gt;
|aut=Switeck&lt;br /&gt;
|date=2011-07-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[System Demux (Oolite)|System Demux]] textures home planet, adds planet/moon combination to systems&lt;br /&gt;
|aut=DrBeeb&lt;br /&gt;
|date=2010-07-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[System Redux (Oolite)|System Redux]] textures home planet, adds planet/moon combination to systems&lt;br /&gt;
|aut=CaptKev&lt;br /&gt;
|date=2011-07-16&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://www.box.net/shared/r05ub873b5 TAF Reset] resets the Time Acceleration Factor (TAF) to 1.0 upon docking&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2009-09-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Taranis OXP|Taranis]] is a mission for law abiding Commanders with rating of Competent+. Adds [[Taranis Corporation HQ (Oolite)|Taranis Corporation HQ]]&lt;br /&gt;
|aut=Roberto&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2009-10-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Target_Autolock_OXP|Target Autolock]] updates [[Scanner Targeting Enhancement]] to auto-lock onto attacking ships&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-02-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Target Range OXP|Target Range]] is found in all rich systems with stable governments&lt;br /&gt;
|aut=Caracal&lt;br /&gt;
|date=2010-07-24&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Target Reticle]] updates [[Scanner Targeting Enhancement]] to turn reticle red when target centred&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2010-05-31&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Taxi Galactica]] adds a Taxi Service and a non player flyable taxi cab ship to systems&lt;br /&gt;
|aut=pleb87&lt;br /&gt;
|date=2008-06-12&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Teretrurus Mk.I]] is a medium fighter/trader somewhat faster &amp;amp; tougher than Cobra Mk III, but with smaller cargo bay&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2008-02-01&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Terrapin|Terrapin Trader]] is a medium fighter/trader. A good upgrade from Cobra Mk III&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2008-02-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Tesoura]] is a slow, but well shielded trade ship&lt;br /&gt;
|aut=Randall, Dr. Nil&lt;br /&gt;
|date=2008-02-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Thargoid Carrier]] arms Thargoids with capital carrier&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|date=2006-06-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Thargorn_Threat_oxp|Thargoid Threat]] adds [[Thargoid Terrorizer Frigate]], [[Thargoid Thargorn Battleship]], [[Thargoid Thorgon Cruiser]]&lt;br /&gt;
|aut=Arexack Heretic&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2011-02-03&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Thargoid Wars]] intensifies war with the Thargoids, featuring new attack and defense missions&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2011-07-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Tianve OXP|Tianve]] adds [[Navy Station]], as well as Visuals, including a pulsar, to the Galaxy 1 system of Tianve&lt;br /&gt;
|aut=Drew&lt;br /&gt;
|date=2009-12-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Tiger Mark I]] is a truly awesome (and very expensive) multi-role craft&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2006-05-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Tionisla Orbital Graveyard]] adds the famed graveyard to Tionisla, G1, as described in “The Dark Wheel” novella&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2011-02-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Tionisla Reporter]] adds a mission for a starting commander&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2011-07-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[TCAT OXP|To Catch a Thargoid]] is a G3 follow-up mission to Thargoid Plans, for Dangerous or Elite rank Commanders&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-12-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Torus station|Torus Station]] adds a vast 2001 style space station to very high tech level systems&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|con=Svengali&lt;br /&gt;
|date=2010-10-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Total patrol OXP|Total Patrol]] makes police ships patrol between planet, witchpoint &amp;amp; sun&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-03-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[ToughGuys|ToughGuys]] Adds 3 levels of increased toughness of 'Baddies', and gives a backdrop for an immersive storyline&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2011-02-16&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Trader Outpost (Oolite)|Trade Outpost]] adds Griff's trade outpost without ads&lt;br /&gt;
|aut=CaptKev, Griff, Ark&lt;br /&gt;
|date=2009-02-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Traffic_Control_OXP|Traffic Control]] personnel gives help with approach to and manual docking at all main stations&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-06-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Transhab station|Transhab Station]] adds a large station with rotating arms to some medium tech level systems&lt;br /&gt;
|aut=Draco_Caeles&lt;br /&gt;
|date=2006-06-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Transports]] adds [[CoachWhip]], [[Coral]], [[Woma]]&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|con=Eric Walch, Kaks&lt;br /&gt;
|date=2010-12-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://wiki.alioth.net/images/d/d9/TrekHud.zip Trek HUD] replaces your HUD with a Star Trek NG LCARS-style HUD&lt;br /&gt;
|aut=barabis&lt;br /&gt;
|date=2008-11-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Trident Down]] contains a series of Galaxy 4 missions investigating a vicious attack on a [[Executive SpaceWays|Trident Shuttle]]&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2011-08-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[UPS Courier]] offers Commanders transport of goods/documents &amp;amp; occasional combat missions&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2011-03-29&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Urutu Mark III &amp;amp; Urutu Mark IV]] are medium fighters/traders from Elite-A&lt;br /&gt;
|aut=Milinks&lt;br /&gt;
|date=2006-09-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Vampire]] adds the Purgatori Vampire series of combat ships&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2007-01-29&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Vampire - Diamondback]] adds the Diamondback Vampire series of combat ships&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2010-04-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Vampire - Dominatrix]] adds the Dominatrix Vampire series of combat ships&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2009-12-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Vector OXP|Vector]] is a unusual mission type - fast money, slavers, tricks and GalCop is watching you...&lt;br /&gt;
|aut=Svengali&lt;br /&gt;
|date=2011-02-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Velocity_OXP|Velocity]] is a fast fighter ship&lt;br /&gt;
|aut=Sabre&lt;br /&gt;
|date=2009-09-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.purgatori.net/Venom.oxp.zip Venom] adds [[Venom]]s in normal and renegade versions  from [[Isis Interstellar]]&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2009-12-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Vortex OXP|Vortex]] A new ex-military player ship. Rare, expensive and powerful - kitted out with advanced and unique features&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-03-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.purgatori.net/wasps.htm Wasps] adds formation flying wasps, queen wasps, and wasp nests&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|con=Thargoid, Ahruman, Eric Walch&lt;br /&gt;
|date=2010-08-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/weeviloid2.zip ''Weeviloid''] adds [[Weeviloid Hunter]]s, fearsome multi-gunned war ships and [[Weeviloid Scoutship]]s, light trade ships&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2006-05-11&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Welcome_Mat_OXP|Welcome Mat]] upgrades the comms systems to expand the information that is given on arrival in new system&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-06-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Werewolf]] from [[Isis Interstellar]] has 3 variants:  [[Werewolf|Werewolf ~ Damage Inc.]], [[Werewolf|Werewolf (Civilian)]] &amp;amp; [[Werewolf|Werewolf (Purgatori Model)]]&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2011-02-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Wolf_Mk.2_%28Oolite%29|Wolf Mk II]] adds the powerful Wolf Mk II, as seen in Elite-A&lt;br /&gt;
|aut=Ark&lt;br /&gt;
|date=2009-07-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://wiki.alioth.net/images/0/06/Wolfs_variants.zip Wolfwood's Variants] adds [[Asp_Mk.I|Asp Mk I]], [[Cobra Courier]], [[Cobra Rapier]], [[Drake]], [[Drake Mk II]] &amp;amp; [[Wolf Mk I]]&lt;br /&gt;
|aut=Wolfwood&lt;br /&gt;
|date=2008-02-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Wormhole restoration OXP|Wormhole Restoration]] adds a new way to leave interstellar space without using fuel, expanding on Thargoid backstory&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-05-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.box.net/shared/n9xla832xbccuk7yuzrf Wyvern Ladies] adds armed long-range transports Wyvern Empress &amp;amp; Wyvern Queen, and the Wyvern Princess escort&lt;br /&gt;
|aut=Wyvern&lt;br /&gt;
|date=2011-08-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Xarik]] is an advanced aircraft, last creation of the late Prof. Eisel Xarik. Used by pirates, traders, and hunters&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2010-02-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Xeikil]] adds a player, a GalCop interceptor, and 24 pirate variants of Staer9 Industries' current top fighter&lt;br /&gt;
|aut=Staer9&lt;br /&gt;
|date=2011-05-16&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Xeikil MK2]] adds a player, a GalCop interceptor, and 24 pirate variants of Staer9 Industries' replacement [[Xeikil]]&lt;br /&gt;
|aut=Staer9&lt;br /&gt;
|date=2011-05-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[YellOo_Cabs]] adds YellOo Cab Co taxis to the Ooniverse. NPC and Buyable&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2011-01-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Your Ad Here!]] adds Convenience Stores [[Pi-42]], [[Tescoo Oxpress]], [[Star]], [[Mall Wart]], [[Sainsboory's]] &amp;amp; [[Security Sidewinder|security sidewinders]]&lt;br /&gt;
|aut=Griff&lt;br /&gt;
|con=DaddyHoggy, Pangloss, Disembodied, Eric Walch&lt;br /&gt;
|date=2011-02-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Z-ships]] adds [[Z-ships_Asp_Explorer|Asp Explorer]], [[Z-ships_Cobra_Commodore|Cobra Commodore]], [[Z-ships_Porcupine|Porcupine]] &amp;amp; [[Z-ships_Python_Courier|Python Courier]]&lt;br /&gt;
|aut=Zieman&lt;br /&gt;
|date=2010-03-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9056 Z-GrOovY Griff's Cobra Mk3 Variety Pack] adds multiple Griff's Cobra Mk3 with alternate hull paintings&lt;br /&gt;
|aut=dertien&lt;br /&gt;
|date=2011-01-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9306 Z-GrOovY System Stations] adds Griff-based Tetrahedron, Octahedron, Coriolis, Dodecahedron, Icosahederon stations&lt;br /&gt;
|aut=dertien&lt;br /&gt;
|date=2011-03-03&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9146 Z-GrOovY Viper Raider] adds a new player ship based on the police Viper&lt;br /&gt;
|aut=dertien&lt;br /&gt;
|date=2011-02-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9056 Z-GrOovY YAH Sidewinder Variety Pack] adds multiple Your Ad Here! Constore defenders with alternate hull paintings&lt;br /&gt;
|aut=dertien&lt;br /&gt;
|date=2011-01-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9056 Z-GrOovY YellOo Cab Variety Pack] adds the Moray Starboat with taxi hull painting&lt;br /&gt;
|aut=dertien&lt;br /&gt;
|date=2011-01-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Work in Progress OXPs  ==&lt;br /&gt;
The following table contains OXPs that either have not yet been released by their authors but are already being discussed on the [http://www.aegidian.org/bb/viewforum.php?f=4 Expansion Pack Forum], or released OXPs that still have WIP status. Links get you either to the respective discussion or the Wiki page if it already exists.&lt;br /&gt;
{{OXPListTableHeader}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?t=8341 Animated Ships] adds animated butterflies flapping their wings as a demo&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-08-06&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9864 Cargo Scanner] scans targeted cargo containers to find out what they contain&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-05-17&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=10732 Chupacabra HUD] places most information in curved bars around the center&lt;br /&gt;
|aut=CommonSenseOTB&lt;br /&gt;
|date=2011-08-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://www.aegidian.org/bb/viewtopic.php?t=8526 Comms Demo] provides a way to communicate with NPC ships&lt;br /&gt;
|aut=Kaks&lt;br /&gt;
|date=2009-10-26&lt;br /&gt;
|work=N}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=10794 External Missiles HUD] allows control over external missile pylons&lt;br /&gt;
|aut=CommonSenseOTB&lt;br /&gt;
|date=2011-09-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[I Missile]] is a very fast and agile interceptor missile but lacks the punch that standard missiles deliver&lt;br /&gt;
|aut=CaptSolo&lt;br /&gt;
|date=2011-08-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.box.net/shared/0i2fnrc175t Katipo] adds a very fast, moderate maneuverability, low cargo ship with low thrust&lt;br /&gt;
|aut=Simon B&lt;br /&gt;
|date=2011-03-03&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=8705 Liners] adds some beautiful and very large vessels to the spacelanes.&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|con=pagroove, Thargoid, Griff&lt;br /&gt;
|date=2011-09-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9441 Miner Pod] breaks up asteroids and collects the splinters&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-03-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?t=8275 Mining] adds mines to protect and provide resources for to get gold&lt;br /&gt;
|aut=docwild&lt;br /&gt;
|date=2010-07-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Nuit Space Station OXP|Nuit Space Station]] is the newest creation of [[Isis Interstellar]]&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2009-11-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mission&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?p=130221#p130221 Oresrati Challenge] adds a fun mission to the loneliest system of the Ooniverse, Oresrati&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-04-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=10820 Peregrine Fighter] is a very small stand-alone ship in its early design stages&lt;br /&gt;
|aut=Wyvern&lt;br /&gt;
|date=2011-09-03&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9946 Phantom] is a trader/fighter from [[Isis Interstellar]] with external missiles&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2011-05-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?p=138226#p138226 Shield Cycler] distributes shield energy between fore and aft shields&lt;br /&gt;
|aut=Lone_Wolf&lt;br /&gt;
|date=2011-05-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=5484 Solar System] adds extra planets and jump gates to a system&lt;br /&gt;
|aut=Frame&lt;br /&gt;
|date=2009-01-11&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=10690 Staer9's Shipset] will replace all the ships that the Neolite companion replaces&lt;br /&gt;
|aut=Staer9&lt;br /&gt;
|date=2011-09-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9472 Sun Skimmer Pod] adds a pod that goes sun skimming and returns full of fuel&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-03-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9488 Target Tracker] aligns your ship on your target&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-03-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9353 Thor Class Supercarrier] adds a Navy Carrier as a replacement pack for the Behemoth and the Galactic Navy&lt;br /&gt;
|aut=dertien&lt;br /&gt;
|date=2011-03-03&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=10809 Trident Shipyard Corp] adds the Trident Privateer Mark II in trader, hunter, pirate, and police versions&lt;br /&gt;
|aut=Cmdr Vault&lt;br /&gt;
|date=2011-09-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9242 Wormhole Drones] creates a path of worm holes to lead you to your destination system&lt;br /&gt;
|aut=Mauiby de Fug&lt;br /&gt;
|date=2011-02-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=10300 Xeptatl's Sword] An epic mission spanning all eight galaxies. Can you stop the Thargoid invasion of GalCop space?&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2011-09-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[http://www.aegidian.org/bb/viewtopic.php?t=8541 Zygoroids] add new beautifully textured asteroid models to the Ooniverse&lt;br /&gt;
|aut=ZygoUgo&lt;br /&gt;
|date=2010-10-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== OXPs with Problems ==&lt;br /&gt;
The following table contains OXPs that have problems eg. broken download, or have been written for versions of Oolite earlier than the current 1.75.3&lt;br /&gt;
{{OXPListTableHeader}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Amen Bricks Megaships|Amen Brick's Megaships]] adds [[Battleship]]s, [[Biodome]]s, [[Cruiseship]]s, [[Hospitalship]]s, [[Supercargo]]s, [[Superlifter]]s, and [[Yacht - Amen Class|Yacht]]s (This version 1.1 contains a corrupted shipData.plist)&lt;br /&gt;
|aut=Amen Brick&lt;br /&gt;
|date=2008-07-11}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[ADCK%27s Behemoths]] adds shadered versions of the [[Behemoth]],  [[Galactic Navy OXP|Galactic Navy]] ships and stations, and then some&lt;br /&gt;
|aut=ADCK&lt;br /&gt;
|con=Aegidian, pagroove, Nemoricus, Selezen, Simon B&lt;br /&gt;
|date=2010-04-20&lt;br /&gt;
|work=N}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Cataclysm OXP|Cataclysm]] takes up the threads of Constrictor Hunt and Thargoid Plans, and sends you on your biggest Navy mission yet&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2009-01-06&lt;br /&gt;
|work=N}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[http://www.box.net/shared/mq1mzoc79t Constrictor Mission Hints] adds more hints for those doing the native Constrictor Mission&lt;br /&gt;
|aut=Arexack Heretic&lt;br /&gt;
|date=2010-08-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Kirin#Download|Kirin Sport]] adds a a smaller, faster, more agile - and less well armed - civilian variant of the [[Kirin]]&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2009-07-22&lt;br /&gt;
|work=N}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Localhero_OXP|Localhero]] adds a mission campaign in the first galaxies&lt;br /&gt;
|aut=Svengali&lt;br /&gt;
|date=2008-04-09&lt;br /&gt;
|work=N}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Orb]] adds a new alien race, which might help GalCop in the battle against the Thargoids.&lt;br /&gt;
|aut=Charlie&lt;br /&gt;
|date=2007-02-13&lt;br /&gt;
|work=N}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Personalities OXP|Personalities]] adds a bunch of unique, well-known personalities from the Bulletin Board to the Ooniverse&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2009-11-05&lt;br /&gt;
|work=N}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[[Save Anywhere]] allows you to save your game at any OXP Station&lt;br /&gt;
|aut=Frame&lt;br /&gt;
|date=2008-10-01&lt;br /&gt;
|work=N}}&lt;br /&gt;
|}&lt;br /&gt;
[[Category:Oolite expansion packs]]&lt;br /&gt;
[[Category:OXP Lists]]&lt;br /&gt;
[[Category:Factual]]&lt;/div&gt;</summary>
		<author><name>Mcarans</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.alioth.net/index.php?title=OXP_List&amp;diff=29074</id>
		<title>OXP List</title>
		<link rel="alternate" type="text/html" href="https://wiki.alioth.net/index.php?title=OXP_List&amp;diff=29074"/>
		<updated>2011-10-18T13:08:31Z</updated>

		<summary type="html">&lt;p&gt;Mcarans: /* Sortable Table of OXPs */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
== OXP Categories ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; width=&amp;quot;100%&amp;quot; style=&amp;quot;border-collapse: collapse; border-width: 1px; border-style: solid; border-color: #ffffff; table-layout: fixed; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; width=&amp;quot;70px&amp;quot; style=&amp;quot;margin: 0px; padding: 0px; border-width: 1px; border-style: solid; border-color: #ffffff; background-color: #e7e7ff; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot; |&amp;lt;p style=&amp;quot;font-size: 13px;&amp;quot;&amp;gt;Category&amp;lt;/p&amp;gt;&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;margin: 0px; padding: 0px; border-width: 1px; border-style: solid; border-color: #ffffff; background-color: #e7e7ff; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot; |&amp;lt;p style=&amp;quot;font-size: 13px;&amp;quot;&amp;gt;Description of OXP Category&amp;lt;/p&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Activities_OXPs|Activities]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Allow Commanders to carry out a new activity or task eg. racing, gas giant skimming, taking out loans&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Dockables_OXPs|Dockables]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Add new objects that the player can dock with eg. carriers, space bars, casinos, fuel stations. Also, see [[Oolite Stations]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Ambience_OXPs|Ambience]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Change or add to the scenery, visuals or sound effects eg. planet skins, add new planets/moons to systems, move suns further away, dim nebulae, add monuments&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Equipment_OXPs|Equipment]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Buy upgrades for your ship excluding weapons&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Mechanics_OXPs|Mechanics]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Change the game play in a specific way eg. alter market mechanics, add more pirates&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:HUDs_OXPs|HUDs]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Modifications of your dials, gauges and other read-outs&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Missions_OXPs|Missions]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|New missions for Commanders to undertake. For more information, see [[Oolite Missions]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Retextures_OXPs|Retextures]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Retexture existing objects, either by replacing or adding variations, but without adding objects that did not exist before&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Ships_OXPs|Ships]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|New ships, except dockable ships. Also, see [[Oolite Ships]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Systems_OXPs|Systems]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Alter multiple star systems in a number of ways eg. combinations of changing main station and local police ships, adding new stations, ships, activities, missions&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Weapons_OXPs|Weapons]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Addons for your ship for blowing up the baddies&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Misc_OXPs|Misc]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|OXPs that don't fit into the other categories eg. debug consoles, internationalisations, config mechanisms, demo OXPs&lt;br /&gt;
|}&lt;br /&gt;
OXP authors: if you are unsure how to categorise your OXP or if you wish to update the details of an OXP for an author who has disappeared, please seek advice on the [http://www.aegidian.org/bb/viewforum.php?f=4 Expansion Pack Forum] before proceeding. Please put your OXP in one category only. You can edit the section below to add your OXP.&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Sortable Table of OXPs ==&lt;br /&gt;
The following table is optimized for a horizontal screen resolution of at least 1280px so that all OXP descriptions fit on one line.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; width=&amp;quot;100%&amp;quot; style=&amp;quot;border-collapse: collapse; border-width: 1px; border-style: solid; border-color: #ffffff; table-layout: fixed; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;border-width: 1px; border-style: solid; border-color: #ffffff; background-color: #e7e7ff; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot; |The &amp;quot;C&amp;quot; column indicates compatibility with Oolite beta 1.75:&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Y&amp;quot;=compatible, &amp;quot;Y*&amp;quot;=compatible (but the OXP is not in full working order), &amp;quot;N&amp;quot;=incompatible,  blank=unknown/untested.&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;!-- KEEP DESCRIPTIONS (desc=...) ALPHABETICAL --&amp;gt;&lt;br /&gt;
&amp;lt;!-- KEEP LENGTHS OF DESCRIPTIONS TO THAT OF EXISTING ENTRIES OR LESS --&amp;gt;&lt;br /&gt;
{{OXPListTableHeader}}&lt;br /&gt;
&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Accessories OXP|Accessories]] replaces the textures of all Stations and non-ship objects in Oolite with a more detailed and realistic look&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2011-09-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Accipiter]] is the market entry from Xeceesian shipyards, a strong &amp;amp; fast all purpose vessel for experienced commanders&lt;br /&gt;
|aut=CaptSolo&lt;br /&gt;
|con=Staer9, Griff&lt;br /&gt;
|date=2011-05-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Aegidian%27s Specials]] adds the powerful [[Mussurana]], the [[Asp (Oolite)#Notable features|Asp Mark II Special]], and a new cargo canister&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2009-07-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Aegidian%27s X-Ships]] adds [[Python ET Special]]s, [[Cobra Mk.2 (Oolite)|Cobra Mk II]]s, [[Taipan]]s, [[Asp (Oolite)#Notable features|Asp Mark II Special]]s, and [[Sidewinder (Oolite)#Notable features|Sidewinder Special]]s&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2009-04-29&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Pirate Clan Blitzspears|Amen Brick's Pirate Clan One: The Blitzspears]] adds the [[Assassin Blitzspear|Assassin]], the [[Hoodlum]], the [[Scoundrel]], and the [[Spiv]]&lt;br /&gt;
|aut=Amen Brick&lt;br /&gt;
|date=2008-06-30}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Amiga Replacement Sounds]] is based on the sound set used in the Amiga version of the original Elite&lt;br /&gt;
|aut=EAGLE 5&lt;br /&gt;
|date=2006-03-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Systems&lt;br /&gt;
|desc=[[Anarchies OXP|Anarchies]] overhauls legal ratings and spices up anarchies with [[Hacker Outpost]]s, [[Salvage Gang]]s, special stations &amp;amp; ships&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|con=Killer Wolf, Griff, Cdr. Wyvern, Murgh, Aegidian, 8-Bit Apocalypse&lt;br /&gt;
|date=2011-03-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9462 Another HUD] is based on Killer Wolf's Generic HUD&lt;br /&gt;
|aut=NorthenderPNE&lt;br /&gt;
|date=2011-03-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Aphid]] adds the stylish Aphid Escort Service&lt;br /&gt;
|aut=8-Bit Apocalypse&lt;br /&gt;
|date=2005-01-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Aquatics OXP|Aquatics]] adds the Aquarian Shipbuilding Corporation of Aqualina, G3 along with its ships and a mission&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-03-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Armoured Transport Type 1]] adds Gaundlet's [[Gaundlet Armoured Transport Type1|Armoured Transport Type 1]] and [[Gaundlet Armoured Escort Viper|Armoured Escort Viper]] that ferry valuables&lt;br /&gt;
|aut=Arexack Heretic&lt;br /&gt;
|date=2005-12-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Armoury OXP|Armoury]] adds AMS, captured Thargons, drones, probes, a missile rack, some bombs, and the missile machine&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-07-17&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[The Assassins Guild OXP|Assassins Guild]] adds 21 missions involving murder to order in Galaxy 7&lt;br /&gt;
|aut=Littlebear&lt;br /&gt;
|date=2011-05-03&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Asteroid Storm]] adds different types of asteroids &amp;amp; a mission where a station in G1 is threatened by a large asteroid strike&lt;br /&gt;
|aut=LittleBear, Charlie&lt;br /&gt;
|date=2011-01-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Aurora]] adds huge passenger ships for the wealthiest in society&lt;br /&gt;
|aut=pagroove&lt;br /&gt;
|con=Griff, Thargoid&lt;br /&gt;
|date=2010-11-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://www.mediafire.com/?fnc65em7uh5un1d Auto ECM] fires the ECM once when a missile is fired at the player's ship. See the [http://aegidian.org/bb/viewtopic.php?p=138124#p138124 BB] for more info&lt;br /&gt;
|aut=Switeck&lt;br /&gt;
|date=2011-05-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Auto eject OXP|Auto Eject]] ejects your escape pod automatically when your energy becomes too low&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2010-06-16&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Automatic Chaff System]] provides an enhanced chaff-based missile countermeasure system&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2010-06-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Baakili Far Trader]] adds a dockable alien ship&lt;br /&gt;
|aut=Zieman&lt;br /&gt;
|date=2010-09-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Bandersnatch]] adds a pirate capital vessel armed with 4 x fore lasers&lt;br /&gt;
|aut=Flying_Circus&lt;br /&gt;
|date=2009-11-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Beer Cooler]] allows you to fit your ship with a beer cooler&lt;br /&gt;
|aut=Maik&lt;br /&gt;
|date=2010-08-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Behemoth]] adds a dockable Navy cruiser carrying [[Navy Asp]]s and [[Navy Viper]]s&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2011-01-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Behemoth Spacewar]] adds intelligence to the Behemoth and brings a combat with Thargoids&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2010-01-09&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[BGS|BGS - Background Set]] framework for images, sounds and ambient music&lt;br /&gt;
|aut=pagroove, Svengali&lt;br /&gt;
|date=2011-09-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[BigShips OXP|Big Ships]] ensures that large ships do not dock and controls population of systems with them&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2009-11-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Black Monk Monastery]] offers loans in advanced systems and adds the [[Black Monk Gunship]] to persecute defaulters&lt;br /&gt;
|aut=LittleBear&lt;br /&gt;
|date=2010-06-14&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[BlackjacksBullion OXP|Blackjack's Bullion]] starts in galaxy 2 at Telace as Commander Blackjack arrives via escape pod&lt;br /&gt;
|aut=Rustybolts&lt;br /&gt;
|date=2010-03-08&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[BlOomberg Markets]] varies the in-game economy by generating random events that affect commodity prices&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2011-03-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Boa II Clipper Class]] is a development of the Boa Class Cruiser, adding a third engine at the cost of cargo space&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2011-01-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Boomslang]] adds a mid-range multi-role ship. Used by pirates and traders alike&lt;br /&gt;
|aut=milinks, Jar&lt;br /&gt;
|date=2008-09-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Bounty Scanner]] adds bounty details (if any) to the targeting lock-box display when locked onto other ships&lt;br /&gt;
|aut=Frame&lt;br /&gt;
|date=2010-07-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[BountyStatus OXP|Bounty Status]] displays your current bounty (and your legal status) on the F5 manifest screen&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-05-08&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Breakable_'Standard'_Equipment_OXPs|Breakable 'Standard' Equipment]] makes some standard equipment such as HUD/Scanner damageable in combat&lt;br /&gt;
|aut=Capt Murphy&lt;br /&gt;
|date=2011-07-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Bulk Haulers]] adds the [[Lynx Bulk Carrier (Oolite)|Lynx Bulk Carrier]], the [[Long Range Cruiser (Oolite)|Long Range Cruiser]], the [[Bulk Hauler]], and the [[Super Bulk Hauler]]&lt;br /&gt;
|aut=ADCK&lt;br /&gt;
|con=Aegidian, pagroove&lt;br /&gt;
|date=2010-04-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[BuoyRepair|Buoy Repair]] adds a [[Buoy Repair Facility]] and related ships to repair defect or destroyed nav-beacons&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|con=Svengali, Murgh, Zieman&lt;br /&gt;
|date=2011-06-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[[Cabal Common Library]] is a collection of snippets and helpers for OXPs&lt;br /&gt;
|aut=Svengali&lt;br /&gt;
|con=Cmd.Cheyd, PhantorGorth&lt;br /&gt;
|date=2011-08-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Caduceus]] adds the very expensive (and deadly) Caduceus&lt;br /&gt;
|aut=ClymAngus&lt;br /&gt;
|con=Cdr. Wyvern, another_commander, Eric Walch, Thargoid&lt;br /&gt;
|date=2010-12-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Capisastra]] adds [[Capisastra Defender]]s, [[Capisastra Hauler]]s, and [[Capisastra Warrior]]s&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|date=2006-01-12}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Captain Berf Engineer]] adds a voice for crew members&lt;br /&gt;
|aut=Captain Berf&lt;br /&gt;
|date=2009-12-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Captain Berf Pilot]] adds a voice for crew members&lt;br /&gt;
|aut=Captain Berf&lt;br /&gt;
|date=2009-12-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Captain Berf Pilot Alien]] adds a voice for crew members&lt;br /&gt;
|aut=Captain Berf&lt;br /&gt;
|date=2009-12-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Captain Berf Tactical Officer]] adds a voice for crew members&lt;br /&gt;
|aut=Captain Berf&lt;br /&gt;
|date=2009-12-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Cargo Shepherd OXP|Cargo Shepherd]] attracts cargo pods and holds them until you can scoop them, also includes a beacon&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-04-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://www.box.net/shared/4lphdkazs5 CB-HUD] features a HUD that changes based on installed equipment. See the [http://aegidian.org/bb/viewtopic.php?p=141035#p141035 BB post] for more information&lt;br /&gt;
|aut=Captain Beatnik&lt;br /&gt;
|date=2011-05-29&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Chopped Cobra]] By Staer9. Chopped version of Griff's Cobra. Includes Enforcer and S9 variants by Smivs.&lt;br /&gt;
|aut=Staer9&lt;br /&gt;
|con=Smivs&lt;br /&gt;
|date=2011-07-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Clear Skies OXP|Clear Skies]] reduces nebula effects and dims stars. Handy if your system is finding it hard to run Oolite&lt;br /&gt;
|aut=johnsmith&lt;br /&gt;
|date=2006-11-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Cobra 3.5|Chopped Cobra]] adds the Cobra Mk 3.5, a slightly faster and tougher variant with a reduced cargo bay&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2006-12-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9157 Cobra AC] is a faithful reproduction of the Cobra on the cover of the Dark Wheel novella with improved specs&lt;br /&gt;
|aut=dertien&lt;br /&gt;
|date=2011-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Cobra Clipper SAR]] adds a custom Cobra Mk III to rescue stranded Commanders&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2010-04-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Cobra III NjX]] adds a faster, tougher variation on the Classic Cobra Mk III&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|date=2006-08-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Cobra Mark III-XT]] Cobra3 with revamped architecture and upgraded systems to boost performance&lt;br /&gt;
|aut=CaptSolo&lt;br /&gt;
|date=2011-07-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.purgatori.net/cobra4.htm Cobra MkIV] is [[Isis Interstellar]]'s successor to the Cobra MkIII, available in trader and fighter variants&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2010-11-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[OosoundsCombined OXP|Combined Murgh, Wiggy &amp;amp; xaotik's sounds]] combines the 3 available packs from Murgh, Wiggy and xaotik&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|con=Murgh, Wiggy, xaotik&lt;br /&gt;
|date=2009-09-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Systems&lt;br /&gt;
|desc=[[Commies]] Adds [[Astro Mines]], [[CZGF|Factories]], [[SLAPU|Production Units]], [[Worker%27s Commuter|Commuters]] &amp;amp; special police ships to Communist systems&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|con=Ramirez, Murgh, johnsmith, HueijRevisited&lt;br /&gt;
|date=2010-05-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[CompactHUD|Compact HUD]] provides an alternative HUD with a clean look&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Condor]] adds a very powerful police and Navy Cruiser&lt;br /&gt;
|aut=Charlie&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2010-10-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Console HUD]] Azure themed semi-transparent HUD with balanced array of indicators&lt;br /&gt;
|aut=CaptSolo&lt;br /&gt;
|date=2011-07-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Contractor ZZ1]] Very fast combat 'stealth' ship. Appears in-game as a Bounty-hunter and rarely as Pirate. Buyable&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2011-01-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Copperhead]] Redux of core ship in Archimedes Elite slightly modified. NPC and player buyable&lt;br /&gt;
|aut=CaptSolo&lt;br /&gt;
|date=2011-05-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=10819 Coyote's Run] brings [[:User:El Viejo|El Viejo]]'s novella [[:Category:Oolite stories#El Viejo|Coyote]] to life as an exciting mission OXP&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|con=El Viejo, Smivs, Wyvern&lt;br /&gt;
|date=2011-09-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Croydon Starsoarer]] adds a ship that is similar to the Asp in specification&lt;br /&gt;
|aut=SimonB&lt;br /&gt;
|con=pagroove&lt;br /&gt;
|date=2010-05-08&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[CustomSounds OXP|CustomSounds]] replaces/adds 40+ sounds, featuring music &amp;amp; extensive use of calm female computer voice for warnings&lt;br /&gt;
|aut=milinks&lt;br /&gt;
|date=2006-12-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[DWCobra|Dark Wheel Cobra]] is a custom Cobra Mk III model, as seen on the cover of the Elite Manual&lt;br /&gt;
|aut=ramon&lt;br /&gt;
|date=2006-11-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[[Debug OXP]] is a special OXP that enables JavaScript console support in test releases of Oolite (1.70 and later)&lt;br /&gt;
|aut=Ahruman&lt;br /&gt;
|date=2010-06-19&lt;br /&gt;
|work=N}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[http://deephorizonindustries.com/Gas_Giant_Skimming.html Deep Horizon - Gas Giants Skimming] allows to skim gas giants to refuel a ship or mine them for rare minerals&lt;br /&gt;
|aut=Cdr. Cheyd&lt;br /&gt;
|date=2010-07-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://deephorizonindustries.com/Lights_Down.html Deep Horizon - Lights Down] lowers ambient light within system to give more natural feel to planets and ships&lt;br /&gt;
|aut=Cdr. Cheyd&lt;br /&gt;
|date=2010-07-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://deephorizonindustries.com/Nav_Buoy.html Deep Horizon - Nav Buoy 1.0] replaces Witchpoint, Station, and other Nav Buoys with a new model&lt;br /&gt;
|aut=Cdr. Cheyd&lt;br /&gt;
|date=2011-07-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[http://deephorizonindustries.com/Pirate_Ambushes.html Deep Horizon - Pirate Ambushes] adds pirates that ambush the player upon exit from witchspace&lt;br /&gt;
|aut=Cdr. Cheyd&lt;br /&gt;
|date=2010-07-06&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://deephorizonindustries.com/DH-Systems.html Deep Horizon - Systems] textures the main planet of a system as well as adding moons and additional planets&lt;br /&gt;
|aut=Cdr. Cheyd&lt;br /&gt;
|date=2010-07-06&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Deep Space Dredger]] adds dockable Space Dredgers, defended by [[Sabre]] fighters, and a missile to salvage derelict ships&lt;br /&gt;
|aut=Sabre&lt;br /&gt;
|date=2011-01-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[DeepSpacePirates|Deep Space Pirates]] adds pirates and asteroids outside the space lanes&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2010-01-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Deepspace Ships#Deepspace HUDs|Deepspace HUD]] is an alternative HUD with two versions&lt;br /&gt;
|aut=DeepSpace&lt;br /&gt;
|date=2010-02-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Deepspace Ships]] replaces the default ships with new textures&lt;br /&gt;
|aut=DeepSpace&lt;br /&gt;
|date=2010-02-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Deposed OXP|Deposed]] is a series of missions set in Galaxy 4 for an experienced Commander&lt;br /&gt;
|aut=Cdr. Wombat&lt;br /&gt;
|con=Commander McLane, Eric Walch&lt;br /&gt;
|date=2009-03-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Systems&lt;br /&gt;
|desc=[[Dictators OXP|Dictators]] adds a range of ships and stations to each dictatorship and offers new trading opportunities to players&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2011-07-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Diso OXP|Diso]] adds extra planets and stations to the Diso system in Galaxy 1&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2010-11-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Display reputation OXP|Display Reputation]] lets you know your current reputations in the passenger ferrying and the cargo contract market&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2010-03-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Oolite Docking Clearance Protocol (v1.72 or later)|Docking Clearance]] enables the docking clearance protocol for all stations&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2008-12-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Griff Industries|Dodo Stations]] adds new textures for Dodecahedron stations&lt;br /&gt;
|aut=Griff, CaptKev&lt;br /&gt;
|date=2010-05-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Dr HUD OXP|Dr HUD]] is an alternative HUD&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2006-12-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Dragon|Dragon Assault Craft]] adds a heavy combat ship, and the Military Smart Missile, an improved hard head&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2008-11-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Dragon#Download|Dragon Military Missile]] adds an enhanced hardhead, seeks priority targets when ECM'd&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2008-11-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.mediafire.com/?rllzzcbkwgm Dragonfly/Firefly S.T] adds [[Dragonfly S.T]] &amp;amp; much faster [[Firefly S.T]]. Ideal small fast ships for pirates or bounty hunters&lt;br /&gt;
|aut=Rustybolts&lt;br /&gt;
|date=2009-10-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Eagle Mk II]] adds the cheap Eagle Mk II escort vessel in several different versions, including an enhanced SE&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|date=2006-03-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[ADCK%27s Eagles|Eagles Mk I to IV]] adds four Eagle Long Range Fighters to the game&lt;br /&gt;
|aut=ADCK&lt;br /&gt;
|date=2010-04-07&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Energy Equipment OXP|Energy Equipment]] adds a pylon-mounted automatically triggered top-up for when the juice runs low&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-03-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Escape Pod Locator OXP|Escape Pod Locator]] is a piece of equipment to allow tracking of escape pods in system&lt;br /&gt;
|aut=Capt Murphy&lt;br /&gt;
|date=2011-07-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Escort Contracts OXP|Escort Contracts]] allows players to enter into short-term escort contracts with NPC lone wolf traders&lt;br /&gt;
|aut=Capt Murphy&lt;br /&gt;
|date=2011-09-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[ETT Homing Beacon]] marks a position in space by deploying a pylon-mounted beacon&lt;br /&gt;
|aut=Twisted&lt;br /&gt;
|con=Lone_Wolf&lt;br /&gt;
|date=2011-04-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Executive SpaceWays]] adds [[Delta Long-Range Escort|Delta]]/[[Gemini Escort|Gemini]] Escorts, [[Starseeker Personal Shuttle|Starseeker]]/[[Trident Executive Shuttle|Trident Exec]] Shuttles, [[Strelka Cruise Liner]]s&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2010-06-19&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.box.net/shared/moreq536ht#/shared/moreq536ht/1/71484311/786362645/1 Extra Thargoids] adds 2 types of Thargoid ship, each of which packs surprises. Replaces the 'Poet' Frigate OXP&lt;br /&gt;
|aut=UK_Eliter&lt;br /&gt;
|date=2011-09-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Systems&lt;br /&gt;
|desc=[[Factions OXP|Factions]] from anarchy, feudal, dictatorship &amp;amp; communist systems meet in multi-government systems and start fighting&lt;br /&gt;
|aut= m4r35n357&lt;br /&gt;
|date=2011-07-29&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Famous Planets OXP|Famous Planets]] adds unique textures, new descriptions, and theme tunes for many planets in G1 and G2&lt;br /&gt;
|aut=pagroove&lt;br /&gt;
|con=Cdr. Cheyd, Stromboli, Pangloss, CaptKev, Drew Wagar, Thargoid, Svengali, Lestradae, UK Eliter&lt;br /&gt;
|date=2010-09-30&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Famous Planets Liners OXP|Famous Planets Liners]] adds Spaceway Liners on the 4 spaceways from Lave to Zadies&lt;br /&gt;
|aut=pagroove&lt;br /&gt;
|con=Ramirez, Presti70, Thargoid&lt;br /&gt;
|date=2009-03-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Far Arm ships|Far Arm Ships]] adds [[Far Arm Sunracer|Sunracer]]s, [[Far Arm Scow|Scow]]s, [[Far Arm Tanker|Tanker]]s, [[Far Arm Corsair|Corsair]]s, [[Far Arm Dart|Dart]]s, [[Far Arm Hunter|Hunter]]s, [[Far Arm Cruiser|Cruiser]]s, [[Far Arm Titan|Titan]]s, [[Far Arm Manchi Vulture|Vulture]]s, and [[Far Arm Manchi Wasp|Wasp]]s&lt;br /&gt;
|aut=Zieman&lt;br /&gt;
|date=2010-10-02&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Far Star Murderer]] adds a mid-range fighter / trader, with a fair sized cargo bay&lt;br /&gt;
|aut=8-Bit Apocalypse&lt;br /&gt;
|date=2005-01-01&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://www.box.net/shared/d57y0uip74 Far Sun] places suns further away from the planet than standard Oolite&lt;br /&gt;
|aut=Kaks&lt;br /&gt;
|date=2010-05-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.box.net/shared/moreq536ht Fer de Lance 3G] adds player &amp;amp; NPC Fer de Lance versions with custom paint jobs &amp;amp; altered specs&lt;br /&gt;
|aut=UK_Eliter&lt;br /&gt;
|date=2011-10-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Fer de Lance NG]] adds a more powerful version of the Fer de Lance with several custom paint jobs&lt;br /&gt;
|aut=alien&lt;br /&gt;
|date=2005-03-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Ferdepai]] adds a new fighter / trader to Galaxy 2&lt;br /&gt;
|aut=johnsmith&lt;br /&gt;
|date=2006-12-17&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Systems&lt;br /&gt;
|desc=[[Feudal States]] adds the [[Jäger]], the [[Korvette]], the [[Zerstörer]], a [[Royal Hunting Lodge]] and other elements to feudal systems&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2011-05-30&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Fighter HUD (Oolite)|Fighter HUD]] is an alternative HUD&lt;br /&gt;
|aut=CaptKev&lt;br /&gt;
|date=2008-05-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Firewasp]] adds a fast interceptor&lt;br /&gt;
|aut=Draco_Caeles&lt;br /&gt;
|date=2006-05-10&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Fireworks OXP|Fireworks]] allows you a joyful celebration of whatever it is you want to celebrate&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-05-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Flight Log OXP|Flight Log]] adds a log of the last 10 systems visited&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-01-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Flying Dutchman OXP|Flying Dutchman]] adds the small chance to meet a Ghost Ship in the Ooniverse&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|con=Griff&lt;br /&gt;
|date=2011-04-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[[Freaky Thargoids OXP|Freaky Thargoids]] is a shader demonstration for Oolite&lt;br /&gt;
|aut=Ahruman&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2011-02-03&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Free Trade Zone]] adds an independent trading post of dubious legality to Multi-Government systems&lt;br /&gt;
|aut=Disembodied&lt;br /&gt;
|con=Commander McLane&lt;br /&gt;
|date=2010-10-08&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Frog Space Rickshaw]] adds a chatty space taxi service to the safer systems&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2006-01-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Fuel Collector OXP|Fuel Collector]] scoops fuel from killed ships and collects fuel while cruising, even in witch space&lt;br /&gt;
|aut=Frame&lt;br /&gt;
|con=Commander McLane&lt;br /&gt;
|date=2011-07-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Fuel Station OXP|Fuel Station]] adds fly-thru Fuel Stations and Fuel Satellites near the witchpoint and along route one&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-08-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Fuel Tank]] v2.2 mounts in place of a missile, to top up 3 light years of fuel&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2008-05-31&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Furball OXP|Furball]] adds barroom brawls that've got out of hand. Furious fugitives flee from pissed off police on the station's doorstep&lt;br /&gt;
|aut=Caracal&lt;br /&gt;
|con=m4r35n357&lt;br /&gt;
|date=2011-06-06&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Systems&lt;br /&gt;
|desc=[[Galactic Navy OXP|Galactic Navy]] adds more ships and stations to the arsenal of the Galactic Navy. Allows to join the Navy Reserves&lt;br /&gt;
|aut=Nemoricus&lt;br /&gt;
|date=2011-10-13&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[GalDrivePod]] A portable Galactic Hyperdrive unit, allowing you to complete the &amp;quot;Lost Worlds Grand Tour&amp;quot;&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2011-03-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://www.boxcn.net/shared/5dqx22u06i Galaxy Info] helps you search for systems by criteria you select and will try to locate the nearest one&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-04-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Gates OXP|Gates]] ads short-cut jump gates to suitable systems, speeding journeys between the main station and witchpoint&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-04-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Generation Ships OXP|Generation Ships]] adds encounters with the mythical Generation Ships from time to time&lt;br /&gt;
|aut=Draco_Caeles&lt;br /&gt;
|con=Commander McLane&lt;br /&gt;
|date=2011-04-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Globe station|Globe Station]] is a new type of stations that appears in advanced systems&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|con=Svengali&lt;br /&gt;
|date=2009-10-22&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Greek Ships OXP|Greek Ships]] adds [[Penelope Class Freighter]]s, [[Telemachus Class Escort]]s, and [[Ulysses Class Interceptor]]s&lt;br /&gt;
|aut=8-Bit Apocalypse&lt;br /&gt;
|date=2005-07-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.box.net/shared/oqpkkzbl30jmm14vj2bo Green Gecko]: Meet the Green Knights of Lago in their awesome twin-laser Geckos&lt;br /&gt;
|aut=El Viejo&lt;br /&gt;
|date=2011-09-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Griff ArcElite|Griff's ArcElite]] adds versions of native Oolite ships textured &amp;amp; shaded to resemble the Acorn Archimedes version of Elite&lt;br /&gt;
|aut=Griff&lt;br /&gt;
|date=2008-09-29&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Griff Boa]] contains the famous Griff Boa&lt;br /&gt;
|aut=Griff&lt;br /&gt;
|date=2010-06-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://www.boxcn.net/shared/k2lvh3enuy Griff's Explosion Debris] adds new alloy &amp;amp; debris models to exploding ships&lt;br /&gt;
|aut=Griff&lt;br /&gt;
|con=Thargoid&lt;br /&gt;
|date=2009-02-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Griff Krait]] adds a heavily modified Krait, similar in design to the Griff Boa&lt;br /&gt;
|aut=Griff&lt;br /&gt;
|date=2010-06-17&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Griff Industries|Griff's Normalmapped Ships]] adds some of the best looking ships, stations, and flotsam available in Oolite&lt;br /&gt;
|aut=Griff&lt;br /&gt;
|date=2011-08-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Griffin Two (Oolite)|Griffin Two]] adds the Griffin Mk II from Frontier&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2005-10-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Gritty Coriolis OXP|Gritty Coriolis]] alternates the Coriolis stations with two elaborate gritty Corioli&lt;br /&gt;
|aut=xaotik&lt;br /&gt;
|date=2006-02-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://wiki.alioth.net/images/2/2d/G-HUD_Mk2.oxp.zip G-HUD Mk2] adds an alternative HUD&lt;br /&gt;
|aut=Gunney Plym&lt;br /&gt;
|date=2008-07-08&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Halsis]] features a female cockpit voice, sometimes called Hal's Hot Sister&lt;br /&gt;
|aut=Ovvldc&lt;br /&gt;
|date=2006-08-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[BoyRacer|Hatchling BoyRacers]] adds the  talkative (and often insulting) [[BoyRacer]]s to more advanced systems&lt;br /&gt;
|date=2006-01-13&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Staer9 haulerp30|Hauler P30]] is a very large cargo ship made by Staer9 Industries&lt;br /&gt;
|date=2011-05-11&lt;br /&gt;
|aut=Staer9&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Hawksound]] features a quality female computer voice, new weapon, damage and some station interface sounds&lt;br /&gt;
|aut=Hawkstrom&lt;br /&gt;
|date=2008-11-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Herald Military Gunboat|Herald]] adds the [[Herald Military Gunboat]], a powerful police and Navy interceptor&lt;br /&gt;
||aut=Flying_Circus&lt;br /&gt;
|date=2005-01-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Hired Guns OXP|Hired Guns]] adds escort ships that can be contracted to accompany you on your next journey&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-02-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Hognose|Hognose Tugships]] adds the [[Hognose]], a chatty tug ship that can be seen towing broken down ships&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|con=Jonnycuba&lt;br /&gt;
|date=2006-03-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[HoOpy Casino]]s appear near the station in advanced systems. You can win or lose credits in games of chance&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2010-06-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Hotrods OXP|Hotrods]] adds custom paint jobs to classic Elite ships, racing vehicles, and a space gang that doesn't like the player&lt;br /&gt;
|aut=Kaks&lt;br /&gt;
|con=Arexack_Heretic, Murgh&lt;br /&gt;
|date=2009-03-16&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[HyperCargo OXP|HyperCargo]] adds an extended and expanded cargo handling system&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-09-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Hyperradio js OXP|Hyperradio]] is an expandable music-player&lt;br /&gt;
|aut=Svengali&lt;br /&gt;
|date=2011-02-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Icarus (Oolite)|Icarus]] adds a small fighter / trader based on blueprints from the lost Solice system&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|date=2007-07-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Illegal_Goods_Tweak_OXP|Illegal Goods Tweak 1.5]] adds interactions with Galcop customs on docking at a main station with Contraband in the hold&lt;br /&gt;
|aut=Capt Murphy&lt;br /&gt;
|date=2011-08-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Illicit Unlock OXP|Illicit Unlock]] allows the player to fly all the classic Elite ships&lt;br /&gt;
|aut=tgape&lt;br /&gt;
|date=2005-10-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Griff_Industries#Related_OXP's_by_Other_Authors|Illicit Unlock - Griff Version]] allows the player to fly [[Griff Industries#Griff's Normalmapped Ships OXP|Griff's]] pirate/viper Ships&lt;br /&gt;
|aut=ADCK&lt;br /&gt;
|con=dertien&lt;br /&gt;
|date=2011-02-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Imperial Courier (Oolite)|Imperial Courier]] adds the powerful Imperial Courier from Frontier, constructed by [[Seldar Shipyards]]&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|con=Commander McLane&lt;br /&gt;
|date=2007-06-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Imperial Trader (Oolite)|Imperial Trader]] adds the powerful Imperial Trader from Frontier&lt;br /&gt;
|aut=ADCK&lt;br /&gt;
|date=2010-06-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Interstellar help OXP|Interstellar Help]] allows you to help out traders who got stuck in interstellar space without fuel&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-03-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Ionics OXP|Ionics]] adds a series of missions featuring the Ionics Company of Zaria, the Ramaza Liberation Front and The Link&lt;br /&gt;
|aut=Galileo&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2010-08-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[IronHide OXP|IronHide]] introduces the new range of IronHide ship armour from the Aquarian Shipbuilding Corporation&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-02-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Iron Raven]] is a multi-stage mission to investigate a dangerous conspiracy on behalf of GalCop High Command&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2011-10-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Ixian Ships|Ixian Military Ships]] adds Ixian [[Ixian Battle Cruiser|Battle Cruiser]]s, [[Ixian Bezerka|Bezerka]]s, [[Ixian Gunship|Gunship]]s and [[Ixian No-Ship Mark I|No-Ship]]s from Dune&lt;br /&gt;
|aut=8-Bit Apocalypse&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2009-03-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Ixian Ships#Ixian Freighter|Ixian Freighter]] adds a civilian freighter to the universe&lt;br /&gt;
|aut=8-Bit Apocalypse&lt;br /&gt;
|date=2005-01-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Jabberwocky]] adds the powerful Jabberwocky fighter / trader&lt;br /&gt;
|aut=Flying_Circus&lt;br /&gt;
|date=2006-03-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[JellyBaby Dispenser]] adds a handy Jellybaby Dispenser for your cockpit&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2011-03-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Kestrel &amp;amp; Falcon OXP|Kestrel &amp;amp; Falcon]] adds buyable Star Wars style [[Falcon_%28Oolite%29|Falcon]] for pirates/traders and the [[Kestrel]], a police/navy interceptor&lt;br /&gt;
|aut=Charlie&lt;br /&gt;
|con=Kaks&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Killer_Wolf's_Dynamic_HUD|Killer Wolf's Dynamic HUD]] adds a version of the dynamic HUD first seen in Killer Wolf's Werewolf ships, to all ships&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|con=Thargoid&lt;br /&gt;
|date=2010-07-08&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Killit_OXP|Killit]] adds a bunch of insane super weapons&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-05-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Kirin]] adds a heavy military hauler, CV &amp;amp; XM versions used by both pirates &amp;amp; traders&lt;br /&gt;
|aut=ClymAngus&lt;br /&gt;
|con=Cdr. Wyvern&lt;br /&gt;
|date=2009-09-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Klepto-HUD OXP|Klepto-HUD]] is a different take on a HUD with precise crosshairs&lt;br /&gt;
|aut=Kleptoid&lt;br /&gt;
|date=2006-03-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://sancho.dk/oolite/lane_legal.zip ''Lane Legal Racers''] adds NPC versions of [[Krait]]s, [[Mamba]]s, and [[Sidewinder]]s from different [[Racers#Listing_of_sponsored_teams|racing teams]]&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-09-27&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Lave OXP|Lave]] is a system make-over for Lave, adding all features described in The Dark Wheel novella included with original Elite&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2009-12-31&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Lave Academy OXP|Lave Academy]] adds Lave Academy Station above Lave &amp;amp; other planets, with 3 mini-games to test Commanders' skills&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-06-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[http://www.boxcn.net/shared/9q1cbydgan LinkG7] is a mission in Galaxy 7&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-02-16&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Llama]] adds the Llama fighter / trader. Updated from the version of Oosat1 to fix a small bug&lt;br /&gt;
|aut=Flying_Circus&lt;br /&gt;
|date=2006-02-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://www.boxcn.net/shared/jtpt2vlol5 Long Range Target Scanner] shows all ships currently in your system and allows to target them&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-05-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[LongWay_OXP|Long Way Around]] adds a transport mission well suited to the novice in Galaxy 1&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2009-04-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Longshot]] adds the Longshot fighter / trader, regarded by many as a cheaper alternative to the Cobra Mk III&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Lovecats.oxp|Lovecats]] is a mission about love &amp;amp; betrayal amongst the feline races of Galaxy 4. Fast ship &amp;amp; hard heart required!&lt;br /&gt;
|aut=johnsmith&lt;br /&gt;
|date=2011-07-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Second-hand ships|M-Pack (rusties)]] adds rusty banger versions of all Classic Elite ships in poor condition but still can haul cargo&lt;br /&gt;
|aut=murgh&lt;br /&gt;
|date=2006-01-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Manta]] adds the Manta light escort craft&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Marett Space Corporation OXP|Marett Space Corporation]] releases [[Adder Mk II]], [[Mosquito Trader]], [[Mosquito Sport]], new fighters / medium traders&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://www.crimsonforge.co.uk/cloister/MedusaHud.oxp.zip Medusa HUD] is an alternative HUD&lt;br /&gt;
|aut=ClymAngus&lt;br /&gt;
|date=2009-01-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Mega-Walnut Dashboard OXP|Mega-Walnut Dashboard]] is a generic version of the fabled Fer de Lance HUD&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2005-07-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Merlin_(Oolite)|Merlin]] Ships are interceptors used by the Police &amp;amp; Navy, but also available on the open market&lt;br /&gt;
|aut=Charlie&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[MildAudio]] Sound Set&lt;br /&gt;
|aut=xaotik&lt;br /&gt;
|date=2006-02-15&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Military_Fiasco|Military Fiasco]] adds a navy mission for Commanders with &amp;gt; 1,000 kills. Also equips Navy with powerful cruisers&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2011-01-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Military Fuel Injectors OXP|Military Fuel Injectors]] is an upgrade to the vanilla injectors that gives a velocity boost and recaptures unburnt fuel&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-07-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Military station|Military Station]] adds well armed Military Stations to the more advanced systems&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Military Stingray Mk. II|Military Stingray]] adds an ex-military ship that may show up in pirate hands or for the player to buy&lt;br /&gt;
|aut=CaptKev&lt;br /&gt;
|date=2007-03-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Milspec HUD|Milspec HUD]] is an alternative HUD with targeting aids and an emphasis on functionality&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2010-07-08&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Misjump_Analyser|Misjump Analyser]] scans witchspace &amp;amp; on detection of disturbances sounds an alarm &amp;amp; logs location of disturbance&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2010-05-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?p=135619#p135619 Misjump Inducer] can turn on/off misjumps on demand&lt;br /&gt;
|aut=Switeck&lt;br /&gt;
|date=2011-04-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Missile_Analyser|Missile Analyser]] scans incoming missiles &amp;amp; sets target to incoming missile when it is no standard missile&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2010-05-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Missiles_and_Bombs|Missiles &amp;amp; Bombs]] adds a wide variety of missiles &amp;amp; bombs that are are available to player &amp;amp; NPCs alike&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2009-12-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Missionaries OXP|Missionaries]] adds clerics of four faiths who spam Commanders with requests to worship their Gods&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Moccasin]] adds light escort craft from Xeceesian Shipyards modeled after ArcElite core ship&lt;br /&gt;
|aut=CaptSolo&lt;br /&gt;
|date=2011-06-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Mod-HUD]] is a slight modification / re-organization of the standard Oolite HUD without surround boxes&lt;br /&gt;
|aut=CaptSolo&lt;br /&gt;
|date=2011-05-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/monument.zip Monument] sometimes adds a monument to famous Commanders close to the Sun&lt;br /&gt;
|aut=dajt&lt;br /&gt;
|date=2005-05-28&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Morrigan]] adds a vast trade ship to the Universe&lt;br /&gt;
|aut=Flying_Circus&lt;br /&gt;
|date=2009-12-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Oosounds2_OXP|''Murgh's Replacement Sounds'']] contains 10 new sounds&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2005-08-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Murgh_Xships OXP|Murgh's X-Ships]] adds [[Bandy-Bandy]], [[Chuckwalla]], [[Eel Rapier]], [[Taipan]] (fast courier craft &amp;amp; 2 light escort ships)&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2009-09-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[NavalGrid OXP|Naval Grid]] enhances recharging rates by linking the naval energy unit to military-boosted shields&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-03-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Neolite Ships]] is an Oolite ships replacement set&lt;br /&gt;
|aut=SimonB&lt;br /&gt;
|date=2009-07-11&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/newships.oxp.zip ''New Ships''] adds [[Hamadryad]], [[Josher]], [[Naga]], [[Ringhals]] (mining and trade ships from previous versions of Elite)&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2006-05-15&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[http://www.box.net/shared/moreq536ht Nexus missile] adds multiple versions of a multi-warhead, 'anti-hostile' (or, in one case, anti-thargoid) missile&lt;br /&gt;
|aut=UK_Eliter&lt;br /&gt;
|date=2011-10-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/hud_ng.oxp.zip NG HUD] is an alternate HUD. All standard functions, but with a personal view&lt;br /&gt;
|aut=alien&lt;br /&gt;
|date=2005-03-06&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[NPC-shields OXP|NPC-shields]] gives shields to NPCs, together with a nice glow effect&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-04-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://wiki.alioth.net/index.php/Numeric_Style_HUDs Numeric Style HUDs] New invention/numeric gauges.[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9977 Info]&lt;br /&gt;
|aut=CommonSenseOTB&lt;br /&gt;
|date=2011-06-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/nuvipers.zip Nu Vipers] increases the types of Viper patrol ships with [[GalCop Viper Mark II]], [[GalCop Viper Cruiser]]&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Nukes.oxp|Nuclear Torpedos]] adds some powerful, but slow moving, missiles&lt;br /&gt;
|aut=E. Walch, Cdr. Wyvern&lt;br /&gt;
|date=2010-06-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Offender traders OXP|Offender Traders]] makes some traders into offenders/fugitives&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-04-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Old Ships]] adds Elite-A [[Bushmaster Miner]]s, [[Cat (Oolite)|Cat]]s, [[Chameleon (Oolite)|Chameleon]]s, [[Ghavial (Oolite)|Ghavial]]s, [[Iguana (Oolite)|Iguana]]s, [[Monitor (Oolite)|Monitor]]s, [[Ophidian (Oolite)|Ophidian]]s, [[Salamander (Oolite)|Salamander]]s&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2006-08-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Old Ships 2010]] is a retextured version of [[Old Ships]], adding the bonus Monitor 2 ship&lt;br /&gt;
|aut=pagroove&lt;br /&gt;
|con=Murgh, ADCK, Simon B, Lestradae&lt;br /&gt;
|date=2011-02-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Oo-Haul]] adds vast bulk [[L-Crate Hauler]]s to the space lanes and offers missions at [[Your Ad Here!|constores]] to safely escort them&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|con=Eric Walch, Ark&lt;br /&gt;
|date=2009-02-21&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[ooCheat_OXP|ooCheat]] adds a cheat menu to the game&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-02-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[http://www.box.net/shared/rrlm77ztzm Oolite en français] is a French Oolite localization&lt;br /&gt;
|aut=Pierre-Olivier&lt;br /&gt;
|date=2009-07-12}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[http://marc-schaffer.ch/data/OoliteGerman_V0.3.zip Oolite auf Deutsch] is a German Oolite localization&lt;br /&gt;
|aut=SwissMäc&lt;br /&gt;
|date=2009-06-02&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[http://www.box.net/shared/p3engis1ds Oolite Italiano] is an Italian Oolite localization&lt;br /&gt;
|aut=another_commander&lt;br /&gt;
|date=2010-06-15&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=Oolite in Russian: [http://www.roolite.org Roolite.org] provides localizations of Oolite 1.74.2 and some OXPs. Also check [http://www.elite-games.ru/conference/viewtopic.php?t=48476&amp;amp;start=0 Elite Games]&lt;br /&gt;
|aut=Seventh&lt;br /&gt;
|date=2009-03-26&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://www.box.net/shared/x9u5xoulkq Orbits] positions planets on orbits around the sun&lt;br /&gt;
|date=2010-07-01&lt;br /&gt;
|aut=Ebi&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Ore Processor]] extracts valuable materials from asteroid fragments when mounted to a ship's fuel scoop&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|con=Ark, Kaks, Eric Walch&lt;br /&gt;
|date=2011-01-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Orisis]] BigTraders are new passenger liners that ferry passengers around&lt;br /&gt;
|aut=pagroove&lt;br /&gt;
|con=ADCK, Thargoid&lt;br /&gt;
|date=2010-01-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Outrider (Oolite)|Outrider]] is a medium fighter produced by the [[Taranis Corporation HQ (Oolite)|Taranis Corporation]]&lt;br /&gt;
|aut=Roberto&lt;br /&gt;
|date=2006-08-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[[OXPConfig]] provides means to configure supported OXPs, to recognize errors, or to avoid clashes&lt;br /&gt;
|aut=Svengali&lt;br /&gt;
|date=2011-07-16&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[P.A. Groove Stations OXP|P.A. Groove Stations]] adds lots of different types of Coriolis and Dodec Stations&lt;br /&gt;
|aut=pagroove&lt;br /&gt;
|con=Griff, Commander McLane&lt;br /&gt;
|date=2010-04-16&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Pallas]] adds a fast but lightly shielded fighter.&lt;br /&gt;
|aut=Charlie&lt;br /&gt;
|con=Svengali&lt;br /&gt;
|date=2010-12-02&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Pelamis]] adds the Pelamis trade ship&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2006-04-24&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Phoenix]] is a strange ship, built from salvaged parts from various Serpent Class ships&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2007-01-17&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://wiki.alioth.net/index.php/Pie_Chart_Style_HUDs Pie Chart Style HUDs] New invention=&amp;gt;pie gauges.[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9788 Info]&lt;br /&gt;
|aut=CommonSenseOTB&lt;br /&gt;
|date=2011-05-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Pirate Coves OXP|Pirate Coves]] adds rock hermits that have been taken over by pirates in more dangerous systems&lt;br /&gt;
|aut=lazygun&lt;br /&gt;
|date=2011-08-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/piratetraps.oxp.zip Pirate Traps] are dummy traders which transmit details of pirates firing on them to the police&lt;br /&gt;
|aut=popsch&lt;br /&gt;
|date=2006-01-04&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Planetfall_OXP|Planetfall]] allows the player to land on and trade at the planets and moons of each system&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-04-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Pods_OXP|Pods]] adds fuel, missile, bulk &amp;amp; empty cargo pods and pods which jam, explode, have trumbles or take a few scoops&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-03-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Police_IFF_Scanner_Upgrade|Police IFF Scanner Upgrade]] highlights offender and fugitive ships with custom IFF scanner colours&lt;br /&gt;
|aut=Capt Murphy&lt;br /&gt;
|date=2011-09-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Pteradyne Technologies Ships OXP|Pteradyne Technologies Ships]] adds the [[Excalibur]], a buyable combat ship and the [[Paladin]], a military version&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2006-12-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://www.boxcn.net/shared/xccp8ml5cq Pylon Based Equipment Remover] allows to remove a selected piece of equipment from your pylons&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-04-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Python Class Cruiser]] is a large powerful trade ship, which can also hold its own in battle&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2007-07-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://wiki.alioth.net/index.php/Q-Charger Q-Charger] is a Quirium supercharger which promises a 100% speed gain with twice the fuel efficiency of fuel injectors&lt;br /&gt;
|aut=CommonSenseOTB&lt;br /&gt;
|date=2011-08-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/racers.oxp.zip Racers] adds [[Chicaneer Mk II]], [[Chicaneer Mk IV]], [[Dragster Mk I]], and [[Dragster Mk II]] racing ships&lt;br /&gt;
|aut=murgh&lt;br /&gt;
|date=2006-01-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Railgun OXP|Railgun]] introduces a revolutionary new weapons system to the Ooniverse&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-05-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Ramon's Anaconda]] is a fantastic re-imagining of the Anaconda freighter. Check out its special features&lt;br /&gt;
|aut=Ramon&lt;br /&gt;
|con=Griff&lt;br /&gt;
|date=2009-04-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Random_Docking_Music_OXP|Random Docking Music]] plays a random music track from a pre-set list on activating docking computers&lt;br /&gt;
|aut=Frame&lt;br /&gt;
|date=2010-05-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Random Hits OXP|Random Hits]] adds [[Space Bar|seedy space bars]] to anarchy systems that offer large bounties on the galaxy's Most Wanted Criminals&lt;br /&gt;
|aut=LittleBear&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2011-03-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://terrastorage.ath.cx/Marmagka/e8e9ce360da6bb40f5952cbe00f02501/RedSet.zip RedSet] contains red-themed backgrounds for the UI screens&lt;br /&gt;
|aut=another_commander&lt;br /&gt;
|date=2010-06-18&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.purgatori.net/reduxedvamps.htm Reduxed Vampires] adds reworked versions of the Vampire Mk I and Mk II and a Reaper &amp;quot;Gold Edition&amp;quot;&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2010-10-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[RegistrationID|Registration ID]] adds ID tags to all Oolite standard ships&lt;br /&gt;
|aut=Frame&lt;br /&gt;
|date=2010-02-28&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Remorse_Of_Conscience_v2|Remorse Of Conscience]] is a trade ship with a large hold, that can hold its own in combat&lt;br /&gt;
|aut=8-bit Apocalypse&lt;br /&gt;
|date=2005-02-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Renegade Pirates OXP|Renegade Pirates]] adds rare, very well-armed, high bounty pirate versions of Classic Elite ships&lt;br /&gt;
|aut=LittleBear&lt;br /&gt;
|con=Aegidian, Griff&lt;br /&gt;
|date=2006-12-03&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/RVandGS.zip Renegade Viper + Grass Snake] adds [[Renegade Viper|stolen Vipers]] which earn large bounties &amp;amp; [[Grass Snake]], a large pirate trade ship&lt;br /&gt;
|aut=8-bit Apocalypse&lt;br /&gt;
|date=2004-11-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Repair_Bots_OXP|Repair 'Bots]] adds a pylon mounted canister of repair nanobots which attempt to fix damaged equipment in mid-flight&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-02-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Resistance Commander]] gives players a chance to command a squadron in combat&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2011-09-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Retro Rockets OXP|Retro Rockets]] are a handy little piece of equipment which gives your ship a backwards boost out of trouble&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-07-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Ringpod|Ring Pod]] adds a series of racing rings to the Galaxy 1 systems of Lave and Zaonce&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2011-10-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Ring_Racer_OXP|Ring Racer]] adds the Corporate Systems Ring Racing League to Galaxy 1&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-04-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Rock Hermit Locator]] adds equipment to locate Rock Hermits&lt;br /&gt;
|aut=Frame&lt;br /&gt;
|date=2011-03-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Saleza Aeronautics]] adds [[Bellatrix Cruiser]]s, [[Rigel Bomber|Rigel Tactical Bomber]]s, and [[Saiph Interceptor]]s to high tech corporate systems&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2010-10-24&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Santa]] adds very rare Santa Sledge to space lanes escorted by plasma gun toting reindeer space bikers!&lt;br /&gt;
|aut=Griff&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2010-05-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.purgatori.net/scorpius.htm Scorpius] adds a heavily armoured private trading and transport vessel, protected by Vampire escorts&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|con=Griff&lt;br /&gt;
|date=2011-08-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Scourge of the Black Baron]] features combat &amp;amp; transport Galaxy 1 missions&lt;br /&gt;
|aut=Rxke&lt;br /&gt;
|con=Kaks, Thargoid&lt;br /&gt;
|date=2010-08-07&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Scout]] is a cheap but good looking ship from Staer9 that shares a lot of technology with the [[Xeikil]]&lt;br /&gt;
|aut=Staer9&lt;br /&gt;
|date=2011-05-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Second Wave OXP|Second Wave]] adds variants of Thargoid Warship, Thargon Robot Fighter and alien ships&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-06-06&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Selezen's S-Ships]] adds [[GalCop SWAT Viper]]s and [[Oresrian Trader]]s&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|date=2007-07-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Sell equipment OXP|Sell Equipment]] allows for small fee, resale of equipment at 60% price at suitable tech level world&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-02-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[[Shady Cobra OXP|Shady Cobra]] adds shader effects to Cobra Mk III&lt;br /&gt;
|aut=Ahruman&lt;br /&gt;
|date=2007-07-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Shady Sungs]] adds replacement textures for all Classic Elite Ships&lt;br /&gt;
|aut=Sung, ADCK&lt;br /&gt;
|date=2010-05-21&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://wiki.alioth.net/index.php/Shield_Equalizer_%26_Capacitors_OXP Shield Equalizer] balances shield energy automatically. [http://wiki.alioth.net/index.php/Shield_Equalizer_%26_Capacitors_OXP Capacitors] store unused shield energy for use later&lt;br /&gt;
|aut=CommonSenseOTB&lt;br /&gt;
|date=2011-07-03&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Skrounk All-Stars Limited]] adds [[All Stars Large Freighter|Large Freighter]], [[Seymour Class Sled]], [[Starbelly Class Sled]], [[Starhawk]] &amp;amp; [[Starwolf_Mark_I|Starwolf Mk I]]&lt;br /&gt;
|aut=goji62&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Smivs%27_ShipSet|Smiv's Shipset 3.1]] re-skins the ships with a realistic look &amp;amp; non-shader lighting effects. Customisable Player Cobra3&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2011-08-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Snark]] is a powerful fighter/trader, often used by pirates and bounty hunters&lt;br /&gt;
|aut=Flying_Circus&lt;br /&gt;
|date=2006-06-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://wiki.alioth.net/index.php/Sniper_Camera_System_HUD Sniper Camera System] Zoomable camera for surveillance and long-range sniping.[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=10461 Info]&lt;br /&gt;
|aut=CommonSenseOTB&lt;br /&gt;
|date=2011-07-30&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=10515 Sniper Sight] is equipment to help with long distance targeting&lt;br /&gt;
|aut=Wildeblood&lt;br /&gt;
|date=2011-07-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=10176 Sniper Scope MilHUD integrated] is an version of MilHUD with integrated Sniper Sight functionality&lt;br /&gt;
|aut=Wildeblood&lt;br /&gt;
|date=2011-06-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Snoopers]] adds the galactic news network channels&lt;br /&gt;
|aut=DaddyHoggy&lt;br /&gt;
|con=Disembodied, Drew, Svengali&lt;br /&gt;
|date=2011-10-06&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Solid Gold Cobra Mk.3]] is a limited edition Cobra Mk3 to celebrate its 25 years anniversary&lt;br /&gt;
|aut=ADCK&lt;br /&gt;
|date=2010-06-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Solo%27s_Silver_Ships|Solo's Silver Ships]] Adds three ships with silver themed textures &lt;br /&gt;
|aut=CaptSolo&lt;br /&gt;
|date=2011-08-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[http://www.purgatori.net/Sothis.htm Sothis Space Station] is a station from [[Isis Interstellar]] with a compact design of comparable size to a standard Coriolis&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2010-08-08&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Spearhead Interceptor Mk.I]] is a pure fighter, fast &amp;amp; nippy but with weak shields, no cargo bay. Can be twitchy to fly&lt;br /&gt;
|aut=Randell&lt;br /&gt;
|date=2006-07-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[S.I.R.F.|Special Interstellar Repair Facilities]] offer different trading strategies &amp;amp; repair facilities on uncommon trading routes&lt;br /&gt;
|aut=Tinker&lt;br /&gt;
|date=2010-07-02&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.purgatori.net/spectres.htm Spectre] adds [[Isis Interstellar]]'s Vampire Mk V, a secret military vessel fighting Thargoids in witch space&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2011-01-16&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Spy Hunter OXP|Spy Hunter]] is a mission for Galactic Navy for Commander with rating of 'Dangerous' or above&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|date=2009-04-11&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Staer9 Spectre]] is a cheap small fighter with high maneuverability that flopped in the market&lt;br /&gt;
|aut=Staer9&lt;br /&gt;
|date=2011-05-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Star-Jelly]] Beautiful translucent organisms sometimes found in Asteroid fields&lt;br /&gt;
|aut=Smivs,Staer9&lt;br /&gt;
|date=2011-05-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Star Wars Ships]] adds [[A-Wing]], [[B-Wing]], [[Lambda Shuttle]], [[Tie-Fighter]], [[Tie-Interceptor]], [[X-Wing]], [[Y-Wing]]&lt;br /&gt;
|aut=Azzameen&lt;br /&gt;
|date=2006-05-31&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Status Quo Q-bomb OXP|Status Quo Q-bomb]] changes the behaviour of Q-bombs according to the [[Status Quo]] novel&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-02-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[S.T.E]] is a step up from the Cobra III with improved trading capabilities and increased speed&lt;br /&gt;
|aut=Rustybolts&lt;br /&gt;
|date=2009-07-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Stealth OXP|Stealth]] is a small G3 mission showcasing new scanner capabilities &amp;amp; introducing stealth ships&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-03-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://www.purgatori.net/Steampunk%20HUD.htm Steampunk HUD] adds a steampunk style HUD by [[Isis Interstellar]]&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2010-01-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Stellar Serpents OXP|Stellar Serpents]] adds huge space-born serpent monsters which move from system to system and are good hunting prey&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-07-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[http://sancho.dk/oolite/sunskimmers.zip Sunskimmers] adds ships to the sun/planet corridor&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-08-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[SuperCobra]] is larger, faster with stronger hull than Cobra Mk III&lt;br /&gt;
|aut=8-Bit Apocalypse&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2010-10-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Superhub]] from GASEC is the first station that is capable of transporting itself to its destination&lt;br /&gt;
|aut=P.A. Groove&lt;br /&gt;
|date=2009-11-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Swift]] is a very fast ship often used by pirates or bounty hunters with limited cargo space &amp;amp; nominal shields&lt;br /&gt;
|aut=Charlie&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Switeck's Shipping OXP|Switeck's Shipping]] tweaks ships, market prices and NPC behavior. Adds Medium, Hard, and Harder Jameson saves&lt;br /&gt;
|aut=Switeck&lt;br /&gt;
|date=2011-07-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[System Demux (Oolite)|System Demux]] textures home planet, adds planet/moon combination to systems&lt;br /&gt;
|aut=DrBeeb&lt;br /&gt;
|date=2010-07-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[System Redux (Oolite)|System Redux]] textures home planet, adds planet/moon combination to systems&lt;br /&gt;
|aut=CaptKev&lt;br /&gt;
|date=2011-07-16&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://www.box.net/shared/r05ub873b5 TAF Reset] resets the Time Acceleration Factor (TAF) to 1.0 upon docking&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2009-09-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Taranis OXP|Taranis]] is a mission for law abiding Commanders with rating of Competent+. Adds [[Taranis Corporation HQ (Oolite)|Taranis Corporation HQ]]&lt;br /&gt;
|aut=Roberto&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2009-10-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Target_Autolock_OXP|Target Autolock]] updates [[Scanner Targeting Enhancement]] to auto-lock onto attacking ships&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-02-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Target Range OXP|Target Range]] is found in all rich systems with stable governments&lt;br /&gt;
|aut=Caracal&lt;br /&gt;
|date=2010-07-24&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Target Reticle]] updates [[Scanner Targeting Enhancement]] to turn reticle red when target centred&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2010-05-31&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Taxi Galactica]] adds a Taxi Service and a non player flyable taxi cab ship to systems&lt;br /&gt;
|aut=pleb87&lt;br /&gt;
|date=2008-06-12&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Teretrurus Mk.I]] is a medium fighter/trader somewhat faster &amp;amp; tougher than Cobra Mk III, but with smaller cargo bay&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2008-02-01&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Terrapin|Terrapin Trader]] is a medium fighter/trader. A good upgrade from Cobra Mk III&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2008-02-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Tesoura]] is a slow, but well shielded trade ship&lt;br /&gt;
|aut=Randall, Dr. Nil&lt;br /&gt;
|date=2008-02-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Thargoid Carrier]] arms Thargoids with capital carrier&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|date=2006-06-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Thargorn_Threat_oxp|Thargoid Threat]] adds [[Thargoid Terrorizer Frigate]], [[Thargoid Thargorn Battleship]], [[Thargoid Thorgon Cruiser]]&lt;br /&gt;
|aut=Arexack Heretic&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2011-02-03&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Thargoid Wars]] intensifies war with the Thargoids, featuring new attack and defense missions&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2011-07-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Tianve OXP|Tianve]] adds [[Navy Station]], as well as Visuals, including a pulsar, to the Galaxy 1 system of Tianve&lt;br /&gt;
|aut=Drew&lt;br /&gt;
|date=2009-12-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Tiger Mark I]] is a truly awesome (and very expensive) multi-role craft&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2006-05-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Tionisla Orbital Graveyard]] adds the famed graveyard to Tionisla, G1, as described in “The Dark Wheel” novella&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2011-02-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Tionisla Reporter]] adds a mission for a starting commander&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2011-07-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[TCAT OXP|To Catch a Thargoid]] is a G3 follow-up mission to Thargoid Plans, for Dangerous or Elite rank Commanders&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-12-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Torus station|Torus Station]] adds a vast 2001 style space station to very high tech level systems&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|con=Svengali&lt;br /&gt;
|date=2010-10-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Total patrol OXP|Total Patrol]] makes police ships patrol between planet, witchpoint &amp;amp; sun&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-03-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[ToughGuys|ToughGuys]] Adds 3 levels of increased toughness of 'Baddies', and gives a backdrop for an immersive storyline&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2011-02-16&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Trader Outpost (Oolite)|Trade Outpost]] adds Griff's trade outpost without ads&lt;br /&gt;
|aut=CaptKev, Griff, Ark&lt;br /&gt;
|date=2009-02-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Traffic_Control_OXP|Traffic Control]] personnel gives help with approach to and manual docking at all main stations&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-06-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Transhab station|Transhab Station]] adds a large station with rotating arms to some medium tech level systems&lt;br /&gt;
|aut=Draco_Caeles&lt;br /&gt;
|date=2006-06-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Transports]] adds [[CoachWhip]], [[Coral]], [[Woma]]&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|con=Eric Walch, Kaks&lt;br /&gt;
|date=2010-12-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://wiki.alioth.net/images/d/d9/TrekHud.zip Trek HUD] replaces your HUD with a Star Trek NG LCARS-style HUD&lt;br /&gt;
|aut=barabis&lt;br /&gt;
|date=2008-11-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Trident Down]] contains a series of Galaxy 4 missions investigating a vicious attack on a [[Executive SpaceWays|Trident Shuttle]]&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2011-08-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[UPS Courier]] offers Commanders transport of goods/documents &amp;amp; occasional combat missions&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2011-03-29&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Urutu Mark III &amp;amp; Urutu Mark IV]] are medium fighters/traders from Elite-A&lt;br /&gt;
|aut=Milinks&lt;br /&gt;
|date=2006-09-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Vampire]] adds the Purgatori Vampire series of combat ships&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2007-01-29&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Vampire - Diamondback]] adds the Diamondback Vampire series of combat ships&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2010-04-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Vampire - Dominatrix]] adds the Dominatrix Vampire series of combat ships&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2009-12-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Vector OXP|Vector]] is a unusual mission type - fast money, slavers, tricks and GalCop is watching you...&lt;br /&gt;
|aut=Svengali&lt;br /&gt;
|date=2011-02-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Velocity_OXP|Velocity]] is a fast fighter ship&lt;br /&gt;
|aut=Sabre&lt;br /&gt;
|date=2009-09-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.purgatori.net/Venom.oxp.zip Venom] adds [[Venom]]s in normal and renegade versions  from [[Isis Interstellar]]&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2009-12-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Vortex OXP|Vortex]] A new ex-military player ship. Rare, expensive and powerful - kitted out with advanced and unique features&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-03-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.purgatori.net/wasps.htm Wasps] adds formation flying wasps, queen wasps, and wasp nests&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|con=Thargoid, Ahruman, Eric Walch&lt;br /&gt;
|date=2010-08-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/weeviloid2.zip ''Weeviloid''] adds [[Weeviloid Hunter]]s, fearsome multi-gunned war ships and [[Weeviloid Scoutship]]s, light trade ships&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2006-05-11&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Welcome_Mat_OXP|Welcome Mat]] upgrades the comms systems to expand the information that is given on arrival in new system&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-06-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Werewolf]] from [[Isis Interstellar]] has 3 variants:  [[Werewolf|Werewolf ~ Damage Inc.]], [[Werewolf|Werewolf (Civilian)]] &amp;amp; [[Werewolf|Werewolf (Purgatori Model)]]&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2011-02-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Wolf_Mk.2_%28Oolite%29|Wolf Mk II]] adds the powerful Wolf Mk II, as seen in Elite-A&lt;br /&gt;
|aut=Ark&lt;br /&gt;
|date=2009-07-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://wiki.alioth.net/images/0/06/Wolfs_variants.zip Wolfwood's Variants] adds [[Asp_Mk.I|Asp Mk I]], [[Cobra Courier]], [[Cobra Rapier]], [[Drake]], [[Drake Mk II]] &amp;amp; [[Wolf Mk I]]&lt;br /&gt;
|aut=Wolfwood&lt;br /&gt;
|date=2008-02-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Wormhole restoration OXP|Wormhole Restoration]] adds a new way to leave interstellar space without using fuel, expanding on Thargoid backstory&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-05-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.box.net/shared/n9xla832xbccuk7yuzrf Wyvern Ladies] adds armed long-range transports Wyvern Empress &amp;amp; Wyvern Queen, and the Wyvern Princess escort&lt;br /&gt;
|aut=Wyvern&lt;br /&gt;
|date=2011-08-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Xarik]] is an advanced aircraft, last creation of the late Prof. Eisel Xarik. Used by pirates, traders, and hunters&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2010-02-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Xeikil]] adds a player, a GalCop interceptor, and 24 pirate variants of Staer9 Industries' current top fighter&lt;br /&gt;
|aut=Staer9&lt;br /&gt;
|date=2011-05-16&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Xeikil MK2]] adds a player, a GalCop interceptor, and 24 pirate variants of Staer9 Industries' replacement [[Xeikil]]&lt;br /&gt;
|aut=Staer9&lt;br /&gt;
|date=2011-05-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[YellOo_Cabs]] adds YellOo Cab Co taxis to the Ooniverse. NPC and Buyable&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2011-01-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Your Ad Here!]] adds Convenience Stores [[Pi-42]], [[Tescoo Oxpress]], [[Star]], [[Mall Wart]], [[Sainsboory's]] &amp;amp; [[Security Sidewinder|security sidewinders]]&lt;br /&gt;
|aut=Griff&lt;br /&gt;
|con=DaddyHoggy, Pangloss, Disembodied, Eric Walch&lt;br /&gt;
|date=2011-02-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Z-ships]] adds [[Z-ships_Asp_Explorer|Asp Explorer]], [[Z-ships_Cobra_Commodore|Cobra Commodore]], [[Z-ships_Porcupine|Porcupine]] &amp;amp; [[Z-ships_Python_Courier|Python Courier]]&lt;br /&gt;
|aut=Zieman&lt;br /&gt;
|date=2010-03-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9056 Z-GrOovY Griff's Cobra Mk3 Variety Pack] adds multiple Griff's Cobra Mk3 with alternate hull paintings&lt;br /&gt;
|aut=dertien&lt;br /&gt;
|date=2011-01-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9306 Z-GrOovY System Stations] adds Griff-based Tetrahedron, Octahedron, Coriolis, Dodecahedron, Icosahederon stations&lt;br /&gt;
|aut=dertien&lt;br /&gt;
|date=2011-03-03&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9146 Z-GrOovY Viper Raider] adds a new player ship based on the police Viper&lt;br /&gt;
|aut=dertien&lt;br /&gt;
|date=2011-02-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9056 Z-GrOovY YAH Sidewinder Variety Pack] adds multiple Your Ad Here! Constore defenders with alternate hull paintings&lt;br /&gt;
|aut=dertien&lt;br /&gt;
|date=2011-01-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9056 Z-GrOovY YellOo Cab Variety Pack] adds the Moray Starboat with taxi hull painting&lt;br /&gt;
|aut=dertien&lt;br /&gt;
|date=2011-01-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Work in Progress OXPs  ==&lt;br /&gt;
The following table contains OXPs that either have not yet been released by their authors but are already being discussed on the [http://www.aegidian.org/bb/viewforum.php?f=4 Expansion Pack Forum], or released OXPs that still have WIP status. Links get you either to the respective discussion or the Wiki page if it already exists.&lt;br /&gt;
{{OXPListTableHeader}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?t=8341 Animated Ships] adds animated butterflies flapping their wings as a demo&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-08-06&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9864 Cargo Scanner] scans targeted cargo containers to find out what they contain&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-05-17&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=10732 Chupacabra HUD] places most information in curved bars around the center&lt;br /&gt;
|aut=CommonSenseOTB&lt;br /&gt;
|date=2011-08-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://www.aegidian.org/bb/viewtopic.php?t=8526 Comms Demo] provides a way to communicate with NPC ships&lt;br /&gt;
|aut=Kaks&lt;br /&gt;
|date=2009-10-26&lt;br /&gt;
|work=N}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=10794 External Missiles HUD] allows control over external missile pylons&lt;br /&gt;
|aut=CommonSenseOTB&lt;br /&gt;
|date=2011-09-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[I Missile]] is a very fast and agile interceptor missile but lacks the punch that standard missiles deliver&lt;br /&gt;
|aut=CaptSolo&lt;br /&gt;
|date=2011-08-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.box.net/shared/0i2fnrc175t Katipo] adds a very fast, moderate maneuverability, low cargo ship with low thrust&lt;br /&gt;
|aut=Simon B&lt;br /&gt;
|date=2011-03-03&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=8705 Liners] adds some beautiful and very large vessels to the spacelanes.&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|con=pagroove, Thargoid, Griff&lt;br /&gt;
|date=2011-09-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9441 Miner Pod] breaks up asteroids and collects the splinters&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-03-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?t=8275 Mining] adds mines to protect and provide resources for to get gold&lt;br /&gt;
|aut=docwild&lt;br /&gt;
|date=2010-07-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Nuit Space Station OXP|Nuit Space Station]] is the newest creation of [[Isis Interstellar]]&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2009-11-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mission&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?p=130221#p130221 Oresrati Challenge] adds a fun mission to the loneliest system of the Ooniverse, Oresrati&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-04-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=10820 Peregrine Fighter] is a very small stand-alone ship in its early design stages&lt;br /&gt;
|aut=Wyvern&lt;br /&gt;
|date=2011-09-03&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9946 Phantom] is a trader/fighter from [[Isis Interstellar]] with external missiles&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2011-05-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?p=138226#p138226 Shield Cycler] distributes shield energy between fore and aft shields&lt;br /&gt;
|aut=Lone_Wolf&lt;br /&gt;
|date=2011-05-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=5484 Solar System] adds extra planets and jump gates to a system&lt;br /&gt;
|aut=Frame&lt;br /&gt;
|date=2009-01-11&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=10690 Staer9's Shipset] will replace all the ships that the Neolite companion replaces&lt;br /&gt;
|aut=Staer9&lt;br /&gt;
|date=2011-09-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9472 Sun Skimmer Pod] adds a pod that goes sun skimming and returns full of fuel&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-03-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9488 Target Tracker] aligns your ship on your target&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-03-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9353 Thor Class Supercarrier] adds a Navy Carrier as a replacement pack for the Behemoth and the Galactic Navy&lt;br /&gt;
|aut=dertien&lt;br /&gt;
|date=2011-03-03&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=10809 Trident Shipyard Corp] adds the Trident Privateer Mark II in trader, hunter, pirate, and police versions&lt;br /&gt;
|aut=Cmdr Vault&lt;br /&gt;
|date=2011-09-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9242 Wormhole Drones] creates a path of worm holes to lead you to your destination system&lt;br /&gt;
|aut=Mauiby de Fug&lt;br /&gt;
|date=2011-02-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=10300 Xeptatl's Sword] An epic mission spanning all eight galaxies. Can you stop the Thargoid invasion of GalCop space?&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2011-09-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[http://www.aegidian.org/bb/viewtopic.php?t=8541 Zygoroids] add new beautifully textured asteroid models to the Ooniverse&lt;br /&gt;
|aut=ZygoUgo&lt;br /&gt;
|date=2010-10-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== OXPs with Problems ==&lt;br /&gt;
The following table contains OXPs that have problems eg. broken download, or have been written for versions of Oolite earlier than the current 1.75.3&lt;br /&gt;
{{OXPListTableHeader}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Amen Bricks Megaships|Amen Brick's Megaships]] adds [[Battleship]]s, [[Biodome]]s, [[Cruiseship]]s, [[Hospitalship]]s, [[Supercargo]]s, [[Superlifter]]s, and [[Yacht - Amen Class|Yacht]]s (This version 1.1 contains a corrupted shipData.plist)&lt;br /&gt;
|aut=Amen Brick&lt;br /&gt;
|date=2008-07-11}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[ADCK%27s Behemoths]] adds shadered versions of the [[Behemoth]],  [[Galactic Navy OXP|Galactic Navy]] ships and stations, and then some&lt;br /&gt;
|aut=ADCK&lt;br /&gt;
|con=Aegidian, pagroove, Nemoricus, Selezen, Simon B&lt;br /&gt;
|date=2010-04-20&lt;br /&gt;
|work=N}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Cataclysm OXP|Cataclysm]] takes up the threads of Constrictor Hunt and Thargoid Plans, and sends you on your biggest Navy mission yet&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2009-01-06&lt;br /&gt;
|work=N}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[http://www.box.net/shared/mq1mzoc79t Constrictor Mission Hints] adds more hints for those doing the native Constrictor Mission&lt;br /&gt;
|aut=Arexack Heretic&lt;br /&gt;
|date=2010-08-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Kirin#Download|Kirin Sport]] adds a a smaller, faster, more agile - and less well armed - civilian variant of the [[Kirin]]&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2009-07-22&lt;br /&gt;
|work=N}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Localhero_OXP|Localhero]] adds a mission campaign in the first galaxies&lt;br /&gt;
|aut=Svengali&lt;br /&gt;
|date=2008-04-09&lt;br /&gt;
|work=N}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Orb]] adds a new alien race, which might help GalCop in the battle against the Thargoids.&lt;br /&gt;
|aut=Charlie&lt;br /&gt;
|date=2007-02-13&lt;br /&gt;
|work=N}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Personalities OXP|Personalities]] adds a bunch of unique, well-known personalities from the Bulletin Board to the Ooniverse&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2009-11-05&lt;br /&gt;
|work=N}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[[Save Anywhere]] allows you to save your game at any OXP Station&lt;br /&gt;
|aut=Frame&lt;br /&gt;
|date=2008-10-01&lt;br /&gt;
|work=N}}&lt;br /&gt;
|}&lt;br /&gt;
[[Category:Oolite expansion packs]]&lt;br /&gt;
[[Category:OXP Lists]]&lt;br /&gt;
[[Category:Factual]]&lt;/div&gt;</summary>
		<author><name>Mcarans</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.alioth.net/index.php?title=OXP_List&amp;diff=28998</id>
		<title>OXP List</title>
		<link rel="alternate" type="text/html" href="https://wiki.alioth.net/index.php?title=OXP_List&amp;diff=28998"/>
		<updated>2011-09-08T10:57:03Z</updated>

		<summary type="html">&lt;p&gt;Mcarans: /* Sortable Table of OXPs */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
== OXP Categories ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; width=&amp;quot;100%&amp;quot; style=&amp;quot;border-collapse: collapse; border-width: 1px; border-style: solid; border-color: #ffffff; table-layout: fixed; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; width=&amp;quot;70px&amp;quot; style=&amp;quot;margin: 0px; padding: 0px; border-width: 1px; border-style: solid; border-color: #ffffff; background-color: #e7e7ff; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot; |&amp;lt;p style=&amp;quot;font-size: 13px;&amp;quot;&amp;gt;Category&amp;lt;/p&amp;gt;&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;margin: 0px; padding: 0px; border-width: 1px; border-style: solid; border-color: #ffffff; background-color: #e7e7ff; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot; |&amp;lt;p style=&amp;quot;font-size: 13px;&amp;quot;&amp;gt;Description of OXP Category&amp;lt;/p&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Activities_OXPs|Activities]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Allow Commanders to carry out a new activity or task eg. racing, gas giant skimming, taking out loans&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Dockables_OXPs|Dockables]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Add new objects that the player can dock with eg. carriers, space bars, casinos, fuel stations. Also, see [[Oolite Stations]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Ambience_OXPs|Ambience]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Change or add to the scenery, visuals or sound effects eg. planet skins, add new planets/moons to systems, move suns further away, dim nebulae, add monuments&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Equipment_OXPs|Equipment]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Buy upgrades for your ship excluding weapons&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Mechanics_OXPs|Mechanics]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Change the game play in a specific way eg. alter market mechanics, add more pirates&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:HUDs_OXPs|HUDs]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Modifications of your dials, gauges and other read-outs&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Missions_OXPs|Missions]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|New missions for Commanders to undertake. For more information, see [[Oolite Missions]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Retextures_OXPs|Retextures]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Retexture existing objects, either by replacing or adding variations, but without adding objects that did not exist before&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Ships_OXPs|Ships]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|New ships, except dockable ships. Also, see [[Oolite Ships]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Systems_OXPs|Systems]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Alter multiple star systems in a number of ways eg. combinations of changing main station and local police ships, adding new stations, ships, activities, missions&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Weapons_OXPs|Weapons]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Addons for your ship for blowing up the baddies&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Misc_OXPs|Misc]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|OXPs that don't fit into the other categories eg. debug consoles, internationalisations, config mechanisms, demo OXPs&lt;br /&gt;
|}&lt;br /&gt;
OXP authors: if you are unsure how to categorise your OXP or if you wish to update the details of an OXP for an author who has disappeared, please seek advice on the [http://www.aegidian.org/bb/viewforum.php?f=4 Expansion Pack Forum] before proceeding. Please put your OXP in one category only. You can edit the section below to add your OXP.&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Sortable Table of OXPs ==&lt;br /&gt;
The following table is optimized for a horizontal screen resolution of at least 1280px so that all OXP descriptions fit on one line.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; width=&amp;quot;100%&amp;quot; style=&amp;quot;border-collapse: collapse; border-width: 1px; border-style: solid; border-color: #ffffff; table-layout: fixed; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;border-width: 1px; border-style: solid; border-color: #ffffff; background-color: #e7e7ff; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot; |The &amp;quot;C&amp;quot; column indicates compatibility with Oolite beta 1.75:&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Y&amp;quot;=compatible, &amp;quot;Y*&amp;quot;=compatible (but the OXP is not in full working order), &amp;quot;N&amp;quot;=incompatible,  blank=unknown/untested.&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;!-- KEEP DESCRIPTIONS (desc=...) ALPHABETICAL --&amp;gt;&lt;br /&gt;
&amp;lt;!-- KEEP LENGTHS OF DESCRIPTIONS TO THAT OF EXISTING ENTRIES OR LESS --&amp;gt;&lt;br /&gt;
{{OXPListTableHeader}}&lt;br /&gt;
&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Accessories OXP|Accessories]] replaces the textures of all Stations and non-ship objects in Oolite with a more detailed and realistic look&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2010-06-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Accipiter]] is the market entry from Xeceesian shipyards, a strong &amp;amp; fast all purpose vessel for experienced commanders&lt;br /&gt;
|aut=CaptSolo&lt;br /&gt;
|con=Staer9, Griff&lt;br /&gt;
|date=2011-05-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Aegidian%27s Specials]] adds the powerful [[Mussurana]], the [[Asp (Oolite)#Notable features|Asp Mark II Special]], and a new cargo canister&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2009-07-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Aegidian%27s X-Ships]] adds [[Python ET Special]]s, [[Cobra Mk.2 (Oolite)|Cobra Mk II]]s, [[Taipan]]s, [[Asp (Oolite)#Notable features|Asp Mark II Special]]s, and [[Sidewinder (Oolite)#Notable features|Sidewinder Special]]s&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2009-04-29&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Pirate Clan Blitzspears|Amen Brick's Pirate Clan One: The Blitzspears]] adds the [[Assassin Blitzspear|Assassin]], the [[Hoodlum]], the [[Scoundrel]], and the [[Spiv]]&lt;br /&gt;
|aut=Amen Brick&lt;br /&gt;
|date=2008-06-30}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Amiga Replacement Sounds]] is based on the sound set used in the Amiga version of the original Elite&lt;br /&gt;
|aut=EAGLE 5&lt;br /&gt;
|date=2006-03-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Systems&lt;br /&gt;
|desc=[[Anarchies OXP|Anarchies]] overhauls legal ratings and spices up anarchies with [[Hacker Outpost]]s, [[Salvage Gang]]s, special stations &amp;amp; ships&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|con=Killer Wolf, Griff, Cdr. Wyvern, Murgh, Aegidian, 8-Bit Apocalypse&lt;br /&gt;
|date=2011-03-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9462 Another HUD] is based on Killer Wolf's Generic HUD&lt;br /&gt;
|aut=NorthenderPNE&lt;br /&gt;
|date=2011-03-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Aphid]] adds the stylish Aphid Escort Service&lt;br /&gt;
|aut=8-Bit Apocalypse&lt;br /&gt;
|date=2005-01-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Aquatics OXP|Aquatics]] adds the Aquarian Shipbuilding Corporation of Aqualina, G3 along with its ships and a mission&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-03-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Armoured Transport Type 1]] adds Gaundlet's [[Gaundlet Armoured Transport Type1|Armoured Transport Type 1]] and [[Gaundlet Armoured Escort Viper|Armoured Escort Viper]] that ferry valuables&lt;br /&gt;
|aut=Arexack Heretic&lt;br /&gt;
|date=2005-12-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Armoury OXP|Armoury]] adds AMS, captured Thargons, drones, probes, a missile rack, some bombs, and the missile machine&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-07-17&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[The Assassins Guild OXP|Assassins Guild]] adds 21 missions involving murder to order in Galaxy 7&lt;br /&gt;
|aut=Littlebear&lt;br /&gt;
|date=2011-05-03&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Asteroid Storm]] adds different types of asteroids &amp;amp; a mission where a station in G1 is threatened by a large asteroid strike&lt;br /&gt;
|aut=LittleBear, Charlie&lt;br /&gt;
|date=2011-01-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Aurora]] adds huge passenger ships for the wealthiest in society&lt;br /&gt;
|aut=pagroove&lt;br /&gt;
|con=Griff, Thargoid&lt;br /&gt;
|date=2010-11-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://www.mediafire.com/?fnc65em7uh5un1d Auto ECM] fires the ECM once when a missile is fired at the player's ship. See the [http://aegidian.org/bb/viewtopic.php?p=138124#p138124 BB] for more info&lt;br /&gt;
|aut=Switeck&lt;br /&gt;
|date=2011-05-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Auto eject OXP|Auto Eject]] ejects your escape pod automatically when your energy becomes too low&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2010-06-16&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Automatic Chaff System]] provides an enhanced chaff-based missile countermeasure system&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2010-06-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Baakili Far Trader]] adds a dockable alien ship&lt;br /&gt;
|aut=Zieman&lt;br /&gt;
|date=2010-09-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Bandersnatch]] adds a pirate capital vessel armed with 4 x fore lasers&lt;br /&gt;
|aut=Flying_Circus&lt;br /&gt;
|date=2009-11-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Beer Cooler]] allows you to fit your ship with a beer cooler&lt;br /&gt;
|aut=Maik&lt;br /&gt;
|date=2010-08-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Behemoth]] adds a dockable Navy cruiser carrying [[Navy Asp]]s and [[Navy Viper]]s&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2011-01-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[ADCK%27s Behemoths]] adds shadered versions of the [[Behemoth]],  [[Galactic Navy OXP|Galactic Navy]] ships and stations, and then some&lt;br /&gt;
|aut=ADCK&lt;br /&gt;
|con=Aegidian, pagroove, Nemoricus, Selezen, Simon B&lt;br /&gt;
|date=2010-04-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Behemoth Spacewar]] adds intelligence to the Behemoth and brings a combat with Thargoids&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2010-01-09&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[BGS|BGS - Background Set]] framework for images, sounds and ambient music&lt;br /&gt;
|aut=pagroove, Svengali&lt;br /&gt;
|date=2011-03-16&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[BigShips OXP|Big Ships]] ensures that large ships do not dock and controls population of systems with them&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2009-11-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Black Monk Monastery]] offers loans in advanced systems and adds the [[Black Monk Gunship]] to persecute defaulters&lt;br /&gt;
|aut=LittleBear&lt;br /&gt;
|date=2010-06-14&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[BlackjacksBullion OXP|Blackjack's Bullion]] starts in galaxy 2 at Telace as Commander Blackjack arrives via escape pod&lt;br /&gt;
|aut=Rustybolts&lt;br /&gt;
|date=2010-03-08&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[BlOomberg Markets]] varies the in-game economy by generating random events that affect commodity prices&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2011-03-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Boa II Clipper Class]] is a development of the Boa Class Cruiser, adding a third engine at the cost of cargo space&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2011-01-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Boomslang]] adds a mid-range multi-role ship. Used by pirates and traders alike&lt;br /&gt;
|aut=milinks, Jar&lt;br /&gt;
|date=2008-09-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Bounty Scanner]] adds bounty details (if any) to the targeting lock-box display when locked onto other ships&lt;br /&gt;
|aut=Frame&lt;br /&gt;
|date=2010-07-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[BountyStatus OXP|Bounty Status]] displays your current bounty (and your legal status) on the F5 manifest screen&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-05-08&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Breakable_'Standard'_Equipment_OXPs|Breakable 'Standard' Equipment]] makes some standard equipment such as HUD/Scanner damageable in combat&lt;br /&gt;
|aut=Capt Murphy&lt;br /&gt;
|date=2011-07-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Bulk Haulers]] adds the [[Lynx Bulk Carrier (Oolite)|Lynx Bulk Carrier]], the [[Long Range Cruiser (Oolite)|Long Range Cruiser]], the [[Bulk Hauler]], and the [[Super Bulk Hauler]]&lt;br /&gt;
|aut=ADCK&lt;br /&gt;
|con=Aegidian, pagroove&lt;br /&gt;
|date=2010-04-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[BuoyRepair|Buoy Repair]] adds a [[Buoy Repair Facility]] and related ships to repair defect or destroyed nav-beacons&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|con=Svengali, Murgh, Zieman&lt;br /&gt;
|date=2011-06-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[[Cabal Common Library]] is a collection of snippets and helpers for OXPs&lt;br /&gt;
|aut=Svengali&lt;br /&gt;
|con=Cmd.Cheyd, PhantorGorth&lt;br /&gt;
|date=2011-08-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Caduceus]] adds the very expensive (and deadly) Caduceus&lt;br /&gt;
|aut=ClymAngus&lt;br /&gt;
|con=Cdr. Wyvern, another_commander, Eric Walch, Thargoid&lt;br /&gt;
|date=2010-12-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Capisastra]] adds [[Capisastra Defender]]s, [[Capisastra Hauler]]s, and [[Capisastra Warrior]]s&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|date=2006-01-12}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Captain Berf Engineer]] adds a voice for crew members&lt;br /&gt;
|aut=Captain Berf&lt;br /&gt;
|date=2009-12-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Captain Berf Pilot]] adds a voice for crew members&lt;br /&gt;
|aut=Captain Berf&lt;br /&gt;
|date=2009-12-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Captain Berf Pilot Alien]] adds a voice for crew members&lt;br /&gt;
|aut=Captain Berf&lt;br /&gt;
|date=2009-12-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Captain Berf Tactical Officer]] adds a voice for crew members&lt;br /&gt;
|aut=Captain Berf&lt;br /&gt;
|date=2009-12-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Cargo Shepherd OXP|Cargo Shepherd]] attracts cargo pods and holds them until you can scoop them, also includes a beacon&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-04-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://www.box.net/shared/4lphdkazs5 CB-HUD] features a HUD that changes based on installed equipment. See the [http://aegidian.org/bb/viewtopic.php?p=141035#p141035 BB post] for more information&lt;br /&gt;
|aut=Captain Beatnik&lt;br /&gt;
|date=2011-05-29&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Chopped Cobra]] By Staer9. Chopped version of Griff's Cobra. Includes Enforcer and S9 variants by Smivs.&lt;br /&gt;
|aut=Staer9&lt;br /&gt;
|con=Smivs&lt;br /&gt;
|date=2011-07-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Clear Skies OXP|Clear Skies]] reduces nebula effects and dims stars. Handy if your system is finding it hard to run Oolite&lt;br /&gt;
|aut=johnsmith&lt;br /&gt;
|date=2006-11-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Cobra 3.5|Chopped Cobra]] adds the Cobra Mk 3.5, a slightly faster and tougher variant with a reduced cargo bay&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2006-12-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9157 Cobra AC] is a faithful reproduction of the Cobra on the cover of the Dark Wheel novella with improved specs&lt;br /&gt;
|aut=dertien&lt;br /&gt;
|date=2011-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Cobra Clipper SAR]] adds a custom Cobra Mk III to rescue stranded Commanders&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2010-04-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Cobra III NjX]] adds a faster, tougher variation on the Classic Cobra Mk III&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|date=2006-08-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Cobra Mark III-XT]] Cobra3 with revamped architecture and upgraded systems to boost performance&lt;br /&gt;
|aut=CaptSolo&lt;br /&gt;
|date=2011-07-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.purgatori.net/cobra4.htm Cobra MkIV] is [[Isis Interstellar]]'s successor to the Cobra MkIII, available in trader and fighter variants&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2010-11-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[OosoundsCombined OXP|Combined Murgh, Wiggy &amp;amp; xaotik's sounds]] combines the 3 available packs from Murgh, Wiggy and xaotik&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|con=Murgh, Wiggy, xaotik&lt;br /&gt;
|date=2009-09-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Systems&lt;br /&gt;
|desc=[[Commies]] Adds [[Astro Mines]], [[CZGF|Factories]], [[SLAPU|Production Units]], [[Worker%27s Commuter|Commuters]] &amp;amp; special police ships to Communist systems&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|con=Ramirez, Murgh, johnsmith, HueijRevisited&lt;br /&gt;
|date=2010-05-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[CompactHUD|Compact HUD]] provides an alternative HUD with a clean look&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Condor]] adds a very powerful police and Navy Cruiser&lt;br /&gt;
|aut=Charlie&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2010-10-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Console HUD]] Azure themed semi-transparent HUD with balanced array of indicators&lt;br /&gt;
|aut=CaptSolo&lt;br /&gt;
|date=2011-07-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[http://www.box.net/shared/mq1mzoc79t Constrictor Mission Hints] adds more hints for those doing the native Constrictor Mission&lt;br /&gt;
|aut=Arexack Heretic&lt;br /&gt;
|date=2010-08-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Contractor ZZ1]] Very fast combat 'stealth' ship. Appears in-game as a Bounty-hunter and rarely as Pirate. Buyable&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2011-01-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Copperhead]] Redux of core ship in Archimedes Elite slightly modified. NPC and player buyable&lt;br /&gt;
|aut=CaptSolo&lt;br /&gt;
|date=2011-05-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=10819 Coyote's Run] brings [[:User:El Viejo|El Viejo]]'s novella [[:Category:Oolite stories#El Viejo|Coyote]] to life as an exciting mission OXP&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|con=El Viejo, Smivs, Wyvern&lt;br /&gt;
|date=2011-09-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Croydon Starsoarer]] adds a ship that is similar to the Asp in specification&lt;br /&gt;
|aut=SimonB&lt;br /&gt;
|con=pagroove&lt;br /&gt;
|date=2010-05-08&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[CustomSounds OXP|CustomSounds]] replaces/adds 40+ sounds, featuring music &amp;amp; extensive use of calm female computer voice for warnings&lt;br /&gt;
|aut=milinks&lt;br /&gt;
|date=2006-12-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[DWCobra|Dark Wheel Cobra]] is a custom Cobra Mk III model, as seen on the cover of the Elite Manual&lt;br /&gt;
|aut=ramon&lt;br /&gt;
|date=2006-11-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[[Debug OXP]] is a special OXP that enables JavaScript console support in test releases of Oolite (1.70 and later)&lt;br /&gt;
|aut=Ahruman&lt;br /&gt;
|date=2010-06-19&lt;br /&gt;
|work=N}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[http://deephorizonindustries.com/Gas_Giant_Skimming.html Deep Horizon - Gas Giants Skimming] allows to skim gas giants to refuel a ship or mine them for rare minerals&lt;br /&gt;
|aut=Cdr. Cheyd&lt;br /&gt;
|date=2010-07-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://deephorizonindustries.com/Lights_Down.html Deep Horizon - Lights Down] lowers ambient light within system to give more natural feel to planets and ships&lt;br /&gt;
|aut=Cdr. Cheyd&lt;br /&gt;
|date=2010-07-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://deephorizonindustries.com/Nav_Buoy.html Deep Horizon - Nav Buoy 1.0] replaces Witchpoint, Station, and other Nav Buoys with a new model&lt;br /&gt;
|aut=Cdr. Cheyd&lt;br /&gt;
|date=2011-07-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[http://deephorizonindustries.com/Pirate_Ambushes.html Deep Horizon - Pirate Ambushes] adds pirates that ambush the player upon exit from witchspace&lt;br /&gt;
|aut=Cdr. Cheyd&lt;br /&gt;
|date=2010-07-06&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://deephorizonindustries.com/DH-Systems.html Deep Horizon - Systems] textures the main planet of a system as well as adding moons and additional planets&lt;br /&gt;
|aut=Cdr. Cheyd&lt;br /&gt;
|date=2010-07-06&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Deep Space Dredger]] adds dockable Space Dredgers, defended by [[Sabre]] fighters, and a missile to salvage derelict ships&lt;br /&gt;
|aut=Sabre&lt;br /&gt;
|date=2011-01-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[DeepSpacePirates|Deep Space Pirates]] adds pirates and asteroids outside the space lanes&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2010-01-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Deepspace Ships#Deepspace HUDs|Deepspace HUD]] is an alternative HUD with two versions&lt;br /&gt;
|aut=DeepSpace&lt;br /&gt;
|date=2010-02-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Deepspace Ships]] replaces the default ships with new textures&lt;br /&gt;
|aut=DeepSpace&lt;br /&gt;
|date=2010-02-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Deposed OXP|Deposed]] is a series of missions set in Galaxy 4 for an experienced Commander&lt;br /&gt;
|aut=Cdr. Wombat&lt;br /&gt;
|con=Commander McLane, Eric Walch&lt;br /&gt;
|date=2009-03-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Systems&lt;br /&gt;
|desc=[[Dictators OXP|Dictators]] adds a range of ships and stations to each dictatorship and offers new trading opportunities to players&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2011-07-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Diso OXP|Diso]] adds extra planets and stations to the Diso system in Galaxy 1&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2010-11-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Display reputation OXP|Display Reputation]] lets you know your current reputations in the passenger ferrying and the cargo contract market&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2010-03-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Oolite Docking Clearance Protocol (v1.72 or later)|Docking Clearance]] enables the docking clearance protocol for all stations&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2008-12-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Griff Industries|Dodo Stations]] adds new textures for Dodecahedron stations&lt;br /&gt;
|aut=Griff, CaptKev&lt;br /&gt;
|date=2010-05-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Dr HUD OXP|Dr HUD]] is an alternative HUD&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2006-12-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Dragon|Dragon Assault Craft]] adds a heavy combat ship, and the Military Smart Missile, an improved hard head&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2008-11-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Dragon#Download|Dragon Military Missile]] adds an enhanced hardhead, seeks priority targets when ECM'd&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2008-11-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.mediafire.com/?rllzzcbkwgm Dragonfly/Firefly S.T] adds [[Dragonfly S.T]] &amp;amp; much faster [[Firefly S.T]]. Ideal small fast ships for pirates or bounty hunters&lt;br /&gt;
|aut=Rustybolts&lt;br /&gt;
|date=2009-10-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Eagle Mk II]] adds the cheap Eagle Mk II escort vessel in several different versions, including an enhanced SE&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|date=2006-03-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[ADCK%27s Eagles|Eagles Mk I to IV]] adds four Eagle Long Range Fighters to the game&lt;br /&gt;
|aut=ADCK&lt;br /&gt;
|date=2010-04-07&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Energy Equipment OXP|Energy Equipment]] adds a pylon-mounted automatically triggered top-up for when the juice runs low&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-03-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Escape Pod Locator OXP|Escape Pod Locator]] is a piece of equipment to allow tracking of escape pods in system&lt;br /&gt;
|aut=Capt Murphy&lt;br /&gt;
|date=2011-07-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Escort Contracts OXP|Escort Contracts]] allows players to enter into short-term escort contracts with NPC lone wolf traders&lt;br /&gt;
|aut=Capt Murphy&lt;br /&gt;
|date=2011-08-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[ETT Homing Beacon]] marks a position in space by deploying a pylon-mounted beacon&lt;br /&gt;
|aut=Twisted&lt;br /&gt;
|con=Lone_Wolf&lt;br /&gt;
|date=2011-04-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Executive SpaceWays]] adds [[Delta Long-Range Escort|Delta]]/[[Gemini Escort|Gemini]] Escorts, [[Starseeker Personal Shuttle|Starseeker]]/[[Trident Executive Shuttle|Trident Exec]] Shuttles, [[Strelka Cruise Liner]]s&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2010-06-19&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.box.net/shared/moreq536ht#/shared/moreq536ht/1/71484311/786362645/1 Extra Thargoids] adds 2 types of Thargoid ship, each of which packs surprises. Replaces the 'Poet' Frigate OXP&lt;br /&gt;
|aut=UK_Eliter&lt;br /&gt;
|date=2011-09-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Systems&lt;br /&gt;
|desc=[[Factions OXP|Factions]] from anarchy, feudal, dictatorship &amp;amp; communist systems meet in multi-government systems and start fighting&lt;br /&gt;
|aut= m4r35n357&lt;br /&gt;
|date=2011-07-29&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Famous Planets OXP|Famous Planets]] adds unique textures, new descriptions, and theme tunes for many planets in G1 and G2&lt;br /&gt;
|aut=pagroove&lt;br /&gt;
|con=Cdr. Cheyd, Stromboli, Pangloss, CaptKev, Drew Wagar, Thargoid, Svengali, Lestradae, UK Eliter&lt;br /&gt;
|date=2010-09-30&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Famous Planets Liners OXP|Famous Planets Liners]] adds Spaceway Liners on the 4 spaceways from Lave to Zadies&lt;br /&gt;
|aut=pagroove&lt;br /&gt;
|con=Ramirez, Presti70, Thargoid&lt;br /&gt;
|date=2009-03-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Far Arm ships|Far Arm Ships]] adds [[Far Arm Sunracer|Sunracer]]s, [[Far Arm Scow|Scow]]s, [[Far Arm Tanker|Tanker]]s, [[Far Arm Corsair|Corsair]]s, [[Far Arm Dart|Dart]]s, [[Far Arm Hunter|Hunter]]s, [[Far Arm Cruiser|Cruiser]]s, [[Far Arm Titan|Titan]]s, [[Far Arm Manchi Vulture|Vulture]]s, and [[Far Arm Manchi Wasp|Wasp]]s&lt;br /&gt;
|aut=Zieman&lt;br /&gt;
|date=2010-10-02&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Far Star Murderer]] adds a mid-range fighter / trader, with a fair sized cargo bay&lt;br /&gt;
|aut=8-Bit Apocalypse&lt;br /&gt;
|date=2005-01-01&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://www.box.net/shared/d57y0uip74 Far Sun] places suns further away from the planet than standard Oolite&lt;br /&gt;
|aut=Kaks&lt;br /&gt;
|date=2010-05-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.box.net/shared/moreq536ht Fer de Lance 3G] adds player &amp;amp; NPC Fer de Lance versions with custom paint jobs &amp;amp; altered specs&lt;br /&gt;
|aut=UK_Eliter&lt;br /&gt;
|date=2011-09-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Fer de Lance NG]] adds a more powerful version of the Fer de Lance with several custom paint jobs&lt;br /&gt;
|aut=alien&lt;br /&gt;
|date=2005-03-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Ferdepai]] adds a new fighter / trader to Galaxy 2&lt;br /&gt;
|aut=johnsmith&lt;br /&gt;
|date=2006-12-17&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Systems&lt;br /&gt;
|desc=[[Feudal States]] adds the [[Jäger]], the [[Korvette]], the [[Zerstörer]], a [[Royal Hunting Lodge]] and other elements to feudal systems&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2011-05-30&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Fighter HUD (Oolite)|Fighter HUD]] is an alternative HUD&lt;br /&gt;
|aut=CaptKev&lt;br /&gt;
|date=2008-05-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Firewasp]] adds a fast interceptor&lt;br /&gt;
|aut=Draco_Caeles&lt;br /&gt;
|date=2006-05-10&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Fireworks OXP|Fireworks]] allows you a joyful celebration of whatever it is you want to celebrate&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-05-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Flight Log OXP|Flight Log]] adds a log of the last 10 systems visited&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-01-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Flying Dutchman OXP|Flying Dutchman]] adds the small chance to meet a Ghost Ship in the Ooniverse&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|con=Griff&lt;br /&gt;
|date=2011-04-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[[Freaky Thargoids OXP|Freaky Thargoids]] is a shader demonstration for Oolite&lt;br /&gt;
|aut=Ahruman&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2011-02-03&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Free Trade Zone]] adds an independent trading post of dubious legality to Multi-Government systems&lt;br /&gt;
|aut=Disembodied&lt;br /&gt;
|con=Commander McLane&lt;br /&gt;
|date=2010-10-08&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Frog Space Rickshaw]] adds a chatty space taxi service to the safer systems&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2006-01-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Fuel Collector OXP|Fuel Collector]] scoops fuel from killed ships and collects fuel while cruising, even in witch space&lt;br /&gt;
|aut=Frame&lt;br /&gt;
|con=Commander McLane&lt;br /&gt;
|date=2011-07-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Fuel Station OXP|Fuel Station]] adds fly-thru Fuel Stations and Fuel Satellites near the witchpoint and along route one&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-08-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Fuel Tank]] v2.2 mounts in place of a missile, to top up 3 light years of fuel&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2008-05-31&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Furball OXP|Furball]] adds barroom brawls that've got out of hand. Furious fugitives flee from pissed off police on the station's doorstep&lt;br /&gt;
|aut=Caracal&lt;br /&gt;
|con=m4r35n357&lt;br /&gt;
|date=2011-06-06&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Systems&lt;br /&gt;
|desc=[[Galactic Navy OXP|Galactic Navy]] adds more ships and stations to the arsenal of the Galactic Navy. Allows to join the Navy Reserves&lt;br /&gt;
|aut=Nemoricus&lt;br /&gt;
|date=2011-02-25&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[GalDrivePod]] A portable Galactic Hyperdrive unit, allowing you to complete the &amp;quot;Lost Worlds Grand Tour&amp;quot;&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2011-03-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://www.boxcn.net/shared/5dqx22u06i Galaxy Info] helps you search for systems by criteria you select and will try to locate the nearest one&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-04-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Gates OXP|Gates]] ads short-cut jump gates to suitable systems, speeding journeys between the main station and witchpoint&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-04-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Generation Ships OXP|Generation Ships]] adds encounters with the mythical Generation Ships from time to time&lt;br /&gt;
|aut=Draco_Caeles&lt;br /&gt;
|con=Commander McLane&lt;br /&gt;
|date=2011-04-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Globe station|Globe Station]] is a new type of stations that appears in advanced systems&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|con=Svengali&lt;br /&gt;
|date=2009-10-22&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Greek Ships OXP|Greek Ships]] adds [[Penelope Class Freighter]]s, [[Telemachus Class Escort]]s, and [[Ulysses Class Interceptor]]s&lt;br /&gt;
|aut=8-Bit Apocalypse&lt;br /&gt;
|date=2005-07-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.box.net/shared/oqpkkzbl30jmm14vj2bo Green Gecko]  Meet the Green Knights of Lago in their awesome twin-laser Geckos.&lt;br /&gt;
|aut=El Viejo&lt;br /&gt;
|date=2011-09-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Griff ArcElite|Griff's ArcElite]] adds versions of native Oolite ships textured &amp;amp; shaded to resemble the Acorn Archimedes version of Elite&lt;br /&gt;
|aut=Griff&lt;br /&gt;
|date=2008-09-29&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Griff Boa]] contains the famous Griff Boa&lt;br /&gt;
|aut=Griff&lt;br /&gt;
|date=2010-06-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://www.boxcn.net/shared/k2lvh3enuy Griff's Explosion Debris] adds new alloy &amp;amp; debris models to exploding ships&lt;br /&gt;
|aut=Griff&lt;br /&gt;
|con=Thargoid&lt;br /&gt;
|date=2009-02-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Griff Krait]] adds a heavily modified Krait, similar in design to the Griff Boa&lt;br /&gt;
|aut=Griff&lt;br /&gt;
|date=2010-06-17&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Griff Industries|Griff's Normalmapped Ships]] adds some of the best looking ships, stations, and flotsam available in Oolite&lt;br /&gt;
|aut=Griff&lt;br /&gt;
|date=2011-08-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Griffin Two (Oolite)|Griffin Two]] adds the Griffin Mk II from Frontier&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2005-10-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Gritty Coriolis OXP|Gritty Coriolis]] alternates the Coriolis stations with two elaborate gritty Corioli&lt;br /&gt;
|aut=xaotik&lt;br /&gt;
|date=2006-02-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://wiki.alioth.net/images/2/2d/G-HUD_Mk2.oxp.zip G-HUD Mk2] adds an alternative HUD&lt;br /&gt;
|aut=Gunney Plym&lt;br /&gt;
|date=2008-07-08&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Halsis]] features a female cockpit voice, sometimes called Hal's Hot Sister&lt;br /&gt;
|aut=Ovvldc&lt;br /&gt;
|date=2006-08-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[BoyRacer|Hatchling BoyRacers]] adds the  talkative (and often insulting) [[BoyRacer]]s to more advanced systems&lt;br /&gt;
|date=2006-01-13&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Staer9 haulerp30|Hauler P30]] is a very large cargo ship made by Staer9 Industries&lt;br /&gt;
|date=2011-05-11&lt;br /&gt;
|aut=Staer9&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Hawksound]] features a quality female computer voice, new weapon, damage and some station interface sounds&lt;br /&gt;
|aut=Hawkstrom&lt;br /&gt;
|date=2008-11-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Herald Military Gunboat|Herald]] adds the [[Herald Military Gunboat]], a powerful police and Navy interceptor&lt;br /&gt;
||aut=Flying_Circus&lt;br /&gt;
|date=2005-01-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Hired Guns OXP|Hired Guns]] adds escort ships that can be contracted to accompany you on your next journey&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-02-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Hognose|Hognose Tugships]] adds the [[Hognose]], a chatty tug ship that can be seen towing broken down ships&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|con=Jonnycuba&lt;br /&gt;
|date=2006-03-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[HoOpy Casino]]s appear near the station in advanced systems. You can win or lose credits in games of chance&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2010-06-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Hotrods OXP|Hotrods]] adds custom paint jobs to classic Elite ships, racing vehicles, and a space gang that doesn't like the player&lt;br /&gt;
|aut=Kaks&lt;br /&gt;
|con=Arexack_Heretic, Murgh&lt;br /&gt;
|date=2009-03-16&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[HyperCargo OXP|HyperCargo]] adds an extended and expanded cargo handling system&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-09-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Hyperradio js OXP|Hyperradio]] is an expandable music-player&lt;br /&gt;
|aut=Svengali&lt;br /&gt;
|date=2011-02-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Icarus (Oolite)|Icarus]] adds a small fighter / trader based on blueprints from the lost Solice system&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|date=2007-07-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Illegal_Goods_Tweak_OXP|Illegal Goods Tweak 1.5]] adds interactions with Galcop customs on docking at a main station with Contraband in the hold&lt;br /&gt;
|aut=Capt Murphy&lt;br /&gt;
|date=2011-08-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Illicit Unlock OXP|Illicit Unlock]] allows the player to fly all the classic Elite ships&lt;br /&gt;
|aut=tgape&lt;br /&gt;
|date=2005-10-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Griff_Industries#Related_OXP's_by_Other_Authors|Illicit Unlock - Griff Version]] allows the player to fly [[Griff Industries#Griff's Normalmapped Ships OXP|Griff's]] pirate/viper Ships&lt;br /&gt;
|aut=ADCK&lt;br /&gt;
|con=dertien&lt;br /&gt;
|date=2011-02-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Imperial Courier (Oolite)|Imperial Courier]] adds the powerful Imperial Courier from Frontier, constructed by [[Seldar Shipyards]]&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|con=Commander McLane&lt;br /&gt;
|date=2007-06-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Imperial Trader (Oolite)|Imperial Trader]] adds the powerful Imperial Trader from Frontier&lt;br /&gt;
|aut=ADCK&lt;br /&gt;
|date=2010-06-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Interstellar help OXP|Interstellar Help]] allows you to help out traders who got stuck in interstellar space without fuel&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-03-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Ionics OXP|Ionics]] adds a series of missions featuring the Ionics Company of Zaria, the Ramaza Liberation Front and The Link&lt;br /&gt;
|aut=Galileo&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2010-08-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[IronHide OXP|IronHide]] introduces the new range of IronHide ship armour from the Aquarian Shipbuilding Corporation&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-02-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Iron Raven]] is a multi-stage mission to investigate a dangerous conspiracy on behalf of GalCop High Command&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2011-04-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Ixian Ships|Ixian Military Ships]] adds Ixian [[Ixian Battle Cruiser|Battle Cruiser]]s, [[Ixian Bezerka|Bezerka]]s, [[Ixian Gunship|Gunship]]s and [[Ixian No-Ship Mark I|No-Ship]]s from Dune&lt;br /&gt;
|aut=8-Bit Apocalypse&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2009-03-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Ixian Ships#Ixian Freighter|Ixian Freighter]] adds a civilian freighter to the universe&lt;br /&gt;
|aut=8-Bit Apocalypse&lt;br /&gt;
|date=2005-01-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Jabberwocky]] adds the powerful Jabberwocky fighter / trader&lt;br /&gt;
|aut=Flying_Circus&lt;br /&gt;
|date=2006-03-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[JellyBaby Dispenser]] adds a handy Jellybaby Dispenser for your cockpit&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2011-03-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Kestrel &amp;amp; Falcon OXP|Kestrel &amp;amp; Falcon]] adds buyable Star Wars style [[Falcon_%28Oolite%29|Falcon]] for pirates/traders and the [[Kestrel]], a police/navy interceptor&lt;br /&gt;
|aut=Charlie&lt;br /&gt;
|con=Kaks&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Killer_Wolf's_Dynamic_HUD|Killer Wolf's Dynamic HUD]] adds a version of the dynamic HUD first seen in Killer Wolf's Werewolf ships, to all ships&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|con=Thargoid&lt;br /&gt;
|date=2010-07-08&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Killit_OXP|Killit]] adds a bunch of insane super weapons&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-05-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Kirin]] adds a heavy military hauler, CV &amp;amp; XM versions used by both pirates &amp;amp; traders&lt;br /&gt;
|aut=ClymAngus&lt;br /&gt;
|con=Cdr. Wyvern&lt;br /&gt;
|date=2009-09-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Klepto-HUD OXP|Klepto-HUD]] is a different take on a HUD with precise crosshairs&lt;br /&gt;
|aut=Kleptoid&lt;br /&gt;
|date=2006-03-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://sancho.dk/oolite/lane_legal.zip ''Lane Legal Racers''] adds NPC versions of [[Krait]]s, [[Mamba]]s, and [[Sidewinder]]s from different [[Racers#Listing_of_sponsored_teams|racing teams]]&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-09-27&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Lave OXP|Lave]] is a system make-over for Lave, adding all features described in The Dark Wheel novella included with original Elite&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2009-12-31&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Lave Academy OXP|Lave Academy]] adds Lave Academy Station above Lave &amp;amp; other planets, with 3 mini-games to test Commanders' skills&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-06-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[http://www.boxcn.net/shared/9q1cbydgan LinkG7] is a mission in Galaxy 7&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-02-16&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Llama]] adds the Llama fighter / trader. Updated from the version of Oosat1 to fix a small bug&lt;br /&gt;
|aut=Flying_Circus&lt;br /&gt;
|date=2006-02-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://www.boxcn.net/shared/jtpt2vlol5 Long Range Target Scanner] shows all ships currently in your system and allows to target them&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-05-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[LongWay_OXP|Long Way Around]] adds a transport mission well suited to the novice in Galaxy 1&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2009-04-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Longshot]] adds the Longshot fighter / trader, regarded by many as a cheaper alternative to the Cobra Mk III&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Lovecats.oxp|Lovecats]] is a mission about love &amp;amp; betrayal amongst the feline races of Galaxy 4. Fast ship &amp;amp; hard heart required!&lt;br /&gt;
|aut=johnsmith&lt;br /&gt;
|date=2011-07-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Second-hand ships|M-Pack (rusties)]] adds rusty banger versions of all Classic Elite ships in poor condition but still can haul cargo&lt;br /&gt;
|aut=murgh&lt;br /&gt;
|date=2006-01-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Manta]] adds the Manta light escort craft&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Marett Space Corporation OXP|Marett Space Corporation]] releases [[Adder Mk II]], [[Mosquito Trader]], [[Mosquito Sport]], new fighters / medium traders&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://www.crimsonforge.co.uk/cloister/MedusaHud.oxp.zip Medusa HUD] is an alternative HUD&lt;br /&gt;
|aut=ClymAngus&lt;br /&gt;
|date=2009-01-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Mega-Walnut Dashboard OXP|Mega-Walnut Dashboard]] is a generic version of the fabled Fer de Lance HUD&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2005-07-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Merlin_(Oolite)|Merlin]] Ships are interceptors used by the Police &amp;amp; Navy, but also available on the open market&lt;br /&gt;
|aut=Charlie&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[MildAudio]] Sound Set&lt;br /&gt;
|aut=xaotik&lt;br /&gt;
|date=2006-02-15&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Military_Fiasco|Military Fiasco]] adds a navy mission for Commanders with &amp;gt; 1,000 kills. Also equips Navy with powerful cruisers&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2011-01-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Military Fuel Injectors OXP|Military Fuel Injectors]] is an upgrade to the vanilla injectors that gives a velocity boost and recaptures unburnt fuel&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-07-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Military station|Military Station]] adds well armed Military Stations to the more advanced systems&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Military Stingray Mk. II|Military Stingray]] adds an ex-military ship that may show up in pirate hands or for the player to buy&lt;br /&gt;
|aut=CaptKev&lt;br /&gt;
|date=2007-03-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Milspec HUD|Milspec HUD]] is an alternative HUD with targeting aids and an emphasis on functionality&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2010-07-08&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Misjump_Analyser|Misjump Analyser]] scans witchspace &amp;amp; on detection of disturbances sounds an alarm &amp;amp; logs location of disturbance&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2010-05-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?p=135619#p135619 Misjump Inducer] can turn on/off misjumps on demand&lt;br /&gt;
|aut=Switeck&lt;br /&gt;
|date=2011-04-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Missile_Analyser|Missile Analyser]] scans incoming missiles &amp;amp; sets target to incoming missile when it is no standard missile&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2010-05-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Missiles_and_Bombs|Missiles &amp;amp; Bombs]] adds a wide variety of missiles &amp;amp; bombs that are are available to player &amp;amp; NPCs alike&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2009-12-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Missionaries OXP|Missionaries]] adds clerics of four faiths who spam Commanders with requests to worship their Gods&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Moccasin]] adds light escort craft from Xeceesian Shipyards modeled after ArcElite core ship&lt;br /&gt;
|aut=CaptSolo&lt;br /&gt;
|date=2011-06-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Mod-HUD]] is a slight modification / re-organization of the standard Oolite HUD without surround boxes&lt;br /&gt;
|aut=CaptSolo&lt;br /&gt;
|date=2011-05-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/monument.zip Monument] sometimes adds a monument to famous Commanders close to the Sun&lt;br /&gt;
|aut=dajt&lt;br /&gt;
|date=2005-05-28&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Morrigan]] adds a vast trade ship to the Universe&lt;br /&gt;
|aut=Flying_Circus&lt;br /&gt;
|date=2009-12-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Oosounds2_OXP|''Murgh's Replacement Sounds'']] contains 10 new sounds&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2005-08-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Murgh_Xships OXP|Murgh's X-Ships]] adds [[Bandy-Bandy]], [[Chuckwalla]], [[Eel Rapier]], [[Taipan]] (fast courier craft &amp;amp; 2 light escort ships)&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2009-09-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[NavalGrid OXP|Naval Grid]] enhances recharging rates by linking the naval energy unit to military-boosted shields&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-03-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Neolite Ships]] is an Oolite ships replacement set&lt;br /&gt;
|aut=SimonB&lt;br /&gt;
|date=2009-07-11&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/newships.oxp.zip ''New Ships''] adds [[Hamadryad]], [[Josher]], [[Naga]], [[Ringhals]] (mining and trade ships from previous versions of Elite)&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2006-05-15&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[http://www.box.net/shared/moreq536ht Nexus missile] adds multiple versions of a multi-warhead, 'anti-hostile' (or, in one case, anti-thargoid) missile&lt;br /&gt;
|aut=UK_Eliter&lt;br /&gt;
|date=2011-09-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/hud_ng.oxp.zip NG HUD] is an alternate HUD. All standard functions, but with a personal view&lt;br /&gt;
|aut=alien&lt;br /&gt;
|date=2005-03-06&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[NPC-shields OXP|NPC-shields]] gives shields to NPCs, together with a nice glow effect&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-04-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://wiki.alioth.net/index.php/Numeric_Style_HUDs Numeric Style HUDs] New invention/numeric gauges.[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9977 Info]&lt;br /&gt;
|aut=CommonSenseOTB&lt;br /&gt;
|date=2011-06-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/nuvipers.zip Nu Vipers] increases the types of Viper patrol ships with [[GalCop Viper Mark II]], [[GalCop Viper Cruiser]]&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Nukes.oxp|Nuclear Torpedos]] adds some powerful, but slow moving, missiles&lt;br /&gt;
|aut=E. Walch, Cdr. Wyvern&lt;br /&gt;
|date=2010-06-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Offender traders OXP|Offender Traders]] makes some traders into offenders/fugitives&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-04-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Old Ships]] adds Elite-A [[Bushmaster Miner]]s, [[Cat (Oolite)|Cat]]s, [[Chameleon (Oolite)|Chameleon]]s, [[Ghavial (Oolite)|Ghavial]]s, [[Iguana (Oolite)|Iguana]]s, [[Monitor (Oolite)|Monitor]]s, [[Ophidian (Oolite)|Ophidian]]s, [[Salamander (Oolite)|Salamander]]s&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2006-08-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Old Ships 2010]] is a retextured version of [[Old Ships]], adding the bonus Monitor 2 ship&lt;br /&gt;
|aut=pagroove&lt;br /&gt;
|con=Murgh, ADCK, Simon B, Lestradae&lt;br /&gt;
|date=2011-02-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Oo-Haul]] adds vast bulk [[L-Crate Hauler]]s to the space lanes and offers missions at [[Your Ad Here!|constores]] to safely escort them&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|con=Eric Walch, Ark&lt;br /&gt;
|date=2009-02-21&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[ooCheat_OXP|ooCheat]] adds a cheat menu to the game&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-02-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[http://www.box.net/shared/rrlm77ztzm Oolite en français] is a French Oolite localization&lt;br /&gt;
|aut=Pierre-Olivier&lt;br /&gt;
|date=2009-07-12}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[http://marc-schaffer.ch/data/OoliteGerman_V0.3.zip Oolite auf Deutsch] is a German Oolite localization&lt;br /&gt;
|aut=SwissMäc&lt;br /&gt;
|date=2009-06-02&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[http://www.box.net/shared/p3engis1ds Oolite Italiano] is an Italian Oolite localization&lt;br /&gt;
|aut=another_commander&lt;br /&gt;
|date=2010-06-15&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=Oolite in Russian: [http://www.roolite.org Roolite.org] provides localizations of Oolite 1.74.2 and some OXPs. Also check [http://www.elite-games.ru/conference/viewtopic.php?t=48476&amp;amp;start=0 Elite Games]&lt;br /&gt;
|aut=Seventh&lt;br /&gt;
|date=2009-03-26&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://www.box.net/shared/x9u5xoulkq Orbits] positions planets on orbits around the sun&lt;br /&gt;
|date=2010-07-01&lt;br /&gt;
|aut=Ebi&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Ore Processor]] extracts valuable materials from asteroid fragments when mounted to a ship's fuel scoop&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|con=Ark, Kaks, Eric Walch&lt;br /&gt;
|date=2011-01-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Orisis]] BigTraders are new passenger liners that ferry passengers around&lt;br /&gt;
|aut=pagroove&lt;br /&gt;
|con=ADCK, Thargoid&lt;br /&gt;
|date=2010-01-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Outrider (Oolite)|Outrider]] is a medium fighter produced by the [[Taranis Corporation HQ (Oolite)|Taranis Corporation]]&lt;br /&gt;
|aut=Roberto&lt;br /&gt;
|date=2006-08-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[[OXPConfig]] provides means to configure supported OXPs, to recognize errors, or to avoid clashes&lt;br /&gt;
|aut=Svengali&lt;br /&gt;
|date=2011-07-16&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[P.A. Groove Stations OXP|P.A. Groove Stations]] adds lots of different types of Coriolis and Dodec Stations&lt;br /&gt;
|aut=pagroove&lt;br /&gt;
|con=Griff, Commander McLane&lt;br /&gt;
|date=2010-04-16&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Pallas]] adds a fast but lightly shielded fighter.&lt;br /&gt;
|aut=Charlie&lt;br /&gt;
|con=Svengali&lt;br /&gt;
|date=2010-12-02&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Pelamis]] adds the Pelamis trade ship&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2006-04-24&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Phoenix]] is a strange ship, built from salvaged parts from various Serpent Class ships&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2007-01-17&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://wiki.alioth.net/index.php/Pie_Chart_Style_HUDs Pie Chart Style HUDs] New invention=&amp;gt;pie gauges.[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9788 Info]&lt;br /&gt;
|aut=CommonSenseOTB&lt;br /&gt;
|date=2011-05-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Pirate Coves OXP|Pirate Coves]] adds rock hermits that have been taken over by pirates in more dangerous systems&lt;br /&gt;
|aut=lazygun&lt;br /&gt;
|date=2011-08-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/piratetraps.oxp.zip Pirate Traps] are dummy traders which transmit details of pirates firing on them to the police&lt;br /&gt;
|aut=popsch&lt;br /&gt;
|date=2006-01-04&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Planetfall_OXP|Planetfall]] allows the player to land on and trade at the planets and moons of each system&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-04-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Pods_OXP|Pods]] adds fuel, missile, bulk &amp;amp; empty cargo pods and pods which jam, explode, have trumbles or take a few scoops&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-03-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Police_IFF_Scanner_Upgrade|Police IFF Scanner Upgrade]] highlights offender and fugitive ships with custom IFF scanner colours&lt;br /&gt;
|aut=Capt Murphy&lt;br /&gt;
|date=2011-06-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Pteradyne Technologies Ships OXP|Pteradyne Technologies Ships]] adds the [[Excalibur]], a buyable combat ship and the [[Paladin]], a military version&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2006-12-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://www.boxcn.net/shared/xccp8ml5cq Pylon Based Equipment Remover] allows to remove a selected piece of equipment from your pylons&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-04-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Python Class Cruiser]] is a large powerful trade ship, which can also hold its own in battle&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2007-07-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://wiki.alioth.net/index.php/Q-Charger Q-Charger] is a Quirium supercharger which promises a 100% speed gain with twice the fuel efficiency of fuel injectors&lt;br /&gt;
|aut=CommonSenseOTB&lt;br /&gt;
|date=2011-08-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/racers.oxp.zip Racers] adds [[Chicaneer Mk II]], [[Chicaneer Mk IV]], [[Dragster Mk I]], and [[Dragster Mk II]] racing ships&lt;br /&gt;
|aut=murgh&lt;br /&gt;
|date=2006-01-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Railgun OXP|Railgun]] introduces a revolutionary new weapons system to the Ooniverse&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-05-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Ramon's Anaconda]] is a fantastic re-imagining of the Anaconda freighter. Check out its special features&lt;br /&gt;
|aut=Ramon&lt;br /&gt;
|con=Griff&lt;br /&gt;
|date=2009-04-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Random_Docking_Music_OXP|Random Docking Music]] plays a random music track from a pre-set list on activating docking computers&lt;br /&gt;
|aut=Frame&lt;br /&gt;
|date=2010-05-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Random Hits OXP|Random Hits]] adds [[Space Bar|seedy space bars]] to anarchy systems that offer large bounties on the galaxy's Most Wanted Criminals&lt;br /&gt;
|aut=LittleBear&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2011-03-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://terrastorage.ath.cx/Marmagka/e8e9ce360da6bb40f5952cbe00f02501/RedSet.zip RedSet] contains red-themed backgrounds for the UI screens&lt;br /&gt;
|aut=another_commander&lt;br /&gt;
|date=2010-06-18&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.purgatori.net/reduxedvamps.htm Reduxed Vampires] adds reworked versions of the Vampire Mk I and Mk II and a Reaper &amp;quot;Gold Edition&amp;quot;&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2010-10-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[RegistrationID|Registration ID]] adds ID tags to all Oolite standard ships&lt;br /&gt;
|aut=Frame&lt;br /&gt;
|date=2010-02-28&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Remorse_Of_Conscience_v2|Remorse Of Conscience]] is a trade ship with a large hold, that can hold its own in combat&lt;br /&gt;
|aut=8-bit Apocalypse&lt;br /&gt;
|date=2005-02-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Renegade Pirates OXP|Renegade Pirates]] adds rare, very well-armed, high bounty pirate versions of Classic Elite ships&lt;br /&gt;
|aut=LittleBear&lt;br /&gt;
|con=Aegidian, Griff&lt;br /&gt;
|date=2006-12-03&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/RVandGS.zip Renegade Viper + Grass Snake] adds [[Renegade Viper|stolen Vipers]] which earn large bounties &amp;amp; [[Grass Snake]], a large pirate trade ship&lt;br /&gt;
|aut=8-bit Apocalypse&lt;br /&gt;
|date=2004-11-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Repair_Bots_OXP|Repair 'Bots]] adds a pylon mounted canister of repair nanobots which attempt to fix damaged equipment in mid-flight&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-02-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Resistance Commander]] gives players a chance to command a squadron in combat&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2011-09-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Retro Rockets OXP|Retro Rockets]] are a handy little piece of equipment which gives your ship a backwards boost out of trouble&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-07-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Ring_Racer_OXP|Ring Racer]] adds the Corporate Systems Ring Racing League to Galaxy 1&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-04-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Rock Hermit Locator]] adds equipment to locate Rock Hermits&lt;br /&gt;
|aut=Frame&lt;br /&gt;
|date=2011-03-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Saleza Aeronautics]] adds [[Bellatrix Cruiser]]s, [[Rigel Bomber|Rigel Tactical Bomber]]s, and [[Saiph Interceptor]]s to high tech corporate systems&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2010-10-24&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Santa]] adds very rare Santa Sledge to space lanes escorted by plasma gun toting reindeer space bikers!&lt;br /&gt;
|aut=Griff&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2010-05-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.purgatori.net/scorpius.htm Scorpius] adds a heavily armoured private trading and transport vessel, protected by Vampire escorts&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|con=Griff&lt;br /&gt;
|date=2011-08-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Scourge of the Black Baron]] features combat &amp;amp; transport Galaxy 1 missions&lt;br /&gt;
|aut=Rxke&lt;br /&gt;
|con=Kaks, Thargoid&lt;br /&gt;
|date=2010-08-07&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Scout]] is a cheap but good looking ship from Staer9 that shares a lot of technology with the [[Xeikil]]&lt;br /&gt;
|aut=Staer9&lt;br /&gt;
|date=2011-05-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Second Wave OXP|Second Wave]] adds variants of Thargoid Warship, Thargon Robot Fighter and alien ships&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-06-06&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Selezen's S-Ships]] adds [[GalCop SWAT Viper]]s and [[Oresrian Trader]]s&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|date=2007-07-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Sell equipment OXP|Sell Equipment]] allows for small fee, resale of equipment at 60% price at suitable tech level world&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-02-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[[Shady Cobra OXP|Shady Cobra]] adds shader effects to Cobra Mk III&lt;br /&gt;
|aut=Ahruman&lt;br /&gt;
|date=2007-07-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Shady Sungs]] adds replacement textures for all Classic Elite Ships&lt;br /&gt;
|aut=Sung, ADCK&lt;br /&gt;
|date=2010-05-21&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://wiki.alioth.net/index.php/Shield_Equalizer_%26_Capacitors_OXP Shield Equalizer] balances shield energy automatically. [http://wiki.alioth.net/index.php/Shield_Equalizer_%26_Capacitors_OXP Capacitors] store unused shield energy for use later&lt;br /&gt;
|aut=CommonSenseOTB&lt;br /&gt;
|date=2011-07-03&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Skrounk All-Stars Limited]] adds [[All Stars Large Freighter|Large Freighter]], [[Seymour Class Sled]], [[Starbelly Class Sled]], [[Starhawk]] &amp;amp; [[Starwolf_Mark_I|Starwolf Mk I]]&lt;br /&gt;
|aut=goji62&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Smivs%27_ShipSet|Smiv's Shipset 3.1]] re-skins the ships with a realistic look &amp;amp; non-shader lighting effects. Customisable Player Cobra3&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2011-08-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Snark]] is a powerful fighter/trader, often used by pirates and bounty hunters&lt;br /&gt;
|aut=Flying_Circus&lt;br /&gt;
|date=2006-06-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://wiki.alioth.net/index.php/Sniper_Camera_System_HUD Sniper Camera System] Zoomable camera for surveillance and long-range sniping.[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=10461 Info]&lt;br /&gt;
|aut=CommonSenseOTB&lt;br /&gt;
|date=2011-07-30&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=10515 Sniper Sight] is equipment to help with long distance targeting&lt;br /&gt;
|aut=Wildeblood&lt;br /&gt;
|date=2011-07-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=10176 Sniper Scope MilHUD integrated] is an version of MilHUD with integrated Sniper Sight functionality&lt;br /&gt;
|aut=Wildeblood&lt;br /&gt;
|date=2011-06-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Snoopers]] adds the galactic news network channels&lt;br /&gt;
|aut=DaddyHoggy&lt;br /&gt;
|con=Disembodied, Drew, Svengali&lt;br /&gt;
|date=2011-05-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Solid Gold Cobra Mk.3]] is a limited edition Cobra Mk3 to celebrate its 25 years anniversary&lt;br /&gt;
|aut=ADCK&lt;br /&gt;
|date=2010-06-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Solo%27s_Silver_Ships|Solo's Silver Ships]] Adds three ships with silver themed textures. &lt;br /&gt;
|aut=CaptSolo&lt;br /&gt;
|date=2011-08-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[http://www.purgatori.net/Sothis.htm Sothis Space Station] is a station from [[Isis Interstellar]] with a compact design of comparable size to a standard Coriolis&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2010-08-08&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Spearhead Interceptor Mk.I]] is a pure fighter, fast &amp;amp; nippy but with weak shields, no cargo bay. Can be twitchy to fly&lt;br /&gt;
|aut=Randell&lt;br /&gt;
|date=2006-07-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[S.I.R.F.|Special Interstellar Repair Facilities]] offer different trading strategies &amp;amp; repair facilities on uncommon trading routes&lt;br /&gt;
|aut=Tinker&lt;br /&gt;
|date=2010-07-02&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.purgatori.net/spectres.htm Spectre] adds [[Isis Interstellar]]'s Vampire Mk V, a secret military vessel fighting Thargoids in witch space&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2011-01-16&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Spy Hunter OXP|Spy Hunter]] is a mission for Galactic Navy for Commander with rating of 'Dangerous' or above&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|date=2009-04-11&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Staer9 Spectre]] is a cheap small fighter with high maneuverability that flopped in the market&lt;br /&gt;
|aut=Staer9&lt;br /&gt;
|date=2011-05-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Star-Jelly]] Beautiful translucent organisms sometimes found in Asteroid fields&lt;br /&gt;
|aut=Smivs,Staer9&lt;br /&gt;
|date=2011-05-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Star Wars Ships]] adds [[A-Wing]], [[B-Wing]], [[Lambda Shuttle]], [[Tie-Fighter]], [[Tie-Interceptor]], [[X-Wing]], [[Y-Wing]]&lt;br /&gt;
|aut=Azzameen&lt;br /&gt;
|date=2006-05-31&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Status Quo Q-bomb OXP|Status Quo Q-bomb]] changes the behaviour of Q-bombs according to the [[Status Quo]] novel&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-02-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[S.T.E]] is a step up from the Cobra III with improved trading capabilities and increased speed&lt;br /&gt;
|aut=Rustybolts&lt;br /&gt;
|date=2009-07-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Stealth OXP|Stealth]] is a small G3 mission showcasing new scanner capabilities &amp;amp; introducing stealth ships&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-03-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://www.purgatori.net/Steampunk%20HUD.htm Steampunk HUD] adds a steampunk style HUD by [[Isis Interstellar]]&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2010-01-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Stellar Serpents OXP|Stellar Serpents]] adds huge space-born serpent monsters which move from system to system and are good hunting prey&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-07-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[http://sancho.dk/oolite/sunskimmers.zip Sunskimmers] adds ships to the sun/planet corridor&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-08-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[SuperCobra]] is larger, faster with stronger hull than Cobra Mk III&lt;br /&gt;
|aut=8-Bit Apocalypse&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2010-10-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Superhub]] from GASEC is the first station that is capable of transporting itself to its destination&lt;br /&gt;
|aut=P.A. Groove&lt;br /&gt;
|date=2009-11-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Swift]] is a very fast ship often used by pirates or bounty hunters with limited cargo space &amp;amp; nominal shields&lt;br /&gt;
|aut=Charlie&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Switeck's Shipping OXP|Switeck's Shipping]] tweaks ships, market prices and NPC behavior. Adds Medium, Hard, and Harder Jameson saves&lt;br /&gt;
|aut=Switeck&lt;br /&gt;
|date=2011-07-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[System Demux (Oolite)|System Demux]] textures home planet, adds planet/moon combination to systems&lt;br /&gt;
|aut=DrBeeb&lt;br /&gt;
|date=2010-07-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[System Redux (Oolite)|System Redux]] v1.2 textures home planet, adds planet/moon combination to systems&lt;br /&gt;
|aut=CaptKev&lt;br /&gt;
|date=2011-02-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://www.box.net/shared/r05ub873b5 TAF Reset] resets the Time Acceleration Factor (TAF) to 1.0 upon docking&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2009-09-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Taranis OXP|Taranis]] is a mission for law abiding Commanders with rating of Competent+. Adds [[Taranis Corporation HQ (Oolite)|Taranis Corporation HQ]]&lt;br /&gt;
|aut=Roberto&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2009-10-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Target_Autolock_OXP|Target Autolock]] updates [[Scanner Targeting Enhancement]] to auto-lock onto attacking ships&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-02-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Target Range OXP|Target Range]] is found in all rich systems with stable governments&lt;br /&gt;
|aut=Caracal&lt;br /&gt;
|date=2010-07-24&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Target Reticle]] updates [[Scanner Targeting Enhancement]] to turn reticle red when target centred&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2010-05-31&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Taxi Galactica]] adds a Taxi Service and a non player flyable taxi cab ship to systems&lt;br /&gt;
|aut=pleb87&lt;br /&gt;
|date=2008-06-12&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Teretrurus Mk.I]] is a medium fighter/trader somewhat faster &amp;amp; tougher than Cobra Mk III, but with smaller cargo bay&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2008-02-01&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Terrapin|Terrapin Trader]] is a medium fighter/trader. A good upgrade from Cobra Mk III&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2008-02-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Tesoura]] is a slow, but well shielded trade ship&lt;br /&gt;
|aut=Randall, Dr. Nil&lt;br /&gt;
|date=2008-02-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Thargoid Carrier]] arms Thargoids with capital carrier&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|date=2006-06-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Thargorn_Threat_oxp|Thargoid Threat]] adds [[Thargoid Terrorizer Frigate]], [[Thargoid Thargorn Battleship]], [[Thargoid Thorgon Cruiser]]&lt;br /&gt;
|aut=Arexack Heretic&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2011-02-03&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Thargoid Wars]] intensifies war with the Thargoids, featuring new attack and defense missions&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2011-07-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Tianve OXP|Tianve]] adds [[Navy Station]], as well as Visuals, including a pulsar, to the Galaxy 1 system of Tianve&lt;br /&gt;
|aut=Drew&lt;br /&gt;
|date=2009-12-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Tiger Mark I]] is a truly awesome (and very expensive) multi-role craft&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2006-05-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Tionisla Orbital Graveyard]] adds the famed graveyard to Tionisla, G1, as described in “The Dark Wheel” novella&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2011-02-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Tionisla Reporter]] adds a mission for a starting commander&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2011-07-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[TCAT OXP|To Catch a Thargoid]] is a G3 follow-up mission to Thargoid Plans, for Dangerous or Elite rank Commanders&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-12-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Torus station|Torus Station]] adds a vast 2001 style space station to very high tech level systems&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|con=Svengali&lt;br /&gt;
|date=2010-10-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Total patrol OXP|Total Patrol]] makes police ships patrol between planet, witchpoint &amp;amp; sun&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-03-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[ToughGuys|ToughGuys]] Adds 3 levels of increased toughness of 'Baddies', and gives a backdrop for an immersive storyline&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2011-02-16&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Trader Outpost (Oolite)|Trade Outpost]] adds Griff's trade outpost without ads&lt;br /&gt;
|aut=CaptKev, Griff, Ark&lt;br /&gt;
|date=2009-02-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Traffic_Control_OXP|Traffic Control]] personnel gives help with approach to and manual docking at all main stations&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-06-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Transhab station|Transhab Station]] adds a large station with rotating arms to some medium tech level systems&lt;br /&gt;
|aut=Draco_Caeles&lt;br /&gt;
|date=2006-06-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Transports]] adds [[CoachWhip]], [[Coral]], [[Woma]]&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|con=Eric Walch, Kaks&lt;br /&gt;
|date=2010-12-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://wiki.alioth.net/images/d/d9/TrekHud.zip Trek HUD] replaces your HUD with a Star Trek NG LCARS-style HUD&lt;br /&gt;
|aut=barabis&lt;br /&gt;
|date=2008-11-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Trident Down]] contains a series of Galaxy 4 missions investigating a vicious attack on a [[Executive SpaceWays|Trident Shuttle]]&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2011-08-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[UPS Courier]] offers Commanders transport of goods/documents &amp;amp; occasional combat missions&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2011-03-29&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Urutu Mark III &amp;amp; Urutu Mark IV]] are medium fighters/traders from Elite-A&lt;br /&gt;
|aut=Milinks&lt;br /&gt;
|date=2006-09-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Vampire]] adds the Purgatori Vampire series of combat ships&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2007-01-29&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Vampire - Diamondback]] adds the Diamondback Vampire series of combat ships&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2010-04-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Vampire - Dominatrix]] adds the Dominatrix Vampire series of combat ships&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2009-12-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Vector OXP|Vector]] is a unusual mission type - fast money, slavers, tricks and GalCop is watching you...&lt;br /&gt;
|aut=Svengali&lt;br /&gt;
|date=2011-02-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Velocity_OXP|Velocity]] is a fast fighter ship&lt;br /&gt;
|aut=Sabre&lt;br /&gt;
|date=2009-09-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.purgatori.net/Venom.oxp.zip Venom] adds [[Venom]]s in normal and renegade versions  from [[Isis Interstellar]]&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2009-12-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Vortex OXP|Vortex]] A new ex-military player ship. Rare, expensive and powerful - kitted out with advanced and unique features&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-03-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.purgatori.net/wasps.htm Wasps] adds formation flying wasps, queen wasps, and wasp nests&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|con=Thargoid, Ahruman, Eric Walch&lt;br /&gt;
|date=2010-08-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/weeviloid2.zip ''Weeviloid''] adds [[Weeviloid Hunter]]s, fearsome multi-gunned war ships and [[Weeviloid Scoutship]]s, light trade ships&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2006-05-11&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Welcome_Mat_OXP|Welcome Mat]] upgrades the comms systems to expand the information that is given on arrival in new system&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-06-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Werewolf]] from [[Isis Interstellar]] has 3 variants:  [[Werewolf|Werewolf ~ Damage Inc.]], [[Werewolf|Werewolf (Civilian)]] &amp;amp; [[Werewolf|Werewolf (Purgatori Model)]]&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2011-02-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Wolf_Mk.2_%28Oolite%29|Wolf Mk II]] adds the powerful Wolf Mk II, as seen in Elite-A&lt;br /&gt;
|aut=Ark&lt;br /&gt;
|date=2009-07-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://wiki.alioth.net/images/0/06/Wolfs_variants.zip Wolfwood's Variants] adds [[Asp_Mk.I|Asp Mk I]], [[Cobra Courier]], [[Cobra Rapier]], [[Drake]], [[Drake Mk II]] &amp;amp; [[Wolf Mk I]]&lt;br /&gt;
|aut=Wolfwood&lt;br /&gt;
|date=2008-02-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Wormhole restoration OXP|Wormhole Restoration]] adds a new way to leave interstellar space without using fuel, expanding on Thargoid backstory&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-05-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.box.net/shared/n9xla832xbccuk7yuzrf Wyvern Ladies] adds armed long-range transports Wyvern Empress &amp;amp; Wyvern Queen, and the Wyvern Princess escort&lt;br /&gt;
|aut=Wyvern&lt;br /&gt;
|date=2011-08-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Xarik]] is an advanced aircraft, last creation of the late Prof. Eisel Xarik. Used by pirates, traders, and hunters&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2010-02-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Xeikil]] adds a player, a GalCop interceptor, and 24 pirate variants of Staer9 Industries' current top fighter&lt;br /&gt;
|aut=Staer9&lt;br /&gt;
|date=2011-05-16&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Xeikil MK2]] adds a player, a GalCop interceptor, and 24 pirate variants of Staer9 Industries' replacement [[Xeikil]]&lt;br /&gt;
|aut=Staer9&lt;br /&gt;
|date=2011-05-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[YellOo_Cabs]] adds YellOo Cab Co taxis to the Ooniverse. NPC and Buyable&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2011-01-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Your Ad Here!]] adds Convenience Stores [[Pi-42]], [[Tescoo Oxpress]], [[Star]], [[Mall Wart]], [[Sainsboory's]] &amp;amp; [[Security Sidewinder|security sidewinders]]&lt;br /&gt;
|aut=Griff&lt;br /&gt;
|con=DaddyHoggy, Pangloss, Disembodied, Eric Walch&lt;br /&gt;
|date=2011-02-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Z-ships]] adds [[Z-ships_Asp_Explorer|Asp Explorer]], [[Z-ships_Cobra_Commodore|Cobra Commodore]], [[Z-ships_Porcupine|Porcupine]] &amp;amp; [[Z-ships_Python_Courier|Python Courier]]&lt;br /&gt;
|aut=Zieman&lt;br /&gt;
|date=2010-03-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9056 Z-GrOovY Griff's Cobra Mk3 Variety Pack] adds multiple Griff's Cobra Mk3 with alternate hull paintings&lt;br /&gt;
|aut=dertien&lt;br /&gt;
|date=2011-01-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9306 Z-GrOovY System Stations] adds Griff-based Tetrahedron, Octahedron, Coriolis, Dodecahedron, Icosahederon stations&lt;br /&gt;
|aut=dertien&lt;br /&gt;
|date=2011-03-03&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9146 Z-GrOovY Viper Raider] adds a new player ship based on the police Viper&lt;br /&gt;
|aut=dertien&lt;br /&gt;
|date=2011-02-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9056 Z-GrOovY YAH Sidewinder Variety Pack] adds multiple Your Ad Here! Constore defenders with alternate hull paintings&lt;br /&gt;
|aut=dertien&lt;br /&gt;
|date=2011-01-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9056 Z-GrOovY YellOo Cab Variety Pack] adds the Moray Starboat with taxi hull painting&lt;br /&gt;
|aut=dertien&lt;br /&gt;
|date=2011-01-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Work in Progress OXPs  ==&lt;br /&gt;
The following table contains OXPs that either have not yet been released by their authors but are already being discussed on the [http://www.aegidian.org/bb/viewforum.php?f=4 Expansion Pack Forum], or released OXPs that still have WIP status. Links get you either to the respective discussion or the Wiki page if it already exists.&lt;br /&gt;
{{OXPListTableHeader}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?t=8341 Animated Ships] adds animated butterflies flapping their wings as a demo&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-08-06&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9864 Cargo Scanner] scans targeted cargo containers to find out what they contain&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-05-17&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=10732 Chupacabra HUD] places most information in curved bars around the center&lt;br /&gt;
|aut=CommonSenseOTB&lt;br /&gt;
|date=2011-08-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://www.aegidian.org/bb/viewtopic.php?t=8526 Comms Demo] provides a way to communicate with NPC ships&lt;br /&gt;
|aut=Kaks&lt;br /&gt;
|date=2009-10-26&lt;br /&gt;
|work=N}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=10794 External Missiles HUD] allows control over external missile pylons&lt;br /&gt;
|aut=CommonSenseOTB&lt;br /&gt;
|date=2011-09-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[I Missile]] is a very fast and agile interceptor missile but lacks the punch that standard missiles deliver&lt;br /&gt;
|aut=CaptSolo&lt;br /&gt;
|date=2011-08-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.box.net/shared/0i2fnrc175t Katipo] adds a very fast, moderate maneuverability, low cargo ship with low thrust&lt;br /&gt;
|aut=Simon B&lt;br /&gt;
|date=2011-03-03&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=8705 Liners] adds some beautiful and very large vessels to the spacelanes.&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|con=pagroove, Thargoid, Griff&lt;br /&gt;
|date=2011-09-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9441 Miner Pod] breaks up asteroids and collects the splinters&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-03-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?t=8275 Mining] adds mines to protect and provide resources for to get gold&lt;br /&gt;
|aut=docwild&lt;br /&gt;
|date=2010-07-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Nuit Space Station OXP|Nuit Space Station]] is the newest creation of [[Isis Interstellar]]&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2009-11-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mission&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?p=130221#p130221 Oresrati Challenge] adds a fun mission to the loneliest system of the Ooniverse, Oresrati&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-04-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=10820 Peregrine Fighter] is a very small stand-alone ship in its early design stages&lt;br /&gt;
|aut=Wyvern&lt;br /&gt;
|date=2011-09-03&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9946 Phantom] is a trader/fighter from [[Isis Interstellar]] with external missiles&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2011-05-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?p=138226#p138226 Shield Cycler] distributes shield energy between fore and aft shields&lt;br /&gt;
|aut=Lone_Wolf&lt;br /&gt;
|date=2011-05-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=5484 Solar System] adds extra planets and jump gates to a system&lt;br /&gt;
|aut=Frame&lt;br /&gt;
|date=2009-01-11&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=10690 Staer9's Shipset] will replace all the ships that the Neolite companion replaces&lt;br /&gt;
|aut=Staer9&lt;br /&gt;
|date=2011-09-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9472 Sun Skimmer Pod] adds a pod that goes sun skimming and returns full of fuel&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-03-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9488 Target Tracker] aligns your ship on your target&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-03-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9353 Thor Class Supercarrier] adds a Navy Carrier as a replacement pack for the Behemoth and the Galactic Navy&lt;br /&gt;
|aut=dertien&lt;br /&gt;
|date=2011-03-03&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=10809 Trident Shipyard Corp] adds the Trident Privateer Mark II in trader, hunter, pirate, and police versions&lt;br /&gt;
|aut=Cmdr Vault&lt;br /&gt;
|date=2011-09-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9242 Wormhole Drones] creates a path of worm holes to lead you to your destination system&lt;br /&gt;
|aut=Mauiby de Fug&lt;br /&gt;
|date=2011-02-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=10300 Xeptatl's Sword] An epic mission spanning all eight galaxies. Can you stop the Thargoid invasion of GalCop space?&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2011-09-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[http://www.aegidian.org/bb/viewtopic.php?t=8541 Zygoroids] add new beautifully textured asteroid models to the Ooniverse&lt;br /&gt;
|aut=ZygoUgo&lt;br /&gt;
|date=2010-10-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== OXPs with Problems ==&lt;br /&gt;
The following table contains OXPs that have problems eg. broken download, or have been written for versions of Oolite earlier than the current 1.75.3&lt;br /&gt;
{{OXPListTableHeader}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Amen Bricks Megaships|Amen Brick's Megaships]] adds [[Battleship]]s, [[Biodome]]s, [[Cruiseship]]s, [[Hospitalship]]s, [[Supercargo]]s, [[Superlifter]]s, and [[Yacht - Amen Class|Yacht]]s (This version 1.1 contains a corrupted shipData.plist)&lt;br /&gt;
|aut=Amen Brick&lt;br /&gt;
|date=2008-07-11}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Cataclysm OXP|Cataclysm]] takes up the threads of Constrictor Hunt and Thargoid Plans, and sends you on your biggest Navy mission yet&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2009-01-06&lt;br /&gt;
|work=N}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Kirin#Download|Kirin Sport]] adds a a smaller, faster, more agile - and less well armed - civilian variant of the [[Kirin]]&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2009-07-22&lt;br /&gt;
|work=N}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Localhero_OXP|Localhero]] adds a mission campaign in the first galaxies&lt;br /&gt;
|aut=Svengali&lt;br /&gt;
|date=2008-04-09&lt;br /&gt;
|work=N}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Orb]] adds a new alien race, which might help GalCop in the battle against the Thargoids.&lt;br /&gt;
|aut=Charlie&lt;br /&gt;
|date=2007-02-13&lt;br /&gt;
|work=N}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Personalities OXP|Personalities]] adds a bunch of unique, well-known personalities from the Bulletin Board to the Ooniverse&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2009-11-05&lt;br /&gt;
|work=N}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[[Save Anywhere]] allows you to save your game at any OXP Station&lt;br /&gt;
|aut=Frame&lt;br /&gt;
|date=2008-10-01&lt;br /&gt;
|work=N}}&lt;br /&gt;
|}&lt;br /&gt;
[[Category:Oolite expansion packs]]&lt;br /&gt;
[[Category:OXP Lists]]&lt;br /&gt;
[[Category:Factual]]&lt;/div&gt;</summary>
		<author><name>Mcarans</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.alioth.net/index.php?title=OXP_List&amp;diff=28686</id>
		<title>OXP List</title>
		<link rel="alternate" type="text/html" href="https://wiki.alioth.net/index.php?title=OXP_List&amp;diff=28686"/>
		<updated>2011-08-03T12:35:12Z</updated>

		<summary type="html">&lt;p&gt;Mcarans: /* Sortable Table of OXPs */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
== OXP Categories ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; width=&amp;quot;100%&amp;quot; style=&amp;quot;border-collapse: collapse; border-width: 1px; border-style: solid; border-color: #ffffff; table-layout: fixed; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; width=&amp;quot;70px&amp;quot; style=&amp;quot;margin: 0px; padding: 0px; border-width: 1px; border-style: solid; border-color: #ffffff; background-color: #e7e7ff; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot; |&amp;lt;p style=&amp;quot;font-size: 13px;&amp;quot;&amp;gt;Category&amp;lt;/p&amp;gt;&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;margin: 0px; padding: 0px; border-width: 1px; border-style: solid; border-color: #ffffff; background-color: #e7e7ff; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot; |&amp;lt;p style=&amp;quot;font-size: 13px;&amp;quot;&amp;gt;Description of OXP Category&amp;lt;/p&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Activities_OXPs|Activities]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Allow Commanders to carry out a new activity or task eg. racing, gas giant skimming, taking out loans&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Dockables_OXPs|Dockables]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Add new objects that the player can dock with eg. carriers, space bars, casinos, fuel stations. Also, see [[Oolite Stations]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Ambience_OXPs|Ambience]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Change or add to the scenery, visuals or sound effects eg. planet skins, add new planets/moons to systems, move suns further away, dim nebulae, add monuments&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Equipment_OXPs|Equipment]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Buy upgrades for your ship excluding weapons&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Mechanics_OXPs|Mechanics]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Change the game play in a specific way eg. alter market mechanics, add more pirates&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:HUDs_OXPs|HUDs]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Modifications of your dials, gauges and other read-outs&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Missions_OXPs|Missions]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|New missions for Commanders to undertake. For more information, see [[Oolite Missions]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Retextures_OXPs|Retextures]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Retexture existing objects, either by replacing or adding variations, but without adding objects that did not exist before&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Ships_OXPs|Ships]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|New ships, except dockable ships. Also, see [[Oolite Ships]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Systems_OXPs|Systems]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Alter multiple star systems in a number of ways eg. combinations of changing main station and local police ships, adding new stations, ships, activities, missions&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Weapons_OXPs|Weapons]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Addons for your ship for blowing up the baddies&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Misc_OXPs|Misc]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|OXPs that don't fit into the other categories eg. debug consoles, internationalisations, config mechanisms, demo OXPs&lt;br /&gt;
|}&lt;br /&gt;
OXP authors: if you are unsure how to categorise your OXP or if you wish to update the details of an OXP for an author who has disappeared, please seek advice on the [http://www.aegidian.org/bb/viewforum.php?f=4 Expansion Pack Forum] before proceeding. Please put your OXP in one category only. You can edit the section below to add your OXP.&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Sortable Table of OXPs ==&lt;br /&gt;
The following table is optimized for a horizontal screen resolution of at least 1280px so that all OXP descriptions fit on one line.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; width=&amp;quot;100%&amp;quot; style=&amp;quot;border-collapse: collapse; border-width: 1px; border-style: solid; border-color: #ffffff; table-layout: fixed; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;border-width: 1px; border-style: solid; border-color: #ffffff; background-color: #e7e7ff; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot; |The &amp;quot;C&amp;quot; column indicates compatibility with Oolite beta 1.75:&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Y&amp;quot;=compatible, &amp;quot;Y*&amp;quot;=compatible (but the OXP is not in full working order), &amp;quot;N&amp;quot;=incompatible,  blank=unknown/untested.&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;!-- KEEP DESCRIPTIONS (desc=...) ALPHABETICAL --&amp;gt;&lt;br /&gt;
&amp;lt;!-- KEEP LENGTHS OF DESCRIPTIONS TO THAT OF EXISTING ENTRIES OR LESS --&amp;gt;&lt;br /&gt;
{{OXPListTableHeader}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Accessories OXP|Accessories]] replaces the textures of all Stations and non-ship objects in Oolite with a more detailed and realistic look&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2010-06-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Accipiter]] is the market entry from Xeceesian shipyards, a strong &amp;amp; fast all purpose vessel for experienced commanders&lt;br /&gt;
|aut=CaptSolo&lt;br /&gt;
|con=Staer9, Griff&lt;br /&gt;
|date=2011-05-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Aegidian%27s Specials]] adds the powerful [[Mussurana]], the [[Asp (Oolite)#Notable features|Asp Mark II Special]], and a new cargo canister&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2009-07-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Aegidian%27s X-Ships]] adds [[Python ET Special]]s, [[Cobra Mk.2 (Oolite)|Cobra Mk II]]s, [[Taipan]]s, [[Asp (Oolite)#Notable features|Asp Mark II Special]]s, and [[Sidewinder (Oolite)#Notable features|Sidewinder Special]]s&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2009-04-29&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Pirate Clan Blitzspears|Amen Brick's Pirate Clan One: The Blitzspears]] adds the [[Assassin Blitzspear|Assassin]], the [[Hoodlum]], the [[Scoundrel]], and the [[Spiv]]&lt;br /&gt;
|aut=Amen Brick&lt;br /&gt;
|date=2008-06-30}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Amiga Replacement Sounds]] is based on the sound set used in the Amiga version of the original Elite&lt;br /&gt;
|aut=EAGLE 5&lt;br /&gt;
|date=2006-03-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Systems&lt;br /&gt;
|desc=[[Anarchies OXP|Anarchies]] overhauls legal ratings and spices up anarchies with [[Hacker Outpost]]s, [[Salvage Gang]]s, special stations &amp;amp; ships&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|con=Killer Wolf, Griff, Cdr. Wyvern, Murgh, Aegidian, 8-Bit Apocalypse&lt;br /&gt;
|date=2011-03-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9462 Another HUD] is based on Killer Wolf's Generic HUD&lt;br /&gt;
|aut=NorthenderPNE&lt;br /&gt;
|date=2011-03-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Aphid]] adds the stylish Aphid Escort Service&lt;br /&gt;
|aut=8-Bit Apocalypse&lt;br /&gt;
|date=2005-01-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Aquatics OXP|Aquatics]] adds the Aquarian Shipbuilding Corporation of Aqualina, G3 along with its ships and a mission&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-03-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Armoured Transport Type 1]] adds Gaundlet's [[Gaundlet Armoured Transport Type1|Armoured Transport Type 1]] and [[Gaundlet Armoured Escort Viper|Armoured Escort Viper]] that ferry valuables&lt;br /&gt;
|aut=Arexack Heretic&lt;br /&gt;
|date=2005-12-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Armoury OXP|Armoury]] adds AMS, captured Thargons, drones, probes, a missile rack, some bombs, and the missile machine&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-06-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[The Assassins Guild OXP|Assassins Guild]] adds 21 missions involving murder to order in Galaxy 7&lt;br /&gt;
|aut=Littlebear&lt;br /&gt;
|date=2011-05-03&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Asteroid Storm]] adds different types of asteroids &amp;amp; a mission where a station in G1 is threatened by a large asteroid strike&lt;br /&gt;
|aut=LittleBear, Charlie&lt;br /&gt;
|date=2011-01-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Aurora]] adds huge passenger ships for the wealthiest in society&lt;br /&gt;
|aut=pagroove&lt;br /&gt;
|con=Griff, Thargoid&lt;br /&gt;
|date=2010-11-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://www.mediafire.com/?fnc65em7uh5un1d Auto ECM] fires the ECM once when a missile is fired at the player's ship. See the [http://aegidian.org/bb/viewtopic.php?p=138124#p138124 BB] for more info&lt;br /&gt;
|aut=Switeck&lt;br /&gt;
|date=2011-05-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Auto eject OXP|Auto Eject]] ejects your escape pod automatically when your energy becomes too low&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2010-06-16&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Automatic Chaff System]] provides an enhanced chaff-based missile countermeasure system&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2010-06-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Baakili Far Trader]] adds a dockable alien ship&lt;br /&gt;
|aut=Zieman&lt;br /&gt;
|date=2010-09-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Bandersnatch]] adds a pirate capital vessel armed with 4 x fore lasers&lt;br /&gt;
|aut=Flying_Circus&lt;br /&gt;
|date=2009-11-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Beer Cooler]] allows you to fit your ship with a beer cooler&lt;br /&gt;
|aut=Maik&lt;br /&gt;
|date=2010-08-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Behemoth]] adds a dockable Navy cruiser carrying [[Navy Asp]]s and [[Navy Viper]]s&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2011-01-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[ADCK%27s Behemoths]] adds shadered versions of the [[Behemoth]],  [[Galactic Navy OXP|Galactic Navy]] ships and stations, and then some&lt;br /&gt;
|aut=ADCK&lt;br /&gt;
|con=Aegidian, pagroove, Nemoricus, Selezen, Simon B&lt;br /&gt;
|date=2010-04-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Behemoth Spacewar]] adds intelligence to the Behemoth and brings a combat with Thargoids&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2010-01-09&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[BGS|BGS - Background Set]] framework for images, sounds and ambient music&lt;br /&gt;
|aut=pagroove, Svengali&lt;br /&gt;
|date=2011-03-16&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[BigShips OXP|Big Ships]] ensures that large ships do not dock and controls population of systems with them&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2009-11-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Black Monk Monastery]] offers loans in advanced systems and adds the [[Black Monk Gunship]] to persecute defaulters&lt;br /&gt;
|aut=LittleBear&lt;br /&gt;
|date=2010-06-14&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[BlackjacksBullion OXP|Blackjack's Bullion]] starts in galaxy 2 at Telace as Commander Blackjack arrives via escape pod&lt;br /&gt;
|aut=Rustybolts&lt;br /&gt;
|date=2010-03-08&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[BlOomberg Markets]] varies the in-game economy by generating random events that affect commodity prices&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2011-03-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Boa II Clipper Class]] is a development of the Boa Class Cruiser, adding a third engine at the cost of cargo space&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2011-01-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Boomslang]] adds a mid-range multi-role ship. Used by pirates and traders alike&lt;br /&gt;
|aut=milinks, Jar&lt;br /&gt;
|date=2008-09-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Bounty Scanner]] adds bounty details (if any) to the targeting lock-box display when locked onto other ships&lt;br /&gt;
|aut=Frame&lt;br /&gt;
|date=2010-07-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[BountyStatus OXP|Bounty Status]] displays your current bounty (and your legal status) on the F5 manifest screen&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-05-08&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Breakable_'Standard'_Equipment_OXPs|Breakable 'Standard' Equipment]] makes some standard equipment such as HUD/Scanner damageable in combat&lt;br /&gt;
|aut=Capt Murphy&lt;br /&gt;
|date=2011-07-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Bulk Haulers]] adds the [[Lynx Bulk Carrier (Oolite)|Lynx Bulk Carrier]], the [[Long Range Cruiser (Oolite)|Long Range Cruiser]], the [[Bulk Hauler]], and the [[Super Bulk Hauler]]&lt;br /&gt;
|aut=ADCK&lt;br /&gt;
|con=Aegidian, pagroove&lt;br /&gt;
|date=2010-04-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[BuoyRepair|Buoy Repair]] adds a [[Buoy Repair Facility]] and related ships to repair defect or destroyed nav-beacons&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|con=Svengali, Murgh, Zieman&lt;br /&gt;
|date=2011-06-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[[Cabal Common Library]] is a collection of snippets and helpers for OXPs&lt;br /&gt;
|aut=Svengali&lt;br /&gt;
|con=Cmd.Cheyd, PhantorGorth&lt;br /&gt;
|date=2011-07-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Caduceus]] adds the very expensive (and deadly) Caduceus&lt;br /&gt;
|aut=ClymAngus&lt;br /&gt;
|con=Cdr. Wyvern, another_commander, Eric Walch, Thargoid&lt;br /&gt;
|date=2010-12-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Capisastra]] adds [[Capisastra Defender]]s, [[Capisastra Hauler]]s, and [[Capisastra Warrior]]s&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|date=2006-01-12}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Captain Berf Engineer]] adds a voice for crew members&lt;br /&gt;
|aut=Captain Berf&lt;br /&gt;
|date=2009-12-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Captain Berf Pilot]] adds a voice for crew members&lt;br /&gt;
|aut=Captain Berf&lt;br /&gt;
|date=2009-12-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Captain Berf Pilot Alien]] adds a voice for crew members&lt;br /&gt;
|aut=Captain Berf&lt;br /&gt;
|date=2009-12-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Captain Berf Tactical Officer]] adds a voice for crew members&lt;br /&gt;
|aut=Captain Berf&lt;br /&gt;
|date=2009-12-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Cargo Shepherd OXP|Cargo Shepherd]] attracts cargo pods and holds them until you can scoop them, also includes a beacon&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-04-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://www.box.net/shared/4lphdkazs5 CB-HUD] features a HUD that changes based on installed equipment. See the [http://aegidian.org/bb/viewtopic.php?p=141035#p141035 BB post] for more information&lt;br /&gt;
|aut=Captain Beatnik&lt;br /&gt;
|date=2011-05-29&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Clear Skies OXP|Clear Skies]] reduces nebula effects and dims stars. Handy if your system is finding it hard to run Oolite&lt;br /&gt;
|aut=johnsmith&lt;br /&gt;
|date=2006-11-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Cobra 3.5|Chopped Cobra]] adds the Cobra Mk 3.5, a slightly faster and tougher variant with a reduced cargo bay&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2006-12-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9157 Cobra AC] is a faithful reproduction of the Cobra on the cover of the Dark Wheel novella with improved specs&lt;br /&gt;
|aut=dertien&lt;br /&gt;
|date=2011-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Cobra Clipper SAR]] adds a custom Cobra Mk III to rescue stranded Commanders&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2010-04-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Cobra III NjX]] adds a faster, tougher variation on the Classic Cobra Mk III&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|date=2006-08-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Cobra Mark III-XT]] Cobra3 with revamped architecture and upgraded systems to boost performance&lt;br /&gt;
|aut=CaptSolo&lt;br /&gt;
|date=2011-07-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.purgatori.net/cobra4.htm Cobra MkIV] is [[Isis Interstellar]]'s successor to the Cobra MkIII, available in trader and fighter variants&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2010-11-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[OosoundsCombined OXP|Combined Murgh, Wiggy &amp;amp; xaotik's sounds]] combines the 3 available packs from Murgh, Wiggy and xaotik&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|con=Murgh, Wiggy, xaotik&lt;br /&gt;
|date=2009-09-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Systems&lt;br /&gt;
|desc=[[Commies]] Adds [[Astro Mines]], [[CZGF|Factories]], [[SLAPU|Production Units]], [[Worker%27s Commuter|Commuters]] &amp;amp; special police ships to Communist systems&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|con=Ramirez, Murgh, johnsmith, HueijRevisited&lt;br /&gt;
|date=2010-05-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[CompactHUD|Compact HUD]] provides an alternative HUD with a clean look&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Condor]] adds a very powerful police and Navy Cruiser&lt;br /&gt;
|aut=Charlie&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2010-10-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Console HUD]] Azure themed semi-transparent HUD with balanced array of indicators&lt;br /&gt;
|aut=CaptSolo&lt;br /&gt;
|date=2011-07-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[http://www.box.net/shared/mq1mzoc79t Constrictor Mission Hints] adds more hints for those doing the native Constrictor Mission&lt;br /&gt;
|aut=Arexack Heretic&lt;br /&gt;
|date=2010-08-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Contractor ZZ1]] Very fast combat 'stealth' ship. Appears in-game as a Bounty-hunter and rarely as Pirate. Buyable&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2011-01-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Copperhead]] Redux of core ship in Archimedes Elite slightly modified. NPC and player buyable&lt;br /&gt;
|aut=CaptSolo&lt;br /&gt;
|date=2011-05-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Croydon Starsoarer]] adds a ship that is similar to the Asp in specification&lt;br /&gt;
|aut=SimonB&lt;br /&gt;
|con=pagroove&lt;br /&gt;
|date=2010-05-08&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[CustomSounds OXP|CustomSounds]] replaces/adds 40+ sounds, featuring music &amp;amp; extensive use of calm female computer voice for warnings&lt;br /&gt;
|aut=milinks&lt;br /&gt;
|date=2006-12-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[DWCobra|Dark Wheel Cobra]] is a custom Cobra Mk III model, as seen on the cover of the Elite Manual&lt;br /&gt;
|aut=ramon&lt;br /&gt;
|date=2006-11-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[[Debug OXP]] is a special OXP that enables JavaScript console support in test releases of Oolite (1.70 and later)&lt;br /&gt;
|aut=Ahruman&lt;br /&gt;
|date=2010-06-19&lt;br /&gt;
|work=N}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[http://deephorizonindustries.com/Gas_Giant_Skimming.html Deep Horizon - Gas Giants Skimming] allows to skim gas giants to refuel a ship or mine them for rare minerals&lt;br /&gt;
|aut=Cdr. Cheyd&lt;br /&gt;
|date=2010-07-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://deephorizonindustries.com/Lights_Down.html Deep Horizon - Lights Down] lowers ambient light within system to give more natural feel to planets and ships&lt;br /&gt;
|aut=Cdr. Cheyd&lt;br /&gt;
|date=2010-07-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://deephorizonindustries.com/Nav_Buoy.html Deep Horizon - Nav Buoy 1.0] replaces Witchpoint, Station, and other Nav Buoys with a new model&lt;br /&gt;
|aut=Cdr. Cheyd&lt;br /&gt;
|date=2011-07-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[http://deephorizonindustries.com/Pirate_Ambushes.html Deep Horizon - Pirate Ambushes] adds pirates that ambush the player upon exit from witchspace&lt;br /&gt;
|aut=Cdr. Cheyd&lt;br /&gt;
|date=2010-07-06&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://deephorizonindustries.com/DH-Systems.html Deep Horizon - Systems] textures the main planet of a system as well as adding moons and additional planets&lt;br /&gt;
|aut=Cdr. Cheyd&lt;br /&gt;
|date=2010-07-06&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Deep Space Dredger]] adds dockable Space Dredgers, defended by [[Sabre]] fighters, and a missile to salvage derelict ships&lt;br /&gt;
|aut=Sabre&lt;br /&gt;
|date=2011-01-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[DeepSpacePirates|Deep Space Pirates]] adds pirates and asteroids outside the space lanes&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2010-01-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Deepspace Ships#Deepspace HUDs|Deepspace HUD]] is an alternative HUD with two versions&lt;br /&gt;
|aut=DeepSpace&lt;br /&gt;
|date=2010-02-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Deepspace Ships]] replaces the default ships with new textures&lt;br /&gt;
|aut=DeepSpace&lt;br /&gt;
|date=2010-02-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Deposed OXP|Deposed]] is a series of missions set in Galaxy 4 for an experienced Commander&lt;br /&gt;
|aut=Cdr. Wombat&lt;br /&gt;
|con=Commander McLane, Eric Walch&lt;br /&gt;
|date=2009-03-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Systems&lt;br /&gt;
|desc=[[Dictators OXP|Dictators]] adds a range of ships and stations to each dictatorship and offers new trading opportunities to players&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2010-06-19&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Diso OXP|Diso]] adds extra planets and stations to the Diso system in Galaxy 1&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2010-11-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Display reputation OXP|Display Reputation]] lets you know your current reputations in the passenger ferrying and the cargo contract market&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2010-03-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Oolite Docking Clearance Protocol (v1.72 or later)|Docking Clearance]] enables the docking clearance protocol for all stations&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2008-12-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Griff Industries|Dodo Stations]] adds new textures for Dodecahedron stations&lt;br /&gt;
|aut=Griff, CaptKev&lt;br /&gt;
|date=2010-05-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Dr HUD OXP|Dr HUD]] is an alternative HUD&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2006-12-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Dragon|Dragon Assault Craft]] adds a heavy combat ship, and the Military Smart Missile, an improved hard head&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2008-11-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Dragon#Download|Dragon Military Missile]] adds an enhanced hardhead, seeks priority targets when ECM'd&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2008-11-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.mediafire.com/?rllzzcbkwgm Dragonfly/Firefly S.T] adds [[Dragonfly S.T]] &amp;amp; much faster [[Firefly S.T]]. Ideal small fast ships for pirates or bounty hunters&lt;br /&gt;
|aut=Rustybolts&lt;br /&gt;
|date=2009-10-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Eagle Mk II]] adds the cheap Eagle Mk II escort vessel in several different versions, including an enhanced SE&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|date=2006-03-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[ADCK%27s Eagles|Eagles Mk I to IV]] adds four Eagle Long Range Fighters to the game&lt;br /&gt;
|aut=ADCK&lt;br /&gt;
|date=2010-04-07&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Energy Equipment OXP|Energy Equipment]] adds a pylon-mounted automatically triggered top-up for when the juice runs low&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-03-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Escape Pod Locator OXP]] is equipment to allow tracking of escape pods in system&lt;br /&gt;
|aut=Capt Murphy&lt;br /&gt;
|date=2011-07-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Escort Contracts OXP|Escort Contracts 1.2]] allows players to enter into short-term escort contracts with NPC lone wolf traders&lt;br /&gt;
|aut=Capt Murphy&lt;br /&gt;
|date=2011-07-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[ETT Homing Beacon]] marks a position in space by deploying a pylon-mounted beacon&lt;br /&gt;
|aut=Twisted&lt;br /&gt;
|con=Lone_Wolf&lt;br /&gt;
|date=2011-04-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Executive SpaceWays]] adds [[Delta Long-Range Escort|Delta]]/[[Gemini Escort|Gemini]] Escorts, [[Starseeker Personal Shuttle|Starseeker]]/[[Trident Executive Shuttle|Trident Exec]] Shuttles, [[Strelka Cruise Liner]]s&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2010-06-19&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.box.net/shared/moreq536ht#/shared/moreq536ht/1/71484311/786362645/1 Extra Thargoids] adds 2 types of Thargoid ships, each of which packs surprises. Replaces the 'Poet' Frigate OXP&lt;br /&gt;
|aut=UK_Eliter&lt;br /&gt;
|date=2011-07-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Systems&lt;br /&gt;
|desc=[[Factions OXP|Factions]] from anarchy, feudal, dictatorship &amp;amp; communist systems meet in multi-government systems and start fighting&lt;br /&gt;
|aut= m4r35n357&lt;br /&gt;
|date=2011-06-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Famous Planets OXP|Famous Planets]] adds unique textures, new descriptions, and theme tunes for many planets in G1 and G2&lt;br /&gt;
|aut=pagroove&lt;br /&gt;
|con=Cdr. Cheyd, Stromboli, Pangloss, CaptKev, Drew Wagar, Thargoid, Svengali, Lestradae, UK Eliter&lt;br /&gt;
|date=2010-09-30&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Famous Planets Liners OXP|Famous Planets Liners]] adds Spaceway Liners on the 4 spaceways from Lave to Zadies&lt;br /&gt;
|aut=pagroove&lt;br /&gt;
|con=Ramirez, Presti70, Thargoid&lt;br /&gt;
|date=2009-03-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Far Arm ships|Far Arm Ships]] adds [[Far Arm Sunracer|Sunracer]]s, [[Far Arm Scow|Scow]]s, [[Far Arm Tanker|Tanker]]s, [[Far Arm Corsair|Corsair]]s, [[Far Arm Dart|Dart]]s, [[Far Arm Hunter|Hunter]]s, [[Far Arm Cruiser|Cruiser]]s, [[Far Arm Titan|Titan]]s, [[Far Arm Manchi Vulture|Vulture]]s, and [[Far Arm Manchi Wasp|Wasp]]s&lt;br /&gt;
|aut=Zieman&lt;br /&gt;
|date=2010-10-02&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Far Star Murderer]] adds a mid-range fighter / trader, with a fair sized cargo bay&lt;br /&gt;
|aut=8-Bit Apocalypse&lt;br /&gt;
|date=2005-01-01&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://www.box.net/shared/d57y0uip74 Far Sun] places suns further away from the planet than standard Oolite&lt;br /&gt;
|aut=Kaks&lt;br /&gt;
|date=2010-05-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.box.net/shared/moreq536ht Fer de Lance 3G] adds player &amp;amp; NPC Fer de Lance versions with custom paint jobs &amp;amp; altered specs&lt;br /&gt;
|aut=UK_Eliter&lt;br /&gt;
|date=2011-07-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Fer de Lance NG]] adds a more powerful version of the Fer de Lance with several custom paint jobs&lt;br /&gt;
|aut=alien&lt;br /&gt;
|date=2005-03-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Ferdepai]] adds a new fighter / trader to Galaxy 2&lt;br /&gt;
|aut=johnsmith&lt;br /&gt;
|date=2006-12-17&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Systems&lt;br /&gt;
|desc=[[Feudal States]] adds the [[Jäger]], the [[Korvette]], the [[Zerstörer]], a [[Royal Hunting Lodge]] and other elements to feudal systems&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2011-05-30&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Fighter HUD (Oolite)|Fighter HUD]] is an alternative HUD&lt;br /&gt;
|aut=CaptKev&lt;br /&gt;
|date=2008-05-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Firewasp]] adds a fast interceptor&lt;br /&gt;
|aut=Draco_Caeles&lt;br /&gt;
|date=2006-05-10&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Fireworks OXP|Fireworks]] allows you a joyful celebration of whatever it is you want to celebrate&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-05-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Flight Log OXP|Flight Log]] adds a log of the last 10 systems visited&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-01-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Flying Dutchman OXP|Flying Dutchman]] adds the small chance to meet a Ghost Ship in the Ooniverse&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|con=Griff&lt;br /&gt;
|date=2011-04-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[[Freaky Thargoids OXP|Freaky Thargoids]] is a shader demonstration for Oolite&lt;br /&gt;
|aut=Ahruman&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2011-02-03&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Free Trade Zone]] adds an independent trading post of dubious legality to Multi-Government systems&lt;br /&gt;
|aut=Disembodied&lt;br /&gt;
|con=Commander McLane&lt;br /&gt;
|date=2010-10-08&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Frog Space Rickshaw]] adds a chatty space taxi service to the safer systems&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2006-01-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Fuel Collector OXP|Fuel Collector]] scoops fuel from killed ships and collects fuel while cruising, even in witch space&lt;br /&gt;
|aut=Frame&lt;br /&gt;
|con=Commander McLane&lt;br /&gt;
|date=2011-07-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Fuel Station OXP|Fuel Station]] adds fly-thru Fuel Stations and Fuel Satellites near the witchpoint and along route one&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-06-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Fuel Tank]] v2.2 mounts in place of a missile, to top up 3 light years of fuel&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2008-05-31&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Furball OXP|Furball]] adds barroom brawls that've got out of hand. Furious fugitives flee from pissed off police on the station's doorstep&lt;br /&gt;
|aut=Caracal&lt;br /&gt;
|con=m4r35n357&lt;br /&gt;
|date=2011-06-06&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Systems&lt;br /&gt;
|desc=[[Galactic Navy OXP|Galactic Navy]] adds more ships and stations to the arsenal of the Galactic Navy. Allows to join the Navy Reserves&lt;br /&gt;
|aut=Nemoricus&lt;br /&gt;
|date=2010-12-30&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[GalDrivePod]] A portable Galactic Hyperdrive unit, allowing you to complete the &amp;quot;Lost Worlds Grand Tour&amp;quot;&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2011-03-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://www.boxcn.net/shared/5dqx22u06i Galaxy Info] helps you search for systems by criteria you select and will try to locate the nearest one&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-04-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Gates OXP|Gates]] ads short-cut jump gates to suitable systems, speeding journeys between the main station and witchpoint&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-04-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Generation Ships OXP|Generation Ships]] adds encounters with the mythical Generation Ships from time to time&lt;br /&gt;
|aut=Draco_Caeles&lt;br /&gt;
|con=Commander McLane&lt;br /&gt;
|date=2011-04-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Globe station|Globe Station]] is a new type of stations that appears in advanced systems&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|con=Svengali&lt;br /&gt;
|date=2009-10-22&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Greek Ships OXP|Greek Ships]] adds [[Penelope Class Freighter]]s, [[Telemachus Class Escort]]s, and [[Ulysses Class Interceptor]]s&lt;br /&gt;
|aut=8-Bit Apocalypse&lt;br /&gt;
|date=2005-07-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Griff ArcElite|Griff's ArcElite]] adds versions of native Oolite ships textured &amp;amp; shaded to resemble the Acorn Archimedes version of Elite&lt;br /&gt;
|aut=Griff&lt;br /&gt;
|date=2008-09-29&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Griff Boa]] contains the famous Griff Boa&lt;br /&gt;
|aut=Griff&lt;br /&gt;
|date=2010-06-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://www.boxcn.net/shared/k2lvh3enuy Griff's Explosion Debris] adds new alloy &amp;amp; debris models to exploding ships&lt;br /&gt;
|aut=Griff&lt;br /&gt;
|con=Thargoid&lt;br /&gt;
|date=2009-02-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Griff Krait]] adds a heavily modified Krait, similar in design to the Griff Boa&lt;br /&gt;
|aut=Griff&lt;br /&gt;
|date=2010-06-17&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Griff Industries|Griff's Normalmapped Ships]] adds some of the best looking ships, stations, and flotsam available in Oolite&lt;br /&gt;
|aut=Griff&lt;br /&gt;
|date=2011-04-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Griffin Two (Oolite)|Griffin Two]] adds the Griffin Mk II from Frontier&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2005-10-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Gritty Coriolis OXP|Gritty Coriolis]] alternates the Coriolis stations with two elaborate gritty Corioli&lt;br /&gt;
|aut=xaotik&lt;br /&gt;
|date=2006-02-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://wiki.alioth.net/images/2/2d/G-HUD_Mk2.oxp.zip G-HUD Mk2] adds an alternative HUD&lt;br /&gt;
|aut=Gunney Plym&lt;br /&gt;
|date=2008-07-08&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Halsis]] features a female cockpit voice, sometimes called Hal's Hot Sister&lt;br /&gt;
|aut=Ovvldc&lt;br /&gt;
|date=2006-08-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[BoyRacer|Hatchling BoyRacers]] adds the  talkative (and often insulting) [[BoyRacer]]s to more advanced systems&lt;br /&gt;
|date=2006-01-13&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Staer9 haulerp30|Hauler P30]] is a very large cargo ship made by Staer9 Industries&lt;br /&gt;
|date=2011-05-11&lt;br /&gt;
|aut=Staer9&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Hawksound]] features a quality female computer voice, new weapon, damage and some station interface sounds&lt;br /&gt;
|aut=Hawkstrom&lt;br /&gt;
|date=2008-11-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Herald Military Gunboat|Herald]] adds the [[Herald Military Gunboat]], a powerful police and Navy interceptor&lt;br /&gt;
||aut=Flying_Circus&lt;br /&gt;
|date=2005-01-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Hired Guns OXP|Hired Guns]] adds escort ships that can be contracted to accompany you on your next journey&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-02-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Hognose|Hognose Tugships]] adds the [[Hognose]], a chatty tug ship that can be seen towing broken down ships&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|con=Jonnycuba&lt;br /&gt;
|date=2006-03-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[HoOpy Casino]]s appear near the station in advanced systems. You can win or lose credits in games of chance&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2010-06-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Hotrods OXP|Hotrods]] adds custom paint jobs to classic Elite ships, racing vehicles, and a space gang that doesn't like the player&lt;br /&gt;
|aut=Kaks&lt;br /&gt;
|con=Arexack_Heretic, Murgh&lt;br /&gt;
|date=2009-03-16&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[HyperCargo OXP|HyperCargo]] adds an extended and expanded cargo handling system&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-09-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Hyperradio js OXP|Hyperradio]] is an expandable music-player&lt;br /&gt;
|aut=Svengali&lt;br /&gt;
|date=2011-02-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Icarus (Oolite)|Icarus]] adds a small fighter / trader based on blueprints from the lost Solice system&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|date=2007-07-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Illegal_Goods_Tweak_OXP|Illegal Goods Tweak 1.4]] adds interactions with Galcop customs on docking at a main station with Contraband in the hold&lt;br /&gt;
|aut=Capt Murphy&lt;br /&gt;
|date=2011-06-17&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Illicit Unlock OXP|Illicit Unlock]] allows the player to fly all the classic Elite ships&lt;br /&gt;
|aut=tgape&lt;br /&gt;
|date=2005-10-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Griff_Industries#Related_OXP's_by_Other_Authors|Illicit Unlock - Griff Version]] allows the player to fly [[Griff Industries#Griff's Normalmapped Ships OXP|Griff's]] pirate/viper Ships&lt;br /&gt;
|aut=ADCK&lt;br /&gt;
|con=dertien&lt;br /&gt;
|date=2011-02-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[I_Missile|I_Missile]] Very fast, very destructive weapon at an affordable price&lt;br /&gt;
|aut=CaptSolo&lt;br /&gt;
|date=2011-07-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Imperial Courier (Oolite)|Imperial Courier]] adds the powerful Imperial Courier from Frontier, constructed by [[Seldar Shipyards]]&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|con=Commander McLane&lt;br /&gt;
|date=2007-06-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Imperial Trader (Oolite)|Imperial Trader]] adds the powerful Imperial Trader from Frontier&lt;br /&gt;
|aut=ADCK&lt;br /&gt;
|date=2010-06-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Interstellar help OXP|Interstellar Help]] allows you to help out traders who got stuck in interstellar space without fuel&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-03-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Ionics OXP|Ionics]] adds a series of missions featuring the Ionics Company of Zaria, the Ramaza Liberation Front and The Link&lt;br /&gt;
|aut=Galileo&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2010-08-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[IronHide OXP|IronHide]] introduces the new range of IronHide ship armour from the Aquarian Shipbuilding Corporation&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-02-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Iron Raven]] is a multi-stage mission to investigate a dangerous conspiracy on behalf of GalCop High Command&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2011-04-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Ixian Ships|Ixian Military Ships]] adds Ixian [[Ixian Battle Cruiser|Battle Cruiser]]s, [[Ixian Bezerka|Bezerka]]s, [[Ixian Gunship|Gunship]]s and [[Ixian No-Ship Mark I|No-Ship]]s from Dune&lt;br /&gt;
|aut=8-Bit Apocalypse&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2009-03-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Ixian Ships#Ixian Freighter|Ixian Freighter]] adds a civilian freighter to the universe&lt;br /&gt;
|aut=8-Bit Apocalypse&lt;br /&gt;
|date=2005-01-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Jabberwocky]] adds the powerful Jabberwocky fighter / trader&lt;br /&gt;
|aut=Flying_Circus&lt;br /&gt;
|date=2006-03-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[JellyBaby Dispenser]] adds a handy Jellybaby Dispenser for your cockpit&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2011-03-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Kestrel &amp;amp; Falcon OXP|Kestrel &amp;amp; Falcon]] adds buyable Star Wars style [[Falcon_%28Oolite%29|Falcon]] for pirates/traders and the [[Kestrel]], a police/navy interceptor&lt;br /&gt;
|aut=Charlie&lt;br /&gt;
|con=Kaks&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Killer_Wolf's_Dynamic_HUD|Killer Wolf's Dynamic HUD]] adds a version of the dynamic HUD first seen in Killer Wolf's Werewolf ships, to all ships&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|con=Thargoid&lt;br /&gt;
|date=2010-07-08&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Killit_OXP|Killit]] adds a bunch of insane super weapons&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-05-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Kirin]] adds a heavy military hauler, CV &amp;amp; XM versions used by both pirates &amp;amp; traders&lt;br /&gt;
|aut=ClymAngus&lt;br /&gt;
|con=Cdr. Wyvern&lt;br /&gt;
|date=2009-09-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Klepto-HUD OXP|Klepto-HUD]] is a different take on a HUD with precise crosshairs&lt;br /&gt;
|aut=Kleptoid&lt;br /&gt;
|date=2006-03-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://sancho.dk/oolite/lane_legal.zip ''Lane Legal Racers''] adds NPC versions of [[Krait]]s, [[Mamba]]s, and [[Sidewinder]]s from different [[Racers#Listing_of_sponsored_teams|racing teams]]&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-09-27&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Lave OXP|Lave]] is a system make-over for Lave, adding all features described in The Dark Wheel novella included with original Elite&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2009-12-31&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Lave Academy OXP|Lave Academy]] adds Lave Academy Station above Lave &amp;amp; other planets, with 3 mini-games to test Commanders' skills&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-06-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[http://www.boxcn.net/shared/9q1cbydgan LinkG7] is a mission in Galaxy 7&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-02-16&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Llama]] adds the Llama fighter / trader. Updated from the version of Oosat1 to fix a small bug&lt;br /&gt;
|aut=Flying_Circus&lt;br /&gt;
|date=2006-02-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://www.boxcn.net/shared/jtpt2vlol5 Long Range Target Scanner] shows all ships currently in your system and allows to target them&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-05-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[LongWay_OXP|Long Way Around]] adds a transport mission well suited to the novice in Galaxy 1&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2009-04-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Longshot]] adds the Longshot fighter / trader, regarded by many as a cheaper alternative to the Cobra Mk III&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Lovecats.oxp|Lovecats]] is a mission about love &amp;amp; betrayal amongst the feline races of Galaxy 4. Fast ship &amp;amp; hard heart required!&lt;br /&gt;
|aut=johnsmith&lt;br /&gt;
|date=2011-07-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Second-hand ships|M-Pack (rusties)]] adds rusty banger versions of all Classic Elite ships in poor condition but still can haul cargo&lt;br /&gt;
|aut=murgh&lt;br /&gt;
|date=2006-01-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Manta]] adds the Manta light escort craft&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Marett Space Corporation OXP|Marett Space Corporation]] releases [[Adder Mk II]], [[Mosquito Trader]], [[Mosquito Sport]], new fighters / medium traders&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://www.crimsonforge.co.uk/cloister/MedusaHud.oxp.zip Medusa HUD] is an alternative HUD&lt;br /&gt;
|aut=ClymAngus&lt;br /&gt;
|date=2009-01-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Mega-Walnut Dashboard OXP|Mega-Walnut Dashboard]] is a generic version of the fabled Fer de Lance HUD&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2005-07-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Merlin_(Oolite)|Merlin]] Ships are interceptors used by the Police &amp;amp; Navy, but also available on the open market&lt;br /&gt;
|aut=Charlie&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[MildAudio]] Sound Set&lt;br /&gt;
|aut=xaotik&lt;br /&gt;
|date=2006-02-15&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Military_Fiasco|Military Fiasco]] adds a navy mission for Commanders with &amp;gt; 1,000 kills. Also equips Navy with powerful cruisers&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2011-01-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Military station|Military Station]] adds well armed Military Stations to the more advanced systems&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Military Stingray Mk. II|Military Stingray]] adds an ex-military ship that may show up in pirate hands or for the player to buy&lt;br /&gt;
|aut=CaptKev&lt;br /&gt;
|date=2007-03-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Milspec HUD|Milspec HUD]] is an alternative HUD with targeting aids and an emphasis on functionality&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2010-07-08&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Misjump_Analyser|Misjump Analyser]] scans witchspace &amp;amp; on detection of disturbances sounds an alarm &amp;amp; logs location of disturbance&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2010-05-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?p=135619#p135619 Misjump Inducer] can turn on/off misjumps on demand&lt;br /&gt;
|aut=Switeck&lt;br /&gt;
|date=2011-04-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Missile_Analyser|Missile Analyser]] scans incoming missiles &amp;amp; sets target to incoming missile when it is no standard missile&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2010-05-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Missiles_and_Bombs|Missiles &amp;amp; Bombs]] adds a wide variety of missiles &amp;amp; bombs that are are available to player &amp;amp; NPCs alike&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2009-12-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Missionaries OXP|Missionaries]] adds clerics of four faiths who spam Commanders with requests to worship their Gods&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Moccasin]] adds light escort craft from Xeceesian Shipyards modeled after ArcElite core ship&lt;br /&gt;
|aut=CaptSolo&lt;br /&gt;
|date=2011-06-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Mod-HUD]] is a slight modification / re-organization of the standard Oolite HUD without surround boxes&lt;br /&gt;
|aut=CaptSolo&lt;br /&gt;
|date=2011-05-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/monument.zip Monument] sometimes adds a monument to famous Commanders close to the Sun&lt;br /&gt;
|aut=dajt&lt;br /&gt;
|date=2005-05-28&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Morrigan]] adds a vast trade ship to the Universe&lt;br /&gt;
|aut=Flying_Circus&lt;br /&gt;
|date=2009-12-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Oosounds2_OXP|''Murgh's Replacement Sounds'']] contains 10 new sounds&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2005-08-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Murgh_Xships OXP|Murgh's X-Ships]] adds [[Bandy-Bandy]], [[Chuckwalla]], [[Eel Rapier]], [[Taipan]] (fast courier craft &amp;amp; 2 light escort ships)&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2009-09-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[NavalGrid OXP|Naval Grid]] enhances recharging rates by linking the naval energy unit to military-boosted shields&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-03-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Neolite Ships]] is an Oolite ships replacement set&lt;br /&gt;
|aut=SimonB&lt;br /&gt;
|date=2009-07-11&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/newships.oxp.zip ''New Ships''] adds [[Hamadryad]], [[Josher]], [[Naga]], [[Ringhals]] (mining and trade ships from previous versions of Elite)&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2006-05-15&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/hud_ng.oxp.zip NG HUD] is an alternate HUD. All standard functions, but with a personal view&lt;br /&gt;
|aut=alien&lt;br /&gt;
|date=2005-03-06&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[NPC-shields OXP|NPC-shields]] gives shields to NPCs, together with a nice glow effect&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-04-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://wiki.alioth.net/index.php/Numeric_Style_HUDs Numeric Style HUDs] New invention/numeric gauges.[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9977 Info]&lt;br /&gt;
|aut=CommonSenseOTB&lt;br /&gt;
|date=2011-06-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/nuvipers.zip Nu Vipers] increases the types of Viper patrol ships with [[GalCop Viper Mark II]], [[GalCop Viper Cruiser]]&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Nukes.oxp|Nuclear Torpedos]] adds some powerful, but slow moving, missiles&lt;br /&gt;
|aut=E. Walch, Cdr. Wyvern&lt;br /&gt;
|date=2010-06-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Offender traders OXP|Offender Traders]] makes some traders into offenders/fugitives&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-04-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Old Ships]] adds Elite-A [[Bushmaster Miner]]s, [[Cat (Oolite)|Cat]]s, [[Chameleon (Oolite)|Chameleon]]s, [[Ghavial (Oolite)|Ghavial]]s, [[Iguana (Oolite)|Iguana]]s, [[Monitor (Oolite)|Monitor]]s, [[Ophidian (Oolite)|Ophidian]]s, [[Salamander (Oolite)|Salamander]]s&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2006-08-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Old Ships 2010]] is a retextured version of [[Old Ships]], adding the bonus Monitor 2 ship&lt;br /&gt;
|aut=pagroove&lt;br /&gt;
|con=Murgh, ADCK, Simon B, Lestradae&lt;br /&gt;
|date=2011-02-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Oo-Haul]] adds vast bulk [[L-Crate Hauler]]s to the space lanes and offers missions at [[Your Ad Here!|constores]] to safely escort them&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|con=Eric Walch, Ark&lt;br /&gt;
|date=2009-02-21&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[ooCheat_OXP|ooCheat]] adds a cheat menu to the game&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-02-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[http://www.box.net/shared/rrlm77ztzm Oolite en français] is a French Oolite localization&lt;br /&gt;
|aut=Pierre-Olivier&lt;br /&gt;
|date=2009-07-12}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[http://marc-schaffer.ch/data/OoliteGerman_V0.3.zip Oolite auf Deutsch] is a German Oolite localization&lt;br /&gt;
|aut=SwissMäc&lt;br /&gt;
|date=2009-06-02&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[http://www.box.net/shared/p3engis1ds Oolite Italiano] is an Italian Oolite localization&lt;br /&gt;
|aut=another_commander&lt;br /&gt;
|date=2010-06-15&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=Oolite in Russian: [http://www.roolite.org Roolite.org] provides localizations of Oolite 1.74.2 and some OXPs. Also check [http://www.elite-games.ru/conference/viewtopic.php?t=48476&amp;amp;start=0 Elite Games]&lt;br /&gt;
|aut=Seventh&lt;br /&gt;
|date=2009-03-26&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://www.box.net/shared/x9u5xoulkq Orbits] positions planets on orbits around the sun&lt;br /&gt;
|date=2010-07-01&lt;br /&gt;
|aut=Ebi&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Ore Processor]] extracts valuable materials from asteroid fragments when mounted to a ship's fuel scoop&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|con=Ark, Kaks, Eric Walch&lt;br /&gt;
|date=2011-01-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Orisis]] BigTraders are new passenger liners that ferry passengers around&lt;br /&gt;
|aut=pagroove&lt;br /&gt;
|con=ADCK, Thargoid&lt;br /&gt;
|date=2010-01-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Outrider (Oolite)|Outrider]] is a medium fighter produced by the [[Taranis Corporation HQ (Oolite)|Taranis Corporation]]&lt;br /&gt;
|aut=Roberto&lt;br /&gt;
|date=2006-08-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[[OXPConfig]] provides means to configure supported OXPs, to recognize errors, or to avoid clashes&lt;br /&gt;
|aut=Svengali&lt;br /&gt;
|date=2011-07-16&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[P.A. Groove Stations OXP|P.A. Groove Stations]] adds lots of different types of Coriolis and Dodec Stations&lt;br /&gt;
|aut=pagroove&lt;br /&gt;
|con=Griff, Commander McLane&lt;br /&gt;
|date=2010-04-16&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Pallas]] adds a fast but lightly shielded fighter.&lt;br /&gt;
|aut=Charlie&lt;br /&gt;
|con=Svengali&lt;br /&gt;
|date=2010-12-02&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Pelamis]] adds the Pelamis trade ship&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2006-04-24&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Phoenix]] is a strange ship, built from salvaged parts from various Serpent Class ships&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2007-01-17&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://wiki.alioth.net/index.php/Pie_Chart_Style_HUDs Pie Chart Style HUDs] New invention=&amp;gt;pie gauges.[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9788 Info]&lt;br /&gt;
|aut=CommonSenseOTB&lt;br /&gt;
|date=2011-05-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Pirate Coves OXP|Pirate Coves]] adds rock hermits that have been taken over by pirates in more dangerous systems&lt;br /&gt;
|aut=lazygun&lt;br /&gt;
|date=2011-07-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/piratetraps.oxp.zip Pirate Traps] are dummy traders which transmit details of pirates firing on them to the police&lt;br /&gt;
|aut=popsch&lt;br /&gt;
|date=2006-01-04&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Planetfall_OXP|Planetfall]] allows the player to land on and trade at the planets and moons of each system&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-04-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Pods_OXP|Pods]] adds fuel, missile, bulk &amp;amp; empty cargo pods and pods which jam, explode, have trumbles or take a few scoops&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-03-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Police_IFF_Scanner_Upgrade|Police IFF Scanner Upgrade]] highlights offender and fugitive ships with custom IFF scanner colours&lt;br /&gt;
|aut=Capt Murphy&lt;br /&gt;
|date=2011-06-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Pteradyne Technologies Ships OXP|Pteradyne Technologies Ships]] adds the [[Excalibur]], a buyable combat ship and the [[Paladin]], a military version&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2006-12-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://www.boxcn.net/shared/xccp8ml5cq Pylon Based Equipment Remover] allows to remove a selected piece of equipment from your pylons&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-04-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Python Class Cruiser]] is a large powerful trade ship, which can also hold its own in battle&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2007-07-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/racers.oxp.zip Racers] adds [[Chicaneer Mk II]], [[Chicaneer Mk IV]], [[Dragster Mk I]], and [[Dragster Mk II]] racing ships&lt;br /&gt;
|aut=murgh&lt;br /&gt;
|date=2006-01-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Railgun OXP|Railgun]] introduces a revolutionary new weapons system to the Ooniverse&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-05-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Ramon's Anaconda]] is a fantastic re-imagining of the Anaconda freighter. Check out its special features&lt;br /&gt;
|aut=Ramon&lt;br /&gt;
|con=Griff&lt;br /&gt;
|date=2009-04-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Random_Docking_Music_OXP|Random Docking Music]] plays a random music track from a pre-set list on activating docking computers&lt;br /&gt;
|aut=Frame&lt;br /&gt;
|date=2010-05-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Random Hits OXP|Random Hits]] adds [[Space Bar|seedy space bars]] to anarchy systems that offer large bounties on the galaxy's Most Wanted Criminals&lt;br /&gt;
|aut=LittleBear&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2011-03-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://terrastorage.ath.cx/Marmagka/e8e9ce360da6bb40f5952cbe00f02501/RedSet.zip RedSet] contains red-themed backgrounds for the UI screens&lt;br /&gt;
|aut=another_commander&lt;br /&gt;
|date=2010-06-18&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.purgatori.net/reduxedvamps.htm Reduxed Vampires] adds reworked versions of the Vampire Mk I and Mk II and a Reaper &amp;quot;Gold Edition&amp;quot;&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2010-10-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[RegistrationID|Registration ID]] adds ID tags to all Oolite standard ships&lt;br /&gt;
|aut=Frame&lt;br /&gt;
|date=2010-02-28&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Remorse_Of_Conscience_v2|Remorse Of Conscience]] is a trade ship with a large hold, that can hold its own in combat&lt;br /&gt;
|aut=8-bit Apocalypse&lt;br /&gt;
|date=2005-02-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Renegade Pirates OXP|Renegade Pirates]] adds rare, very well-armed, high bounty pirate versions of Classic Elite ships&lt;br /&gt;
|aut=LittleBear&lt;br /&gt;
|con=Aegidian, Griff&lt;br /&gt;
|date=2006-12-03&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/RVandGS.zip Renegade Viper + Grass Snake] adds [[Renegade Viper|stolen Vipers]] which earn large bounties &amp;amp; [[Grass Snake]], a large pirate trade ship&lt;br /&gt;
|aut=8-bit Apocalypse&lt;br /&gt;
|date=2004-11-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Repair_Bots_OXP|Repair 'Bots]] adds a pylon mounted canister of repair nanobots which attempt to fix damaged equipment in mid-flight&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-02-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Resistance Commander|Resistance Commander]] gives players a chance to command a squadron in combat&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2011-07-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Ring_Racer_OXP|Ring Racer]] adds the Corporate Systems Ring Racing League to Galaxy 1&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-04-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Rock Hermit Locator]] adds equipment to locate Rock Hermits&lt;br /&gt;
|aut=Frame&lt;br /&gt;
|date=2011-03-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Saleza Aeronautics]] adds [[Bellatrix Cruiser]]s, [[Rigel Bomber|Rigel Tactical Bomber]]s, and [[Saiph Interceptor]]s to high tech corporate systems&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2010-10-24&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Santa]] adds very rare Santa Sledge to space lanes escorted by plasma gun toting reindeer space bikers!&lt;br /&gt;
|aut=Griff&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2010-05-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.purgatori.net/scorpius.htm Scorpius] adds a heavily armoured private trading and transport vessel, protected by Vampire escorts&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|con=Griff&lt;br /&gt;
|date=2011-02-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Scourge of the Black Baron]] features combat &amp;amp; transport Galaxy 1 missions&lt;br /&gt;
|aut=Rxke&lt;br /&gt;
|con=Kaks, Thargoid&lt;br /&gt;
|date=2010-08-07&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Scout]] is a cheap but good looking ship from Staer9 that shares a lot of technology with the [[Xeikil]]&lt;br /&gt;
|aut=Staer9&lt;br /&gt;
|date=2011-05-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Second Wave OXP|Second Wave]] adds variants of Thargoid Warship, Thargon Robot Fighter and alien ships&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-06-06&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Selezen's S-Ships]] adds [[GalCop SWAT Viper]]s and [[Oresrian Trader]]s&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|date=2007-07-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Sell equipment OXP|Sell Equipment]] allows for small fee, resale of equipment at 60% price at suitable tech level world&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-02-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[[Shady Cobra OXP|Shady Cobra]] adds shader effects to Cobra Mk III&lt;br /&gt;
|aut=Ahruman&lt;br /&gt;
|date=2007-07-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Shady Sungs]] adds replacement textures for all Classic Elite Ships&lt;br /&gt;
|aut=Sung, ADCK&lt;br /&gt;
|date=2010-05-21&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://wiki.alioth.net/index.php/Shield_Equalizer_%26_Capacitors_OXP Shield Equalizer] balances shield energy automatically. [http://wiki.alioth.net/index.php/Shield_Equalizer_%26_Capacitors_OXP Capacitors] store unused shield energy for use later&lt;br /&gt;
|aut=CommonSenseOTB&lt;br /&gt;
|date=2011-05-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Skrounk All-Stars Limited]] adds [[All Stars Large Freighter|Large Freighter]], [[Seymour Class Sled]], [[Starbelly Class Sled]], [[Starhawk]] &amp;amp; [[Starwolf_Mark_I|Starwolf Mk I]]&lt;br /&gt;
|aut=goji62&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Smivs%27_ShipSet|Smiv's Shipset 3.0]] re-textures the standard Oolite ships beautifully with a realistic look &amp;amp; non-shader lighting effects&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2010-12-08&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Snark]] is a powerful fighter/trader, often used by pirates and bounty hunters&lt;br /&gt;
|aut=Flying_Circus&lt;br /&gt;
|date=2006-06-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=10515 Sniper Sight] is equipment to help with long distance targeting&lt;br /&gt;
|aut=Wildeblood&lt;br /&gt;
|date=2011-07-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=10176 Sniper Scope MilHUD integrated] is an version of MilHUD with integrated Sniper Sight functionality&lt;br /&gt;
|aut=Wildeblood&lt;br /&gt;
|date=2011-06-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Snoopers]] adds the galactic news network channels&lt;br /&gt;
|aut=DaddyHoggy&lt;br /&gt;
|con=Disembodied, Drew, Svengali&lt;br /&gt;
|date=2011-05-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Solid Gold Cobra Mk.3]] is a limited edition Cobra Mk3 to celebrate its 25 years anniversary&lt;br /&gt;
|aut=ADCK&lt;br /&gt;
|date=2010-06-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[http://www.purgatori.net/Sothis.htm Sothis Space Station] is a station from [[Isis Interstellar]] with a compact design of comparable size to a standard Coriolis&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2010-08-08&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Spearhead Interceptor Mk.I]] is a pure fighter, fast &amp;amp; nippy but with weak shields, no cargo bay. Can be twitchy to fly&lt;br /&gt;
|aut=Randell&lt;br /&gt;
|date=2006-07-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[S.I.R.F.|Special Interstellar Repair Facilities]] offer different trading strategies &amp;amp; repair facilities on uncommon trading routes&lt;br /&gt;
|aut=Tinker&lt;br /&gt;
|date=2010-07-02&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.purgatori.net/spectres.htm Spectre] adds [[Isis Interstellar]]'s Vampire Mk V, a secret military vessel fighting Thargoids in witch space&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2011-01-16&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Spy Hunter OXP|Spy Hunter]] is a mission for Galactic Navy for Commander with rating of 'Dangerous' or above&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|date=2009-04-11&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Staer9 Spectre]] is a cheap small fighter with high maneuverability that flopped in the market&lt;br /&gt;
|aut=Staer9&lt;br /&gt;
|date=2011-05-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Star-Jelly]] Beautiful translucent organisms sometimes found in Asteroid fields&lt;br /&gt;
|aut=Smivs,Staer9&lt;br /&gt;
|date=2011-05-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Star Wars Ships]] adds [[A-Wing]], [[B-Wing]], [[Lambda Shuttle]], [[Tie-Fighter]], [[Tie-Interceptor]], [[X-Wing]], [[Y-Wing]]&lt;br /&gt;
|aut=Azzameen&lt;br /&gt;
|date=2006-05-31&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Status Quo Q-bomb OXP|Status Quo Q-bomb]] changes the behaviour of Q-bombs according to the [[Status Quo]] novel&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-02-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[S.T.E]] is a step up from the Cobra III with improved trading capabilities and increased speed&lt;br /&gt;
|aut=Rustybolts&lt;br /&gt;
|date=2009-07-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Stealth OXP|Stealth]] is a small G3 mission showcasing new scanner capabilities &amp;amp; introducing stealth ships&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-03-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://www.purgatori.net/Steampunk%20HUD.htm Steampunk HUD] adds a steampunk style HUD by [[Isis Interstellar]]&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2010-01-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Stellar Serpents OXP|Stellar Serpents]] adds huge space-born serpent monsters which move from system to system and are good hunting prey&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-07-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[http://sancho.dk/oolite/sunskimmers.zip Sunskimmers] adds ships to the sun/planet corridor&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-08-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[SuperCobra]] is larger, faster with stronger hull than Cobra Mk III&lt;br /&gt;
|aut=8-Bit Apocalypse&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2010-10-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Superhub]] from GASEC is the first station that is capable of transporting itself to its destination&lt;br /&gt;
|aut=P.A. Groove&lt;br /&gt;
|date=2009-11-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Swift]] is a very fast ship often used by pirates or bounty hunters with limited cargo space &amp;amp; nominal shields&lt;br /&gt;
|aut=Charlie&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Switeck's Mod OXP|Switeck's Mod]] rebalances ships &amp;amp; market prices. Adds Medium, Hard, and Harder Jameson saves&lt;br /&gt;
|aut=Switeck&lt;br /&gt;
|date=2011-01-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[System Demux (Oolite)|System Demux]] textures home planet, adds planet/moon combination to systems&lt;br /&gt;
|aut=DrBeeb&lt;br /&gt;
|date=2010-07-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[System Redux (Oolite)|System Redux]] v1.2 textures home planet, adds planet/moon combination to systems&lt;br /&gt;
|aut=CaptKev&lt;br /&gt;
|date=2011-02-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://www.box.net/shared/r05ub873b5 TAF Reset] resets the Time Acceleration Factor (TAF) to 1.0 upon docking&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2009-09-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Taranis OXP|Taranis]] is a mission for law abiding Commanders with rating of Competent+. Adds [[Taranis Corporation HQ (Oolite)|Taranis Corporation HQ]]&lt;br /&gt;
|aut=Roberto&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2009-10-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Target_Autolock_OXP|Target Autolock]] updates [[Scanner Targeting Enhancement]] to auto-lock onto attacking ships&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-02-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Target Range OXP|Target Range]] is found in all rich systems with stable governments&lt;br /&gt;
|aut=Caracal&lt;br /&gt;
|date=2010-07-24&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Target Reticle]] updates [[Scanner Targeting Enhancement]] to turn reticle red when target centred&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2010-05-31&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Taxi Galactica]] adds a Taxi Service and a non player flyable taxi cab ship to systems&lt;br /&gt;
|aut=pleb87&lt;br /&gt;
|date=2008-06-12&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Teretrurus Mk.I]] is a medium fighter/trader somewhat faster &amp;amp; tougher than Cobra Mk III, but with smaller cargo bay&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2008-02-01&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Terrapin|Terrapin Trader]] is a medium fighter/trader. A good upgrade from Cobra Mk III&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2008-02-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Tesoura]] is a slow, but well shielded trade ship&lt;br /&gt;
|aut=Randall, Dr. Nil&lt;br /&gt;
|date=2008-02-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Thargoid Carrier]] arms Thargoids with capital carrier&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|date=2006-06-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Thargorn_Threat_oxp|Thargoid Threat]] adds [[Thargoid Terrorizer Frigate]], [[Thargoid Thargorn Battleship]], [[Thargoid Thorgon Cruiser]]&lt;br /&gt;
|aut=Arexack Heretic&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2011-02-03&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Thargoid Wars]] intensifies war with the Thargoids, featuring new attack and defense missions&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2011-07-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Tianve OXP|Tianve]] adds [[Navy Station]], as well as Visuals, including a pulsar, to the Galaxy 1 system of Tianve&lt;br /&gt;
|aut=Drew&lt;br /&gt;
|date=2009-12-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Tiger Mark I]] is a truly awesome (and very expensive) multi-role craft&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2006-05-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Tionisla Orbital Graveyard]] adds the famed graveyard to Tionisla, G1, as described in “The Dark Wheel” novella&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2011-02-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Tionisla Reporter]] adds a mission for a starting commander&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2011-07-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[TCAT OXP|To Catch a Thargoid]] is a G3 follow-up mission to Thargoid Plans, for Dangerous or Elite rank Commanders&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-12-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Torus station|Torus Station]] adds a vast 2001 style space station to very high tech level systems&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|con=Svengali&lt;br /&gt;
|date=2010-10-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Total patrol OXP|Total Patrol]] makes police ships patrol between planet, witchpoint &amp;amp; sun&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-03-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[ToughGuys|ToughGuys]] Adds 3 levels of increased toughness of 'Baddies', and gives a backdrop for an immersive storyline&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2011-02-16&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Trader Outpost (Oolite)|Trade Outpost]] adds Griff's trade outpost without ads&lt;br /&gt;
|aut=CaptKev, Griff, Ark&lt;br /&gt;
|date=2009-02-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Traffic_Control_OXP|Traffic Control]] personnel gives help with approach to and manual docking at all main stations&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-06-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Transhab station|Transhab Station]] adds a large station with rotating arms to some medium tech level systems&lt;br /&gt;
|aut=Draco_Caeles&lt;br /&gt;
|date=2006-06-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Transports]] adds [[CoachWhip]], [[Coral]], [[Woma]]&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|con=Eric Walch, Kaks&lt;br /&gt;
|date=2010-12-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://wiki.alioth.net/images/d/d9/TrekHud.zip Trek HUD] replaces your HUD with a Star Trek NG LCARS-style HUD&lt;br /&gt;
|aut=barabis&lt;br /&gt;
|date=2008-11-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Trident Down]] contains a series of Galaxy 4 missions investigating a vicious attack on a [[Executive SpaceWays|Trident Shuttle]]&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2010-12-31&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[UPS Courier]] offers Commanders transport of goods/documents &amp;amp; occasional combat missions&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2011-03-29&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Urutu Mark III &amp;amp; Urutu Mark IV]] are medium fighters/traders from Elite-A&lt;br /&gt;
|aut=Milinks&lt;br /&gt;
|date=2006-09-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Vampire]] adds the Purgatori Vampire series of combat ships&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2007-01-29&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Vampire - Diamondback]] adds the Diamondback Vampire series of combat ships&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2010-04-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Vampire - Dominatrix]] adds the Dominatrix Vampire series of combat ships&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2009-12-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Vector OXP|Vector]] is a unusual mission type - fast money, slavers, tricks and GalCop is watching you...&lt;br /&gt;
|aut=Svengali&lt;br /&gt;
|date=2011-02-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Velocity_OXP|Velocity]] is a fast fighter ship&lt;br /&gt;
|aut=Sabre&lt;br /&gt;
|date=2009-09-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.purgatori.net/Venom.oxp.zip Venom] adds [[Venom]]s in normal and renegade versions  from [[Isis Interstellar]]&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2009-12-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Vortex OXP|Vortex]] A new ex-military player ship. Rare, expensive and powerful - kitted out with advanced and unique features&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-03-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.purgatori.net/wasps.htm Wasps] adds formation flying wasps, queen wasps, and wasp nests&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|con=Thargoid, Ahruman, Eric Walch&lt;br /&gt;
|date=2010-08-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/weeviloid2.zip ''Weeviloid''] adds [[Weeviloid Hunter]]s, fearsome multi-gunned war ships and [[Weeviloid Scoutship]]s, light trade ships&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2006-05-11&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Welcome_Mat_OXP|Welcome Mat]] upgrades the comms systems to expand the information that is given on arrival in new system&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-06-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Werewolf]] from [[Isis Interstellar]] has 3 variants:  [[Werewolf|Werewolf ~ Damage Inc.]], [[Werewolf|Werewolf (Civilian)]] &amp;amp; [[Werewolf|Werewolf (Purgatori Model)]]&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2011-02-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Wolf_Mk.2_%28Oolite%29|Wolf Mk II]] adds the powerful Wolf Mk II, as seen in Elite-A&lt;br /&gt;
|aut=Ark&lt;br /&gt;
|date=2009-07-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://wiki.alioth.net/images/0/06/Wolfs_variants.zip Wolfwood's Variants] adds [[Asp_Mk.I|Asp Mk I]], [[Cobra Courier]], [[Cobra Rapier]], [[Drake]], [[Drake Mk II]] &amp;amp; [[Wolf Mk I]]&lt;br /&gt;
|aut=Wolfwood&lt;br /&gt;
|date=2008-02-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Wormhole restoration OXP|Wormhole Restoration]] adds a new way to leave interstellar space without using fuel, expanding on Thargoid backstory&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-05-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Xarik]] is an advanced aircraft, last creation of the late Prof. Eisel Xarik. Used by pirates, traders, and hunters&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2010-02-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Xeikil]] adds a player, a GalCop interceptor, and 24 pirate variants of Staer9 Industries' current top fighter&lt;br /&gt;
|aut=Staer9&lt;br /&gt;
|date=2011-05-16&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Xeikil MK2]] adds a player, a GalCop interceptor, and 24 pirate variants of Staer9 Industries' replacement [[Xeikil]]&lt;br /&gt;
|aut=Staer9&lt;br /&gt;
|date=2011-05-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[YellOo_Cabs]] adds YellOo Cab Co taxis to the Ooniverse. NPC and Buyable&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2011-01-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Your Ad Here!]] adds Convenience Stores [[Pi-42]], [[Tescoo Oxpress]], [[Star]], [[Mall Wart]], [[Sainsboory's]] &amp;amp; [[Security Sidewinder|security sidewinders]]&lt;br /&gt;
|aut=Griff&lt;br /&gt;
|con=DaddyHoggy, Pangloss, Disembodied, Eric Walch&lt;br /&gt;
|date=2011-02-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Z-ships]] adds [[Z-ships_Asp_Explorer|Asp Explorer]], [[Z-ships_Cobra_Commodore|Cobra Commodore]], [[Z-ships_Porcupine|Porcupine]] &amp;amp; [[Z-ships_Python_Courier|Python Courier]]&lt;br /&gt;
|aut=Zieman&lt;br /&gt;
|date=2010-03-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9056 Z-GrOovY Griff's Cobra Mk3 Variety Pack] adds multiple Griff's Cobra Mk3 with alternate hull paintings&lt;br /&gt;
|aut=dertien&lt;br /&gt;
|date=2011-01-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9306 Z-GrOovY System Stations] adds Griff-based Tetrahedron, Octahedron, Coriolis, Dodecahedron, Icosahederon stations&lt;br /&gt;
|aut=dertien&lt;br /&gt;
|date=2011-03-03&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9146 Z-GrOovY Viper Raider] adds a new player ship based on the police Viper&lt;br /&gt;
|aut=dertien&lt;br /&gt;
|date=2011-02-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9056 Z-GrOovY YAH Sidewinder Variety Pack] adds multiple Your Ad Here! Constore defenders with alternate hull paintings&lt;br /&gt;
|aut=dertien&lt;br /&gt;
|date=2011-01-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9056 Z-GrOovY YellOo Cab Variety Pack] adds the Moray Starboat with taxi hull painting&lt;br /&gt;
|aut=dertien&lt;br /&gt;
|date=2011-01-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Work in Progress OXPs  ==&lt;br /&gt;
The following table contains OXPs that either have not yet been released by their authors but are already being discussed on the [http://www.aegidian.org/bb/viewforum.php?f=4 Expansion Pack Forum], or released OXPs that still have WIP status. Links get you either to the respective discussion or the Wiki page if it already exists.&lt;br /&gt;
{{OXPListTableHeader}}&lt;br /&gt;
&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[http://www.box.net/shared/moreq536ht Nexus missile]. Three versions of a multi-warhead missile. Largely like the anti-thargoid missile but not just for (against) thargoids.&lt;br /&gt;
|aut=UK_Eliter&lt;br /&gt;
|date=2011-07-31&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?t=8341 Animated Ships] adds animated butterflies flapping their wings as a demo&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-08-06&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9864 Cargo Scanner] scans targeted cargo containers to find out what they contain&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-05-17&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://www.aegidian.org/bb/viewtopic.php?t=8526 Comms Demo] provides a way to communicate with NPC ships&lt;br /&gt;
|aut=Kaks&lt;br /&gt;
|date=2009-10-26&lt;br /&gt;
|work=N}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.box.net/shared/0i2fnrc175t Katipo] adds a very fast, moderate maneuverability, low cargo ship with low thrust&lt;br /&gt;
|aut=Simon B&lt;br /&gt;
|date=2011-03-03&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9441 Miner Pod] breaks up asteroids and collects the splinters&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-03-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?t=8275 Mining] adds mines to protect and provide resources for to get gold&lt;br /&gt;
|aut=docwild&lt;br /&gt;
|date=2010-07-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Nuit Space Station OXP|Nuit Space Station]] is the newest creation of [[Isis Interstellar]]&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2009-11-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mission&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?p=130221#p130221 Oresrati Challenge] adds a fun mission to the loneliest system of the Ooniverse, Oresrati&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-04-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9946 Phantom] is a trader/fighter from [[Isis Interstellar]] with external missiles&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2011-05-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?p=138226#p138226 Shield Cycler] distributes shield energy between fore and aft shields&lt;br /&gt;
|aut=Lone_Wolf&lt;br /&gt;
|date=2011-05-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=5484 Solar System] adds extra planets and jump gates to a system&lt;br /&gt;
|aut=Frame&lt;br /&gt;
|date=2009-01-11&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9472 Sun Skimmer Pod] adds a pod that goes sun skimming and returns full of fuel&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-03-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9488 Target Tracker] aligns your ship on your target&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-03-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9353 Thor Class Supercarrier] adds a Navy Carrier as a replacement pack for the Behemoth and the Galactic Navy&lt;br /&gt;
|aut=dertien&lt;br /&gt;
|date=2011-03-03&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9242 Wormhole Drones] creates a path of worm holes to lead you to your destination system&lt;br /&gt;
|aut=Mauiby de Fug&lt;br /&gt;
|date=2011-02-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[http://www.aegidian.org/bb/viewtopic.php?t=8541 Zygoroids] add new beautifully textured asteroid models to the Ooniverse&lt;br /&gt;
|aut=ZygoUgo&lt;br /&gt;
|date=2010-10-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== OXPs with Problems ==&lt;br /&gt;
The following table contains OXPs that have problems eg. broken download, or have been written for versions of Oolite earlier than the current 1.75.2&lt;br /&gt;
{{OXPListTableHeader}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Amen Bricks Megaships|Amen Brick's Megaships]] adds [[Battleship]]s, [[Biodome]]s, [[Cruiseship]]s, [[Hospitalship]]s, [[Supercargo]]s, [[Superlifter]]s, and [[Yacht - Amen Class|Yacht]]s (This version 1.1 contains a corrupted shipData.plist)&lt;br /&gt;
|aut=Amen Brick&lt;br /&gt;
|date=2008-07-11}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Cataclysm OXP|Cataclysm]] takes up the threads of Constrictor Hunt and Thargoid Plans, and sends you on your biggest Navy mission yet&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2009-01-06&lt;br /&gt;
|work=N}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Kirin#Download|Kirin Sport]] adds a a smaller, faster, more agile - and less well armed - civilian variant of the [[Kirin]]&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2009-07-22&lt;br /&gt;
|work=N}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Localhero_OXP|Localhero]] adds a mission campaign in the first galaxies&lt;br /&gt;
|aut=Svengali&lt;br /&gt;
|date=2008-04-09&lt;br /&gt;
|work=N}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Orb]] adds a new alien race, which might help GalCop in the battle against the Thargoids.&lt;br /&gt;
|aut=Charlie&lt;br /&gt;
|date=2007-02-13&lt;br /&gt;
|work=N}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Personalities OXP|Personalities]] adds a bunch of unique, well-known personalities from the Bulletin Board to the Ooniverse&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2009-11-05&lt;br /&gt;
|work=N}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[[Save Anywhere]] allows you to save your game at any OXP Station&lt;br /&gt;
|aut=Frame&lt;br /&gt;
|date=2008-10-01&lt;br /&gt;
|work=N}}&lt;br /&gt;
|}&lt;br /&gt;
[[Category:Oolite expansion packs]]&lt;br /&gt;
[[Category:OXP Lists]]&lt;br /&gt;
[[Category:Factual]]&lt;/div&gt;</summary>
		<author><name>Mcarans</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.alioth.net/index.php?title=OXP_List&amp;diff=28666</id>
		<title>OXP List</title>
		<link rel="alternate" type="text/html" href="https://wiki.alioth.net/index.php?title=OXP_List&amp;diff=28666"/>
		<updated>2011-07-29T10:55:20Z</updated>

		<summary type="html">&lt;p&gt;Mcarans: /* Sortable Table of OXPs */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
== OXP Categories ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; width=&amp;quot;100%&amp;quot; style=&amp;quot;border-collapse: collapse; border-width: 1px; border-style: solid; border-color: #ffffff; table-layout: fixed; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; width=&amp;quot;70px&amp;quot; style=&amp;quot;margin: 0px; padding: 0px; border-width: 1px; border-style: solid; border-color: #ffffff; background-color: #e7e7ff; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot; |&amp;lt;p style=&amp;quot;font-size: 13px;&amp;quot;&amp;gt;Category&amp;lt;/p&amp;gt;&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;margin: 0px; padding: 0px; border-width: 1px; border-style: solid; border-color: #ffffff; background-color: #e7e7ff; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot; |&amp;lt;p style=&amp;quot;font-size: 13px;&amp;quot;&amp;gt;Description of OXP Category&amp;lt;/p&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Activities_OXPs|Activities]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Allow Commanders to carry out a new activity or task eg. racing, gas giant skimming, taking out loans&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Dockables_OXPs|Dockables]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Add new objects that the player can dock with eg. carriers, space bars, casinos, fuel stations. Also, see [[Oolite Stations]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Ambience_OXPs|Ambience]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Change or add to the scenery, visuals or sound effects eg. planet skins, add new planets/moons to systems, move suns further away, dim nebulae, add monuments&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Equipment_OXPs|Equipment]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Buy upgrades for your ship excluding weapons&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Mechanics_OXPs|Mechanics]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Change the game play in a specific way eg. alter market mechanics, add more pirates&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:HUDs_OXPs|HUDs]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Modifications of your dials, gauges and other read-outs&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Missions_OXPs|Missions]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|New missions for Commanders to undertake. For more information, see [[Oolite Missions]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Retextures_OXPs|Retextures]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Retexture existing objects, either by replacing or adding variations, but without adding objects that did not exist before&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Ships_OXPs|Ships]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|New ships, except dockable ships. Also, see [[Oolite Ships]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Systems_OXPs|Systems]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Alter multiple star systems in a number of ways eg. combinations of changing main station and local police ships, adding new stations, ships, activities, missions&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Weapons_OXPs|Weapons]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Addons for your ship for blowing up the baddies&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Misc_OXPs|Misc]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|OXPs that don't fit into the other categories eg. debug consoles, internationalisations, config mechanisms, demo OXPs&lt;br /&gt;
|}&lt;br /&gt;
OXP authors: if you are unsure how to categorise your OXP or if you wish to update the details of an OXP for an author who has disappeared, please seek advice on the [http://www.aegidian.org/bb/viewforum.php?f=4 Expansion Pack Forum] before proceeding. Please put your OXP in one category only. You can edit the section below to add your OXP.&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Sortable Table of OXPs ==&lt;br /&gt;
The following table is optimized for a horizontal screen resolution of at least 1280px so that all OXP descriptions fit on one line.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; width=&amp;quot;100%&amp;quot; style=&amp;quot;border-collapse: collapse; border-width: 1px; border-style: solid; border-color: #ffffff; table-layout: fixed; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;border-width: 1px; border-style: solid; border-color: #ffffff; background-color: #e7e7ff; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot; |The &amp;quot;C&amp;quot; column indicates compatibility with Oolite beta 1.75:&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Y&amp;quot;=compatible, &amp;quot;Y*&amp;quot;=compatible (but the OXP is not in full working order), &amp;quot;N&amp;quot;=incompatible,  blank=unknown/untested.&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;!-- KEEP DESCRIPTIONS (desc=...) ALPHABETICAL --&amp;gt;&lt;br /&gt;
&amp;lt;!-- KEEP LENGTHS OF DESCRIPTIONS TO THAT OF EXISTING ENTRIES OR LESS --&amp;gt;&lt;br /&gt;
{{OXPListTableHeader}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Accessories OXP|Accessories]] replaces the textures of all Stations and non-ship objects in Oolite with a more detailed and realistic look&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2010-06-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Accipiter]] is the market entry from Xeceesian shipyards, a strong &amp;amp; fast all purpose vessel for experienced commanders&lt;br /&gt;
|aut=CaptSolo&lt;br /&gt;
|con=Staer9, Griff&lt;br /&gt;
|date=2011-05-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Aegidian%27s Specials]] adds the powerful [[Mussurana]], the [[Asp (Oolite)#Notable features|Asp Mark II Special]], and a new cargo canister&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2009-07-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Aegidian%27s X-Ships]] adds [[Python ET Special]]s, [[Cobra Mk.2 (Oolite)|Cobra Mk II]]s, [[Taipan]]s, [[Asp (Oolite)#Notable features|Asp Mark II Special]]s, and [[Sidewinder (Oolite)#Notable features|Sidewinder Special]]s&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2009-04-29&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Pirate Clan Blitzspears|Amen Brick's Pirate Clan One: The Blitzspears]] adds the [[Assassin Blitzspear|Assassin]], the [[Hoodlum]], the [[Scoundrel]], and the [[Spiv]]&lt;br /&gt;
|aut=Amen Brick&lt;br /&gt;
|date=2008-06-30}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Amiga Replacement Sounds]] is based on the sound set used in the Amiga version of the original Elite&lt;br /&gt;
|aut=EAGLE 5&lt;br /&gt;
|date=2006-03-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Systems&lt;br /&gt;
|desc=[[Anarchies OXP|Anarchies]] overhauls legal ratings and spices up anarchies with [[Hacker Outpost]]s, [[Salvage Gang]]s, special stations &amp;amp; ships&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|con=Killer Wolf, Griff, Cdr. Wyvern, Murgh, Aegidian, 8-Bit Apocalypse&lt;br /&gt;
|date=2011-03-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9462 Another HUD] is based on Killer Wolf's Generic HUD&lt;br /&gt;
|aut=NorthenderPNE&lt;br /&gt;
|date=2011-03-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Aphid]] adds the stylish Aphid Escort Service&lt;br /&gt;
|aut=8-Bit Apocalypse&lt;br /&gt;
|date=2005-01-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Aquatics OXP|Aquatics]] adds the Aquarian Shipbuilding Corporation of Aqualina, G3 along with its ships and a mission&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-03-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Armoured Transport Type 1]] adds Gaundlet's [[Gaundlet Armoured Transport Type1|Armoured Transport Type 1]] and [[Gaundlet Armoured Escort Viper|Armoured Escort Viper]] that ferry valuables&lt;br /&gt;
|aut=Arexack Heretic&lt;br /&gt;
|date=2005-12-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Armoury OXP|Armoury]] adds AMS, captured Thargons, drones, probes, a missile rack, some bombs, and the missile machine&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-06-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[The Assassins Guild OXP|Assassins Guild]] adds 21 missions involving murder to order in Galaxy 7&lt;br /&gt;
|aut=Littlebear&lt;br /&gt;
|date=2011-05-03&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Asteroid Storm]] adds different types of asteroids &amp;amp; a mission where a station in G1 is threatened by a large asteroid strike&lt;br /&gt;
|aut=LittleBear, Charlie&lt;br /&gt;
|date=2011-01-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Aurora]] adds huge passenger ships for the wealthiest in society&lt;br /&gt;
|aut=pagroove&lt;br /&gt;
|con=Griff, Thargoid&lt;br /&gt;
|date=2010-11-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://www.mediafire.com/?fnc65em7uh5un1d Auto ECM] fires the ECM once when a missile is fired at the player's ship. See the [http://aegidian.org/bb/viewtopic.php?p=138124#p138124 BB] for more info&lt;br /&gt;
|aut=Switeck&lt;br /&gt;
|date=2011-05-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Auto eject OXP|Auto Eject]] ejects your escape pod automatically when your energy becomes too low&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2010-06-16&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Automatic Chaff System]] provides an enhanced chaff-based missile countermeasure system&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2010-06-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Baakili Far Trader]] adds a dockable alien ship&lt;br /&gt;
|aut=Zieman&lt;br /&gt;
|date=2010-09-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Bandersnatch]] adds a pirate capital vessel armed with 4 x fore lasers&lt;br /&gt;
|aut=Flying_Circus&lt;br /&gt;
|date=2009-11-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Beer Cooler]] allows you to fit your ship with a beer cooler&lt;br /&gt;
|aut=Maik&lt;br /&gt;
|date=2010-08-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Behemoth]] adds a dockable Navy cruiser carrying [[Navy Asp]]s and [[Navy Viper]]s&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2011-01-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[ADCK%27s Behemoths]] adds shadered versions of the [[Behemoth]],  [[Galactic Navy OXP|Galactic Navy]] ships and stations, and then some&lt;br /&gt;
|aut=ADCK&lt;br /&gt;
|con=Aegidian, pagroove, Nemoricus, Selezen, Simon B&lt;br /&gt;
|date=2010-04-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Behemoth Spacewar]] adds intelligence to the Behemoth and brings a combat with Thargoids&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2010-01-09&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[BGS|BGS - Background Set]] framework for images, sounds and ambient music&lt;br /&gt;
|aut=pagroove, Svengali&lt;br /&gt;
|date=2011-03-16&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[BigShips OXP|Big Ships]] ensures that large ships do not dock and controls population of systems with them&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2009-11-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Black Monk Monastery]] offers loans in advanced systems and adds the [[Black Monk Gunship]] to persecute defaulters&lt;br /&gt;
|aut=LittleBear&lt;br /&gt;
|date=2010-06-14&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[BlackjacksBullion OXP|Blackjack's Bullion]] starts in galaxy 2 at Telace as Commander Blackjack arrives via escape pod&lt;br /&gt;
|aut=Rustybolts&lt;br /&gt;
|date=2010-03-08&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[BlOomberg Markets]] varies the in-game economy by generating random events that affect commodity prices&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2011-03-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Boa II Clipper Class]] is a development of the Boa Class Cruiser, adding a third engine at the cost of cargo space&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2011-01-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Boomslang]] adds a mid-range multi-role ship. Used by pirates and traders alike&lt;br /&gt;
|aut=milinks, Jar&lt;br /&gt;
|date=2008-09-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Bounty Scanner]] adds bounty details (if any) to the targeting lock-box display when locked onto other ships&lt;br /&gt;
|aut=Frame&lt;br /&gt;
|date=2010-07-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[BountyStatus OXP|Bounty Status]] displays your current bounty (and your legal status) on the F5 manifest screen&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-05-08&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Breakable_'Standard'_Equipment_OXPs|Breakable 'Standard' Equipment]] makes some standard equipment such as HUD/Scanner damageable in combat&lt;br /&gt;
|aut=Capt. Murphy&lt;br /&gt;
|date=2011-07-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Bulk Haulers]] adds the [[Lynx Bulk Carrier (Oolite)|Lynx Bulk Carrier]], the [[Long Range Cruiser (Oolite)|Long Range Cruiser]], the [[Bulk Hauler]], and the [[Super Bulk Hauler]]&lt;br /&gt;
|aut=ADCK&lt;br /&gt;
|con=Aegidian, pagroove&lt;br /&gt;
|date=2010-04-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[BuoyRepair|Buoy Repair]] adds a [[Buoy Repair Facility]] and related ships to repair defect or destroyed nav-beacons&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|con=Svengali, Murgh, Zieman&lt;br /&gt;
|date=2011-06-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[[Cabal Common Library]] is a collection of snippets and helpers for OXPs&lt;br /&gt;
|aut=Svengali&lt;br /&gt;
|con=Cmd.Cheyd, PhantorGorth&lt;br /&gt;
|date=2011-07-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Caduceus]] adds the very expensive (and deadly) Caduceus&lt;br /&gt;
|aut=ClymAngus&lt;br /&gt;
|con=Cdr. Wyvern, another_commander, Eric Walch, Thargoid&lt;br /&gt;
|date=2010-12-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Capisastra]] adds [[Capisastra Defender]]s, [[Capisastra Hauler]]s, and [[Capisastra Warrior]]s&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|date=2006-01-12}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Captain Berf Engineer]] adds a voice for crew members&lt;br /&gt;
|aut=Captain Berf&lt;br /&gt;
|date=2009-12-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Captain Berf Pilot]] adds a voice for crew members&lt;br /&gt;
|aut=Captain Berf&lt;br /&gt;
|date=2009-12-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Captain Berf Pilot Alien]] adds a voice for crew members&lt;br /&gt;
|aut=Captain Berf&lt;br /&gt;
|date=2009-12-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Captain Berf Tactical Officer]] adds a voice for crew members&lt;br /&gt;
|aut=Captain Berf&lt;br /&gt;
|date=2009-12-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Cargo Shepherd OXP|Cargo Shepherd]] attracts cargo pods and holds them until you can scoop them, also includes a beacon&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-04-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://www.box.net/shared/4lphdkazs5 CB-HUD] features a HUD that changes based on installed equipment. See the [http://aegidian.org/bb/viewtopic.php?p=141035#p141035 BB post] for more information&lt;br /&gt;
|aut=Captain Beatnik&lt;br /&gt;
|date=2011-05-29&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Clear Skies OXP|Clear Skies]] reduces nebula effects and dims stars. Handy if your system is finding it hard to run Oolite&lt;br /&gt;
|aut=johnsmith&lt;br /&gt;
|date=2006-11-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Cobra 3.5|Chopped Cobra]] adds the Cobra Mk 3.5, a slightly faster and tougher variant with a reduced cargo bay&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2006-12-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9157 Cobra AC] is a faithful reproduction of the Cobra on the cover of the Dark Wheel novella with improved specs&lt;br /&gt;
|aut=dertien&lt;br /&gt;
|date=2011-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Cobra Clipper SAR]] adds a custom Cobra Mk III to rescue stranded Commanders&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2010-04-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Cobra III NjX]] adds a faster, tougher variation on the Classic Cobra Mk III&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|date=2006-08-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Cobra Mark III-XT]] Cobra3 with revamped architecture and upgraded systems to boost performance&lt;br /&gt;
|aut=CaptSolo&lt;br /&gt;
|date=2011-07-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.purgatori.net/cobra4.htm Cobra MkIV] is [[Isis Interstellar]]'s successor to the Cobra MkIII, available in trader and fighter variants&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2010-11-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[OosoundsCombined OXP|Combined Murgh, Wiggy &amp;amp; xaotik's sounds]] combines the 3 available packs from Murgh, Wiggy and xaotik&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|con=Murgh, Wiggy, xaotik&lt;br /&gt;
|date=2009-09-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Systems&lt;br /&gt;
|desc=[[Commies]] Adds [[Astro Mines]], [[CZGF|Factories]], [[SLAPU|Production Units]], [[Worker%27s Commuter|Commuters]] &amp;amp; special police ships to Communist systems&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|con=Ramirez, Murgh, johnsmith, HueijRevisited&lt;br /&gt;
|date=2010-05-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[CompactHUD|Compact HUD]] provides an alternative HUD with a clean look&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Condor]] adds a very powerful police and Navy Cruiser&lt;br /&gt;
|aut=Charlie&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2010-10-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Console HUD]] Azure themed semi-transparent HUD with balanced array of indicators&lt;br /&gt;
|aut=CaptSolo&lt;br /&gt;
|date=2011-07-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[http://www.box.net/shared/mq1mzoc79t Constrictor Mission Hints] adds more hints for those doing the native Constrictor Mission&lt;br /&gt;
|aut=Arexack Heretic&lt;br /&gt;
|date=2010-08-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Contractor ZZ1]] Very fast combat 'stealth' ship. Appears in-game as a Bounty-hunter and rarely as Pirate. Buyable&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2011-01-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Copperhead]] Redux of core ship in Archimedes Elite slightly modified. NPC and player buyable&lt;br /&gt;
|aut=CaptSolo&lt;br /&gt;
|date=2011-05-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Croydon Starsoarer]] adds a ship that is similar to the Asp in specification&lt;br /&gt;
|aut=SimonB&lt;br /&gt;
|con=pagroove&lt;br /&gt;
|date=2010-05-08&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[CustomSounds OXP|CustomSounds]] replaces/adds 40+ sounds, featuring music &amp;amp; extensive use of calm female computer voice for warnings&lt;br /&gt;
|aut=milinks&lt;br /&gt;
|date=2006-12-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[DWCobra|Dark Wheel Cobra]] is a custom Cobra Mk III model, as seen on the cover of the Elite Manual&lt;br /&gt;
|aut=ramon&lt;br /&gt;
|date=2006-11-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[[Debug OXP]] is a special OXP that enables JavaScript console support in test releases of Oolite (1.70 and later)&lt;br /&gt;
|aut=Ahruman&lt;br /&gt;
|date=2010-06-19&lt;br /&gt;
|work=N}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[http://deephorizonindustries.com/Gas_Giant_Skimming.html Deep Horizon - Gas Giants Skimming] allows to skim gas giants to refuel a ship or mine them for rare minerals&lt;br /&gt;
|aut=Cdr. Cheyd&lt;br /&gt;
|date=2010-07-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://deephorizonindustries.com/Lights_Down.html Deep Horizon - Lights Down] lowers ambient light within system to give more natural feel to planets and ships&lt;br /&gt;
|aut=Cdr. Cheyd&lt;br /&gt;
|date=2010-07-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://deephorizonindustries.com/Nav_Buoy.html Deep Horizon - Nav Buoy 1.0] replaces Witchpoint, Station, and other Nav Buoys with a new model&lt;br /&gt;
|aut=Cdr. Cheyd&lt;br /&gt;
|date=2011-07-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[http://deephorizonindustries.com/Pirate_Ambushes.html Deep Horizon - Pirate Ambushes] adds pirates that ambush the player upon exit from witchspace&lt;br /&gt;
|aut=Cdr. Cheyd&lt;br /&gt;
|date=2010-07-06&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://deephorizonindustries.com/DH-Systems.html Deep Horizon - Systems] textures the main planet of a system as well as adding moons and additional planets&lt;br /&gt;
|aut=Cdr. Cheyd&lt;br /&gt;
|date=2010-07-06&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Deep Space Dredger]] adds dockable Space Dredgers, defended by [[Sabre]] fighters, and a missile to salvage derelict ships&lt;br /&gt;
|aut=Sabre&lt;br /&gt;
|date=2011-01-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[DeepSpacePirates|Deep Space Pirates]] adds pirates and asteroids outside the space lanes&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2010-01-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Deepspace Ships#Deepspace HUDs|Deepspace HUD]] is an alternative HUD with two versions&lt;br /&gt;
|aut=DeepSpace&lt;br /&gt;
|date=2010-02-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Deepspace Ships]] replaces the default ships with new textures&lt;br /&gt;
|aut=DeepSpace&lt;br /&gt;
|date=2010-02-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Deposed OXP|Deposed]] is a series of missions set in Galaxy 4 for an experienced Commander&lt;br /&gt;
|aut=Cdr. Wombat&lt;br /&gt;
|con=Commander McLane, Eric Walch&lt;br /&gt;
|date=2009-03-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Systems&lt;br /&gt;
|desc=[[Dictators OXP|Dictators]] adds a range of ships and stations to each dictatorship and offers new trading opportunities to players&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2010-06-19&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Diso OXP|Diso]] adds extra planets and stations to the Diso system in Galaxy 1&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2010-11-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Display reputation OXP|Display Reputation]] lets you know your current reputations in the passenger ferrying and the cargo contract market&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2010-03-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Oolite Docking Clearance Protocol (v1.72 or later)|Docking Clearance]] enables the docking clearance protocol for all stations&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2008-12-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Griff Industries|Dodo Stations]] adds new textures for Dodecahedron stations&lt;br /&gt;
|aut=Griff, CaptKev&lt;br /&gt;
|date=2010-05-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Dr HUD OXP|Dr HUD]] is an alternative HUD&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2006-12-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Dragon|Dragon Assault Craft]] adds a heavy combat ship, and the Military Smart Missile, an improved hard head&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2008-11-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Dragon#Download|Dragon Military Missile]] adds an enhanced hardhead, seeks priority targets when ECM'd&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2008-11-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.mediafire.com/?rllzzcbkwgm Dragonfly/Firefly S.T] adds [[Dragonfly S.T]] &amp;amp; much faster [[Firefly S.T]]. Ideal small fast ships for pirates or bounty hunters&lt;br /&gt;
|aut=Rustybolts&lt;br /&gt;
|date=2009-10-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Eagle Mk II]] adds the cheap Eagle Mk II escort vessel in several different versions, including an enhanced SE&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|date=2006-03-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[ADCK%27s Eagles|Eagles Mk I to IV]] adds four Eagle Long Range Fighters to the game&lt;br /&gt;
|aut=ADCK&lt;br /&gt;
|date=2010-04-07&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Energy Equipment OXP|Energy Equipment]] adds a pylon-mounted automatically triggered top-up for when the juice runs low&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-03-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Escape Pod Locator OXP]] is equipment to allow tracking of escape pods in system&lt;br /&gt;
|aut=Capt Murphy&lt;br /&gt;
|date=2011-07-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Escort Contracts OXP|Escort Contracts 1.2]] allows players to enter into short-term escort contracts with NPC lone wolf traders&lt;br /&gt;
|aut=Capt. Murphy&lt;br /&gt;
|date=2011-07-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[ETT Homing Beacon]] marks a position in space by deploying a pylon-mounted beacon&lt;br /&gt;
|aut=Twisted&lt;br /&gt;
|con=Lone_Wolf&lt;br /&gt;
|date=2011-04-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Executive SpaceWays]] adds [[Delta Long-Range Escort|Delta]]/[[Gemini Escort|Gemini]] Escorts, [[Starseeker Personal Shuttle|Starseeker]]/[[Trident Executive Shuttle|Trident Exec]] Shuttles, [[Strelka Cruise Liner]]s&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2010-06-19&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.box.net/shared/moreq536ht#/shared/moreq536ht/1/71484311/786362645/1 Extra Thargoids] adds 2 types of Thargoid ships, each of which packs surprises. Replaces the 'Poet' Frigate OXP&lt;br /&gt;
|aut=UK_Eliter&lt;br /&gt;
|date=2011-07-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Systems&lt;br /&gt;
|desc=[[Factions OXP|Factions]] from anarchy, feudal, dictatorship &amp;amp; communist systems meet in multi-government systems and start fighting&lt;br /&gt;
|aut= m4r35n357&lt;br /&gt;
|date=2011-06-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Famous Planets OXP|Famous Planets]] adds unique textures, new descriptions, and theme tunes for many planets in G1 and G2&lt;br /&gt;
|aut=pagroove&lt;br /&gt;
|con=Cdr. Cheyd, Stromboli, Pangloss, CaptKev, Drew Wagar, Thargoid, Svengali, Lestradae, UK Eliter&lt;br /&gt;
|date=2010-09-30&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Famous Planets Liners OXP|Famous Planets Liners]] adds Spaceway Liners on the 4 spaceways from Lave to Zadies&lt;br /&gt;
|aut=pagroove&lt;br /&gt;
|con=Ramirez, Presti70, Thargoid&lt;br /&gt;
|date=2009-03-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Far Arm ships|Far Arm Ships]] adds [[Far Arm Sunracer|Sunracer]]s, [[Far Arm Scow|Scow]]s, [[Far Arm Tanker|Tanker]]s, [[Far Arm Corsair|Corsair]]s, [[Far Arm Dart|Dart]]s, [[Far Arm Hunter|Hunter]]s, [[Far Arm Cruiser|Cruiser]]s, [[Far Arm Titan|Titan]]s, [[Far Arm Manchi Vulture|Vulture]]s, and [[Far Arm Manchi Wasp|Wasp]]s&lt;br /&gt;
|aut=Zieman&lt;br /&gt;
|date=2010-10-02&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Far Star Murderer]] adds a mid-range fighter / trader, with a fair sized cargo bay&lt;br /&gt;
|aut=8-Bit Apocalypse&lt;br /&gt;
|date=2005-01-01&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://www.box.net/shared/d57y0uip74 Far Sun] places suns further away from the planet than standard Oolite&lt;br /&gt;
|aut=Kaks&lt;br /&gt;
|date=2010-05-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.box.net/shared/moreq536ht Fer de Lance 3G] adds player &amp;amp; NPC Fer de Lance versions with custom paint jobs &amp;amp; altered specs&lt;br /&gt;
|aut=UK_Eliter&lt;br /&gt;
|date=2011-07-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Fer de Lance NG]] adds a more powerful version of the Fer de Lance with several custom paint jobs&lt;br /&gt;
|aut=alien&lt;br /&gt;
|date=2005-03-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Ferdepai]] adds a new fighter / trader to Galaxy 2&lt;br /&gt;
|aut=johnsmith&lt;br /&gt;
|date=2006-12-17&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Systems&lt;br /&gt;
|desc=[[Feudal States]] adds the [[Jäger]], the [[Korvette]], the [[Zerstörer]], a [[Royal Hunting Lodge]] and other elements to feudal systems&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2011-05-30&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Fighter HUD (Oolite)|Fighter HUD]] is an alternative HUD&lt;br /&gt;
|aut=CaptKev&lt;br /&gt;
|date=2008-05-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Firewasp]] adds a fast interceptor&lt;br /&gt;
|aut=Draco_Caeles&lt;br /&gt;
|date=2006-05-10&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Fireworks OXP|Fireworks]] allows you a joyful celebration of whatever it is you want to celebrate&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-05-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Flight Log OXP|Flight Log]] adds a log of the last 10 systems visited&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-01-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Flying Dutchman OXP|Flying Dutchman]] adds the small chance to meet a Ghost Ship in the Ooniverse&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|con=Griff&lt;br /&gt;
|date=2011-04-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[[Freaky Thargoids OXP|Freaky Thargoids]] is a shader demonstration for Oolite&lt;br /&gt;
|aut=Ahruman&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2011-02-03&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Free Trade Zone]] adds an independent trading post of dubious legality to Multi-Government systems&lt;br /&gt;
|aut=Disembodied&lt;br /&gt;
|con=Commander McLane&lt;br /&gt;
|date=2010-10-08&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Frog Space Rickshaw]] adds a chatty space taxi service to the safer systems&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2006-01-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Fuel Collector OXP|Fuel Collector]] scoops fuel from killed ships and collects fuel while cruising, even in witch space&lt;br /&gt;
|aut=Frame&lt;br /&gt;
|con=Commander McLane&lt;br /&gt;
|date=2011-07-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Fuel Station OXP|Fuel Station]] adds fly-thru Fuel Stations and Fuel Satellites near the witchpoint and along route one&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-06-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Fuel Tank]] v2.2 mounts in place of a missile, to top up 3 light years of fuel&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2008-05-31&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Furball OXP|Furball]] adds barroom brawls that've got out of hand. Furious fugitives flee from pissed off police on the station's doorstep&lt;br /&gt;
|aut=Caracal&lt;br /&gt;
|con=m4r35n357&lt;br /&gt;
|date=2011-06-06&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Systems&lt;br /&gt;
|desc=[[Galactic Navy OXP|Galactic Navy]] adds more ships and stations to the arsenal of the Galactic Navy. Allows to join the Navy Reserves&lt;br /&gt;
|aut=Nemoricus&lt;br /&gt;
|date=2010-12-30&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[GalDrivePod]] A portable Galactic Hyperdrive unit, allowing you to complete the &amp;quot;Lost Worlds Grand Tour&amp;quot;&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2011-03-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://www.boxcn.net/shared/5dqx22u06i Galaxy Info] helps you search for systems by criteria you select and will try to locate the nearest one&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-04-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Gates OXP|Gates]] ads short-cut jump gates to suitable systems, speeding journeys between the main station and witchpoint&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-04-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Generation Ships OXP|Generation Ships]] adds encounters with the mythical Generation Ships from time to time&lt;br /&gt;
|aut=Draco_Caeles&lt;br /&gt;
|con=Commander McLane&lt;br /&gt;
|date=2011-04-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Globe station|Globe Station]] is a new type of stations that appears in advanced systems&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|con=Svengali&lt;br /&gt;
|date=2009-10-22&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Greek Ships OXP|Greek Ships]] adds [[Penelope Class Freighter]]s, [[Telemachus Class Escort]]s, and [[Ulysses Class Interceptor]]s&lt;br /&gt;
|aut=8-Bit Apocalypse&lt;br /&gt;
|date=2005-07-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Griff ArcElite|Griff's ArcElite]] adds versions of native Oolite ships textured &amp;amp; shaded to resemble the Acorn Archimedes version of Elite&lt;br /&gt;
|aut=Griff&lt;br /&gt;
|date=2008-09-29&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Griff Boa]] contains the famous Griff Boa&lt;br /&gt;
|aut=Griff&lt;br /&gt;
|date=2010-06-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://www.boxcn.net/shared/k2lvh3enuy Griff's Explosion Debris] adds new alloy &amp;amp; debris models to exploding ships&lt;br /&gt;
|aut=Griff&lt;br /&gt;
|con=Thargoid&lt;br /&gt;
|date=2009-02-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Griff Krait]] adds a heavily modified Krait, similar in design to the Griff Boa&lt;br /&gt;
|aut=Griff&lt;br /&gt;
|date=2010-06-17&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Griff Industries|Griff's Normalmapped Ships]] adds some of the best looking ships, stations, and flotsam available in Oolite&lt;br /&gt;
|aut=Griff&lt;br /&gt;
|date=2011-04-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Griffin Two (Oolite)|Griffin Two]] adds the Griffin Mk II from Frontier&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2005-10-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Gritty Coriolis OXP|Gritty Coriolis]] alternates the Coriolis stations with two elaborate gritty Corioli&lt;br /&gt;
|aut=xaotik&lt;br /&gt;
|date=2006-02-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://wiki.alioth.net/images/2/2d/G-HUD_Mk2.oxp.zip G-HUD Mk2] adds an alternative HUD&lt;br /&gt;
|aut=Gunney Plym&lt;br /&gt;
|date=2008-07-08&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Halsis]] features a female cockpit voice, sometimes called Hal's Hot Sister&lt;br /&gt;
|aut=Ovvldc&lt;br /&gt;
|date=2006-08-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[BoyRacer|Hatchling BoyRacers]] adds the  talkative (and often insulting) [[BoyRacer]]s to more advanced systems&lt;br /&gt;
|date=2006-01-13&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Staer9 haulerp30|Hauler P30]] is a very large cargo ship made by Staer9 Industries&lt;br /&gt;
|date=2011-05-11&lt;br /&gt;
|aut=Staer9&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Hawksound]] features a quality female computer voice, new weapon, damage and some station interface sounds&lt;br /&gt;
|aut=Hawkstrom&lt;br /&gt;
|date=2008-11-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Herald Military Gunboat|Herald]] adds the [[Herald Military Gunboat]], a powerful police and Navy interceptor&lt;br /&gt;
||aut=Flying_Circus&lt;br /&gt;
|date=2005-01-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Hired Guns OXP|Hired Guns]] adds escort ships that can be contracted to accompany you on your next journey&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-02-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Hognose|Hognose Tugships]] adds the [[Hognose]], a chatty tug ship that can be seen towing broken down ships&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|con=Jonnycuba&lt;br /&gt;
|date=2006-03-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[HoOpy Casino]]s appear near the station in advanced systems. You can win or lose credits in games of chance&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2010-06-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Hotrods OXP|Hotrods]] adds custom paint jobs to classic Elite ships, racing vehicles, and a space gang that doesn't like the player&lt;br /&gt;
|aut=Kaks&lt;br /&gt;
|con=Arexack_Heretic, Murgh&lt;br /&gt;
|date=2009-03-16&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[HyperCargo OXP|HyperCargo]] adds an extended and expanded cargo handling system&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-09-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Hyperradio js OXP|Hyperradio]] is an expandable music-player&lt;br /&gt;
|aut=Svengali&lt;br /&gt;
|date=2011-02-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Icarus (Oolite)|Icarus]] adds a small fighter / trader based on blueprints from the lost Solice system&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|date=2007-07-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Illegal_Goods_Tweak_OXP|Illegal Goods Tweak 1.4]] adds interactions with Galcop customs on docking at a main station with Contraband in the hold&lt;br /&gt;
|aut=Capt. Murphy&lt;br /&gt;
|date=2011-06-17&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Illicit Unlock OXP|Illicit Unlock]] allows the player to fly all the classic Elite ships&lt;br /&gt;
|aut=tgape&lt;br /&gt;
|date=2005-10-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Griff_Industries#Related_OXP's_by_Other_Authors|Illicit Unlock - Griff Version]] allows the player to fly [[Griff Industries#Griff's Normalmapped Ships OXP|Griff's]] pirate/viper Ships&lt;br /&gt;
|aut=ADCK&lt;br /&gt;
|con=dertien&lt;br /&gt;
|date=2011-02-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[I_Missile|I_Missile]] Very fast, very destructive weapon at an affordable price&lt;br /&gt;
|aut=CaptSolo&lt;br /&gt;
|date=2011-07-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Imperial Courier (Oolite)|Imperial Courier]] adds the powerful Imperial Courier from Frontier, constructed by [[Seldar Shipyards]]&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|con=Commander McLane&lt;br /&gt;
|date=2007-06-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Imperial Trader (Oolite)|Imperial Trader]] adds the powerful Imperial Trader from Frontier&lt;br /&gt;
|aut=ADCK&lt;br /&gt;
|date=2010-06-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Interstellar help OXP|Interstellar Help]] allows you to help out traders who got stuck in interstellar space without fuel&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-03-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Ionics OXP|Ionics]] adds a series of missions featuring the Ionics Company of Zaria, the Ramaza Liberation Front and The Link&lt;br /&gt;
|aut=Galileo&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2010-08-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[IronHide OXP|IronHide]] introduces the new range of IronHide ship armour from the Aquarian Shipbuilding Corporation&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-02-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Iron Raven]] is a multi-stage mission to investigate a dangerous conspiracy on behalf of GalCop High Command&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2011-04-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Ixian Ships|Ixian Military Ships]] adds Ixian [[Ixian Battle Cruiser|Battle Cruiser]]s, [[Ixian Bezerka|Bezerka]]s, [[Ixian Gunship|Gunship]]s and [[Ixian No-Ship Mark I|No-Ship]]s from Dune&lt;br /&gt;
|aut=8-Bit Apocalypse&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2009-03-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Ixian Ships#Ixian Freighter|Ixian Freighter]] adds a civilian freighter to the universe&lt;br /&gt;
|aut=8-Bit Apocalypse&lt;br /&gt;
|date=2005-01-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Jabberwocky]] adds the powerful Jabberwocky fighter / trader&lt;br /&gt;
|aut=Flying_Circus&lt;br /&gt;
|date=2006-03-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[JellyBaby Dispenser]] adds a handy Jellybaby Dispenser for your cockpit&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2011-03-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Kestrel &amp;amp; Falcon OXP|Kestrel &amp;amp; Falcon]] adds buyable Star Wars style [[Falcon_%28Oolite%29|Falcon]] for pirates/traders and the [[Kestrel]], a police/navy interceptor&lt;br /&gt;
|aut=Charlie&lt;br /&gt;
|con=Kaks&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Killer_Wolf's_Dynamic_HUD|Killer Wolf's Dynamic HUD]] adds a version of the dynamic HUD first seen in Killer Wolf's Werewolf ships, to all ships&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|con=Thargoid&lt;br /&gt;
|date=2010-07-08&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Killit_OXP|Killit]] adds a bunch of insane super weapons&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-05-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Kirin]] adds a heavy military hauler, CV &amp;amp; XM versions used by both pirates &amp;amp; traders&lt;br /&gt;
|aut=ClymAngus&lt;br /&gt;
|con=Cdr. Wyvern&lt;br /&gt;
|date=2009-09-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Klepto-HUD OXP|Klepto-HUD]] is a different take on a HUD with precise crosshairs&lt;br /&gt;
|aut=Kleptoid&lt;br /&gt;
|date=2006-03-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://sancho.dk/oolite/lane_legal.zip ''Lane Legal Racers''] adds NPC versions of [[Krait]]s, [[Mamba]]s, and [[Sidewinder]]s from different [[Racers#Listing_of_sponsored_teams|racing teams]]&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-09-27&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Lave OXP|Lave]] is a system make-over for Lave, adding all features described in The Dark Wheel novella included with original Elite&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2009-12-31&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Lave Academy OXP|Lave Academy]] adds Lave Academy Station above Lave &amp;amp; other planets, with 3 mini-games to test Commanders' skills&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-06-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[http://www.boxcn.net/shared/9q1cbydgan LinkG7] is a mission in Galaxy 7&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-02-16&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Llama]] adds the Llama fighter / trader. Updated from the version of Oosat1 to fix a small bug&lt;br /&gt;
|aut=Flying_Circus&lt;br /&gt;
|date=2006-02-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://www.boxcn.net/shared/jtpt2vlol5 Long Range Target Scanner] shows all ships currently in your system and allows to target them&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-05-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[LongWay_OXP|Long Way Around]] adds a transport mission well suited to the novice in Galaxy 1&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2009-04-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Longshot]] adds the Longshot fighter / trader, regarded by many as a cheaper alternative to the Cobra Mk III&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Lovecats.oxp|Lovecats]] is a mission about love &amp;amp; betrayal amongst the feline races of Galaxy 4. Fast ship &amp;amp; hard heart required!&lt;br /&gt;
|aut=johnsmith&lt;br /&gt;
|date=2011-07-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Second-hand ships|M-Pack (rusties)]] adds rusty banger versions of all Classic Elite ships in poor condition but still can haul cargo&lt;br /&gt;
|aut=murgh&lt;br /&gt;
|date=2006-01-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Manta]] adds the Manta light escort craft&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Marett Space Corporation OXP|Marett Space Corporation]] releases [[Adder Mk II]], [[Mosquito Trader]], [[Mosquito Sport]], new fighters / medium traders&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://www.crimsonforge.co.uk/cloister/MedusaHud.oxp.zip Medusa HUD] is an alternative HUD&lt;br /&gt;
|aut=ClymAngus&lt;br /&gt;
|date=2009-01-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Mega-Walnut Dashboard OXP|Mega-Walnut Dashboard]] is a generic version of the fabled Fer de Lance HUD&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2005-07-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Merlin_(Oolite)|Merlin]] Ships are interceptors used by the Police &amp;amp; Navy, but also available on the open market&lt;br /&gt;
|aut=Charlie&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[MildAudio]] Sound Set&lt;br /&gt;
|aut=xaotik&lt;br /&gt;
|date=2006-02-15&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Military_Fiasco|Military Fiasco]] adds a navy mission for Commanders with &amp;gt; 1,000 kills. Also equips Navy with powerful cruisers&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2011-01-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Military station|Military Station]] adds well armed Military Stations to the more advanced systems&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Military Stingray Mk. II|Military Stingray]] adds an ex-military ship that may show up in pirate hands or for the player to buy&lt;br /&gt;
|aut=CaptKev&lt;br /&gt;
|date=2007-03-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Milspec HUD|Milspec HUD]] is an alternative HUD with targeting aids and an emphasis on functionality&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2010-07-08&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Misjump_Analyser|Misjump Analyser]] scans witchspace &amp;amp; on detection of disturbances sounds an alarm &amp;amp; logs location of disturbance&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2010-05-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?p=135619#p135619 Misjump Inducer] can turn on/off misjumps on demand&lt;br /&gt;
|aut=Switeck&lt;br /&gt;
|date=2011-04-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Missile_Analyser|Missile Analyser]] scans incoming missiles &amp;amp; sets target to incoming missile when it is no standard missile&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2010-05-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Missiles_and_Bombs|Missiles &amp;amp; Bombs]] adds a wide variety of missiles &amp;amp; bombs that are are available to player &amp;amp; NPCs alike&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2009-12-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Missionaries OXP|Missionaries]] adds clerics of four faiths who spam Commanders with requests to worship their Gods&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Moccasin]] adds light escort craft from Xeceesian Shipyards modeled after ArcElite core ship&lt;br /&gt;
|aut=CaptSolo&lt;br /&gt;
|date=2011-06-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Mod-HUD]] is a slight modification / re-organization of the standard Oolite HUD without surround boxes&lt;br /&gt;
|aut=CaptSolo&lt;br /&gt;
|date=2011-05-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/monument.zip Monument] sometimes adds a monument to famous Commanders close to the Sun&lt;br /&gt;
|aut=dajt&lt;br /&gt;
|date=2005-05-28&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Morrigan]] adds a vast trade ship to the Universe&lt;br /&gt;
|aut=Flying_Circus&lt;br /&gt;
|date=2009-12-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Oosounds2_OXP|''Murgh's Replacement Sounds'']] contains 10 new sounds&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2005-08-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Murgh_Xships OXP|Murgh's X-Ships]] adds [[Bandy-Bandy]], [[Chuckwalla]], [[Eel Rapier]], [[Taipan]] (fast courier craft &amp;amp; 2 light escort ships)&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2009-09-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[NavalGrid OXP|Naval Grid]] enhances recharging rates by linking the naval energy unit to military-boosted shields&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-03-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Neolite Ships]] is an Oolite ships replacement set&lt;br /&gt;
|aut=SimonB&lt;br /&gt;
|date=2009-07-11&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/newships.oxp.zip ''New Ships''] adds [[Hamadryad]], [[Josher]], [[Naga]], [[Ringhals]] (mining and trade ships from previous versions of Elite)&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2006-05-15&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/hud_ng.oxp.zip NG HUD] is an alternate HUD. All standard functions, but with a personal view&lt;br /&gt;
|aut=alien&lt;br /&gt;
|date=2005-03-06&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[NPC-shields OXP|NPC-shields]] gives shields to NPCs, together with a nice glow effect&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-04-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://wiki.alioth.net/index.php/Numeric_Style_HUDs Numeric Style HUDs] New invention/numeric gauges.[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9977 Info]&lt;br /&gt;
|aut=CommonSenseOTB&lt;br /&gt;
|date=2011-06-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/nuvipers.zip Nu Vipers] increases the types of Viper patrol ships with [[GalCop Viper Mark II]], [[GalCop Viper Cruiser]]&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Nukes.oxp|Nuclear Torpedos]] adds some powerful, but slow moving, missiles&lt;br /&gt;
|aut=E. Walch, Cdr. Wyvern&lt;br /&gt;
|date=2010-06-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Offender traders OXP|Offender Traders]] makes some traders into offenders/fugitives&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-04-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Old Ships]] adds Elite-A [[Bushmaster Miner]]s, [[Cat (Oolite)|Cat]]s, [[Chameleon (Oolite)|Chameleon]]s, [[Ghavial (Oolite)|Ghavial]]s, [[Iguana (Oolite)|Iguana]]s, [[Monitor (Oolite)|Monitor]]s, [[Ophidian (Oolite)|Ophidian]]s, [[Salamander (Oolite)|Salamander]]s&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2006-08-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Old Ships 2010]] is a retextured version of [[Old Ships]], adding the bonus Monitor 2 ship&lt;br /&gt;
|aut=pagroove&lt;br /&gt;
|con=Murgh, ADCK, Simon B, Lestradae&lt;br /&gt;
|date=2011-02-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Oo-Haul]] adds vast bulk [[L-Crate Hauler]]s to the space lanes and offers missions at [[Your Ad Here!|constores]] to safely escort them&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|con=Eric Walch, Ark&lt;br /&gt;
|date=2009-02-21&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[ooCheat_OXP|ooCheat]] adds a cheat menu to the game&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-02-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[http://www.box.net/shared/rrlm77ztzm Oolite en français] is a French Oolite localization&lt;br /&gt;
|aut=Pierre-Olivier&lt;br /&gt;
|date=2009-07-12}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[http://marc-schaffer.ch/data/OoliteGerman_V0.3.zip Oolite auf Deutsch] is a German Oolite localization&lt;br /&gt;
|aut=SwissMäc&lt;br /&gt;
|date=2009-06-02&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[http://www.box.net/shared/p3engis1ds Oolite Italiano] is an Italian Oolite localization&lt;br /&gt;
|aut=another_commander&lt;br /&gt;
|date=2010-06-15&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=Oolite in Russian: [http://www.roolite.org Roolite.org] provides localizations of Oolite 1.74.2 and some OXPs. Also check [http://www.elite-games.ru/conference/viewtopic.php?t=48476&amp;amp;start=0 Elite Games]&lt;br /&gt;
|aut=Seventh&lt;br /&gt;
|date=2009-03-26&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://www.box.net/shared/x9u5xoulkq Orbits] positions planets on orbits around the sun&lt;br /&gt;
|date=2010-07-01&lt;br /&gt;
|aut=Ebi&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Ore Processor]] extracts valuable materials from asteroid fragments when mounted to a ship's fuel scoop&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|con=Ark, Kaks, Eric Walch&lt;br /&gt;
|date=2011-01-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Orisis]] BigTraders are new passenger liners that ferry passengers around&lt;br /&gt;
|aut=pagroove&lt;br /&gt;
|con=ADCK, Thargoid&lt;br /&gt;
|date=2010-01-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Outrider (Oolite)|Outrider]] is a medium fighter produced by the [[Taranis Corporation HQ (Oolite)|Taranis Corporation]]&lt;br /&gt;
|aut=Roberto&lt;br /&gt;
|date=2006-08-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[[OXPConfig]] provides means to configure supported OXPs, to recognize errors, or to avoid clashes&lt;br /&gt;
|aut=Svengali&lt;br /&gt;
|date=2011-07-16&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[P.A. Groove Stations OXP|P.A. Groove Stations]] adds lots of different types of Coriolis and Dodec Stations&lt;br /&gt;
|aut=pagroove&lt;br /&gt;
|con=Griff, Commander McLane&lt;br /&gt;
|date=2010-04-16&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Pallas]] adds a fast but lightly shielded fighter.&lt;br /&gt;
|aut=Charlie&lt;br /&gt;
|con=Svengali&lt;br /&gt;
|date=2010-12-02&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Pelamis]] adds the Pelamis trade ship&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2006-04-24&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Phoenix]] is a strange ship, built from salvaged parts from various Serpent Class ships&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2007-01-17&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://wiki.alioth.net/index.php/Pie_Chart_Style_HUDs Pie Chart Style HUDs] New invention=&amp;gt;pie gauges.[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9788 Info]&lt;br /&gt;
|aut=CommonSenseOTB&lt;br /&gt;
|date=2011-05-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Pirate Coves OXP|Pirate Coves]] adds rock hermits that have been taken over by pirates in more dangerous systems&lt;br /&gt;
|aut=lazygun&lt;br /&gt;
|date=2011-07-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/piratetraps.oxp.zip Pirate Traps] are dummy traders which transmit details of pirates firing on them to the police&lt;br /&gt;
|aut=popsch&lt;br /&gt;
|date=2006-01-04&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Planetfall_OXP|Planetfall]] allows the player to land on and trade at the planets and moons of each system&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-04-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Pods_OXP|Pods]] adds fuel, missile, bulk &amp;amp; empty cargo pods and pods which jam, explode, have trumbles or take a few scoops&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-03-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Police_IFF_Scanner_Upgrade|Police IFF Scanner Upgrade]] highlights offender and fugitive ships with custom IFF scanner colours&lt;br /&gt;
|aut=Capt. Murphy&lt;br /&gt;
|date=2011-06-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Pteradyne Technologies Ships OXP|Pteradyne Technologies Ships]] adds the [[Excalibur]], a buyable combat ship and the [[Paladin]], a military version&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2006-12-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://www.boxcn.net/shared/xccp8ml5cq Pylon Based Equipment Remover] allows to remove a selected piece of equipment from your pylons&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-04-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Python Class Cruiser]] is a large powerful trade ship, which can also hold its own in battle&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2007-07-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/racers.oxp.zip Racers] adds [[Chicaneer Mk II]], [[Chicaneer Mk IV]], [[Dragster Mk I]], and [[Dragster Mk II]] racing ships&lt;br /&gt;
|aut=murgh&lt;br /&gt;
|date=2006-01-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Railgun OXP|Railgun]] introduces a revolutionary new weapons system to the Ooniverse&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-05-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Ramon's Anaconda]] is a fantastic re-imagining of the Anaconda freighter. Check out its special features&lt;br /&gt;
|aut=Ramon&lt;br /&gt;
|con=Griff&lt;br /&gt;
|date=2009-04-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Random_Docking_Music_OXP|Random Docking Music]] plays a random music track from a pre-set list on activating docking computers&lt;br /&gt;
|aut=Frame&lt;br /&gt;
|date=2010-05-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Random Hits OXP|Random Hits]] adds [[Space Bar|seedy space bars]] to anarchy systems that offer large bounties on the galaxy's Most Wanted Criminals&lt;br /&gt;
|aut=LittleBear&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2011-03-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://terrastorage.ath.cx/Marmagka/e8e9ce360da6bb40f5952cbe00f02501/RedSet.zip RedSet] contains red-themed backgrounds for the UI screens&lt;br /&gt;
|aut=another_commander&lt;br /&gt;
|date=2010-06-18&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.purgatori.net/reduxedvamps.htm Reduxed Vampires] adds reworked versions of the Vampire Mk I and Mk II and a Reaper &amp;quot;Gold Edition&amp;quot;&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2010-10-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[RegistrationID|Registration ID]] adds ID tags to all Oolite standard ships&lt;br /&gt;
|aut=Frame&lt;br /&gt;
|date=2010-02-28&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Remorse_Of_Conscience_v2|Remorse Of Conscience]] is a trade ship with a large hold, that can hold its own in combat&lt;br /&gt;
|aut=8-bit Apocalypse&lt;br /&gt;
|date=2005-02-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Renegade Pirates OXP|Renegade Pirates]] adds rare, very well-armed, high bounty pirate versions of Classic Elite ships&lt;br /&gt;
|aut=LittleBear&lt;br /&gt;
|con=Aegidian, Griff&lt;br /&gt;
|date=2006-12-03&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/RVandGS.zip Renegade Viper + Grass Snake] adds [[Renegade Viper|stolen Vipers]] which earn large bounties &amp;amp; [[Grass Snake]], a large pirate trade ship&lt;br /&gt;
|aut=8-bit Apocalypse&lt;br /&gt;
|date=2004-11-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Repair_Bots_OXP|Repair 'Bots]] adds a pylon mounted canister of repair nanobots which attempt to fix damaged equipment in mid-flight&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-02-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Ring_Racer_OXP|Ring Racer]] adds the Corporate Systems Ring Racing League to Galaxy 1&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-04-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Rock Hermit Locator]] adds equipment to locate Rock Hermits&lt;br /&gt;
|aut=Frame&lt;br /&gt;
|date=2011-03-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Saleza Aeronautics]] adds [[Bellatrix Cruiser]]s, [[Rigel Bomber|Rigel Tactical Bomber]]s, and [[Saiph Interceptor]]s to high tech corporate systems&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2010-10-24&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Santa]] adds very rare Santa Sledge to space lanes escorted by plasma gun toting reindeer space bikers!&lt;br /&gt;
|aut=Griff&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2010-05-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.purgatori.net/scorpius.htm Scorpius] adds a heavily armoured private trading and transport vessel, protected by Vampire escorts&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|con=Griff&lt;br /&gt;
|date=2011-02-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Scourge of the Black Baron]] features combat &amp;amp; transport Galaxy 1 missions&lt;br /&gt;
|aut=Rxke&lt;br /&gt;
|con=Kaks, Thargoid&lt;br /&gt;
|date=2010-08-07&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Scout]] is a cheap but good looking ship from Staer9 that shares a lot of technology with the [[Xeikil]]&lt;br /&gt;
|aut=Staer9&lt;br /&gt;
|date=2011-05-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Second Wave OXP|Second Wave]] adds variants of Thargoid Warship, Thargon Robot Fighter and alien ships&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-06-06&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Selezen's S-Ships]] adds [[GalCop SWAT Viper]]s and [[Oresrian Trader]]s&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|date=2007-07-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Sell equipment OXP|Sell Equipment]] allows for small fee, resale of equipment at 60% price at suitable tech level world&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-02-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[[Shady Cobra OXP|Shady Cobra]] adds shader effects to Cobra Mk III&lt;br /&gt;
|aut=Ahruman&lt;br /&gt;
|date=2007-07-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Shady Sungs]] adds replacement textures for all Classic Elite Ships&lt;br /&gt;
|aut=Sung, ADCK&lt;br /&gt;
|date=2010-05-21&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://wiki.alioth.net/index.php/Shield_Equalizer_%26_Capacitors_OXP Shield Equalizer] balances shield energy automatically. [http://wiki.alioth.net/index.php/Shield_Equalizer_%26_Capacitors_OXP Capacitors] store unused shield energy for use later&lt;br /&gt;
|aut=CommonSenseOTB&lt;br /&gt;
|date=2011-05-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Skrounk All-Stars Limited]] adds [[All Stars Large Freighter|Large Freighter]], [[Seymour Class Sled]], [[Starbelly Class Sled]], [[Starhawk]] &amp;amp; [[Starwolf_Mark_I|Starwolf Mk I]]&lt;br /&gt;
|aut=goji62&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Smivs%27_ShipSet|Smiv's Shipset 3.0]] re-textures the standard Oolite ships beautifully with a realistic look &amp;amp; non-shader lighting effects&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2010-12-08&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Snark]] is a powerful fighter/trader, often used by pirates and bounty hunters&lt;br /&gt;
|aut=Flying_Circus&lt;br /&gt;
|date=2006-06-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=10515 Sniper Sight] is equipment to help with long distance targeting&lt;br /&gt;
|aut=Wildeblood&lt;br /&gt;
|date=2011-07-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=10176 Sniper Scope MilHUD integrated] is an version of MilHUD with integrated Sniper Sight functionality&lt;br /&gt;
|aut=Wildeblood&lt;br /&gt;
|date=2011-06-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Snoopers]] adds the galactic news network channels&lt;br /&gt;
|aut=DaddyHoggy&lt;br /&gt;
|con=Disembodied, Drew, Svengali&lt;br /&gt;
|date=2011-05-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Solid Gold Cobra Mk.3]] is a limited edition Cobra Mk3 to celebrate its 25 years anniversary&lt;br /&gt;
|aut=ADCK&lt;br /&gt;
|date=2010-06-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[http://www.purgatori.net/Sothis.htm Sothis Space Station] is a station from [[Isis Interstellar]] with a compact design of comparable size to a standard Coriolis&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2010-08-08&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Spearhead Interceptor Mk.I]] is a pure fighter, fast &amp;amp; nippy but with weak shields, no cargo bay. Can be twitchy to fly&lt;br /&gt;
|aut=Randell&lt;br /&gt;
|date=2006-07-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[S.I.R.F.|Special Interstellar Repair Facilities]] offer different trading strategies &amp;amp; repair facilities on uncommon trading routes&lt;br /&gt;
|aut=Tinker&lt;br /&gt;
|date=2010-07-02&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.purgatori.net/spectres.htm Spectre] adds [[Isis Interstellar]]'s Vampire Mk V, a secret military vessel fighting Thargoids in witch space&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2011-01-16&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Spy Hunter OXP|Spy Hunter]] is a mission for Galactic Navy for Commander with rating of 'Dangerous' or above&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|date=2009-04-11&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Staer9 Spectre]] is a cheap small fighter with high maneuverability that flopped in the market&lt;br /&gt;
|aut=Staer9&lt;br /&gt;
|date=2011-05-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Star-Jelly]] Beautiful translucent organisms sometimes found in Asteroid fields&lt;br /&gt;
|aut=Smivs,Staer9&lt;br /&gt;
|date=2011-05-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Star Wars Ships]] adds [[A-Wing]], [[B-Wing]], [[Lambda Shuttle]], [[Tie-Fighter]], [[Tie-Interceptor]], [[X-Wing]], [[Y-Wing]]&lt;br /&gt;
|aut=Azzameen&lt;br /&gt;
|date=2006-05-31&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Status Quo Q-bomb OXP|Status Quo Q-bomb]] changes the behaviour of Q-bombs according to the [[Status Quo]] novel&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-02-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[S.T.E]] is a step up from the Cobra III with improved trading capabilities and increased speed&lt;br /&gt;
|aut=Rustybolts&lt;br /&gt;
|date=2009-07-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Stealth OXP|Stealth]] is a small G3 mission showcasing new scanner capabilities &amp;amp; introducing stealth ships&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-03-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://www.purgatori.net/Steampunk%20HUD.htm Steampunk HUD] adds a steampunk style HUD by [[Isis Interstellar]]&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2010-01-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Stellar Serpents OXP|Stellar Serpents]] adds huge space-born serpent monsters which move from system to system and are good hunting prey&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-07-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[http://sancho.dk/oolite/sunskimmers.zip Sunskimmers] adds ships to the sun/planet corridor&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-08-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[SuperCobra]] is larger, faster with stronger hull than Cobra Mk III&lt;br /&gt;
|aut=8-Bit Apocalypse&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2010-10-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Superhub]] from GASEC is the first station that is capable of transporting itself to its destination&lt;br /&gt;
|aut=P.A. Groove&lt;br /&gt;
|date=2009-11-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Swift]] is a very fast ship often used by pirates or bounty hunters with limited cargo space &amp;amp; nominal shields&lt;br /&gt;
|aut=Charlie&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Switeck's Mod OXP|Switeck's Mod]] rebalances ships &amp;amp; market prices. Adds Medium, Hard, and Harder Jameson saves&lt;br /&gt;
|aut=Switeck&lt;br /&gt;
|date=2011-01-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[System Demux (Oolite)|System Demux]] textures home planet, adds planet/moon combination to systems&lt;br /&gt;
|aut=DrBeeb&lt;br /&gt;
|date=2010-07-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[System Redux (Oolite)|System Redux]] v1.2 textures home planet, adds planet/moon combination to systems&lt;br /&gt;
|aut=CaptKev&lt;br /&gt;
|date=2011-02-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://www.box.net/shared/r05ub873b5 TAF Reset] resets the Time Acceleration Factor (TAF) to 1.0 upon docking&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2009-09-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Taranis OXP|Taranis]] is a mission for law abiding Commanders with rating of Competent+. Adds [[Taranis Corporation HQ (Oolite)|Taranis Corporation HQ]]&lt;br /&gt;
|aut=Roberto&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2009-10-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Target_Autolock_OXP|Target Autolock]] updates [[Scanner Targeting Enhancement]] to auto-lock onto attacking ships&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-02-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Target Range OXP|Target Range]] is found in all rich systems with stable governments&lt;br /&gt;
|aut=Caracal&lt;br /&gt;
|date=2010-07-24&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Target Reticle]] updates [[Scanner Targeting Enhancement]] to turn reticle red when target centred&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2010-05-31&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Taxi Galactica]] adds a Taxi Service and a non player flyable taxi cab ship to systems&lt;br /&gt;
|aut=pleb87&lt;br /&gt;
|date=2008-06-12&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Teretrurus Mk.I]] is a medium fighter/trader somewhat faster &amp;amp; tougher than Cobra Mk III, but with smaller cargo bay&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2008-02-01&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Terrapin|Terrapin Trader]] is a medium fighter/trader. A good upgrade from Cobra Mk III&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2008-02-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Tesoura]] is a slow, but well shielded trade ship&lt;br /&gt;
|aut=Randall, Dr. Nil&lt;br /&gt;
|date=2008-02-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Thargoid Carrier]] arms Thargoids with capital carrier&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|date=2006-06-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Thargorn_Threat_oxp|Thargoid Threat]] adds [[Thargoid Terrorizer Frigate]], [[Thargoid Thargorn Battleship]], [[Thargoid Thorgon Cruiser]]&lt;br /&gt;
|aut=Arexack Heretic&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2011-02-03&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Thargoid Wars]] intensifies war with the Thargoids, featuring new attack and defense missions&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2011-07-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Tianve OXP|Tianve]] adds [[Navy Station]], as well as Visuals, including a pulsar, to the Galaxy 1 system of Tianve&lt;br /&gt;
|aut=Drew&lt;br /&gt;
|date=2009-12-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Tiger Mark I]] is a truly awesome (and very expensive) multi-role craft&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2006-05-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Tionisla Orbital Graveyard]] adds the famed graveyard to Tionisla, G1, as described in “The Dark Wheel” novella&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2011-02-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Tionisla Reporter]] adds a mission for a starting commander&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2011-07-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[TCAT OXP|To Catch a Thargoid]] is a G3 follow-up mission to Thargoid Plans, for Dangerous or Elite rank Commanders&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-12-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Torus station|Torus Station]] adds a vast 2001 style space station to very high tech level systems&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|con=Svengali&lt;br /&gt;
|date=2010-10-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Total patrol OXP|Total Patrol]] makes police ships patrol between planet, witchpoint &amp;amp; sun&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-03-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[ToughGuys|ToughGuys]] Adds 3 levels of increased toughness of 'Baddies', and gives a backdrop for an immersive storyline&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2011-02-16&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Trader Outpost (Oolite)|Trade Outpost]] adds Griff's trade outpost without ads&lt;br /&gt;
|aut=CaptKev, Griff, Ark&lt;br /&gt;
|date=2009-02-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Traffic_Control_OXP|Traffic Control]] personnel gives help with approach to and manual docking at all main stations&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-06-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Transhab station|Transhab Station]] adds a large station with rotating arms to some medium tech level systems&lt;br /&gt;
|aut=Draco_Caeles&lt;br /&gt;
|date=2006-06-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Transports]] adds [[CoachWhip]], [[Coral]], [[Woma]]&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|con=Eric Walch, Kaks&lt;br /&gt;
|date=2010-12-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://wiki.alioth.net/images/d/d9/TrekHud.zip Trek HUD] replaces your HUD with a Star Trek NG LCARS-style HUD&lt;br /&gt;
|aut=barabis&lt;br /&gt;
|date=2008-11-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Trident Down]] contains a series of Galaxy 4 missions investigating a vicious attack on a [[Executive SpaceWays|Trident Shuttle]]&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2010-12-31&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[UPS Courier]] offers Commanders transport of goods/documents &amp;amp; occasional combat missions&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2011-03-29&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Urutu Mark III &amp;amp; Urutu Mark IV]] are medium fighters/traders from Elite-A&lt;br /&gt;
|aut=Milinks&lt;br /&gt;
|date=2006-09-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Vampire]] adds the Purgatori Vampire series of combat ships&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2007-01-29&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Vampire - Diamondback]] adds the Diamondback Vampire series of combat ships&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2010-04-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Vampire - Dominatrix]] adds the Dominatrix Vampire series of combat ships&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2009-12-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Vector OXP|Vector]] is a unusual mission type - fast money, slavers, tricks and GalCop is watching you...&lt;br /&gt;
|aut=Svengali&lt;br /&gt;
|date=2011-02-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Velocity_OXP|Velocity]] is a fast fighter ship&lt;br /&gt;
|aut=Sabre&lt;br /&gt;
|date=2009-09-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.purgatori.net/Venom.oxp.zip Venom] adds [[Venom]]s in normal and renegade versions  from [[Isis Interstellar]]&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2009-12-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Vortex OXP|Vortex]] A new ex-military player ship. Rare, expensive and powerful - kitted out with advanced and unique features&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-03-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.purgatori.net/wasps.htm Wasps] adds formation flying wasps, queen wasps, and wasp nests&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|con=Thargoid, Ahruman, Eric Walch&lt;br /&gt;
|date=2010-08-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/weeviloid2.zip ''Weeviloid''] adds [[Weeviloid Hunter]]s, fearsome multi-gunned war ships and [[Weeviloid Scoutship]]s, light trade ships&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2006-05-11&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Welcome_Mat_OXP|Welcome Mat]] upgrades the comms systems to expand the information that is given on arrival in new system&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-06-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Werewolf]] from [[Isis Interstellar]] has 3 variants:  [[Werewolf|Werewolf ~ Damage Inc.]], [[Werewolf|Werewolf (Civilian)]] &amp;amp; [[Werewolf|Werewolf (Purgatori Model)]]&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2011-02-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Wolf_Mk.2_%28Oolite%29|Wolf Mk II]] adds the powerful Wolf Mk II, as seen in Elite-A&lt;br /&gt;
|aut=Ark&lt;br /&gt;
|date=2009-07-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://wiki.alioth.net/images/0/06/Wolfs_variants.zip Wolfwood's Variants] adds [[Asp_Mk.I|Asp Mk I]], [[Cobra Courier]], [[Cobra Rapier]], [[Drake]], [[Drake Mk II]] &amp;amp; [[Wolf Mk I]]&lt;br /&gt;
|aut=Wolfwood&lt;br /&gt;
|date=2008-02-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Wormhole restoration OXP|Wormhole Restoration]] adds a new way to leave interstellar space without using fuel, expanding on Thargoid backstory&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-05-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Xarik]] is an advanced aircraft, last creation of the late Prof. Eisel Xarik. Used by pirates, traders, and hunters&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2010-02-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Xeikil]] adds a player, a GalCop interceptor, and 24 pirate variants of Staer9 Industries' current top fighter&lt;br /&gt;
|aut=Staer9&lt;br /&gt;
|date=2011-05-16&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Xeikil MK2]] adds a player, a GalCop interceptor, and 24 pirate variants of Staer9 Industries' replacement [[Xeikil]]&lt;br /&gt;
|aut=Staer9&lt;br /&gt;
|date=2011-05-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[YellOo_Cabs]] adds YellOo Cab Co taxis to the Ooniverse. NPC and Buyable&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2011-01-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Your Ad Here!]] adds Convenience Stores [[Pi-42]], [[Tescoo Oxpress]], [[Star]], [[Mall Wart]], [[Sainsboory's]] &amp;amp; [[Security Sidewinder|security sidewinders]]&lt;br /&gt;
|aut=Griff&lt;br /&gt;
|con=DaddyHoggy, Pangloss, Disembodied, Eric Walch&lt;br /&gt;
|date=2011-02-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Z-ships]] adds [[Z-ships_Asp_Explorer|Asp Explorer]], [[Z-ships_Cobra_Commodore|Cobra Commodore]], [[Z-ships_Porcupine|Porcupine]] &amp;amp; [[Z-ships_Python_Courier|Python Courier]]&lt;br /&gt;
|aut=Zieman&lt;br /&gt;
|date=2010-03-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9056 Z-GrOovY Griff's Cobra Mk3 Variety Pack] adds multiple Griff's Cobra Mk3 with alternate hull paintings&lt;br /&gt;
|aut=dertien&lt;br /&gt;
|date=2011-01-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9306 Z-GrOovY System Stations] adds Griff-based Tetrahedron, Octahedron, Coriolis, Dodecahedron, Icosahederon stations&lt;br /&gt;
|aut=dertien&lt;br /&gt;
|date=2011-03-03&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9146 Z-GrOovY Viper Raider] adds a new player ship based on the police Viper&lt;br /&gt;
|aut=dertien&lt;br /&gt;
|date=2011-02-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9056 Z-GrOovY YAH Sidewinder Variety Pack] adds multiple Your Ad Here! Constore defenders with alternate hull paintings&lt;br /&gt;
|aut=dertien&lt;br /&gt;
|date=2011-01-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9056 Z-GrOovY YellOo Cab Variety Pack] adds the Moray Starboat with taxi hull painting&lt;br /&gt;
|aut=dertien&lt;br /&gt;
|date=2011-01-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Work in Progress OXPs  ==&lt;br /&gt;
The following table contains OXPs that either have not yet been released by their authors but are already being discussed on the [http://www.aegidian.org/bb/viewforum.php?f=4 Expansion Pack Forum], or released OXPs that still have WIP status. Links get you either to the respective discussion or the Wiki page if it already exists.&lt;br /&gt;
{{OXPListTableHeader}}&lt;br /&gt;
&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[http://www.box.net/shared/moreq536ht Nexus missile]. Three versions of a multi-warhead missile. Like the anti-thargoid missile but not just for (against) thargoids.&lt;br /&gt;
|aut=UK_Eliter&lt;br /&gt;
|date=2011-07-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?t=8341 Animated Ships] adds animated butterflies flapping their wings as a demo&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-08-06&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9864 Cargo Scanner] scans targeted cargo containers to find out what they contain&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-05-17&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://www.aegidian.org/bb/viewtopic.php?t=8526 Comms Demo] provides a way to communicate with NPC ships&lt;br /&gt;
|aut=Kaks&lt;br /&gt;
|date=2009-10-26&lt;br /&gt;
|work=N}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=6&amp;amp;t=9087 Guerilla War] puts you in a position to lead a fighter squadron&lt;br /&gt;
|aut=Ramirez|date=2011-04-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.box.net/shared/0i2fnrc175t Katipo] adds a very fast, moderate maneuverability, low cargo ship with low thrust&lt;br /&gt;
|aut=Simon B&lt;br /&gt;
|date=2011-03-03&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9441 Miner Pod] breaks up asteroids and collects the splinters&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-03-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?t=8275 Mining] adds mines to protect and provide resources for to get gold&lt;br /&gt;
|aut=docwild&lt;br /&gt;
|date=2010-07-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Nuit Space Station OXP|Nuit Space Station]] is the newest creation of [[Isis Interstellar]]&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2009-11-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mission&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?p=130221#p130221 Oresrati Challenge] adds a fun mission to the loneliest system of the Ooniverse, Oresrati&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-04-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9946 Phantom] is a trader/fighter from [[Isis Interstellar]] with external missiles&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2011-05-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?p=138226#p138226 Shield Cycler] distributes shield energy between fore and aft shields&lt;br /&gt;
|aut=Lone_Wolf&lt;br /&gt;
|date=2011-05-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=5484 Solar System] adds extra planets and jump gates to a system&lt;br /&gt;
|aut=Frame&lt;br /&gt;
|date=2009-01-11&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9472 Sun Skimmer Pod] adds a pod that goes sun skimming and returns full of fuel&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-03-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9488 Target Tracker] aligns your ship on your target&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-03-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9353 Thor Class Supercarrier] adds a Navy Carrier as a replacement pack for the Behemoth and the Galactic Navy&lt;br /&gt;
|aut=dertien&lt;br /&gt;
|date=2011-03-03&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9242 Wormhole Drones] creates a path of worm holes to lead you to your destination system&lt;br /&gt;
|aut=Mauiby de Fug&lt;br /&gt;
|date=2011-02-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[http://www.aegidian.org/bb/viewtopic.php?t=8541 Zygoroids] add new beautifully textured asteroid models to the Ooniverse&lt;br /&gt;
|aut=ZygoUgo&lt;br /&gt;
|date=2010-10-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== OXPs with Problems ==&lt;br /&gt;
The following table contains OXPs that have problems eg. broken download, or have been written for versions of Oolite earlier than the current 1.75.2&lt;br /&gt;
{{OXPListTableHeader}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Amen Bricks Megaships|Amen Brick's Megaships]] adds [[Battleship]]s, [[Biodome]]s, [[Cruiseship]]s, [[Hospitalship]]s, [[Supercargo]]s, [[Superlifter]]s, and [[Yacht - Amen Class|Yacht]]s (This version 1.1 contains a corrupted shipData.plist)&lt;br /&gt;
|aut=Amen Brick&lt;br /&gt;
|date=2008-07-11}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Cataclysm OXP|Cataclysm]] takes up the threads of Constrictor Hunt and Thargoid Plans, and sends you on your biggest Navy mission yet&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2009-01-06&lt;br /&gt;
|work=N}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Kirin#Download|Kirin Sport]] adds a a smaller, faster, more agile - and less well armed - civilian variant of the [[Kirin]]&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2009-07-22&lt;br /&gt;
|work=N}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Localhero_OXP|Localhero]] adds a mission campaign in the first galaxies&lt;br /&gt;
|aut=Svengali&lt;br /&gt;
|date=2008-04-09&lt;br /&gt;
|work=N}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Orb]] adds a new alien race, which might help GalCop in the battle against the Thargoids.&lt;br /&gt;
|aut=Charlie&lt;br /&gt;
|date=2007-02-13&lt;br /&gt;
|work=N}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Personalities OXP|Personalities]] adds a bunch of unique, well-known personalities from the Bulletin Board to the Ooniverse&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2009-11-05&lt;br /&gt;
|work=N}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[[Save Anywhere]] allows you to save your game at any OXP Station&lt;br /&gt;
|aut=Frame&lt;br /&gt;
|date=2008-10-01&lt;br /&gt;
|work=N}}&lt;br /&gt;
|}&lt;br /&gt;
[[Category:Oolite expansion packs]]&lt;br /&gt;
[[Category:OXP Lists]]&lt;br /&gt;
[[Category:Factual]]&lt;/div&gt;</summary>
		<author><name>Mcarans</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.alioth.net/index.php?title=OXP_List&amp;diff=28640</id>
		<title>OXP List</title>
		<link rel="alternate" type="text/html" href="https://wiki.alioth.net/index.php?title=OXP_List&amp;diff=28640"/>
		<updated>2011-07-26T20:35:22Z</updated>

		<summary type="html">&lt;p&gt;Mcarans: /* Sortable Table of OXPs */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
== OXP Categories ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; width=&amp;quot;100%&amp;quot; style=&amp;quot;border-collapse: collapse; border-width: 1px; border-style: solid; border-color: #ffffff; table-layout: fixed; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; width=&amp;quot;70px&amp;quot; style=&amp;quot;margin: 0px; padding: 0px; border-width: 1px; border-style: solid; border-color: #ffffff; background-color: #e7e7ff; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot; |&amp;lt;p style=&amp;quot;font-size: 13px;&amp;quot;&amp;gt;Category&amp;lt;/p&amp;gt;&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;margin: 0px; padding: 0px; border-width: 1px; border-style: solid; border-color: #ffffff; background-color: #e7e7ff; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot; |&amp;lt;p style=&amp;quot;font-size: 13px;&amp;quot;&amp;gt;Description of OXP Category&amp;lt;/p&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Activities_OXPs|Activities]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Allow Commanders to carry out a new activity or task eg. racing, gas giant skimming, taking out loans&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Dockables_OXPs|Dockables]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Add new objects that the player can dock with eg. carriers, space bars, casinos, fuel stations. Also, see [[Oolite Stations]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Ambience_OXPs|Ambience]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Change or add to the scenery, visuals or sound effects eg. planet skins, add new planets/moons to systems, move suns further away, dim nebulae, add monuments&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Equipment_OXPs|Equipment]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Buy upgrades for your ship excluding weapons&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Mechanics_OXPs|Mechanics]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Change the game play in a specific way eg. alter market mechanics, add more pirates&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:HUDs_OXPs|HUDs]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Modifications of your dials, gauges and other read-outs&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Missions_OXPs|Missions]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|New missions for Commanders to undertake. For more information, see [[Oolite Missions]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Retextures_OXPs|Retextures]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Retexture existing objects, either by replacing or adding variations, but without adding objects that did not exist before&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Ships_OXPs|Ships]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|New ships, except dockable ships. Also, see [[Oolite Ships]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Systems_OXPs|Systems]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Alter multiple star systems in a number of ways eg. combinations of changing main station and local police ships, adding new stations, ships, activities, missions&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Weapons_OXPs|Weapons]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Addons for your ship for blowing up the baddies&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Misc_OXPs|Misc]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|OXPs that don't fit into the other categories eg. debug consoles, internationalisations, config mechanisms, demo OXPs&lt;br /&gt;
|}&lt;br /&gt;
OXP authors: if you are unsure how to categorise your OXP or if you wish to update the details of an OXP for an author who has disappeared, please seek advice on the [http://www.aegidian.org/bb/viewforum.php?f=4 Expansion Pack Forum] before proceeding. Please put your OXP in one category only. You can edit the section below to add your OXP.&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Sortable Table of OXPs ==&lt;br /&gt;
The following table is optimized for a horizontal screen resolution of at least 1280px so that all OXP descriptions fit on one line.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; width=&amp;quot;100%&amp;quot; style=&amp;quot;border-collapse: collapse; border-width: 1px; border-style: solid; border-color: #ffffff; table-layout: fixed; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;border-width: 1px; border-style: solid; border-color: #ffffff; background-color: #e7e7ff; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot; |The &amp;quot;C&amp;quot; column indicates compatibility with Oolite beta 1.75:&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Y&amp;quot;=compatible, &amp;quot;Y*&amp;quot;=compatible (but the OXP is not in full working order), &amp;quot;N&amp;quot;=incompatible,  blank=unknown/untested.&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;!-- KEEP DESCRIPTIONS (desc=...) ALPHABETICAL --&amp;gt;&lt;br /&gt;
&amp;lt;!-- KEEP LENGTHS OF DESCRIPTIONS TO THAT OF EXISTING ENTRIES OR LESS --&amp;gt;&lt;br /&gt;
{{OXPListTableHeader}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Accessories OXP|Accessories]] replaces the textures of all Stations and non-ship objects in Oolite with a more detailed and realistic look&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2010-06-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Accipiter]] is the market entry from Xeceesian shipyards, a strong &amp;amp; fast all purpose vessel for experienced commanders&lt;br /&gt;
|aut=CaptSolo&lt;br /&gt;
|con=Staer9, Griff&lt;br /&gt;
|date=2011-05-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Aegidian%27s Specials]] adds the powerful [[Mussurana]], the [[Asp (Oolite)#Notable features|Asp Mark II Special]], and a new cargo canister&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2009-07-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Aegidian%27s X-Ships]] adds [[Python ET Special]]s, [[Cobra Mk.2 (Oolite)|Cobra Mk II]]s, [[Taipan]]s, [[Asp (Oolite)#Notable features|Asp Mark II Special]]s, and [[Sidewinder (Oolite)#Notable features|Sidewinder Special]]s&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2009-04-29&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Pirate Clan Blitzspears|Amen Brick's Pirate Clan One: The Blitzspears]] adds the [[Assassin Blitzspear|Assassin]], the [[Hoodlum]], the [[Scoundrel]], and the [[Spiv]]&lt;br /&gt;
|aut=Amen Brick&lt;br /&gt;
|date=2008-06-30}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Amiga Replacement Sounds]] is based on the sound set used in the Amiga version of the original Elite&lt;br /&gt;
|aut=EAGLE 5&lt;br /&gt;
|date=2006-03-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Systems&lt;br /&gt;
|desc=[[Anarchies OXP|Anarchies]] overhauls legal ratings and spices up anarchies with [[Hacker Outpost]]s, [[Salvage Gang]]s, special stations &amp;amp; ships&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|con=Killer Wolf, Griff, Cdr. Wyvern, Murgh, Aegidian, 8-Bit Apocalypse&lt;br /&gt;
|date=2011-03-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9462 Another HUD] is based on Killer Wolf's Generic HUD&lt;br /&gt;
|aut=NorthenderPNE&lt;br /&gt;
|date=2011-03-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Aphid]] adds the stylish Aphid Escort Service&lt;br /&gt;
|aut=8-Bit Apocalypse&lt;br /&gt;
|date=2005-01-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Aquatics OXP|Aquatics]] adds the Aquarian Shipbuilding Corporation of Aqualina, G3 along with its ships and a mission&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-03-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Armoured Transport Type 1]] adds Gaundlet's [[Gaundlet Armoured Transport Type1|Armoured Transport Type 1]] and [[Gaundlet Armoured Escort Viper|Armoured Escort Viper]] that ferry valuables&lt;br /&gt;
|aut=Arexack Heretic&lt;br /&gt;
|date=2005-12-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Armoury OXP|Armoury]] adds AMS, captured Thargons, drones, probes, a missile rack, some bombs, and the missile machine&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-06-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[The Assassins Guild OXP|Assassins Guild]] adds 21 missions involving murder to order in Galaxy 7&lt;br /&gt;
|aut=Littlebear&lt;br /&gt;
|date=2011-05-03&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Asteroid Storm]] adds different types of asteroids &amp;amp; a mission where a station in G1 is threatened by a large asteroid strike&lt;br /&gt;
|aut=LittleBear, Charlie&lt;br /&gt;
|date=2011-01-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Aurora]] adds huge passenger ships for the wealthiest in society&lt;br /&gt;
|aut=pagroove&lt;br /&gt;
|con=Griff, Thargoid&lt;br /&gt;
|date=2010-11-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://www.mediafire.com/?fnc65em7uh5un1d Auto ECM] fires the ECM once when a missile is fired at the player's ship. See the [http://aegidian.org/bb/viewtopic.php?p=138124#p138124 BB] for more info&lt;br /&gt;
|aut=Switeck&lt;br /&gt;
|date=2011-05-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Auto eject OXP|Auto Eject]] ejects your escape pod automatically when your energy becomes too low&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2010-06-16&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Automatic Chaff System]] provides an enhanced chaff-based missile countermeasure system&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2010-06-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Baakili Far Trader]] adds a dockable alien ship&lt;br /&gt;
|aut=Zieman&lt;br /&gt;
|date=2010-09-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Bandersnatch]] adds a pirate capital vessel armed with 4 x fore lasers&lt;br /&gt;
|aut=Flying_Circus&lt;br /&gt;
|date=2009-11-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Beer Cooler]] allows you to fit your ship with a beer cooler&lt;br /&gt;
|aut=Maik&lt;br /&gt;
|date=2010-08-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Behemoth]] adds a dockable Navy cruiser carrying [[Navy Asp]]s and [[Navy Viper]]s&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2011-01-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[ADCK%27s Behemoths]] adds shadered versions of the [[Behemoth]],  [[Galactic Navy OXP|Galactic Navy]] ships and stations, and then some&lt;br /&gt;
|aut=ADCK&lt;br /&gt;
|con=Aegidian, pagroove, Nemoricus, Selezen, Simon B&lt;br /&gt;
|date=2010-04-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Behemoth Spacewar]] adds intelligence to the Behemoth and brings a combat with Thargoids&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2010-01-09&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[BGS|BGS - Background Set]] framework for images, sounds and ambient music&lt;br /&gt;
|aut=pagroove, Svengali&lt;br /&gt;
|date=2011-03-16&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[BigShips OXP|Big Ships]] ensures that large ships do not dock and controls population of systems with them&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2009-11-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Black Monk Monastery]] offers loans in advanced systems and adds the [[Black Monk Gunship]] to persecute defaulters&lt;br /&gt;
|aut=LittleBear&lt;br /&gt;
|date=2010-06-14&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[BlackjacksBullion OXP|Blackjack's Bullion]] starts in galaxy 2 at Telace as Commander Blackjack arrives via escape pod&lt;br /&gt;
|aut=Rustybolts&lt;br /&gt;
|date=2010-03-08&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[BlOomberg Markets]] varies the in-game economy by generating random events that affect commodity prices&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2011-03-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Boa II Clipper Class]] is a development of the Boa Class Cruiser, adding a third engine at the cost of cargo space&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2011-01-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Boomslang]] adds a mid-range multi-role ship. Used by pirates and traders alike&lt;br /&gt;
|aut=milinks, Jar&lt;br /&gt;
|date=2008-09-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Bounty Scanner]] adds bounty details (if any) to the targeting lock-box display when locked onto other ships&lt;br /&gt;
|aut=Frame&lt;br /&gt;
|date=2010-07-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[BountyStatus OXP|Bounty Status]] displays your current bounty (and your legal status) on the F5 manifest screen&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-05-08&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Breakable_'Standard'_Equipment_OXPs|Breakable 'Standard' Equipment]] makes some standard equipment such as HUD/Scanner damageable in combat&lt;br /&gt;
|aut=Capt. Murphy&lt;br /&gt;
|date=2011-07-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Bulk Haulers]] adds the [[Lynx Bulk Carrier (Oolite)|Lynx Bulk Carrier]], the [[Long Range Cruiser (Oolite)|Long Range Cruiser]], the [[Bulk Hauler]], and the [[Super Bulk Hauler]]&lt;br /&gt;
|aut=ADCK&lt;br /&gt;
|con=Aegidian, pagroove&lt;br /&gt;
|date=2010-04-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[BuoyRepair|Buoy Repair]] adds a [[Buoy Repair Facility]] and related ships to repair defect or destroyed nav-beacons&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|con=Svengali, Murgh, Zieman&lt;br /&gt;
|date=2011-06-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[[Cabal Common Library]] is a collection of snippets and helpers for OXPs&lt;br /&gt;
|aut=Svengali&lt;br /&gt;
|con=Cmd.Cheyd, PhantorGorth&lt;br /&gt;
|date=2011-07-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Caduceus]] adds the very expensive (and deadly) Caduceus&lt;br /&gt;
|aut=ClymAngus&lt;br /&gt;
|con=Cdr. Wyvern, another_commander, Eric Walch, Thargoid&lt;br /&gt;
|date=2010-12-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Capisastra]] adds [[Capisastra Defender]]s, [[Capisastra Hauler]]s, and [[Capisastra Warrior]]s&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|date=2006-01-12}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Captain Berf Engineer]] adds a voice for crew members&lt;br /&gt;
|aut=Captain Berf&lt;br /&gt;
|date=2009-12-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Captain Berf Pilot]] adds a voice for crew members&lt;br /&gt;
|aut=Captain Berf&lt;br /&gt;
|date=2009-12-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Captain Berf Pilot Alien]] adds a voice for crew members&lt;br /&gt;
|aut=Captain Berf&lt;br /&gt;
|date=2009-12-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Captain Berf Tactical Officer]] adds a voice for crew members&lt;br /&gt;
|aut=Captain Berf&lt;br /&gt;
|date=2009-12-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Cargo Shepherd OXP|Cargo Shepherd]] attracts cargo pods and holds them until you can scoop them, also includes a beacon&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-04-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://www.box.net/shared/4lphdkazs5 CB-HUD] features a HUD that changes based on installed equipment. See the [http://aegidian.org/bb/viewtopic.php?p=141035#p141035 BB post] for more information&lt;br /&gt;
|aut=Captain Beatnik&lt;br /&gt;
|date=2011-05-29&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Clear Skies OXP|Clear Skies]] reduces nebula effects and dims stars. Handy if your system is finding it hard to run Oolite&lt;br /&gt;
|aut=johnsmith&lt;br /&gt;
|date=2006-11-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Cobra 3.5|Chopped Cobra]] adds the Cobra Mk 3.5, a slightly faster and tougher variant with a reduced cargo bay&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2006-12-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9157 Cobra AC] is a faithful reproduction of the Cobra on the cover of the Dark Wheel novella with improved specs&lt;br /&gt;
|aut=dertien&lt;br /&gt;
|date=2011-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Cobra Clipper SAR]] adds a custom Cobra Mk III to rescue stranded Commanders&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2010-04-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Cobra III NjX]] adds a faster, tougher variation on the Classic Cobra Mk III&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|date=2006-08-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Cobra Mark III-XT]] Cobra3 with revamped architecture and upgraded systems to boost performance&lt;br /&gt;
|aut=CaptSolo&lt;br /&gt;
|date=2011-07-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.purgatori.net/cobra4.htm Cobra MkIV] is [[Isis Interstellar]]'s successor to the Cobra MkIII, available in trader and fighter variants&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2010-11-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[OosoundsCombined OXP|Combined Murgh, Wiggy &amp;amp; xaotik's sounds]] combines the 3 available packs from Murgh, Wiggy and xaotik&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|con=Murgh, Wiggy, xaotik&lt;br /&gt;
|date=2009-09-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Systems&lt;br /&gt;
|desc=[[Commies]] Adds [[Astro Mines]], [[CZGF|Factories]], [[SLAPU|Production Units]], [[Worker%27s Commuter|Commuters]] &amp;amp; special police ships to Communist systems&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|con=Ramirez, Murgh, johnsmith, HueijRevisited&lt;br /&gt;
|date=2010-05-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[CompactHUD|Compact HUD]] provides an alternative HUD with a clean look&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Condor]] adds a very powerful police and Navy Cruiser&lt;br /&gt;
|aut=Charlie&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2010-10-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Console HUD]] Azure themed semi-transparent HUD with balanced array of indicators&lt;br /&gt;
|aut=CaptSolo&lt;br /&gt;
|date=2011-07-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[http://www.box.net/shared/mq1mzoc79t Constrictor Mission Hints] adds more hints for those doing the native Constrictor Mission&lt;br /&gt;
|aut=Arexack Heretic&lt;br /&gt;
|date=2010-08-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Contractor ZZ1]] Very fast combat 'stealth' ship. Appears in-game as a Bounty-hunter and rarely as Pirate. Buyable&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2011-01-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Copperhead]] Redux of core ship in Archimedes Elite slightly modified. NPC and player buyable&lt;br /&gt;
|aut=CaptSolo&lt;br /&gt;
|date=2011-05-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Croydon Starsoarer]] adds a ship that is similar to the Asp in specification&lt;br /&gt;
|aut=SimonB&lt;br /&gt;
|con=pagroove&lt;br /&gt;
|date=2010-05-08&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[CustomSounds OXP|CustomSounds]] replaces/adds 40+ sounds, featuring music &amp;amp; extensive use of calm female computer voice for warnings&lt;br /&gt;
|aut=milinks&lt;br /&gt;
|date=2006-12-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[DWCobra|Dark Wheel Cobra]] is a custom Cobra Mk III model, as seen on the cover of the Elite Manual&lt;br /&gt;
|aut=ramon&lt;br /&gt;
|date=2006-11-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[[Debug OXP]] is a special OXP that enables JavaScript console support in test releases of Oolite (1.70 and later)&lt;br /&gt;
|aut=Ahruman&lt;br /&gt;
|date=2010-06-19&lt;br /&gt;
|work=N}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[http://deephorizonindustries.com/Gas_Giant_Skimming.html Deep Horizon - Gas Giants Skimming] allows to skim gas giants to refuel a ship or mine them for rare minerals&lt;br /&gt;
|aut=Cdr. Cheyd&lt;br /&gt;
|date=2010-07-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://deephorizonindustries.com/Lights_Down.html Deep Horizon - Lights Down] lowers ambient light within system to give more natural feel to planets and ships&lt;br /&gt;
|aut=Cdr. Cheyd&lt;br /&gt;
|date=2010-07-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://deephorizonindustries.com/Nav_Buoy.html Deep Horizon - Nav Buoy 1.0] replaces Witchpoint, Station, and other Nav Buoys with a new model&lt;br /&gt;
|aut=Cdr. Cheyd&lt;br /&gt;
|date=2011-07-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[http://deephorizonindustries.com/Pirate_Ambushes.html Deep Horizon - Pirate Ambushes] adds pirates that ambush the player upon exit from witchspace&lt;br /&gt;
|aut=Cdr. Cheyd&lt;br /&gt;
|date=2010-07-06&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://deephorizonindustries.com/DH-Systems.html Deep Horizon - Systems] textures the main planet of a system as well as adding moons and additional planets&lt;br /&gt;
|aut=Cdr. Cheyd&lt;br /&gt;
|date=2010-07-06&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Deep Space Dredger]] adds dockable Space Dredgers, defended by [[Sabre]] fighters, and a missile to salvage derelict ships&lt;br /&gt;
|aut=Sabre&lt;br /&gt;
|date=2011-01-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[DeepSpacePirates|Deep Space Pirates]] adds pirates and asteroids outside the space lanes&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2010-01-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Deepspace Ships#Deepspace HUDs|Deepspace HUD]] is an alternative HUD with two versions&lt;br /&gt;
|aut=DeepSpace&lt;br /&gt;
|date=2010-02-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Deepspace Ships]] replaces the default ships with new textures&lt;br /&gt;
|aut=DeepSpace&lt;br /&gt;
|date=2010-02-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Deposed OXP|Deposed]] is a series of missions set in Galaxy 4 for an experienced Commander&lt;br /&gt;
|aut=Cdr. Wombat&lt;br /&gt;
|con=Commander McLane, Eric Walch&lt;br /&gt;
|date=2009-03-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Systems&lt;br /&gt;
|desc=[[Dictators OXP|Dictators]] adds a range of ships and stations to each dictatorship and offers new trading opportunities to players&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2010-06-19&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Diso OXP|Diso]] adds extra planets and stations to the Diso system in Galaxy 1&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2010-11-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Display reputation OXP|Display Reputation]] lets you know your current reputations in the passenger ferrying and the cargo contract market&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2010-03-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Oolite Docking Clearance Protocol (v1.72 or later)|Docking Clearance]] enables the docking clearance protocol for all stations&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2008-12-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Griff Industries|Dodo Stations]] adds new textures for Dodecahedron stations&lt;br /&gt;
|aut=Griff, CaptKev&lt;br /&gt;
|date=2010-05-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Dr HUD OXP|Dr HUD]] is an alternative HUD&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2006-12-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Dragon|Dragon Assault Craft]] adds a heavy combat ship, and the Military Smart Missile, an improved hard head&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2008-11-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Dragon#Download|Dragon Military Missile]] adds an enhanced hardhead, seeks priority targets when ECM'd&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2008-11-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.mediafire.com/?rllzzcbkwgm Dragonfly/Firefly S.T] adds [[Dragonfly S.T]] &amp;amp; much faster [[Firefly S.T]]. Ideal small fast ships for pirates or bounty hunters&lt;br /&gt;
|aut=Rustybolts&lt;br /&gt;
|date=2009-10-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Eagle Mk II]] adds the cheap Eagle Mk II escort vessel in several different versions, including an enhanced SE&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|date=2006-03-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[ADCK%27s Eagles|Eagles Mk I to IV]] adds four Eagle Long Range Fighters to the game&lt;br /&gt;
|aut=ADCK&lt;br /&gt;
|date=2010-04-07&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Energy Equipment OXP|Energy Equipment]] adds a pylon-mounted automatically triggered top-up for when the juice runs low&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-03-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Escort Contracts OXP|Escort Contracts 1.2]] allows players to enter into short-term escort contracts with NPC lone wolf traders&lt;br /&gt;
|aut=Capt. Murphy&lt;br /&gt;
|date=2011-07-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[ETT Homing Beacon]] marks a position in space by deploying a pylon-mounted beacon&lt;br /&gt;
|aut=Twisted&lt;br /&gt;
|con=Lone_Wolf&lt;br /&gt;
|date=2011-04-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Executive SpaceWays]] adds [[Delta Long-Range Escort|Delta]]/[[Gemini Escort|Gemini]] Escorts, [[Starseeker Personal Shuttle|Starseeker]]/[[Trident Executive Shuttle|Trident Exec]] Shuttles, [[Strelka Cruise Liner]]s&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2010-06-19&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.box.net/shared/moreq536ht#/shared/moreq536ht/1/71484311/786362645/1 Extra Thargoids] adds 2 types of Thargoid ships, each of which packs surprises. Replaces the 'Poet' Frigate OXP&lt;br /&gt;
|aut=UK_Eliter&lt;br /&gt;
|date=2011-07-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Systems&lt;br /&gt;
|desc=[[Factions OXP|Factions]] from anarchy, feudal, dictatorship &amp;amp; communist systems meet in multi-government systems and start fighting&lt;br /&gt;
|aut= m4r35n357&lt;br /&gt;
|date=2011-06-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Famous Planets OXP|Famous Planets]] adds unique textures, new descriptions, and theme tunes for many planets in G1 and G2&lt;br /&gt;
|aut=pagroove&lt;br /&gt;
|con=Cdr. Cheyd, Stromboli, Pangloss, CaptKev, Drew Wagar, Thargoid, Svengali, Lestradae, UK Eliter&lt;br /&gt;
|date=2010-09-30&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Famous Planets Liners OXP|Famous Planets Liners]] adds Spaceway Liners on the 4 spaceways from Lave to Zadies&lt;br /&gt;
|aut=pagroove&lt;br /&gt;
|con=Ramirez, Presti70, Thargoid&lt;br /&gt;
|date=2009-03-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Far Arm ships|Far Arm Ships]] adds [[Far Arm Sunracer|Sunracer]]s, [[Far Arm Scow|Scow]]s, [[Far Arm Tanker|Tanker]]s, [[Far Arm Corsair|Corsair]]s, [[Far Arm Dart|Dart]]s, [[Far Arm Hunter|Hunter]]s, [[Far Arm Cruiser|Cruiser]]s, [[Far Arm Titan|Titan]]s, [[Far Arm Manchi Vulture|Vulture]]s, and [[Far Arm Manchi Wasp|Wasp]]s&lt;br /&gt;
|aut=Zieman&lt;br /&gt;
|date=2010-10-02&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Far Star Murderer]] adds a mid-range fighter / trader, with a fair sized cargo bay&lt;br /&gt;
|aut=8-Bit Apocalypse&lt;br /&gt;
|date=2005-01-01&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://www.box.net/shared/d57y0uip74 Far Sun] places suns further away from the planet than standard Oolite&lt;br /&gt;
|aut=Kaks&lt;br /&gt;
|date=2010-05-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.box.net/shared/moreq536ht Fer de Lance 3G] adds player &amp;amp; NPC Fer de Lance versions with custom paint jobs &amp;amp; altered specs. New bug fixes&lt;br /&gt;
|aut=UK_Eliter&lt;br /&gt;
|date=2011-07-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Fer de Lance NG]] adds a more powerful version of the Fer de Lance with several custom paint jobs&lt;br /&gt;
|aut=alien&lt;br /&gt;
|date=2005-03-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Ferdepai]] adds a new fighter / trader to Galaxy 2&lt;br /&gt;
|aut=johnsmith&lt;br /&gt;
|date=2006-12-17&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Systems&lt;br /&gt;
|desc=[[Feudal States]] adds the [[Jäger]], the [[Korvette]], the [[Zerstörer]], a [[Royal Hunting Lodge]] and other elements to feudal systems&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2011-05-30&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Fighter HUD (Oolite)|Fighter HUD]] is an alternative HUD&lt;br /&gt;
|aut=CaptKev&lt;br /&gt;
|date=2008-05-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Firewasp]] adds a fast interceptor&lt;br /&gt;
|aut=Draco_Caeles&lt;br /&gt;
|date=2006-05-10&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Fireworks OXP|Fireworks]] allows you a joyful celebration of whatever it is you want to celebrate&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-05-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Flight Log OXP|Flight Log]] adds a log of the last 10 systems visited&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-01-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Flying Dutchman OXP|Flying Dutchman]] adds the small chance to meet a Ghost Ship in the Ooniverse&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|con=Griff&lt;br /&gt;
|date=2011-04-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[[Freaky Thargoids OXP|Freaky Thargoids]] is a shader demonstration for Oolite&lt;br /&gt;
|aut=Ahruman&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2011-02-03&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Free Trade Zone]] adds an independent trading post of dubious legality to Multi-Government systems&lt;br /&gt;
|aut=Disembodied&lt;br /&gt;
|con=Commander McLane&lt;br /&gt;
|date=2010-10-08&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Frog Space Rickshaw]] adds a chatty space taxi service to the safer systems&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2006-01-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Fuel Collector OXP|Fuel Collector]] scoops fuel from killed ships and collects fuel while cruising, even in witch space&lt;br /&gt;
|aut=Frame&lt;br /&gt;
|con=Commander McLane&lt;br /&gt;
|date=2011-07-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Fuel Station OXP|Fuel Station]] adds fly-thru Fuel Stations and Fuel Satellites near the witchpoint and along route one&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-06-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Fuel Tank]] v2.2 mounts in place of a missile, to top up 3 light years of fuel&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2008-05-31&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Furball OXP|Furball]] adds barroom brawls that've got out of hand. Furious fugitives flee from pissed off police on the station's doorstep&lt;br /&gt;
|aut=Caracal&lt;br /&gt;
|con=m4r35n357&lt;br /&gt;
|date=2011-06-06&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Systems&lt;br /&gt;
|desc=[[Galactic Navy OXP|Galactic Navy]] adds more ships and stations to the arsenal of the Galactic Navy. Allows to join the Navy Reserves&lt;br /&gt;
|aut=Nemoricus&lt;br /&gt;
|date=2010-12-30&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[GalDrivePod]] A portable Galactic Hyperdrive unit, allowing you to complete the &amp;quot;Lost Worlds Grand Tour&amp;quot;&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2011-03-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://www.boxcn.net/shared/5dqx22u06i Galaxy Info] helps you search for systems by criteria you select and will try to locate the nearest one&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-04-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Gates OXP|Gates]] ads short-cut jump gates to suitable systems, speeding journeys between the main station and witchpoint&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-04-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Generation Ships OXP|Generation Ships]] adds encounters with the mythical Generation Ships from time to time&lt;br /&gt;
|aut=Draco_Caeles&lt;br /&gt;
|con=Commander McLane&lt;br /&gt;
|date=2011-04-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Globe station|Globe Station]] is a new type of stations that appears in advanced systems&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|con=Svengali&lt;br /&gt;
|date=2009-10-22&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Greek Ships OXP|Greek Ships]] adds [[Penelope Class Freighter]]s, [[Telemachus Class Escort]]s, and [[Ulysses Class Interceptor]]s&lt;br /&gt;
|aut=8-Bit Apocalypse&lt;br /&gt;
|date=2005-07-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Griff ArcElite|Griff's ArcElite]] adds versions of native Oolite ships textured &amp;amp; shaded to resemble the Acorn Archimedes version of Elite&lt;br /&gt;
|aut=Griff&lt;br /&gt;
|date=2008-09-29&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Griff Boa]] contains the famous Griff Boa&lt;br /&gt;
|aut=Griff&lt;br /&gt;
|date=2010-06-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://www.boxcn.net/shared/k2lvh3enuy Griff's Explosion Debris] adds new alloy &amp;amp; debris models to exploding ships&lt;br /&gt;
|aut=Griff&lt;br /&gt;
|con=Thargoid&lt;br /&gt;
|date=2009-02-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Griff Krait]] adds a heavily modified Krait, similar in design to the Griff Boa&lt;br /&gt;
|aut=Griff&lt;br /&gt;
|date=2010-06-17&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Griff Industries|Griff's Normalmapped Ships]] adds some of the best looking ships, stations, and flotsam available in Oolite&lt;br /&gt;
|aut=Griff&lt;br /&gt;
|date=2011-04-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Griffin Two (Oolite)|Griffin Two]] adds the Griffin Mk II from Frontier&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2005-10-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Gritty Coriolis OXP|Gritty Coriolis]] alternates the Coriolis stations with two elaborate gritty Corioli&lt;br /&gt;
|aut=xaotik&lt;br /&gt;
|date=2006-02-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://wiki.alioth.net/images/2/2d/G-HUD_Mk2.oxp.zip G-HUD Mk2] adds an alternative HUD&lt;br /&gt;
|aut=Gunney Plym&lt;br /&gt;
|date=2008-07-08&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Halsis]] features a female cockpit voice, sometimes called Hal's Hot Sister&lt;br /&gt;
|aut=Ovvldc&lt;br /&gt;
|date=2006-08-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[BoyRacer|Hatchling BoyRacers]] adds the  talkative (and often insulting) [[BoyRacer]]s to more advanced systems&lt;br /&gt;
|date=2006-01-13&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Staer9 haulerp30|Hauler P30]] is a very large cargo ship made by Staer9 Industries&lt;br /&gt;
|date=2011-05-11&lt;br /&gt;
|aut=Staer9&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Hawksound]] features a quality female computer voice, new weapon, damage and some station interface sounds&lt;br /&gt;
|aut=Hawkstrom&lt;br /&gt;
|date=2008-11-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Herald Military Gunboat|Herald]] adds the [[Herald Military Gunboat]], a powerful police and Navy interceptor&lt;br /&gt;
||aut=Flying_Circus&lt;br /&gt;
|date=2005-01-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Hired Guns OXP|Hired Guns]] adds escort ships that can be contracted to accompany you on your next journey&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-02-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Hognose|Hognose Tugships]] adds the [[Hognose]], a chatty tug ship that can be seen towing broken down ships&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|con=Jonnycuba&lt;br /&gt;
|date=2006-03-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[HoOpy Casino]]s appear near the station in advanced systems. You can win or lose credits in games of chance&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2010-06-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Hotrods OXP|Hotrods]] adds custom paint jobs to classic Elite ships, racing vehicles, and a space gang that doesn't like the player&lt;br /&gt;
|aut=Kaks&lt;br /&gt;
|con=Arexack_Heretic, Murgh&lt;br /&gt;
|date=2009-03-16&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[HyperCargo OXP|HyperCargo]] adds an extended and expanded cargo handling system&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-09-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Hyperradio js OXP|Hyperradio]] is an expandable music-player&lt;br /&gt;
|aut=Svengali&lt;br /&gt;
|date=2011-02-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Icarus (Oolite)|Icarus]] adds a small fighter / trader based on blueprints from the lost Solice system&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|date=2007-07-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Illegal_Goods_Tweak_OXP|Illegal Goods Tweak 1.4]] adds interactions with Galcop customs on docking at a main station with Contraband in the hold&lt;br /&gt;
|aut=Capt. Murphy&lt;br /&gt;
|date=2011-06-17&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Illicit Unlock OXP|Illicit Unlock]] allows the player to fly all the classic Elite ships&lt;br /&gt;
|aut=tgape&lt;br /&gt;
|date=2005-10-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Griff_Industries#Related_OXP's_by_Other_Authors|Illicit Unlock - Griff Version]] allows the player to fly [[Griff Industries#Griff's Normalmapped Ships OXP|Griff's]] pirate/viper Ships&lt;br /&gt;
|aut=ADCK&lt;br /&gt;
|con=dertien&lt;br /&gt;
|date=2011-02-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[I_Missile|I_Missile]] Very fast, very destructive weapon at an affordable price&lt;br /&gt;
|aut=CaptSolo&lt;br /&gt;
|date=2011-07-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Imperial Courier (Oolite)|Imperial Courier]] adds the powerful Imperial Courier from Frontier, constructed by [[Seldar Shipyards]]&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|con=Commander McLane&lt;br /&gt;
|date=2007-06-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Imperial Trader (Oolite)|Imperial Trader]] adds the powerful Imperial Trader from Frontier&lt;br /&gt;
|aut=ADCK&lt;br /&gt;
|date=2010-06-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Interstellar help OXP|Interstellar Help]] allows you to help out traders who got stuck in interstellar space without fuel&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-03-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Ionics OXP|Ionics]] adds a series of missions featuring the Ionics Company of Zaria, the Ramaza Liberation Front and The Link&lt;br /&gt;
|aut=Galileo&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2010-08-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[IronHide OXP|IronHide]] introduces the new range of IronHide ship armour from the Aquarian Shipbuilding Corporation&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-02-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Iron Raven]] is a multi-stage mission to investigate a dangerous conspiracy on behalf of GalCop High Command&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2011-04-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Ixian Ships|Ixian Military Ships]] adds Ixian [[Ixian Battle Cruiser|Battle Cruiser]]s, [[Ixian Bezerka|Bezerka]]s, [[Ixian Gunship|Gunship]]s and [[Ixian No-Ship Mark I|No-Ship]]s from Dune&lt;br /&gt;
|aut=8-Bit Apocalypse&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2009-03-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Ixian Ships#Ixian Freighter|Ixian Freighter]] adds a civilian freighter to the universe&lt;br /&gt;
|aut=8-Bit Apocalypse&lt;br /&gt;
|date=2005-01-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Jabberwocky]] adds the powerful Jabberwocky fighter / trader&lt;br /&gt;
|aut=Flying_Circus&lt;br /&gt;
|date=2006-03-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[JellyBaby Dispenser]] adds a handy Jellybaby Dispenser for your cockpit&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2011-03-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Kestrel &amp;amp; Falcon OXP|Kestrel &amp;amp; Falcon]] adds buyable Star Wars style [[Falcon_%28Oolite%29|Falcon]] for pirates/traders and the [[Kestrel]], a police/navy interceptor&lt;br /&gt;
|aut=Charlie&lt;br /&gt;
|con=Kaks&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Killer_Wolf's_Dynamic_HUD|Killer Wolf's Dynamic HUD]] adds a version of the dynamic HUD first seen in Killer Wolf's Werewolf ships, to all ships&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|con=Thargoid&lt;br /&gt;
|date=2010-07-08&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Killit_OXP|Killit]] adds a bunch of insane super weapons&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-05-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Kirin]] adds a heavy military hauler, CV &amp;amp; XM versions used by both pirates &amp;amp; traders&lt;br /&gt;
|aut=ClymAngus&lt;br /&gt;
|con=Cdr. Wyvern&lt;br /&gt;
|date=2009-09-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Klepto-HUD OXP|Klepto-HUD]] is a different take on a HUD with precise crosshairs&lt;br /&gt;
|aut=Kleptoid&lt;br /&gt;
|date=2006-03-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://sancho.dk/oolite/lane_legal.zip ''Lane Legal Racers''] adds NPC versions of [[Krait]]s, [[Mamba]]s, and [[Sidewinder]]s from different [[Racers#Listing_of_sponsored_teams|racing teams]]&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-09-27&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Lave OXP|Lave]] is a system make-over for Lave, adding all features described in The Dark Wheel novella included with original Elite&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2009-12-31&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Lave Academy OXP|Lave Academy]] adds Lave Academy Station above Lave &amp;amp; other planets, with 3 mini-games to test Commanders' skills&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-06-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[http://www.boxcn.net/shared/9q1cbydgan LinkG7] is a mission in Galaxy 7&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-02-16&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Llama]] adds the Llama fighter / trader. Updated from the version of Oosat1 to fix a small bug&lt;br /&gt;
|aut=Flying_Circus&lt;br /&gt;
|date=2006-02-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://www.boxcn.net/shared/jtpt2vlol5 Long Range Target Scanner] shows all ships currently in your system and allows to target them&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-05-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[LongWay_OXP|Long Way Around]] adds a transport mission well suited to the novice in Galaxy 1&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2009-04-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Longshot]] adds the Longshot fighter / trader, regarded by many as a cheaper alternative to the Cobra Mk III&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Lovecats.oxp|Lovecats]] is a mission about love &amp;amp; betrayal amongst the feline races of Galaxy 4. Fast ship &amp;amp; hard heart required!&lt;br /&gt;
|aut=johnsmith&lt;br /&gt;
|date=2010-01-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Second-hand ships|M-Pack (rusties)]] adds rusty banger versions of all Classic Elite ships in poor condition but still can haul cargo&lt;br /&gt;
|aut=murgh&lt;br /&gt;
|date=2006-01-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Manta]] adds the Manta light escort craft&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Marett Space Corporation OXP|Marett Space Corporation]] releases [[Adder Mk II]], [[Mosquito Trader]], [[Mosquito Sport]], new fighters / medium traders&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://www.crimsonforge.co.uk/cloister/MedusaHud.oxp.zip Medusa HUD] is an alternative HUD&lt;br /&gt;
|aut=ClymAngus&lt;br /&gt;
|date=2009-01-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Mega-Walnut Dashboard OXP|Mega-Walnut Dashboard]] is a generic version of the fabled Fer de Lance HUD&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2005-07-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Merlin_(Oolite)|Merlin]] Ships are interceptors used by the Police &amp;amp; Navy, but also available on the open market&lt;br /&gt;
|aut=Charlie&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[MildAudio]] Sound Set&lt;br /&gt;
|aut=xaotik&lt;br /&gt;
|date=2006-02-15&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Military_Fiasco|Military Fiasco]] adds a navy mission for Commanders with &amp;gt; 1,000 kills. Also equips Navy with powerful cruisers&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2011-01-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Military station|Military Station]] adds well armed Military Stations to the more advanced systems&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Military Stingray Mk. II|Military Stingray]] adds an ex-military ship that may show up in pirate hands or for the player to buy&lt;br /&gt;
|aut=CaptKev&lt;br /&gt;
|date=2007-03-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Milspec HUD|Milspec HUD]] is an alternative HUD with targeting aids and an emphasis on functionality&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2010-07-08&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Misjump_Analyser|Misjump Analyser]] scans witchspace &amp;amp; on detection of disturbances sounds an alarm &amp;amp; logs location of disturbance&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2010-05-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?p=135619#p135619 Misjump Inducer] can turn on/off misjumps on demand&lt;br /&gt;
|aut=Switeck&lt;br /&gt;
|date=2011-04-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Missile_Analyser|Missile Analyser]] scans incoming missiles &amp;amp; sets target to incoming missile when it is no standard missile&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2010-05-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Missiles_and_Bombs|Missiles &amp;amp; Bombs]] adds a wide variety of missiles &amp;amp; bombs that are are available to player &amp;amp; NPCs alike&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2009-12-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Missionaries OXP|Missionaries]] adds clerics of four faiths who spam Commanders with requests to worship their Gods&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Moccasin]] adds light escort craft from Xeceesian Shipyards modeled after ArcElite core ship&lt;br /&gt;
|aut=CaptSolo&lt;br /&gt;
|date=2011-06-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Mod-HUD]] is a slight modification / re-organization of the standard Oolite HUD without surround boxes&lt;br /&gt;
|aut=CaptSolo&lt;br /&gt;
|date=2011-05-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/monument.zip Monument] sometimes adds a monument to famous Commanders close to the Sun&lt;br /&gt;
|aut=dajt&lt;br /&gt;
|date=2005-05-28&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Morrigan]] adds a vast trade ship to the Universe&lt;br /&gt;
|aut=Flying_Circus&lt;br /&gt;
|date=2009-12-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Oosounds2_OXP|''Murgh's Replacement Sounds'']] contains 10 new sounds&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2005-08-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Murgh_Xships OXP|Murgh's X-Ships]] adds [[Bandy-Bandy]], [[Chuckwalla]], [[Eel Rapier]], [[Taipan]] (fast courier craft &amp;amp; 2 light escort ships)&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2009-09-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[NavalGrid OXP|Naval Grid]] enhances recharging rates by linking the naval energy unit to military-boosted shields&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-03-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Neolite Ships]] is an Oolite ships replacement set&lt;br /&gt;
|aut=SimonB&lt;br /&gt;
|date=2009-07-11&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/newships.oxp.zip ''New Ships''] adds [[Hamadryad]], [[Josher]], [[Naga]], [[Ringhals]] (mining and trade ships from previous versions of Elite)&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2006-05-15&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/hud_ng.oxp.zip NG HUD] is an alternate HUD. All standard functions, but with a personal view&lt;br /&gt;
|aut=alien&lt;br /&gt;
|date=2005-03-06&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[NPC-shields OXP|NPC-shields]] gives shields to NPCs, together with a nice glow effect&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-04-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://wiki.alioth.net/index.php/Numeric_Style_HUDs Numeric Style HUDs] New invention/numeric gauges.[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9977 Info]&lt;br /&gt;
|aut=CommonSenseOTB&lt;br /&gt;
|date=2011-06-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/nuvipers.zip Nu Vipers] increases the types of Viper patrol ships with [[GalCop Viper Mark II]], [[GalCop Viper Cruiser]]&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Nukes.oxp|Nuclear Torpedos]] adds some powerful, but slow moving, missiles&lt;br /&gt;
|aut=E. Walch, Cdr. Wyvern&lt;br /&gt;
|date=2010-06-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Offender traders OXP|Offender Traders]] makes some traders into offenders/fugitives&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-04-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Old Ships]] adds Elite-A [[Bushmaster Miner]]s, [[Cat (Oolite)|Cat]]s, [[Chameleon (Oolite)|Chameleon]]s, [[Ghavial (Oolite)|Ghavial]]s, [[Iguana (Oolite)|Iguana]]s, [[Monitor (Oolite)|Monitor]]s, [[Ophidian (Oolite)|Ophidian]]s, [[Salamander (Oolite)|Salamander]]s&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2006-08-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Old Ships 2010]] is a retextured version of [[Old Ships]], adding the bonus Monitor 2 ship&lt;br /&gt;
|aut=pagroove&lt;br /&gt;
|con=Murgh, ADCK, Simon B, Lestradae&lt;br /&gt;
|date=2011-02-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Oo-Haul]] adds vast bulk [[L-Crate Hauler]]s to the space lanes and offers missions at [[Your Ad Here!|constores]] to safely escort them&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|con=Eric Walch, Ark&lt;br /&gt;
|date=2009-02-21&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[ooCheat_OXP|ooCheat]] adds a cheat menu to the game&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-02-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[http://www.box.net/shared/rrlm77ztzm Oolite en français] is a French Oolite localization&lt;br /&gt;
|aut=Pierre-Olivier&lt;br /&gt;
|date=2009-07-12}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[http://marc-schaffer.ch/data/OoliteGerman_V0.3.zip Oolite auf Deutsch] is a German Oolite localization&lt;br /&gt;
|aut=SwissMäc&lt;br /&gt;
|date=2009-06-02&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[http://www.box.net/shared/p3engis1ds Oolite Italiano] is an Italian Oolite localization&lt;br /&gt;
|aut=another_commander&lt;br /&gt;
|date=2010-06-15&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=Oolite in Russian: [http://www.roolite.org Roolite.org] provides localizations of Oolite 1.74.2 and some OXPs. Also check [http://www.elite-games.ru/conference/viewtopic.php?t=48476&amp;amp;start=0 Elite Games]&lt;br /&gt;
|aut=Seventh&lt;br /&gt;
|date=2009-03-26&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://www.box.net/shared/x9u5xoulkq Orbits] positions planets on orbits around the sun&lt;br /&gt;
|date=2010-07-01&lt;br /&gt;
|aut=Ebi&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Ore Processor]] extracts valuable materials from asteroid fragments when mounted to a ship's fuel scoop&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|con=Ark, Kaks, Eric Walch&lt;br /&gt;
|date=2011-01-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Orisis]] BigTraders are new passenger liners that ferry passengers around&lt;br /&gt;
|aut=pagroove&lt;br /&gt;
|con=ADCK, Thargoid&lt;br /&gt;
|date=2010-01-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Outrider (Oolite)|Outrider]] is a medium fighter produced by the [[Taranis Corporation HQ (Oolite)|Taranis Corporation]]&lt;br /&gt;
|aut=Roberto&lt;br /&gt;
|date=2006-08-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[[OXPConfig]] provides means to configure supported OXPs, to recognize errors, or to avoid clashes&lt;br /&gt;
|aut=Svengali&lt;br /&gt;
|date=2011-07-16&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[P.A. Groove Stations OXP|P.A. Groove Stations]] adds lots of different types of Coriolis and Dodec Stations&lt;br /&gt;
|aut=pagroove&lt;br /&gt;
|con=Griff, Commander McLane&lt;br /&gt;
|date=2010-04-16&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Pallas]] adds a fast but lightly shielded fighter.&lt;br /&gt;
|aut=Charlie&lt;br /&gt;
|con=Svengali&lt;br /&gt;
|date=2010-12-02&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Pelamis]] adds the Pelamis trade ship&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2006-04-24&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Phoenix]] is a strange ship, built from salvaged parts from various Serpent Class ships&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2007-01-17&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://wiki.alioth.net/index.php/Pie_Chart_Style_HUDs Pie Chart Style HUDs] New invention=&amp;gt;pie gauges.[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9788 Info]&lt;br /&gt;
|aut=CommonSenseOTB&lt;br /&gt;
|date=2011-05-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Pirate Coves OXP|Pirate Coves]] adds rock hermits that have been taken over by pirates in more dangerous systems&lt;br /&gt;
|aut=lazygun&lt;br /&gt;
|date=2011-07-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/piratetraps.oxp.zip Pirate Traps] are dummy traders which transmit details of pirates firing on them to the police&lt;br /&gt;
|aut=popsch&lt;br /&gt;
|date=2006-01-04&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Planetfall_OXP|Planetfall]] allows the player to land on and trade at the planets and moons of each system&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-04-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Pods_OXP|Pods]] adds fuel, missile, bulk &amp;amp; empty cargo pods and pods which jam, explode, have trumbles or take a few scoops&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-03-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Police_IFF_Scanner_Upgrade|Police IFF Scanner Upgrade]] highlights offender and fugitive ships with custom IFF scanner colours&lt;br /&gt;
|aut=Capt. Murphy&lt;br /&gt;
|date=2011-06-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Pteradyne Technologies Ships OXP|Pteradyne Technologies Ships]] adds the [[Excalibur]], a buyable combat ship and the [[Paladin]], a military version&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2006-12-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://www.boxcn.net/shared/xccp8ml5cq Pylon Based Equipment Remover] allows to remove a selected piece of equipment from your pylons&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-04-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Python Class Cruiser]] is a large powerful trade ship, which can also hold its own in battle&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2007-07-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/racers.oxp.zip Racers] adds [[Chicaneer Mk II]], [[Chicaneer Mk IV]], [[Dragster Mk I]], and [[Dragster Mk II]] racing ships&lt;br /&gt;
|aut=murgh&lt;br /&gt;
|date=2006-01-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Railgun OXP|Railgun]] introduces a revolutionary new weapons system to the Ooniverse&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-05-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Ramon's Anaconda]] is a fantastic re-imagining of the Anaconda freighter. Check out its special features&lt;br /&gt;
|aut=Ramon&lt;br /&gt;
|con=Griff&lt;br /&gt;
|date=2009-04-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Random_Docking_Music_OXP|Random Docking Music]] plays a random music track from a pre-set list on activating docking computers&lt;br /&gt;
|aut=Frame&lt;br /&gt;
|date=2010-05-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Random Hits OXP|Random Hits]] adds [[Space Bar|seedy space bars]] to anarchy systems that offer large bounties on the galaxy's Most Wanted Criminals&lt;br /&gt;
|aut=LittleBear&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2011-03-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://terrastorage.ath.cx/Marmagka/e8e9ce360da6bb40f5952cbe00f02501/RedSet.zip RedSet] contains red-themed backgrounds for the UI screens&lt;br /&gt;
|aut=another_commander&lt;br /&gt;
|date=2010-06-18&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.purgatori.net/reduxedvamps.htm Reduxed Vampires] adds reworked versions of the Vampire Mk I and Mk II and a Reaper &amp;quot;Gold Edition&amp;quot;&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2010-10-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[RegistrationID|Registration ID]] adds ID tags to all Oolite standard ships&lt;br /&gt;
|aut=Frame&lt;br /&gt;
|date=2010-02-28&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Remorse_Of_Conscience_v2|Remorse Of Conscience]] is a trade ship with a large hold, that can hold its own in combat&lt;br /&gt;
|aut=8-bit Apocalypse&lt;br /&gt;
|date=2005-02-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Renegade Pirates OXP|Renegade Pirates]] adds rare, very well-armed, high bounty pirate versions of Classic Elite ships&lt;br /&gt;
|aut=LittleBear&lt;br /&gt;
|con=Aegidian, Griff&lt;br /&gt;
|date=2006-12-03&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/RVandGS.zip Renegade Viper + Grass Snake] adds [[Renegade Viper|stolen Vipers]] which earn large bounties &amp;amp; [[Grass Snake]], a large pirate trade ship&lt;br /&gt;
|aut=8-bit Apocalypse&lt;br /&gt;
|date=2004-11-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Repair_Bots_OXP|Repair 'Bots]] adds a pylon mounted canister of repair nanobots which attempt to fix damaged equipment in mid-flight&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-02-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Ring_Racer_OXP|Ring Racer]] adds the Corporate Systems Ring Racing League to Galaxy 1&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-04-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Rock Hermit Locator]] adds equipment to locate Rock Hermits&lt;br /&gt;
|aut=Frame&lt;br /&gt;
|date=2011-03-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Saleza Aeronautics]] adds [[Bellatrix Cruiser]]s, [[Rigel Bomber|Rigel Tactical Bomber]]s, and [[Saiph Interceptor]]s to high tech corporate systems&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2010-10-24&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Santa]] adds very rare Santa Sledge to space lanes escorted by plasma gun toting reindeer space bikers!&lt;br /&gt;
|aut=Griff&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2010-05-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.purgatori.net/scorpius.htm Scorpius] adds a heavily armoured private trading and transport vessel, protected by Vampire escorts&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|con=Griff&lt;br /&gt;
|date=2011-02-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Scourge of the Black Baron]] features combat &amp;amp; transport Galaxy 1 missions&lt;br /&gt;
|aut=Rxke&lt;br /&gt;
|con=Kaks, Thargoid&lt;br /&gt;
|date=2010-08-07&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Scout]] is a cheap but good looking ship from Staer9 that shares a lot of technology with the [[Xeikil]]&lt;br /&gt;
|aut=Staer9&lt;br /&gt;
|date=2011-05-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Second Wave OXP|Second Wave]] adds variants of Thargoid Warship, Thargon Robot Fighter and alien ships&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-06-06&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Selezen's S-Ships]] adds [[GalCop SWAT Viper]]s and [[Oresrian Trader]]s&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|date=2007-07-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Sell equipment OXP|Sell Equipment]] allows for small fee, resale of equipment at 60% price at suitable tech level world&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-02-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[[Shady Cobra OXP|Shady Cobra]] adds shader effects to Cobra Mk III&lt;br /&gt;
|aut=Ahruman&lt;br /&gt;
|date=2007-07-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Shady Sungs]] adds replacement textures for all Classic Elite Ships&lt;br /&gt;
|aut=Sung, ADCK&lt;br /&gt;
|date=2010-05-21&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://wiki.alioth.net/index.php/Shield_Equalizer_%26_Capacitors_OXP Shield Equalizer] balances shield energy automatically. [http://wiki.alioth.net/index.php/Shield_Equalizer_%26_Capacitors_OXP Capacitors] store unused shield energy for use later&lt;br /&gt;
|aut=CommonSenseOTB&lt;br /&gt;
|date=2011-05-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Skrounk All-Stars Limited]] adds [[All Stars Large Freighter|Large Freighter]], [[Seymour Class Sled]], [[Starbelly Class Sled]], [[Starhawk]] &amp;amp; [[Starwolf_Mark_I|Starwolf Mk I]]&lt;br /&gt;
|aut=goji62&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Smivs%27_ShipSet|Smiv's Shipset 3.0]] re-textures the standard Oolite ships beautifully with a realistic look &amp;amp; non-shader lighting effects&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2010-12-08&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Snark]] is a powerful fighter/trader, often used by pirates and bounty hunters&lt;br /&gt;
|aut=Flying_Circus&lt;br /&gt;
|date=2006-06-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=10515 Sniper Sight] is equipment to help with long distance targeting&lt;br /&gt;
|aut=Wildeblood&lt;br /&gt;
|date=2011-07-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=10176 Sniper Scope MilHUD integrated] is an version of MilHUD with integrated Sniper Sight functionality&lt;br /&gt;
|aut=Wildeblood&lt;br /&gt;
|date=2011-06-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Snoopers]] adds the galactic news network channels&lt;br /&gt;
|aut=DaddyHoggy&lt;br /&gt;
|con=Disembodied, Drew, Svengali&lt;br /&gt;
|date=2011-05-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Solid Gold Cobra Mk.3]] is a limited edition Cobra Mk3 to celebrate its 25 years anniversary&lt;br /&gt;
|aut=ADCK&lt;br /&gt;
|date=2010-06-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[http://www.purgatori.net/Sothis.htm Sothis Space Station] is a station from [[Isis Interstellar]] with a compact design of comparable size to a standard Coriolis&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2010-08-08&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Spearhead Interceptor Mk.I]] is a pure fighter, fast &amp;amp; nippy but with weak shields, no cargo bay. Can be twitchy to fly&lt;br /&gt;
|aut=Randell&lt;br /&gt;
|date=2006-07-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[S.I.R.F.|Special Interstellar Repair Facilities]] offer different trading strategies &amp;amp; repair facilities on uncommon trading routes&lt;br /&gt;
|aut=Tinker&lt;br /&gt;
|date=2010-07-02&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.purgatori.net/spectres.htm Spectre] adds [[Isis Interstellar]]'s Vampire Mk V, a secret military vessel fighting Thargoids in witch space&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2011-01-16&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Spy Hunter OXP|Spy Hunter]] is a mission for Galactic Navy for Commander with rating of 'Dangerous' or above&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|date=2009-04-11&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Staer9 Spectre]] is a cheap small fighter with high maneuverability that flopped in the market&lt;br /&gt;
|aut=Staer9&lt;br /&gt;
|date=2011-05-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Star-Jelly]] Beautiful translucent organisms sometimes found in Asteroid fields&lt;br /&gt;
|aut=Smivs,Staer9&lt;br /&gt;
|date=2011-05-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Star Wars Ships]] adds [[A-Wing]], [[B-Wing]], [[Lambda Shuttle]], [[Tie-Fighter]], [[Tie-Interceptor]], [[X-Wing]], [[Y-Wing]]&lt;br /&gt;
|aut=Azzameen&lt;br /&gt;
|date=2006-05-31&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Status Quo Q-bomb OXP|Status Quo Q-bomb]] changes the behaviour of Q-bombs according to the [[Status Quo]] novel&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-02-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[S.T.E]] is a step up from the Cobra III with improved trading capabilities and increased speed&lt;br /&gt;
|aut=Rustybolts&lt;br /&gt;
|date=2009-07-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Stealth OXP|Stealth]] is a small G3 mission showcasing new scanner capabilities &amp;amp; introducing stealth ships&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-03-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://www.purgatori.net/Steampunk%20HUD.htm Steampunk HUD] adds a steampunk style HUD by [[Isis Interstellar]]&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2010-01-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Stellar Serpents OXP|Stellar Serpents]] adds huge space-born serpent monsters which move from system to system and are good hunting prey&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-07-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[http://sancho.dk/oolite/sunskimmers.zip Sunskimmers] adds ships to the sun/planet corridor&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-08-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[SuperCobra]] is larger, faster with stronger hull than Cobra Mk III&lt;br /&gt;
|aut=8-Bit Apocalypse&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2010-10-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Superhub]] from GASEC is the first station that is capable of transporting itself to its destination&lt;br /&gt;
|aut=P.A. Groove&lt;br /&gt;
|date=2009-11-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Swift]] is a very fast ship often used by pirates or bounty hunters with limited cargo space &amp;amp; nominal shields&lt;br /&gt;
|aut=Charlie&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Switeck's Mod OXP|Switeck's Mod]] rebalances ships &amp;amp; market prices. Adds Medium, Hard, and Harder Jameson saves&lt;br /&gt;
|aut=Switeck&lt;br /&gt;
|date=2011-01-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[System Demux (Oolite)|System Demux]] textures home planet, adds planet/moon combination to systems&lt;br /&gt;
|aut=DrBeeb&lt;br /&gt;
|date=2010-07-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[System Redux (Oolite)|System Redux]] v1.2 textures home planet, adds planet/moon combination to systems&lt;br /&gt;
|aut=CaptKev&lt;br /&gt;
|date=2011-02-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://www.box.net/shared/r05ub873b5 TAF Reset] resets the Time Acceleration Factor (TAF) to 1.0 upon docking&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2009-09-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Taranis OXP|Taranis]] is a mission for law abiding Commanders with rating of Competent+. Adds [[Taranis Corporation HQ (Oolite)|Taranis Corporation HQ]]&lt;br /&gt;
|aut=Roberto&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2009-10-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Target_Autolock_OXP|Target Autolock]] updates [[Scanner Targeting Enhancement]] to auto-lock onto attacking ships&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-02-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Target Range OXP|Target Range]] is found in all rich systems with stable governments&lt;br /&gt;
|aut=Caracal&lt;br /&gt;
|date=2010-07-24&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Target Reticle]] updates [[Scanner Targeting Enhancement]] to turn reticle red when target centred&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2010-05-31&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Taxi Galactica]] adds a Taxi Service and a non player flyable taxi cab ship to systems&lt;br /&gt;
|aut=pleb87&lt;br /&gt;
|date=2008-06-12&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Teretrurus Mk.I]] is a medium fighter/trader somewhat faster &amp;amp; tougher than Cobra Mk III, but with smaller cargo bay&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2008-02-01&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Terrapin|Terrapin Trader]] is a medium fighter/trader. A good upgrade from Cobra Mk III&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2008-02-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Tesoura]] is a slow, but well shielded trade ship&lt;br /&gt;
|aut=Randall, Dr. Nil&lt;br /&gt;
|date=2008-02-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Thargoid Carrier]] arms Thargoids with capital carrier&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|date=2006-06-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Thargorn_Threat_oxp|Thargoid Threat]] adds [[Thargoid Terrorizer Frigate]], [[Thargoid Thargorn Battleship]], [[Thargoid Thorgon Cruiser]]&lt;br /&gt;
|aut=Arexack Heretic&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2011-02-03&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Thargoid Wars]] intensifies war with the Thargoids, featuring new attack and defense missions&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2011-07-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Tianve OXP|Tianve]] adds [[Navy Station]], as well as Visuals, including a pulsar, to the Galaxy 1 system of Tianve&lt;br /&gt;
|aut=Drew&lt;br /&gt;
|date=2009-12-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Tiger Mark I]] is a truly awesome (and very expensive) multi-role craft&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2006-05-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Tionisla Orbital Graveyard]] adds the famed graveyard to Tionisla, G1, as described in “The Dark Wheel” novella&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2011-02-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Tionisla Reporter]] adds a mission for a starting commander&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2011-07-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[TCAT OXP|To Catch a Thargoid]] is a G3 follow-up mission to Thargoid Plans, for Dangerous or Elite rank Commanders&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-12-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Torus station|Torus Station]] adds a vast 2001 style space station to very high tech level systems&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|con=Svengali&lt;br /&gt;
|date=2010-10-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Total patrol OXP|Total Patrol]] makes police ships patrol between planet, witchpoint &amp;amp; sun&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-03-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[ToughGuys|ToughGuys]] Adds 3 levels of increased toughness of 'Baddies', and gives a backdrop for an immersive storyline&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2011-02-16&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Trader Outpost (Oolite)|Trade Outpost]] adds Griff's trade outpost without ads&lt;br /&gt;
|aut=CaptKev, Griff, Ark&lt;br /&gt;
|date=2009-02-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Traffic_Control_OXP|Traffic Control]] personnel gives help with approach to and manual docking at all main stations&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-06-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Transhab station|Transhab Station]] adds a large station with rotating arms to some medium tech level systems&lt;br /&gt;
|aut=Draco_Caeles&lt;br /&gt;
|date=2006-06-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Transports]] adds [[CoachWhip]], [[Coral]], [[Woma]]&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|con=Eric Walch, Kaks&lt;br /&gt;
|date=2010-12-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://wiki.alioth.net/images/d/d9/TrekHud.zip Trek HUD] replaces your HUD with a Star Trek NG LCARS-style HUD&lt;br /&gt;
|aut=barabis&lt;br /&gt;
|date=2008-11-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Trident Down]] contains a series of Galaxy 4 missions investigating a vicious attack on a [[Executive SpaceWays|Trident Shuttle]]&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2010-12-31&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[UPS Courier]] offers Commanders transport of goods/documents &amp;amp; occasional combat missions&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2011-03-29&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Urutu Mark III &amp;amp; Urutu Mark IV]] are medium fighters/traders from Elite-A&lt;br /&gt;
|aut=Milinks&lt;br /&gt;
|date=2006-09-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Vampire]] adds the Purgatori Vampire series of combat ships&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2007-01-29&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Vampire - Diamondback]] adds the Diamondback Vampire series of combat ships&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2010-04-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Vampire - Dominatrix]] adds the Dominatrix Vampire series of combat ships&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2009-12-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Vector OXP|Vector]] is a unusual mission type - fast money, slavers, tricks and GalCop is watching you...&lt;br /&gt;
|aut=Svengali&lt;br /&gt;
|date=2011-02-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Velocity_OXP|Velocity]] is a fast fighter ship&lt;br /&gt;
|aut=Sabre&lt;br /&gt;
|date=2009-09-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.purgatori.net/Venom.oxp.zip Venom] adds [[Venom]]s in normal and renegade versions  from [[Isis Interstellar]]&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2009-12-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Vortex OXP|Vortex]] A new ex-military player ship. Rare, expensive and powerful - kitted out with advanced and unique features&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-03-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.purgatori.net/wasps.htm Wasps] adds formation flying wasps, queen wasps, and wasp nests&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|con=Thargoid, Ahruman, Eric Walch&lt;br /&gt;
|date=2010-08-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/weeviloid2.zip ''Weeviloid''] adds [[Weeviloid Hunter]]s, fearsome multi-gunned war ships and [[Weeviloid Scoutship]]s, light trade ships&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2006-05-11&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Welcome_Mat_OXP|Welcome Mat]] upgrades the comms systems to expand the information that is given on arrival in new system&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-06-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Werewolf]] from [[Isis Interstellar]] has 3 variants:  [[Werewolf|Werewolf ~ Damage Inc.]], [[Werewolf|Werewolf (Civilian)]] &amp;amp; [[Werewolf|Werewolf (Purgatori Model)]]&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2011-02-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Wolf_Mk.2_%28Oolite%29|Wolf Mk II]] adds the powerful Wolf Mk II, as seen in Elite-A&lt;br /&gt;
|aut=Ark&lt;br /&gt;
|date=2009-07-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://wiki.alioth.net/images/0/06/Wolfs_variants.zip Wolfwood's Variants] adds [[Asp_Mk.I|Asp Mk I]], [[Cobra Courier]], [[Cobra Rapier]], [[Drake]], [[Drake Mk II]] &amp;amp; [[Wolf Mk I]]&lt;br /&gt;
|aut=Wolfwood&lt;br /&gt;
|date=2008-02-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Wormhole restoration OXP|Wormhole Restoration]] adds a new way to leave interstellar space without using fuel, expanding on Thargoid backstory&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-05-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Xarik]] is an advanced aircraft, last creation of the late Prof. Eisel Xarik. Used by pirates, traders, and hunters&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2010-02-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Xeikil]] adds a player, a GalCop interceptor, and 24 pirate variants of Staer9 Industries' current top fighter&lt;br /&gt;
|aut=Staer9&lt;br /&gt;
|date=2011-05-16&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Xeikil MK2]] adds a player, a GalCop interceptor, and 24 pirate variants of Staer9 Industries' replacement [[Xeikil]]&lt;br /&gt;
|aut=Staer9&lt;br /&gt;
|date=2011-05-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[YellOo_Cabs]] adds YellOo Cab Co taxis to the Ooniverse. NPC and Buyable&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2011-01-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Your Ad Here!]] adds Convenience Stores [[Pi-42]], [[Tescoo Oxpress]], [[Star]], [[Mall Wart]], [[Sainsboory's]] &amp;amp; [[Security Sidewinder|security sidewinders]]&lt;br /&gt;
|aut=Griff&lt;br /&gt;
|con=DaddyHoggy, Pangloss, Disembodied, Eric Walch&lt;br /&gt;
|date=2011-02-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Z-ships]] adds [[Z-ships_Asp_Explorer|Asp Explorer]], [[Z-ships_Cobra_Commodore|Cobra Commodore]], [[Z-ships_Porcupine|Porcupine]] &amp;amp; [[Z-ships_Python_Courier|Python Courier]]&lt;br /&gt;
|aut=Zieman&lt;br /&gt;
|date=2010-03-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9056 Z-GrOovY Griff's Cobra Mk3 Variety Pack] adds multiple Griff's Cobra Mk3 with alternate hull paintings&lt;br /&gt;
|aut=dertien&lt;br /&gt;
|date=2011-01-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9306 Z-GrOovY System Stations] adds Griff-based Tetrahedron, Octahedron, Coriolis, Dodecahedron, Icosahederon stations&lt;br /&gt;
|aut=dertien&lt;br /&gt;
|date=2011-03-03&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9146 Z-GrOovY Viper Raider] adds a new player ship based on the police Viper&lt;br /&gt;
|aut=dertien&lt;br /&gt;
|date=2011-02-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9056 Z-GrOovY YAH Sidewinder Variety Pack] adds multiple Your Ad Here! Constore defenders with alternate hull paintings&lt;br /&gt;
|aut=dertien&lt;br /&gt;
|date=2011-01-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9056 Z-GrOovY YellOo Cab Variety Pack] adds the Moray Starboat with taxi hull painting&lt;br /&gt;
|aut=dertien&lt;br /&gt;
|date=2011-01-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Work in Progress OXPs  ==&lt;br /&gt;
The following table contains OXPs that either have not yet been released by their authors but are already being discussed on the [http://www.aegidian.org/bb/viewforum.php?f=4 Expansion Pack Forum], or released OXPs that still have WIP status. Links get you either to the respective discussion or the Wiki page if it already exists.&lt;br /&gt;
{{OXPListTableHeader}}&lt;br /&gt;
&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[http://www.box.net/shared/moreq536ht Nexus missile]. Three versions of a multi-warhead missile. Like the anti-thargoid missile but not just for (against) thargoids.&lt;br /&gt;
|aut=UK_Eliter&lt;br /&gt;
|date=2011-07-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?t=8341 Animated Ships] adds animated butterflies flapping their wings as a demo&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-08-06&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9864 Cargo Scanner] scans targeted cargo containers to find out what they contain&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-05-17&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://www.aegidian.org/bb/viewtopic.php?t=8526 Comms Demo] provides a way to communicate with NPC ships&lt;br /&gt;
|aut=Kaks&lt;br /&gt;
|date=2009-10-26&lt;br /&gt;
|work=N}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=6&amp;amp;t=9087 Guerilla War] puts you in a position to lead a fighter squadron&lt;br /&gt;
|aut=Ramirez|date=2011-04-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.box.net/shared/0i2fnrc175t Katipo] adds a very fast, moderate maneuverability, low cargo ship with low thrust&lt;br /&gt;
|aut=Simon B&lt;br /&gt;
|date=2011-03-03&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9441 Miner Pod] breaks up asteroids and collects the splinters&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-03-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?t=8275 Mining] adds mines to protect and provide resources for to get gold&lt;br /&gt;
|aut=docwild&lt;br /&gt;
|date=2010-07-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Nuit Space Station OXP|Nuit Space Station]] is the newest creation of [[Isis Interstellar]]&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2009-11-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mission&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?p=130221#p130221 Oresrati Challenge] adds a fun mission to the loneliest system of the Ooniverse, Oresrati&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-04-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9946 Phantom] is a trader/fighter from [[Isis Interstellar]] with external missiles&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2011-05-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?p=138226#p138226 Shield Cycler] distributes shield energy between fore and aft shields&lt;br /&gt;
|aut=Lone_Wolf&lt;br /&gt;
|date=2011-05-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=5484 Solar System] adds extra planets and jump gates to a system&lt;br /&gt;
|aut=Frame&lt;br /&gt;
|date=2009-01-11&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9472 Sun Skimmer Pod] adds a pod that goes sun skimming and returns full of fuel&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-03-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9488 Target Tracker] aligns your ship on your target&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-03-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9353 Thor Class Supercarrier] adds a Navy Carrier as a replacement pack for the Behemoth and the Galactic Navy&lt;br /&gt;
|aut=dertien&lt;br /&gt;
|date=2011-03-03&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9242 Wormhole Drones] creates a path of worm holes to lead you to your destination system&lt;br /&gt;
|aut=Mauiby de Fug&lt;br /&gt;
|date=2011-02-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[http://www.aegidian.org/bb/viewtopic.php?t=8541 Zygoroids] add new beautifully textured asteroid models to the Ooniverse&lt;br /&gt;
|aut=ZygoUgo&lt;br /&gt;
|date=2010-10-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== OXPs with Problems ==&lt;br /&gt;
The following table contains OXPs that have problems eg. broken download, or have been written for versions of Oolite earlier than the current 1.75.2&lt;br /&gt;
{{OXPListTableHeader}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Amen Bricks Megaships|Amen Brick's Megaships]] adds [[Battleship]]s, [[Biodome]]s, [[Cruiseship]]s, [[Hospitalship]]s, [[Supercargo]]s, [[Superlifter]]s, and [[Yacht - Amen Class|Yacht]]s (This version 1.1 contains a corrupted shipData.plist)&lt;br /&gt;
|aut=Amen Brick&lt;br /&gt;
|date=2008-07-11}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Cataclysm OXP|Cataclysm]] takes up the threads of Constrictor Hunt and Thargoid Plans, and sends you on your biggest Navy mission yet&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2009-01-06&lt;br /&gt;
|work=N}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Kirin#Download|Kirin Sport]] adds a a smaller, faster, more agile - and less well armed - civilian variant of the [[Kirin]]&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2009-07-22&lt;br /&gt;
|work=N}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Localhero_OXP|Localhero]] adds a mission campaign in the first galaxies&lt;br /&gt;
|aut=Svengali&lt;br /&gt;
|date=2008-04-09&lt;br /&gt;
|work=N}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Orb]] adds a new alien race, which might help GalCop in the battle against the Thargoids.&lt;br /&gt;
|aut=Charlie&lt;br /&gt;
|date=2007-02-13&lt;br /&gt;
|work=N}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Personalities OXP|Personalities]] adds a bunch of unique, well-known personalities from the Bulletin Board to the Ooniverse&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2009-11-05&lt;br /&gt;
|work=N}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[[Save Anywhere]] allows you to save your game at any OXP Station&lt;br /&gt;
|aut=Frame&lt;br /&gt;
|date=2008-10-01&lt;br /&gt;
|work=N}}&lt;br /&gt;
|}&lt;br /&gt;
[[Category:Oolite expansion packs]]&lt;br /&gt;
[[Category:OXP Lists]]&lt;br /&gt;
[[Category:Factual]]&lt;/div&gt;</summary>
		<author><name>Mcarans</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.alioth.net/index.php?title=OXP_List&amp;diff=28639</id>
		<title>OXP List</title>
		<link rel="alternate" type="text/html" href="https://wiki.alioth.net/index.php?title=OXP_List&amp;diff=28639"/>
		<updated>2011-07-26T20:34:36Z</updated>

		<summary type="html">&lt;p&gt;Mcarans: /* Sortable Table of OXPs */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
== OXP Categories ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; width=&amp;quot;100%&amp;quot; style=&amp;quot;border-collapse: collapse; border-width: 1px; border-style: solid; border-color: #ffffff; table-layout: fixed; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; width=&amp;quot;70px&amp;quot; style=&amp;quot;margin: 0px; padding: 0px; border-width: 1px; border-style: solid; border-color: #ffffff; background-color: #e7e7ff; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot; |&amp;lt;p style=&amp;quot;font-size: 13px;&amp;quot;&amp;gt;Category&amp;lt;/p&amp;gt;&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;margin: 0px; padding: 0px; border-width: 1px; border-style: solid; border-color: #ffffff; background-color: #e7e7ff; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot; |&amp;lt;p style=&amp;quot;font-size: 13px;&amp;quot;&amp;gt;Description of OXP Category&amp;lt;/p&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Activities_OXPs|Activities]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Allow Commanders to carry out a new activity or task eg. racing, gas giant skimming, taking out loans&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Dockables_OXPs|Dockables]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Add new objects that the player can dock with eg. carriers, space bars, casinos, fuel stations. Also, see [[Oolite Stations]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Ambience_OXPs|Ambience]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Change or add to the scenery, visuals or sound effects eg. planet skins, add new planets/moons to systems, move suns further away, dim nebulae, add monuments&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Equipment_OXPs|Equipment]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Buy upgrades for your ship excluding weapons&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Mechanics_OXPs|Mechanics]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Change the game play in a specific way eg. alter market mechanics, add more pirates&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:HUDs_OXPs|HUDs]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Modifications of your dials, gauges and other read-outs&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Missions_OXPs|Missions]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|New missions for Commanders to undertake. For more information, see [[Oolite Missions]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Retextures_OXPs|Retextures]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Retexture existing objects, either by replacing or adding variations, but without adding objects that did not exist before&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Ships_OXPs|Ships]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|New ships, except dockable ships. Also, see [[Oolite Ships]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Systems_OXPs|Systems]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Alter multiple star systems in a number of ways eg. combinations of changing main station and local police ships, adding new stations, ships, activities, missions&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Weapons_OXPs|Weapons]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Addons for your ship for blowing up the baddies&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Misc_OXPs|Misc]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|OXPs that don't fit into the other categories eg. debug consoles, internationalisations, config mechanisms, demo OXPs&lt;br /&gt;
|}&lt;br /&gt;
OXP authors: if you are unsure how to categorise your OXP or if you wish to update the details of an OXP for an author who has disappeared, please seek advice on the [http://www.aegidian.org/bb/viewforum.php?f=4 Expansion Pack Forum] before proceeding. Please put your OXP in one category only. You can edit the section below to add your OXP.&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Sortable Table of OXPs ==&lt;br /&gt;
The following table is optimized for a horizontal screen resolution of at least 1280px so that all OXP descriptions fit on one line.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; width=&amp;quot;100%&amp;quot; style=&amp;quot;border-collapse: collapse; border-width: 1px; border-style: solid; border-color: #ffffff; table-layout: fixed; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;border-width: 1px; border-style: solid; border-color: #ffffff; background-color: #e7e7ff; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot; |The &amp;quot;C&amp;quot; column indicates compatibility with Oolite beta 1.75:&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Y&amp;quot;=compatible, &amp;quot;Y*&amp;quot;=compatible (but the OXP is not in full working order), &amp;quot;N&amp;quot;=incompatible,  blank=unknown/untested.&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;!-- KEEP DESCRIPTIONS (desc=...) ALPHABETICAL --&amp;gt;&lt;br /&gt;
&amp;lt;!-- KEEP LENGTHS OF DESCRIPTIONS TO THAT OF EXISTING ENTRIES OR LESS --&amp;gt;&lt;br /&gt;
{{OXPListTableHeader}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Accessories OXP|Accessories]] replaces the textures of all Stations and non-ship objects in Oolite with a more detailed and realistic look&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2010-06-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Accipiter]] is the market entry from Xeceesian shipyards, a strong &amp;amp; fast all purpose vessel for experienced commanders&lt;br /&gt;
|aut=CaptSolo&lt;br /&gt;
|con=Staer9, Griff&lt;br /&gt;
|date=2011-05-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Aegidian%27s Specials]] adds the powerful [[Mussurana]], the [[Asp (Oolite)#Notable features|Asp Mark II Special]], and a new cargo canister&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2009-07-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Aegidian%27s X-Ships]] adds [[Python ET Special]]s, [[Cobra Mk.2 (Oolite)|Cobra Mk II]]s, [[Taipan]]s, [[Asp (Oolite)#Notable features|Asp Mark II Special]]s, and [[Sidewinder (Oolite)#Notable features|Sidewinder Special]]s&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2009-04-29&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Pirate Clan Blitzspears|Amen Brick's Pirate Clan One: The Blitzspears]] adds the [[Assassin Blitzspear|Assassin]], the [[Hoodlum]], the [[Scoundrel]], and the [[Spiv]]&lt;br /&gt;
|aut=Amen Brick&lt;br /&gt;
|date=2008-06-30}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Amiga Replacement Sounds]] is based on the sound set used in the Amiga version of the original Elite&lt;br /&gt;
|aut=EAGLE 5&lt;br /&gt;
|date=2006-03-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Systems&lt;br /&gt;
|desc=[[Anarchies OXP|Anarchies]] overhauls legal ratings and spices up anarchies with [[Hacker Outpost]]s, [[Salvage Gang]]s, special stations &amp;amp; ships&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|con=Killer Wolf, Griff, Cdr. Wyvern, Murgh, Aegidian, 8-Bit Apocalypse&lt;br /&gt;
|date=2011-03-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9462 Another HUD] is based on Killer Wolf's Generic HUD&lt;br /&gt;
|aut=NorthenderPNE&lt;br /&gt;
|date=2011-03-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Aphid]] adds the stylish Aphid Escort Service&lt;br /&gt;
|aut=8-Bit Apocalypse&lt;br /&gt;
|date=2005-01-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Aquatics OXP|Aquatics]] adds the Aquarian Shipbuilding Corporation of Aqualina, G3 along with its ships and a mission&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-03-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Armoured Transport Type 1]] adds Gaundlet's [[Gaundlet Armoured Transport Type1|Armoured Transport Type 1]] and [[Gaundlet Armoured Escort Viper|Armoured Escort Viper]] that ferry valuables&lt;br /&gt;
|aut=Arexack Heretic&lt;br /&gt;
|date=2005-12-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Armoury OXP|Armoury]] adds AMS, captured Thargons, drones, probes, a missile rack, some bombs, and the missile machine&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-06-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[The Assassins Guild OXP|Assassins Guild]] adds 21 missions involving murder to order in Galaxy 7&lt;br /&gt;
|aut=Littlebear&lt;br /&gt;
|date=2011-05-03&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Asteroid Storm]] adds different types of asteroids &amp;amp; a mission where a station in G1 is threatened by a large asteroid strike&lt;br /&gt;
|aut=LittleBear, Charlie&lt;br /&gt;
|date=2011-01-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Aurora]] adds huge passenger ships for the wealthiest in society&lt;br /&gt;
|aut=pagroove&lt;br /&gt;
|con=Griff, Thargoid&lt;br /&gt;
|date=2010-11-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://www.mediafire.com/?fnc65em7uh5un1d Auto ECM] fires the ECM once when a missile is fired at the player's ship. See the [http://aegidian.org/bb/viewtopic.php?p=138124#p138124 BB] for more info&lt;br /&gt;
|aut=Switeck&lt;br /&gt;
|date=2011-05-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Auto eject OXP|Auto Eject]] ejects your escape pod automatically when your energy becomes too low&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2010-06-16&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Automatic Chaff System]] provides an enhanced chaff-based missile countermeasure system&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2010-06-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Baakili Far Trader]] adds a dockable alien ship&lt;br /&gt;
|aut=Zieman&lt;br /&gt;
|date=2010-09-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Bandersnatch]] adds a pirate capital vessel armed with 4 x fore lasers&lt;br /&gt;
|aut=Flying_Circus&lt;br /&gt;
|date=2009-11-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Beer Cooler]] allows you to fit your ship with a beer cooler&lt;br /&gt;
|aut=Maik&lt;br /&gt;
|date=2010-08-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Behemoth]] adds a dockable Navy cruiser carrying [[Navy Asp]]s and [[Navy Viper]]s&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2011-01-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[ADCK%27s Behemoths]] adds shadered versions of the [[Behemoth]],  [[Galactic Navy OXP|Galactic Navy]] ships and stations, and then some&lt;br /&gt;
|aut=ADCK&lt;br /&gt;
|con=Aegidian, pagroove, Nemoricus, Selezen, Simon B&lt;br /&gt;
|date=2010-04-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Behemoth Spacewar]] adds intelligence to the Behemoth and brings a combat with Thargoids&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2010-01-09&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[BGS|BGS - Background Set]] framework for images, sounds and ambient music&lt;br /&gt;
|aut=pagroove, Svengali&lt;br /&gt;
|date=2011-03-16&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[BigShips OXP|Big Ships]] ensures that large ships do not dock and controls population of systems with them&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2009-11-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Black Monk Monastery]] offers loans in advanced systems and adds the [[Black Monk Gunship]] to persecute defaulters&lt;br /&gt;
|aut=LittleBear&lt;br /&gt;
|date=2010-06-14&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[BlackjacksBullion OXP|Blackjack's Bullion]] starts in galaxy 2 at Telace as Commander Blackjack arrives via escape pod&lt;br /&gt;
|aut=Rustybolts&lt;br /&gt;
|date=2010-03-08&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[BlOomberg Markets]] varies the in-game economy by generating random events that affect commodity prices&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2011-03-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Boa II Clipper Class]] is a development of the Boa Class Cruiser, adding a third engine at the cost of cargo space&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2011-01-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Boomslang]] adds a mid-range multi-role ship. Used by pirates and traders alike&lt;br /&gt;
|aut=milinks, Jar&lt;br /&gt;
|date=2008-09-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Bounty Scanner]] adds bounty details (if any) to the targeting lock-box display when locked onto other ships&lt;br /&gt;
|aut=Frame&lt;br /&gt;
|date=2010-07-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[BountyStatus OXP|Bounty Status]] displays your current bounty (and your legal status) on the F5 manifest screen&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-05-08&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Breakable_'Standard'_Equipment_OXPs|Breakable 'Standard' Equipment]] makes some standard equipment such as HUD/Scanner damageable in combat&lt;br /&gt;
|aut=Capt. Murphy&lt;br /&gt;
|date=2011-07-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Bulk Haulers]] adds the [[Lynx Bulk Carrier (Oolite)|Lynx Bulk Carrier]], the [[Long Range Cruiser (Oolite)|Long Range Cruiser]], the [[Bulk Hauler]], and the [[Super Bulk Hauler]]&lt;br /&gt;
|aut=ADCK&lt;br /&gt;
|con=Aegidian, pagroove&lt;br /&gt;
|date=2010-04-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[BuoyRepair|Buoy Repair]] adds a [[Buoy Repair Facility]] and related ships to repair defect or destroyed nav-beacons&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|con=Svengali, Murgh, Zieman&lt;br /&gt;
|date=2011-06-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[[Cabal Common Library]] is a collection of snippets and helpers for OXPs&lt;br /&gt;
|aut=Svengali&lt;br /&gt;
|con=Cmd.Cheyd, PhantorGorth&lt;br /&gt;
|date=2011-07-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Caduceus]] adds the very expensive (and deadly) Caduceus&lt;br /&gt;
|aut=ClymAngus&lt;br /&gt;
|con=Cdr. Wyvern, another_commander, Eric Walch, Thargoid&lt;br /&gt;
|date=2010-12-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Capisastra]] adds [[Capisastra Defender]]s, [[Capisastra Hauler]]s, and [[Capisastra Warrior]]s&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|date=2006-01-12}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Captain Berf Engineer]] adds a voice for crew members&lt;br /&gt;
|aut=Captain Berf&lt;br /&gt;
|date=2009-12-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Captain Berf Pilot]] adds a voice for crew members&lt;br /&gt;
|aut=Captain Berf&lt;br /&gt;
|date=2009-12-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Captain Berf Pilot Alien]] adds a voice for crew members&lt;br /&gt;
|aut=Captain Berf&lt;br /&gt;
|date=2009-12-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Captain Berf Tactical Officer]] adds a voice for crew members&lt;br /&gt;
|aut=Captain Berf&lt;br /&gt;
|date=2009-12-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Cargo Shepherd OXP|Cargo Shepherd]] attracts cargo pods and holds them until you can scoop them, also includes a beacon&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-04-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://www.box.net/shared/4lphdkazs5 CB-HUD] features a HUD that changes based on installed equipment. See the [http://aegidian.org/bb/viewtopic.php?p=141035#p141035 BB post] for more information&lt;br /&gt;
|aut=Captain Beatnik&lt;br /&gt;
|date=2011-05-29&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Clear Skies OXP|Clear Skies]] reduces nebula effects and dims stars. Handy if your system is finding it hard to run Oolite&lt;br /&gt;
|aut=johnsmith&lt;br /&gt;
|date=2006-11-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Cobra 3.5|Chopped Cobra]] adds the Cobra Mk 3.5, a slightly faster and tougher variant with a reduced cargo bay&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2006-12-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9157 Cobra AC] is a faithful reproduction of the Cobra on the cover of the Dark Wheel novella with improved specs&lt;br /&gt;
|aut=dertien&lt;br /&gt;
|date=2011-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Cobra Clipper SAR]] adds a custom Cobra Mk III to rescue stranded Commanders&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2010-04-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Cobra III NjX]] adds a faster, tougher variation on the Classic Cobra Mk III&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|date=2006-08-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Cobra Mark III-XT]] Cobra3 with revamped architecture and upgraded systems to boost performance&lt;br /&gt;
|aut=CaptSolo&lt;br /&gt;
|date=2011-07-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.purgatori.net/cobra4.htm Cobra MkIV] is [[Isis Interstellar]]'s successor to the Cobra MkIII, available in trader and fighter variants&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2010-11-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[OosoundsCombined OXP|Combined Murgh, Wiggy &amp;amp; xaotik's sounds]] combines the 3 available packs from Murgh, Wiggy and xaotik&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|con=Murgh, Wiggy, xaotik&lt;br /&gt;
|date=2009-09-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Systems&lt;br /&gt;
|desc=[[Commies]] Adds [[Astro Mines]], [[CZGF|Factories]], [[SLAPU|Production Units]], [[Worker%27s Commuter|Commuters]] &amp;amp; special police ships to Communist systems&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|con=Ramirez, Murgh, johnsmith, HueijRevisited&lt;br /&gt;
|date=2010-05-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[CompactHUD|Compact HUD]] provides an alternative HUD with a clean look&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Condor]] adds a very powerful police and Navy Cruiser&lt;br /&gt;
|aut=Charlie&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2010-10-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Console HUD]] Azure themed semi-transparent HUD with balanced array of indicators&lt;br /&gt;
|aut=CaptSolo&lt;br /&gt;
|date=2011-07-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[http://www.box.net/shared/mq1mzoc79t Constrictor Mission Hints] adds more hints for those doing the native Constrictor Mission&lt;br /&gt;
|aut=Arexack Heretic&lt;br /&gt;
|date=2010-08-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Contractor ZZ1]] Very fast combat 'stealth' ship. Appears in-game as a Bounty-hunter and rarely as Pirate. Buyable&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2011-01-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Copperhead]] Redux of core ship in Archimedes Elite slightly modified. NPC and player buyable&lt;br /&gt;
|aut=CaptSolo&lt;br /&gt;
|date=2011-05-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Croydon Starsoarer]] adds a ship that is similar to the Asp in specification&lt;br /&gt;
|aut=SimonB&lt;br /&gt;
|con=pagroove&lt;br /&gt;
|date=2010-05-08&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[CustomSounds OXP|CustomSounds]] replaces/adds 40+ sounds, featuring music &amp;amp; extensive use of calm female computer voice for warnings&lt;br /&gt;
|aut=milinks&lt;br /&gt;
|date=2006-12-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[DWCobra|Dark Wheel Cobra]] is a custom Cobra Mk III model, as seen on the cover of the Elite Manual&lt;br /&gt;
|aut=ramon&lt;br /&gt;
|date=2006-11-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[[Debug OXP]] is a special OXP that enables JavaScript console support in test releases of Oolite (1.70 and later)&lt;br /&gt;
|aut=Ahruman&lt;br /&gt;
|date=2010-06-19&lt;br /&gt;
|work=N}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[http://deephorizonindustries.com/Gas_Giant_Skimming.html Deep Horizon - Gas Giants Skimming] allows to skim gas giants to refuel a ship or mine them for rare minerals&lt;br /&gt;
|aut=Cdr. Cheyd&lt;br /&gt;
|date=2010-07-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://deephorizonindustries.com/Lights_Down.html Deep Horizon - Lights Down] lowers ambient light within system to give more natural feel to planets and ships&lt;br /&gt;
|aut=Cdr. Cheyd&lt;br /&gt;
|date=2010-07-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://deephorizonindustries.com/Nav_Buoy.html Deep Horizon - Nav Buoy 1.0] replaces Witchpoint, Station, and other Nav Buoys with a new model&lt;br /&gt;
|aut=Cdr. Cheyd&lt;br /&gt;
|date=2011-07-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[http://deephorizonindustries.com/Pirate_Ambushes.html Deep Horizon - Pirate Ambushes] adds pirates that ambush the player upon exit from witchspace&lt;br /&gt;
|aut=Cdr. Cheyd&lt;br /&gt;
|date=2010-07-06&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://deephorizonindustries.com/DH-Systems.html Deep Horizon - Systems] textures the main planet of a system as well as adding moons and additional planets&lt;br /&gt;
|aut=Cdr. Cheyd&lt;br /&gt;
|date=2010-07-06&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Deep Space Dredger]] adds dockable Space Dredgers, defended by [[Sabre]] fighters, and a missile to salvage derelict ships&lt;br /&gt;
|aut=Sabre&lt;br /&gt;
|date=2011-01-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[DeepSpacePirates|Deep Space Pirates]] adds pirates and asteroids outside the space lanes&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2010-01-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Deepspace Ships#Deepspace HUDs|Deepspace HUD]] is an alternative HUD with two versions&lt;br /&gt;
|aut=DeepSpace&lt;br /&gt;
|date=2010-02-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Deepspace Ships]] replaces the default ships with new textures&lt;br /&gt;
|aut=DeepSpace&lt;br /&gt;
|date=2010-02-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Deposed OXP|Deposed]] is a series of missions set in Galaxy 4 for an experienced Commander&lt;br /&gt;
|aut=Cdr. Wombat&lt;br /&gt;
|con=Commander McLane, Eric Walch&lt;br /&gt;
|date=2009-03-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Systems&lt;br /&gt;
|desc=[[Dictators OXP|Dictators]] adds a range of ships and stations to each dictatorship and offers new trading opportunities to players&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2010-06-19&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Diso OXP|Diso]] adds extra planets and stations to the Diso system in Galaxy 1&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2010-11-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Display reputation OXP|Display Reputation]] lets you know your current reputations in the passenger ferrying and the cargo contract market&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2010-03-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Oolite Docking Clearance Protocol (v1.72 or later)|Docking Clearance]] enables the docking clearance protocol for all stations&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2008-12-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Griff Industries|Dodo Stations]] adds new textures for Dodecahedron stations&lt;br /&gt;
|aut=Griff, CaptKev&lt;br /&gt;
|date=2010-05-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Dr HUD OXP|Dr HUD]] is an alternative HUD&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2006-12-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Dragon|Dragon Assault Craft]] adds a heavy combat ship, and the Military Smart Missile, an improved hard head&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2008-11-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Dragon#Download|Dragon Military Missile]] adds an enhanced hardhead, seeks priority targets when ECM'd&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2008-11-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.mediafire.com/?rllzzcbkwgm Dragonfly/Firefly S.T] adds [[Dragonfly S.T]] &amp;amp; much faster [[Firefly S.T]]. Ideal small fast ships for pirates or bounty hunters&lt;br /&gt;
|aut=Rustybolts&lt;br /&gt;
|date=2009-10-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Eagle Mk II]] adds the cheap Eagle Mk II escort vessel in several different versions, including an enhanced SE&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|date=2006-03-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[ADCK%27s Eagles|Eagles Mk I to IV]] adds four Eagle Long Range Fighters to the game&lt;br /&gt;
|aut=ADCK&lt;br /&gt;
|date=2010-04-07&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Energy Equipment OXP|Energy Equipment]] adds a pylon-mounted automatically triggered top-up for when the juice runs low&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-03-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Escort Contracts OXP|Escort Contracts 1.2]] allows players to enter into short-term escort contracts with NPC lone wolf traders&lt;br /&gt;
|aut=Capt. Murphy&lt;br /&gt;
|date=2011-07-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[ETT Homing Beacon]] marks a position in space by deploying a pylon-mounted beacon&lt;br /&gt;
|aut=Twisted&lt;br /&gt;
|con=Lone_Wolf&lt;br /&gt;
|date=2011-04-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Executive SpaceWays]] adds [[Delta Long-Range Escort|Delta]]/[[Gemini Escort|Gemini]] Escorts, [[Starseeker Personal Shuttle|Starseeker]]/[[Trident Executive Shuttle|Trident Exec]] Shuttles, [[Strelka Cruise Liner]]s&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2010-06-19&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.box.net/shared/moreq536ht#/shared/moreq536ht/1/71484311/786362645/1 Extra Thargoids] adds 2 types of Thargoid ships, each of which packs surprises. Replaces the 'Poet' Frigate OXP&lt;br /&gt;
|aut=UK_Eliter&lt;br /&gt;
|date=2011-07-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Systems&lt;br /&gt;
|desc=[[Factions OXP|Factions]] from anarchy, feudal, dictatorship &amp;amp; communist systems meet in multi-government systems and start fighting&lt;br /&gt;
|aut= m4r35n357&lt;br /&gt;
|date=2011-06-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Famous Planets OXP|Famous Planets]] adds unique textures, new descriptions, and theme tunes for many planets in G1 and G2&lt;br /&gt;
|aut=pagroove&lt;br /&gt;
|con=Cdr. Cheyd, Stromboli, Pangloss, CaptKev, Drew Wagar, Thargoid, Svengali, Lestradae, UK Eliter&lt;br /&gt;
|date=2010-09-30&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Famous Planets Liners OXP|Famous Planets Liners]] adds Spaceway Liners on the 4 spaceways from Lave to Zadies&lt;br /&gt;
|aut=pagroove&lt;br /&gt;
|con=Ramirez, Presti70, Thargoid&lt;br /&gt;
|date=2009-03-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Far Arm ships|Far Arm Ships]] adds [[Far Arm Sunracer|Sunracer]]s, [[Far Arm Scow|Scow]]s, [[Far Arm Tanker|Tanker]]s, [[Far Arm Corsair|Corsair]]s, [[Far Arm Dart|Dart]]s, [[Far Arm Hunter|Hunter]]s, [[Far Arm Cruiser|Cruiser]]s, [[Far Arm Titan|Titan]]s, [[Far Arm Manchi Vulture|Vulture]]s, and [[Far Arm Manchi Wasp|Wasp]]s&lt;br /&gt;
|aut=Zieman&lt;br /&gt;
|date=2010-10-02&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Far Star Murderer]] adds a mid-range fighter / trader, with a fair sized cargo bay&lt;br /&gt;
|aut=8-Bit Apocalypse&lt;br /&gt;
|date=2005-01-01&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://www.box.net/shared/d57y0uip74 Far Sun] places suns further away from the planet than standard Oolite&lt;br /&gt;
|aut=Kaks&lt;br /&gt;
|date=2010-05-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.box.net/shared/moreq536ht Fer de Lance 3G] adds player &amp;amp; NPC Fer de Lance versions with custom paint jobs &amp;amp; altered specs. New bug fixes&lt;br /&gt;
|aut=UK_Eliter&lt;br /&gt;
|date=2011-07-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Fer de Lance NG]] adds a more powerful version of the Fer de Lance with several custom paint jobs&lt;br /&gt;
|aut=alien&lt;br /&gt;
|date=2005-03-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Ferdepai]] adds a new fighter / trader to Galaxy 2&lt;br /&gt;
|aut=johnsmith&lt;br /&gt;
|date=2006-12-17&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Systems&lt;br /&gt;
|desc=[[Feudal States]] adds the [[Jäger]], the [[Korvette]], the [[Zerstörer]], a [[Royal Hunting Lodge]] and other elements to feudal systems&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2011-05-30&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Fighter HUD (Oolite)|Fighter HUD]] is an alternative HUD&lt;br /&gt;
|aut=CaptKev&lt;br /&gt;
|date=2008-05-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Firewasp]] adds a fast interceptor&lt;br /&gt;
|aut=Draco_Caeles&lt;br /&gt;
|date=2006-05-10&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Fireworks OXP|Fireworks]] allows you a joyful celebration of whatever it is you want to celebrate&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-05-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Flight Log OXP|Flight Log]] adds a log of the last 10 systems visited&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-01-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Flying Dutchman OXP|Flying Dutchman]] adds the small chance to meet a Ghost Ship in the Ooniverse&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|con=Griff&lt;br /&gt;
|date=2011-04-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[[Freaky Thargoids OXP|Freaky Thargoids]] is a shader demonstration for Oolite&lt;br /&gt;
|aut=Ahruman&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2011-02-03&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Free Trade Zone]] adds an independent trading post of dubious legality to Multi-Government systems&lt;br /&gt;
|aut=Disembodied&lt;br /&gt;
|con=Commander McLane&lt;br /&gt;
|date=2010-10-08&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Frog Space Rickshaw]] adds a chatty space taxi service to the safer systems&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2006-01-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Fuel Collector OXP|Fuel Collector]] scoops fuel from killed ships and collects fuel while cruising, even in witch space&lt;br /&gt;
|aut=Frame&lt;br /&gt;
|con=Commander McLane&lt;br /&gt;
|date=2011-07-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Fuel Station OXP|Fuel Station]] adds fly-thru Fuel Stations and Fuel Satellites near the witchpoint and along route one&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-06-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Fuel Tank]] v2.2 mounts in place of a missile, to top up 3 light years of fuel&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2008-05-31&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Furball OXP|Furball]] adds barroom brawls that've got out of hand. Furious fugitives flee from pissed off police on the station's doorstep&lt;br /&gt;
|aut=Caracal&lt;br /&gt;
|con=m4r35n357&lt;br /&gt;
|date=2011-06-06&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Systems&lt;br /&gt;
|desc=[[Galactic Navy OXP|Galactic Navy]] adds more ships and stations to the arsenal of the Galactic Navy. Allows to join the Navy Reserves&lt;br /&gt;
|aut=Nemoricus&lt;br /&gt;
|date=2010-12-30&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[GalDrivePod]] A portable Galactic Hyperdrive unit, allowing you to complete the &amp;quot;Lost Worlds Grand Tour&amp;quot;&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2011-03-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://www.boxcn.net/shared/5dqx22u06i Galaxy Info] helps you search for systems by criteria you select and will try to locate the nearest one&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-04-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Gates OXP|Gates]] ads short-cut jump gates to suitable systems, speeding journeys between the main station and witchpoint&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-04-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Generation Ships OXP|Generation Ships]] adds encounters with the mythical Generation Ships from time to time&lt;br /&gt;
|aut=Draco_Caeles&lt;br /&gt;
|con=Commander McLane&lt;br /&gt;
|date=2011-04-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Globe station|Globe Station]] is a new type of stations that appears in advanced systems&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|con=Svengali&lt;br /&gt;
|date=2009-10-22&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Greek Ships OXP|Greek Ships]] adds [[Penelope Class Freighter]]s, [[Telemachus Class Escort]]s, and [[Ulysses Class Interceptor]]s&lt;br /&gt;
|aut=8-Bit Apocalypse&lt;br /&gt;
|date=2005-07-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Griff ArcElite|Griff's ArcElite]] adds versions of native Oolite ships textured &amp;amp; shaded to resemble the Acorn Archimedes version of Elite&lt;br /&gt;
|aut=Griff&lt;br /&gt;
|date=2008-09-29&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Griff Boa]] contains the famous Griff Boa&lt;br /&gt;
|aut=Griff&lt;br /&gt;
|date=2010-06-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://www.boxcn.net/shared/k2lvh3enuy Griff's Explosion Debris] adds new alloy &amp;amp; debris models to exploding ships&lt;br /&gt;
|aut=Griff&lt;br /&gt;
|con=Thargoid&lt;br /&gt;
|date=2009-02-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Griff Krait]] adds a heavily modified Krait, similar in design to the Griff Boa&lt;br /&gt;
|aut=Griff&lt;br /&gt;
|date=2010-06-17&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Griff Industries|Griff's Normalmapped Ships]] adds some of the best looking ships, stations, and flotsam available in Oolite&lt;br /&gt;
|aut=Griff&lt;br /&gt;
|date=2011-04-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Griffin Two (Oolite)|Griffin Two]] adds the Griffin Mk II from Frontier&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2005-10-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Gritty Coriolis OXP|Gritty Coriolis]] alternates the Coriolis stations with two elaborate gritty Corioli&lt;br /&gt;
|aut=xaotik&lt;br /&gt;
|date=2006-02-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://wiki.alioth.net/images/2/2d/G-HUD_Mk2.oxp.zip G-HUD Mk2] adds an alternative HUD&lt;br /&gt;
|aut=Gunney Plym&lt;br /&gt;
|date=2008-07-08&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Halsis]] features a female cockpit voice, sometimes called Hal's Hot Sister&lt;br /&gt;
|aut=Ovvldc&lt;br /&gt;
|date=2006-08-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[BoyRacer|Hatchling BoyRacers]] adds the  talkative (and often insulting) [[BoyRacer]]s to more advanced systems&lt;br /&gt;
|date=2006-01-13&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Staer9 haulerp30|Hauler P30]] is a very large cargo ship made by Staer9 Industries&lt;br /&gt;
|date=2011-05-11&lt;br /&gt;
|aut=Staer9&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Hawksound]] features a quality female computer voice, new weapon, damage and some station interface sounds&lt;br /&gt;
|aut=Hawkstrom&lt;br /&gt;
|date=2008-11-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Herald Military Gunboat|Herald]] adds the [[Herald Military Gunboat]], a powerful police and Navy interceptor&lt;br /&gt;
||aut=Flying_Circus&lt;br /&gt;
|date=2005-01-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Hired Guns OXP|Hired Guns]] adds escort ships that can be contracted to accompany you on your next journey&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-02-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Hognose|Hognose Tugships]] adds the [[Hognose]], a chatty tug ship that can be seen towing broken down ships&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|con=Jonnycuba&lt;br /&gt;
|date=2006-03-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[HoOpy Casino]]s appear near the station in advanced systems. You can win or lose credits in games of chance&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2010-06-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Hotrods OXP|Hotrods]] adds custom paint jobs to classic Elite ships, racing vehicles, and a space gang that doesn't like the player&lt;br /&gt;
|aut=Kaks&lt;br /&gt;
|con=Arexack_Heretic, Murgh&lt;br /&gt;
|date=2009-03-16&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[HyperCargo OXP|HyperCargo]] adds an extended and expanded cargo handling system&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-09-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Hyperradio js OXP|Hyperradio]] is an expandable music-player&lt;br /&gt;
|aut=Svengali&lt;br /&gt;
|date=2011-02-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Icarus (Oolite)|Icarus]] adds a small fighter / trader based on blueprints from the lost Solice system&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|date=2007-07-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Illegal_Goods_Tweak_OXP|Illegal Goods Tweak 1.4]] adds interactions with Galcop customs on docking at a main station with Contraband in the hold&lt;br /&gt;
|aut=Capt. Murphy&lt;br /&gt;
|date=2011-06-17&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Illicit Unlock OXP|Illicit Unlock]] allows the player to fly all the classic Elite ships&lt;br /&gt;
|aut=tgape&lt;br /&gt;
|date=2005-10-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Griff_Industries#Related_OXP's_by_Other_Authors|Illicit Unlock - Griff Version]] allows the player to fly [[Griff Industries#Griff's Normalmapped Ships OXP|Griff's]] pirate/viper Ships&lt;br /&gt;
|aut=ADCK&lt;br /&gt;
|con=dertien&lt;br /&gt;
|date=2011-02-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[I_Missile|I_Missile]] Very fast, very destructive weapon at an affordable price&lt;br /&gt;
|aut=CaptSolo&lt;br /&gt;
|date=2011-07-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Imperial Courier (Oolite)|Imperial Courier]] adds the powerful Imperial Courier from Frontier, constructed by [[Seldar Shipyards]]&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|con=Commander McLane&lt;br /&gt;
|date=2007-06-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Imperial Trader (Oolite)|Imperial Trader]] adds the powerful Imperial Trader from Frontier&lt;br /&gt;
|aut=ADCK&lt;br /&gt;
|date=2010-06-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Interstellar help OXP|Interstellar Help]] allows you to help out traders who got stuck in interstellar space without fuel&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-03-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Ionics OXP|Ionics]] adds a series of missions featuring the Ionics Company of Zaria, the Ramaza Liberation Front and The Link&lt;br /&gt;
|aut=Galileo&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2010-08-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[IronHide OXP|IronHide]] introduces the new range of IronHide ship armour from the Aquarian Shipbuilding Corporation&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-02-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Iron Raven]] is a multi-stage mission to investigate a dangerous conspiracy on behalf of GalCop High Command&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2011-04-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Ixian Ships|Ixian Military Ships]] adds Ixian [[Ixian Battle Cruiser|Battle Cruiser]]s, [[Ixian Bezerka|Bezerka]]s, [[Ixian Gunship|Gunship]]s and [[Ixian No-Ship Mark I|No-Ship]]s from Dune&lt;br /&gt;
|aut=8-Bit Apocalypse&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2009-03-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Ixian Ships#Ixian Freighter|Ixian Freighter]] adds a civilian freighter to the universe&lt;br /&gt;
|aut=8-Bit Apocalypse&lt;br /&gt;
|date=2005-01-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Jabberwocky]] adds the powerful Jabberwocky fighter / trader&lt;br /&gt;
|aut=Flying_Circus&lt;br /&gt;
|date=2006-03-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[JellyBaby Dispenser]] adds a handy Jellybaby Dispenser for your cockpit&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2011-03-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Kestrel &amp;amp; Falcon OXP|Kestrel &amp;amp; Falcon]] adds buyable Star Wars style [[Falcon_%28Oolite%29|Falcon]] for pirates/traders and the [[Kestrel]], a police/navy interceptor&lt;br /&gt;
|aut=Charlie&lt;br /&gt;
|con=Kaks&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Killer_Wolf's_Dynamic_HUD|Killer Wolf's Dynamic HUD]] adds a version of the dynamic HUD first seen in Killer Wolf's Werewolf ships, to all ships&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|con=Thargoid&lt;br /&gt;
|date=2010-07-08&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Killit_OXP|Killit]] adds a bunch of insane super weapons&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-05-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Kirin]] adds a heavy military hauler, CV &amp;amp; XM versions used by both pirates &amp;amp; traders&lt;br /&gt;
|aut=ClymAngus&lt;br /&gt;
|con=Cdr. Wyvern&lt;br /&gt;
|date=2009-09-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Klepto-HUD OXP|Klepto-HUD]] is a different take on a HUD with precise crosshairs&lt;br /&gt;
|aut=Kleptoid&lt;br /&gt;
|date=2006-03-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://sancho.dk/oolite/lane_legal.zip ''Lane Legal Racers''] adds NPC versions of [[Krait]]s, [[Mamba]]s, and [[Sidewinder]]s from different [[Racers#Listing_of_sponsored_teams|racing teams]]&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-09-27&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Lave OXP|Lave]] is a system make-over for Lave, adding all features described in The Dark Wheel novella included with original Elite&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2009-12-31&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Lave Academy OXP|Lave Academy]] adds Lave Academy Station above Lave &amp;amp; other planets, with 3 mini-games to test Commanders' skills&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-06-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[http://www.boxcn.net/shared/9q1cbydgan LinkG7] is a mission in Galaxy 7&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-02-16&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Llama]] adds the Llama fighter / trader. Updated from the version of Oosat1 to fix a small bug&lt;br /&gt;
|aut=Flying_Circus&lt;br /&gt;
|date=2006-02-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://www.boxcn.net/shared/jtpt2vlol5 Long Range Target Scanner] shows all ships currently in your system and allows to target them&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-05-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[LongWay_OXP|Long Way Around]] adds a transport mission well suited to the novice in Galaxy 1&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2009-04-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Longshot]] adds the Longshot fighter / trader, regarded by many as a cheaper alternative to the Cobra Mk III&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Lovecats.oxp|Lovecats]] is a mission about love &amp;amp; betrayal amongst the feline races of Galaxy 4. Fast ship &amp;amp; hard heart required!&lt;br /&gt;
|aut=johnsmith&lt;br /&gt;
|date=2010-01-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Second-hand ships|M-Pack (rusties)]] adds rusty banger versions of all Classic Elite ships in poor condition but still can haul cargo&lt;br /&gt;
|aut=murgh&lt;br /&gt;
|date=2006-01-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Manta]] adds the Manta light escort craft&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Marett Space Corporation OXP|Marett Space Corporation]] releases [[Adder Mk II]], [[Mosquito Trader]], [[Mosquito Sport]], new fighters / medium traders&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://www.crimsonforge.co.uk/cloister/MedusaHud.oxp.zip Medusa HUD] is an alternative HUD&lt;br /&gt;
|aut=ClymAngus&lt;br /&gt;
|date=2009-01-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Mega-Walnut Dashboard OXP|Mega-Walnut Dashboard]] is a generic version of the fabled Fer de Lance HUD&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2005-07-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Merlin_(Oolite)|Merlin]] Ships are interceptors used by the Police &amp;amp; Navy, but also available on the open market&lt;br /&gt;
|aut=Charlie&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[MildAudio]] Sound Set&lt;br /&gt;
|aut=xaotik&lt;br /&gt;
|date=2006-02-15&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Military_Fiasco|Military Fiasco]] adds a navy mission for Commanders with &amp;gt; 1,000 kills. Also equips Navy with powerful cruisers&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2011-01-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Military station|Military Station]] adds well armed Military Stations to the more advanced systems&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Military Stingray Mk. II|Military Stingray]] adds an ex-military ship that may show up in pirate hands or for the player to buy&lt;br /&gt;
|aut=CaptKev&lt;br /&gt;
|date=2007-03-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Milspec HUD|Milspec HUD]] is an alternative HUD with targeting aids and an emphasis on functionality&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2010-07-08&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Misjump_Analyser|Misjump Analyser]] scans witchspace &amp;amp; on detection of disturbances sounds an alarm &amp;amp; logs location of disturbance&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2010-05-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?p=135619#p135619 Misjump Inducer] can turn on/off misjumps on demand&lt;br /&gt;
|aut=Switeck&lt;br /&gt;
|date=2011-04-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Missile_Analyser|Missile Analyser]] scans incoming missiles &amp;amp; sets target to incoming missile when it is no standard missile&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2010-05-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Missiles_and_Bombs|Missiles &amp;amp; Bombs]] adds a wide variety of missiles &amp;amp; bombs that are are available to player &amp;amp; NPCs alike&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2009-12-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Missionaries OXP|Missionaries]] adds clerics of four faiths who spam Commanders with requests to worship their Gods&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Moccasin]] adds light escort craft from Xeceesian Shipyards modeled after ArcElite core ship&lt;br /&gt;
|aut=CaptSolo&lt;br /&gt;
|date=2011-06-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Mod-HUD]] is a slight modification / re-organization of the standard Oolite HUD without surround boxes&lt;br /&gt;
|aut=CaptSolo&lt;br /&gt;
|date=2011-05-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/monument.zip Monument] sometimes adds a monument to famous Commanders close to the Sun&lt;br /&gt;
|aut=dajt&lt;br /&gt;
|date=2005-05-28&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Morrigan]] adds a vast trade ship to the Universe&lt;br /&gt;
|aut=Flying_Circus&lt;br /&gt;
|date=2009-12-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Oosounds2_OXP|''Murgh's Replacement Sounds'']] contains 10 new sounds&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2005-08-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Murgh_Xships OXP|Murgh's X-Ships]] adds [[Bandy-Bandy]], [[Chuckwalla]], [[Eel Rapier]], [[Taipan]] (fast courier craft &amp;amp; 2 light escort ships)&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2009-09-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[NavalGrid OXP|Naval Grid]] enhances recharging rates by linking the naval energy unit to military-boosted shields&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-03-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Neolite Ships]] is an Oolite ships replacement set&lt;br /&gt;
|aut=SimonB&lt;br /&gt;
|date=2009-07-11&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/newships.oxp.zip ''New Ships''] adds [[Hamadryad]], [[Josher]], [[Naga]], [[Ringhals]] (mining and trade ships from previous versions of Elite)&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2006-05-15&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/hud_ng.oxp.zip NG HUD] is an alternate HUD. All standard functions, but with a personal view&lt;br /&gt;
|aut=alien&lt;br /&gt;
|date=2005-03-06&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[NPC-shields OXP|NPC-shields]] gives shields to NPCs, together with a nice glow effect&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-04-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://wiki.alioth.net/index.php/Numeric_Style_HUDs Numeric Style HUDs] New invention/numeric gauges.[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9977 Info]&lt;br /&gt;
|aut=CommonSenseOTB&lt;br /&gt;
|date=2011-06-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/nuvipers.zip Nu Vipers] increases the types of Viper patrol ships with [[GalCop Viper Mark II]], [[GalCop Viper Cruiser]]&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Nukes.oxp|Nuclear Torpedos]] adds some powerful, but slow moving, missiles&lt;br /&gt;
|aut=E. Walch, Cdr. Wyvern&lt;br /&gt;
|date=2010-06-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Offender traders OXP|Offender Traders]] makes some traders into offenders/fugitives&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-04-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Old Ships]] adds Elite-A [[Bushmaster Miner]]s, [[Cat (Oolite)|Cat]]s, [[Chameleon (Oolite)|Chameleon]]s, [[Ghavial (Oolite)|Ghavial]]s, [[Iguana (Oolite)|Iguana]]s, [[Monitor (Oolite)|Monitor]]s, [[Ophidian (Oolite)|Ophidian]]s, [[Salamander (Oolite)|Salamander]]s&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2006-08-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Old Ships 2010]] is a retextured version of [[Old Ships]], adding the bonus Monitor 2 ship&lt;br /&gt;
|aut=pagroove&lt;br /&gt;
|con=Murgh, ADCK, Simon B, Lestradae&lt;br /&gt;
|date=2011-02-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Oo-Haul]] adds vast bulk [[L-Crate Hauler]]s to the space lanes and offers missions at [[Your Ad Here!|constores]] to safely escort them&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|con=Eric Walch, Ark&lt;br /&gt;
|date=2009-02-21&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[ooCheat_OXP|ooCheat]] adds a cheat menu to the game&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-02-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[http://www.box.net/shared/rrlm77ztzm Oolite en français] is a French Oolite localization&lt;br /&gt;
|aut=Pierre-Olivier&lt;br /&gt;
|date=2009-07-12}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[http://marc-schaffer.ch/data/OoliteGerman_V0.3.zip Oolite auf Deutsch] is a German Oolite localization&lt;br /&gt;
|aut=SwissMäc&lt;br /&gt;
|date=2009-06-02&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[http://www.box.net/shared/p3engis1ds Oolite Italiano] is an Italian Oolite localization&lt;br /&gt;
|aut=another_commander&lt;br /&gt;
|date=2010-06-15&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=Oolite in Russian: [http://www.roolite.org Roolite.org] provides localizations of Oolite 1.74.2 and some OXPs. Also check [http://www.elite-games.ru/conference/viewtopic.php?t=48476&amp;amp;start=0 Elite Games]&lt;br /&gt;
|aut=Seventh&lt;br /&gt;
|date=2009-03-26&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://www.box.net/shared/x9u5xoulkq Orbits] positions planets on orbits around the sun&lt;br /&gt;
|date=2010-07-01&lt;br /&gt;
|aut=Ebi&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Ore Processor]] extracts valuable materials from asteroid fragments when mounted to a ship's fuel scoop&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|con=Ark, Kaks, Eric Walch&lt;br /&gt;
|date=2011-01-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Orisis]] BigTraders are new passenger liners that ferry passengers around&lt;br /&gt;
|aut=pagroove&lt;br /&gt;
|con=ADCK, Thargoid&lt;br /&gt;
|date=2010-01-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Outrider (Oolite)|Outrider]] is a medium fighter produced by the [[Taranis Corporation HQ (Oolite)|Taranis Corporation]]&lt;br /&gt;
|aut=Roberto&lt;br /&gt;
|date=2006-08-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[[OXPConfig]] provides means to configure supported OXPs, to recognize errors, or to avoid clashes&lt;br /&gt;
|aut=Svengali&lt;br /&gt;
|date=2011-07-16&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[P.A. Groove Stations OXP|P.A. Groove Stations]] adds lots of different types of Coriolis and Dodec Stations&lt;br /&gt;
|aut=pagroove&lt;br /&gt;
|con=Griff, Commander McLane&lt;br /&gt;
|date=2010-04-16&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Pallas]] adds a fast but lightly shielded fighter.&lt;br /&gt;
|aut=Charlie&lt;br /&gt;
|con=Svengali&lt;br /&gt;
|date=2010-12-02&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Pelamis]] adds the Pelamis trade ship&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2006-04-24&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Phoenix]] is a strange ship, built from salvaged parts from various Serpent Class ships&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2007-01-17&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://wiki.alioth.net/index.php/Pie_Chart_Style_HUDs Pie Chart Style HUDs] New invention=&amp;gt;pie gauges.[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9788 Info]&lt;br /&gt;
|aut=CommonSenseOTB&lt;br /&gt;
|date=2011-05-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Pirate Coves OXP|Pirate Coves]] adds rock hermits that have been taken over by pirates in more dangerous systems&lt;br /&gt;
|aut=lazygun&lt;br /&gt;
|date=2011-07-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/piratetraps.oxp.zip Pirate Traps] are dummy traders which transmit details of pirates firing on them to the police&lt;br /&gt;
|aut=popsch&lt;br /&gt;
|date=2006-01-04&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Planetfall_OXP|Planetfall]] allows the player to land on and trade at the planets and moons of each system&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-04-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Pods_OXP|Pods]] adds fuel, missile, bulk &amp;amp; empty cargo pods and pods which jam, explode, have trumbles or take a few scoops&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-03-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Police_IFF_Scanner_Upgrade|Police IFF Scanner Upgrade]] highlights offender and fugitive ships with custom IFF scanner colours&lt;br /&gt;
|aut=Capt. Murphy&lt;br /&gt;
|date=2011-06-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Pteradyne Technologies Ships OXP|Pteradyne Technologies Ships]] adds the [[Excalibur]], a buyable combat ship and the [[Paladin]], a military version&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2006-12-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://www.boxcn.net/shared/xccp8ml5cq Pylon Based Equipment Remover] allows to remove a selected piece of equipment from your pylons&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-04-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Python Class Cruiser]] is a large powerful trade ship, which can also hold its own in battle&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2007-07-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/racers.oxp.zip Racers] adds [[Chicaneer Mk II]], [[Chicaneer Mk IV]], [[Dragster Mk I]], and [[Dragster Mk II]] racing ships&lt;br /&gt;
|aut=murgh&lt;br /&gt;
|date=2006-01-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Railgun OXP|Railgun]] introduces a revolutionary new weapons system to the Ooniverse&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-05-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Ramon's Anaconda]] is a fantastic re-imagining of the Anaconda freighter. Check out its special features&lt;br /&gt;
|aut=Ramon&lt;br /&gt;
|con=Griff&lt;br /&gt;
|date=2009-04-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Random_Docking_Music_OXP|Random Docking Music]] plays a random music track from a pre-set list on activating docking computers&lt;br /&gt;
|aut=Frame&lt;br /&gt;
|date=2010-05-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Random Hits OXP|Random Hits]] adds [[Space Bar|seedy space bars]] to anarchy systems that offer large bounties on the galaxy's Most Wanted Criminals&lt;br /&gt;
|aut=LittleBear&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2011-03-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://terrastorage.ath.cx/Marmagka/e8e9ce360da6bb40f5952cbe00f02501/RedSet.zip RedSet] contains red-themed backgrounds for the UI screens&lt;br /&gt;
|aut=another_commander&lt;br /&gt;
|date=2010-06-18&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.purgatori.net/reduxedvamps.htm Reduxed Vampires] adds reworked versions of the Vampire Mk I and Mk II and a Reaper &amp;quot;Gold Edition&amp;quot;&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2010-10-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[RegistrationID|Registration ID]] adds ID tags to all Oolite standard ships&lt;br /&gt;
|aut=Frame&lt;br /&gt;
|date=2010-02-28&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Remorse_Of_Conscience_v2|Remorse Of Conscience]] is a trade ship with a large hold, that can hold its own in combat&lt;br /&gt;
|aut=8-bit Apocalypse&lt;br /&gt;
|date=2005-02-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Renegade Pirates OXP|Renegade Pirates]] adds rare, very well-armed, high bounty pirate versions of Classic Elite ships&lt;br /&gt;
|aut=LittleBear&lt;br /&gt;
|con=Aegidian, Griff&lt;br /&gt;
|date=2006-12-03&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/RVandGS.zip Renegade Viper + Grass Snake] adds [[Renegade Viper|stolen Vipers]] which earn large bounties &amp;amp; [[Grass Snake]], a large pirate trade ship&lt;br /&gt;
|aut=8-bit Apocalypse&lt;br /&gt;
|date=2004-11-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Repair_Bots_OXP|Repair 'Bots]] adds a pylon mounted canister of repair nanobots which attempt to fix damaged equipment in mid-flight&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-02-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Ring_Racer_OXP|Ring Racer]] adds the Corporate Systems Ring Racing League to Galaxy 1&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-04-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Rock Hermit Locator]] adds equipment to locate Rock Hermits&lt;br /&gt;
|aut=Frame&lt;br /&gt;
|date=2011-03-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Saleza Aeronautics]] adds [[Bellatrix Cruiser]]s, [[Rigel Bomber|Rigel Tactical Bomber]]s, and [[Saiph Interceptor]]s to high tech corporate systems&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2010-10-24&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Santa]] adds very rare Santa Sledge to space lanes escorted by plasma gun toting reindeer space bikers!&lt;br /&gt;
|aut=Griff&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2010-05-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.purgatori.net/scorpius.htm Scorpius] adds a heavily armoured private trading and transport vessel, protected by Vampire escorts&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|con=Griff&lt;br /&gt;
|date=2011-02-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Scourge of the Black Baron]] features combat &amp;amp; transport Galaxy 1 missions&lt;br /&gt;
|aut=Rxke&lt;br /&gt;
|con=Kaks, Thargoid&lt;br /&gt;
|date=2010-08-07&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Scout]] is a cheap but good looking ship from Staer9 that shares a lot of technology with the [[Xeikil]]&lt;br /&gt;
|aut=Staer9&lt;br /&gt;
|date=2011-05-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Second Wave OXP|Second Wave]] adds variants of Thargoid Warship, Thargon Robot Fighter and alien ships&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-06-06&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Selezen's S-Ships]] adds [[GalCop SWAT Viper]]s and [[Oresrian Trader]]s&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|date=2007-07-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Sell equipment OXP|Sell Equipment]] allows for small fee, resale of equipment at 60% price at suitable tech level world&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-02-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[[Shady Cobra OXP|Shady Cobra]] adds shader effects to Cobra Mk III&lt;br /&gt;
|aut=Ahruman&lt;br /&gt;
|date=2007-07-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Shady Sungs]] adds replacement textures for all Classic Elite Ships&lt;br /&gt;
|aut=Sung, ADCK&lt;br /&gt;
|date=2010-05-21&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://wiki.alioth.net/index.php/Shield_Equalizer_%26_Capacitors_OXP Shield Equalizer] balances shield energy automatically. [http://wiki.alioth.net/index.php/Shield_Equalizer_%26_Capacitors_OXP Capacitors] store unused shield energy for use later&lt;br /&gt;
|aut=CommonSenseOTB&lt;br /&gt;
|date=2011-05-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Skrounk All-Stars Limited]] adds [[All Stars Large Freighter|Large Freighter]], [[Seymour Class Sled]], [[Starbelly Class Sled]], [[Starhawk]] &amp;amp; [[Starwolf_Mark_I|Starwolf Mk I]]&lt;br /&gt;
|aut=goji62&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Smivs%27_ShipSet|Smiv's Shipset 3.0]] re-textures the standard Oolite ships beautifully with a realistic look &amp;amp; non-shader lighting effects&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2010-12-08&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Snark]] is a powerful fighter/trader, often used by pirates and bounty hunters&lt;br /&gt;
|aut=Flying_Circus&lt;br /&gt;
|date=2006-06-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=10515 Sniper Sight] is equipment to help with long distance targeting&lt;br /&gt;
|aut=Wildeblood&lt;br /&gt;
|date=2011-07-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=10176 Sniper Scope MilHUD integrated] is an version of MilHUD with integrated Sniper Sight functionality&lt;br /&gt;
|aut=Wildeblood&lt;br /&gt;
|date=2011-06-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Snoopers]] adds the galactic news network channels&lt;br /&gt;
|aut=DaddyHoggy&lt;br /&gt;
|con=Disembodied, Drew, Svengali&lt;br /&gt;
|date=2011-05-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Solid Gold Cobra Mk.3]] is a limited edition Cobra Mk3 to celebrate its 25 years anniversary&lt;br /&gt;
|aut=ADCK&lt;br /&gt;
|date=2010-06-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[http://www.purgatori.net/Sothis.htm Sothis Space Station] is a station from [[Isis Interstellar]] with a compact design of comparable size to a standard Coriolis&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2010-08-08&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Spearhead Interceptor Mk.I]] is a pure fighter, fast &amp;amp; nippy but with weak shields, no cargo bay. Can be twitchy to fly&lt;br /&gt;
|aut=Randell&lt;br /&gt;
|date=2006-07-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[S.I.R.F.|Special Interstellar Repair Facilities]] offer different trading strategies &amp;amp; repair facilities on uncommon trading routes&lt;br /&gt;
|aut=Tinker&lt;br /&gt;
|date=2010-07-02&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.purgatori.net/spectres.htm Spectre] adds [[Isis Interstellar]]'s Vampire Mk V, a secret military vessel fighting Thargoids in witch space&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2011-01-16&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Spy Hunter OXP|Spy Hunter]] is a mission for Galactic Navy for Commander with rating of 'Dangerous' or above&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|date=2009-04-11&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Staer9 Spectre]] is a cheap small fighter with high maneuverability that flopped in the market&lt;br /&gt;
|aut=Staer9&lt;br /&gt;
|date=2011-05-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Star-Jelly]] Beautiful translucent organisms sometimes found in Asteroid fields.&lt;br /&gt;
|aut=Smivs,Staer9&lt;br /&gt;
|date=2011-05-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Star Wars Ships]] adds [[A-Wing]], [[B-Wing]], [[Lambda Shuttle]], [[Tie-Fighter]], [[Tie-Interceptor]], [[X-Wing]], [[Y-Wing]]&lt;br /&gt;
|aut=Azzameen&lt;br /&gt;
|date=2006-05-31&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Status Quo Q-bomb OXP|Status Quo Q-bomb]] changes the behaviour of Q-bombs according to the [[Status Quo]] novel&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-02-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[S.T.E]] is a step up from the Cobra III with improved trading capabilities and increased speed&lt;br /&gt;
|aut=Rustybolts&lt;br /&gt;
|date=2009-07-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Stealth OXP|Stealth]] is a small G3 mission showcasing new scanner capabilities &amp;amp; introducing stealth ships&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-03-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://www.purgatori.net/Steampunk%20HUD.htm Steampunk HUD] adds a steampunk style HUD by [[Isis Interstellar]]&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2010-01-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Stellar Serpents OXP|Stellar Serpents]] adds huge space-born serpent monsters which move from system to system and are good hunting prey&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-07-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[http://sancho.dk/oolite/sunskimmers.zip Sunskimmers] adds ships to the sun/planet corridor&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-08-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[SuperCobra]] is larger, faster with stronger hull than Cobra Mk III&lt;br /&gt;
|aut=8-Bit Apocalypse&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2010-10-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Superhub]] from GASEC is the first station that is capable of transporting itself to its destination&lt;br /&gt;
|aut=P.A. Groove&lt;br /&gt;
|date=2009-11-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Swift]] is a very fast ship often used by pirates or bounty hunters with limited cargo space &amp;amp; nominal shields&lt;br /&gt;
|aut=Charlie&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Switeck's Mod OXP|Switeck's Mod]] rebalances ships &amp;amp; market prices. Adds Medium, Hard, and Harder Jameson saves&lt;br /&gt;
|aut=Switeck&lt;br /&gt;
|date=2011-01-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[System Demux (Oolite)|System Demux]] textures home planet, adds planet/moon combination to systems&lt;br /&gt;
|aut=DrBeeb&lt;br /&gt;
|date=2010-07-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[System Redux (Oolite)|System Redux]] v1.2 textures home planet, adds planet/moon combination to systems&lt;br /&gt;
|aut=CaptKev&lt;br /&gt;
|date=2011-02-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://www.box.net/shared/r05ub873b5 TAF Reset] resets the Time Acceleration Factor (TAF) to 1.0 upon docking&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2009-09-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Taranis OXP|Taranis]] is a mission for law abiding Commanders with rating of Competent+. Adds [[Taranis Corporation HQ (Oolite)|Taranis Corporation HQ]]&lt;br /&gt;
|aut=Roberto&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2009-10-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Target_Autolock_OXP|Target Autolock]] updates [[Scanner Targeting Enhancement]] to auto-lock onto attacking ships&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-02-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Target Range OXP|Target Range]] is found in all rich systems with stable governments&lt;br /&gt;
|aut=Caracal&lt;br /&gt;
|date=2010-07-24&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Target Reticle]] updates [[Scanner Targeting Enhancement]] to turn reticle red when target centred&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2010-05-31&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Taxi Galactica]] adds a Taxi Service and a non player flyable taxi cab ship to systems&lt;br /&gt;
|aut=pleb87&lt;br /&gt;
|date=2008-06-12&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Teretrurus Mk.I]] is a medium fighter/trader somewhat faster &amp;amp; tougher than Cobra Mk III, but with smaller cargo bay&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2008-02-01&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Terrapin|Terrapin Trader]] is a medium fighter/trader. A good upgrade from Cobra Mk III&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2008-02-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Tesoura]] is a slow, but well shielded trade ship&lt;br /&gt;
|aut=Randall, Dr. Nil&lt;br /&gt;
|date=2008-02-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Thargoid Carrier]] arms Thargoids with capital carrier&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|date=2006-06-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Thargorn_Threat_oxp|Thargoid Threat]] adds [[Thargoid Terrorizer Frigate]], [[Thargoid Thargorn Battleship]], [[Thargoid Thorgon Cruiser]]&lt;br /&gt;
|aut=Arexack Heretic&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2011-02-03&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Thargoid Wars]] intensifies war with the Thargoids, featuring new attack and defense missions&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2011-07-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Tianve OXP|Tianve]] adds [[Navy Station]], as well as Visuals, including a pulsar, to the Galaxy 1 system of Tianve&lt;br /&gt;
|aut=Drew&lt;br /&gt;
|date=2009-12-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Tiger Mark I]] is a truly awesome (and very expensive) multi-role craft&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2006-05-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Tionisla Orbital Graveyard]] adds the famed graveyard to Tionisla, G1, as described in “The Dark Wheel” novella&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2011-02-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Tionisla Reporter]] adds a mission for a starting commander&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2011-07-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[TCAT OXP|To Catch a Thargoid]] is a G3 follow-up mission to Thargoid Plans, for Dangerous or Elite rank Commanders&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-12-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Torus station|Torus Station]] adds a vast 2001 style space station to very high tech level systems&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|con=Svengali&lt;br /&gt;
|date=2010-10-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Total patrol OXP|Total Patrol]] makes police ships patrol between planet, witchpoint &amp;amp; sun&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-03-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[ToughGuys|ToughGuys]] Adds 3 levels of increased toughness of 'Baddies', and gives a backdrop for an immersive storyline&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2011-02-16&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Trader Outpost (Oolite)|Trade Outpost]] adds Griff's trade outpost without ads&lt;br /&gt;
|aut=CaptKev, Griff, Ark&lt;br /&gt;
|date=2009-02-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Traffic_Control_OXP|Traffic Control]] personnel gives help with approach to and manual docking at all main stations&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-06-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Transhab station|Transhab Station]] adds a large station with rotating arms to some medium tech level systems&lt;br /&gt;
|aut=Draco_Caeles&lt;br /&gt;
|date=2006-06-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Transports]] adds [[CoachWhip]], [[Coral]], [[Woma]]&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|con=Eric Walch, Kaks&lt;br /&gt;
|date=2010-12-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://wiki.alioth.net/images/d/d9/TrekHud.zip Trek HUD] replaces your HUD with a Star Trek NG LCARS-style HUD&lt;br /&gt;
|aut=barabis&lt;br /&gt;
|date=2008-11-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Trident Down]] contains a series of Galaxy 4 missions investigating a vicious attack on a [[Executive SpaceWays|Trident Shuttle]]&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2010-12-31&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[UPS Courier]] offers Commanders transport of goods/documents &amp;amp; occasional combat missions&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2011-03-29&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Urutu Mark III &amp;amp; Urutu Mark IV]] are medium fighters/traders from Elite-A&lt;br /&gt;
|aut=Milinks&lt;br /&gt;
|date=2006-09-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Vampire]] adds the Purgatori Vampire series of combat ships&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2007-01-29&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Vampire - Diamondback]] adds the Diamondback Vampire series of combat ships&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2010-04-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Vampire - Dominatrix]] adds the Dominatrix Vampire series of combat ships&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2009-12-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Vector OXP|Vector]] is a unusual mission type - fast money, slavers, tricks and GalCop is watching you...&lt;br /&gt;
|aut=Svengali&lt;br /&gt;
|date=2011-02-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Velocity_OXP|Velocity]] is a fast fighter ship&lt;br /&gt;
|aut=Sabre&lt;br /&gt;
|date=2009-09-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.purgatori.net/Venom.oxp.zip Venom] adds [[Venom]]s in normal and renegade versions  from [[Isis Interstellar]]&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2009-12-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Vortex OXP|Vortex]] A new ex-military player ship. Rare, expensive and powerful - kitted out with advanced and unique features&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-03-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.purgatori.net/wasps.htm Wasps] adds formation flying wasps, queen wasps, and wasp nests&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|con=Thargoid, Ahruman, Eric Walch&lt;br /&gt;
|date=2010-08-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/weeviloid2.zip ''Weeviloid''] adds [[Weeviloid Hunter]]s, fearsome multi-gunned war ships and [[Weeviloid Scoutship]]s, light trade ships&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2006-05-11&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Welcome_Mat_OXP|Welcome Mat]] upgrades the comms systems to expand the information that is given on arrival in new system&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-06-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Werewolf]] from [[Isis Interstellar]] has 3 variants:  [[Werewolf|Werewolf ~ Damage Inc.]], [[Werewolf|Werewolf (Civilian)]] &amp;amp; [[Werewolf|Werewolf (Purgatori Model)]]&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2011-02-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Wolf_Mk.2_%28Oolite%29|Wolf Mk II]] adds the powerful Wolf Mk II, as seen in Elite-A&lt;br /&gt;
|aut=Ark&lt;br /&gt;
|date=2009-07-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://wiki.alioth.net/images/0/06/Wolfs_variants.zip Wolfwood's Variants] adds [[Asp_Mk.I|Asp Mk I]], [[Cobra Courier]], [[Cobra Rapier]], [[Drake]], [[Drake Mk II]] &amp;amp; [[Wolf Mk I]]&lt;br /&gt;
|aut=Wolfwood&lt;br /&gt;
|date=2008-02-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Wormhole restoration OXP|Wormhole Restoration]] adds a new way to leave interstellar space without using fuel, expanding on Thargoid backstory&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-05-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Xarik]] is an advanced aircraft, last creation of the late Prof. Eisel Xarik. Used by pirates, traders, and hunters&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2010-02-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Xeikil]] adds a player, a GalCop interceptor, and 24 pirate variants of Staer9 Industries' current top fighter&lt;br /&gt;
|aut=Staer9&lt;br /&gt;
|date=2011-05-16&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Xeikil MK2]] adds a player, a GalCop interceptor, and 24 pirate variants of Staer9 Industries' replacement [[Xeikil]]&lt;br /&gt;
|aut=Staer9&lt;br /&gt;
|date=2011-05-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[YellOo_Cabs]] adds YellOo Cab Co taxis to the Ooniverse. NPC and Buyable&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2011-01-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Your Ad Here!]] adds Convenience Stores [[Pi-42]], [[Tescoo Oxpress]], [[Star]], [[Mall Wart]], [[Sainsboory's]] &amp;amp; [[Security Sidewinder|security sidewinders]]&lt;br /&gt;
|aut=Griff&lt;br /&gt;
|con=DaddyHoggy, Pangloss, Disembodied, Eric Walch&lt;br /&gt;
|date=2011-02-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Z-ships]] adds [[Z-ships_Asp_Explorer|Asp Explorer]], [[Z-ships_Cobra_Commodore|Cobra Commodore]], [[Z-ships_Porcupine|Porcupine]] &amp;amp; [[Z-ships_Python_Courier|Python Courier]]&lt;br /&gt;
|aut=Zieman&lt;br /&gt;
|date=2010-03-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9056 Z-GrOovY Griff's Cobra Mk3 Variety Pack] adds multiple Griff's Cobra Mk3 with alternate hull paintings&lt;br /&gt;
|aut=dertien&lt;br /&gt;
|date=2011-01-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9306 Z-GrOovY System Stations] adds Griff-based Tetrahedron, Octahedron, Coriolis, Dodecahedron, Icosahederon stations&lt;br /&gt;
|aut=dertien&lt;br /&gt;
|date=2011-03-03&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9146 Z-GrOovY Viper Raider] adds a new player ship based on the police Viper&lt;br /&gt;
|aut=dertien&lt;br /&gt;
|date=2011-02-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9056 Z-GrOovY YAH Sidewinder Variety Pack] adds multiple Your Ad Here! Constore defenders with alternate hull paintings&lt;br /&gt;
|aut=dertien&lt;br /&gt;
|date=2011-01-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9056 Z-GrOovY YellOo Cab Variety Pack] adds the Moray Starboat with taxi hull painting&lt;br /&gt;
|aut=dertien&lt;br /&gt;
|date=2011-01-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Work in Progress OXPs  ==&lt;br /&gt;
The following table contains OXPs that either have not yet been released by their authors but are already being discussed on the [http://www.aegidian.org/bb/viewforum.php?f=4 Expansion Pack Forum], or released OXPs that still have WIP status. Links get you either to the respective discussion or the Wiki page if it already exists.&lt;br /&gt;
{{OXPListTableHeader}}&lt;br /&gt;
&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[http://www.box.net/shared/moreq536ht Nexus missile]. Three versions of a multi-warhead missile. Like the anti-thargoid missile but not just for (against) thargoids.&lt;br /&gt;
|aut=UK_Eliter&lt;br /&gt;
|date=2011-07-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?t=8341 Animated Ships] adds animated butterflies flapping their wings as a demo&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-08-06&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9864 Cargo Scanner] scans targeted cargo containers to find out what they contain&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-05-17&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://www.aegidian.org/bb/viewtopic.php?t=8526 Comms Demo] provides a way to communicate with NPC ships&lt;br /&gt;
|aut=Kaks&lt;br /&gt;
|date=2009-10-26&lt;br /&gt;
|work=N}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=6&amp;amp;t=9087 Guerilla War] puts you in a position to lead a fighter squadron&lt;br /&gt;
|aut=Ramirez|date=2011-04-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.box.net/shared/0i2fnrc175t Katipo] adds a very fast, moderate maneuverability, low cargo ship with low thrust&lt;br /&gt;
|aut=Simon B&lt;br /&gt;
|date=2011-03-03&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9441 Miner Pod] breaks up asteroids and collects the splinters&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-03-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?t=8275 Mining] adds mines to protect and provide resources for to get gold&lt;br /&gt;
|aut=docwild&lt;br /&gt;
|date=2010-07-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Nuit Space Station OXP|Nuit Space Station]] is the newest creation of [[Isis Interstellar]]&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2009-11-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mission&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?p=130221#p130221 Oresrati Challenge] adds a fun mission to the loneliest system of the Ooniverse, Oresrati&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-04-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9946 Phantom] is a trader/fighter from [[Isis Interstellar]] with external missiles&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2011-05-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?p=138226#p138226 Shield Cycler] distributes shield energy between fore and aft shields&lt;br /&gt;
|aut=Lone_Wolf&lt;br /&gt;
|date=2011-05-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=5484 Solar System] adds extra planets and jump gates to a system&lt;br /&gt;
|aut=Frame&lt;br /&gt;
|date=2009-01-11&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9472 Sun Skimmer Pod] adds a pod that goes sun skimming and returns full of fuel&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-03-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9488 Target Tracker] aligns your ship on your target&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-03-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9353 Thor Class Supercarrier] adds a Navy Carrier as a replacement pack for the Behemoth and the Galactic Navy&lt;br /&gt;
|aut=dertien&lt;br /&gt;
|date=2011-03-03&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9242 Wormhole Drones] creates a path of worm holes to lead you to your destination system&lt;br /&gt;
|aut=Mauiby de Fug&lt;br /&gt;
|date=2011-02-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[http://www.aegidian.org/bb/viewtopic.php?t=8541 Zygoroids] add new beautifully textured asteroid models to the Ooniverse&lt;br /&gt;
|aut=ZygoUgo&lt;br /&gt;
|date=2010-10-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== OXPs with Problems ==&lt;br /&gt;
The following table contains OXPs that have problems eg. broken download, or have been written for versions of Oolite earlier than the current 1.75.2&lt;br /&gt;
{{OXPListTableHeader}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Amen Bricks Megaships|Amen Brick's Megaships]] adds [[Battleship]]s, [[Biodome]]s, [[Cruiseship]]s, [[Hospitalship]]s, [[Supercargo]]s, [[Superlifter]]s, and [[Yacht - Amen Class|Yacht]]s (This version 1.1 contains a corrupted shipData.plist)&lt;br /&gt;
|aut=Amen Brick&lt;br /&gt;
|date=2008-07-11}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Cataclysm OXP|Cataclysm]] takes up the threads of Constrictor Hunt and Thargoid Plans, and sends you on your biggest Navy mission yet&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2009-01-06&lt;br /&gt;
|work=N}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Kirin#Download|Kirin Sport]] adds a a smaller, faster, more agile - and less well armed - civilian variant of the [[Kirin]]&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2009-07-22&lt;br /&gt;
|work=N}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Localhero_OXP|Localhero]] adds a mission campaign in the first galaxies&lt;br /&gt;
|aut=Svengali&lt;br /&gt;
|date=2008-04-09&lt;br /&gt;
|work=N}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Orb]] adds a new alien race, which might help GalCop in the battle against the Thargoids.&lt;br /&gt;
|aut=Charlie&lt;br /&gt;
|date=2007-02-13&lt;br /&gt;
|work=N}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Personalities OXP|Personalities]] adds a bunch of unique, well-known personalities from the Bulletin Board to the Ooniverse&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2009-11-05&lt;br /&gt;
|work=N}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[[Save Anywhere]] allows you to save your game at any OXP Station&lt;br /&gt;
|aut=Frame&lt;br /&gt;
|date=2008-10-01&lt;br /&gt;
|work=N}}&lt;br /&gt;
|}&lt;br /&gt;
[[Category:Oolite expansion packs]]&lt;br /&gt;
[[Category:OXP Lists]]&lt;br /&gt;
[[Category:Factual]]&lt;/div&gt;</summary>
		<author><name>Mcarans</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.alioth.net/index.php?title=OXP_List&amp;diff=28638</id>
		<title>OXP List</title>
		<link rel="alternate" type="text/html" href="https://wiki.alioth.net/index.php?title=OXP_List&amp;diff=28638"/>
		<updated>2011-07-26T20:32:23Z</updated>

		<summary type="html">&lt;p&gt;Mcarans: /* Sortable Table of OXPs */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
== OXP Categories ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; width=&amp;quot;100%&amp;quot; style=&amp;quot;border-collapse: collapse; border-width: 1px; border-style: solid; border-color: #ffffff; table-layout: fixed; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; width=&amp;quot;70px&amp;quot; style=&amp;quot;margin: 0px; padding: 0px; border-width: 1px; border-style: solid; border-color: #ffffff; background-color: #e7e7ff; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot; |&amp;lt;p style=&amp;quot;font-size: 13px;&amp;quot;&amp;gt;Category&amp;lt;/p&amp;gt;&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;margin: 0px; padding: 0px; border-width: 1px; border-style: solid; border-color: #ffffff; background-color: #e7e7ff; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot; |&amp;lt;p style=&amp;quot;font-size: 13px;&amp;quot;&amp;gt;Description of OXP Category&amp;lt;/p&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Activities_OXPs|Activities]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Allow Commanders to carry out a new activity or task eg. racing, gas giant skimming, taking out loans&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Dockables_OXPs|Dockables]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Add new objects that the player can dock with eg. carriers, space bars, casinos, fuel stations. Also, see [[Oolite Stations]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Ambience_OXPs|Ambience]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Change or add to the scenery, visuals or sound effects eg. planet skins, add new planets/moons to systems, move suns further away, dim nebulae, add monuments&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Equipment_OXPs|Equipment]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Buy upgrades for your ship excluding weapons&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Mechanics_OXPs|Mechanics]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Change the game play in a specific way eg. alter market mechanics, add more pirates&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:HUDs_OXPs|HUDs]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Modifications of your dials, gauges and other read-outs&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Missions_OXPs|Missions]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|New missions for Commanders to undertake. For more information, see [[Oolite Missions]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Retextures_OXPs|Retextures]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Retexture existing objects, either by replacing or adding variations, but without adding objects that did not exist before&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Ships_OXPs|Ships]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|New ships, except dockable ships. Also, see [[Oolite Ships]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Systems_OXPs|Systems]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Alter multiple star systems in a number of ways eg. combinations of changing main station and local police ships, adding new stations, ships, activities, missions&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Weapons_OXPs|Weapons]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Addons for your ship for blowing up the baddies&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Misc_OXPs|Misc]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|OXPs that don't fit into the other categories eg. debug consoles, internationalisations, config mechanisms, demo OXPs&lt;br /&gt;
|}&lt;br /&gt;
OXP authors: if you are unsure how to categorise your OXP or if you wish to update the details of an OXP for an author who has disappeared, please seek advice on the [http://www.aegidian.org/bb/viewforum.php?f=4 Expansion Pack Forum] before proceeding. Please put your OXP in one category only. You can edit the section below to add your OXP.&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Sortable Table of OXPs ==&lt;br /&gt;
The following table is optimized for a horizontal screen resolution of at least 1280px so that all OXP descriptions fit on one line.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; width=&amp;quot;100%&amp;quot; style=&amp;quot;border-collapse: collapse; border-width: 1px; border-style: solid; border-color: #ffffff; table-layout: fixed; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;border-width: 1px; border-style: solid; border-color: #ffffff; background-color: #e7e7ff; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot; |The &amp;quot;C&amp;quot; column indicates compatibility with Oolite beta 1.75:&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Y&amp;quot;=compatible, &amp;quot;Y*&amp;quot;=compatible (but the OXP is not in full working order), &amp;quot;N&amp;quot;=incompatible,  blank=unknown/untested.&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;!-- KEEP DESCRIPTIONS (desc=...) ALPHABETICAL --&amp;gt;&lt;br /&gt;
&amp;lt;!-- KEEP LENGTHS OF DESCRIPTIONS TO THAT OF EXISTING ENTRIES OR LESS --&amp;gt;&lt;br /&gt;
{{OXPListTableHeader}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Accessories OXP|Accessories]] replaces the textures of all Stations and non-ship objects in Oolite with a more detailed and realistic look&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2010-06-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Accipiter]] is the market entry from Xeceesian shipyards, a strong &amp;amp; fast all purpose vessel for experienced commanders&lt;br /&gt;
|aut=CaptSolo&lt;br /&gt;
|con=Staer9, Griff&lt;br /&gt;
|date=2011-05-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Aegidian%27s Specials]] adds the powerful [[Mussurana]], the [[Asp (Oolite)#Notable features|Asp Mark II Special]], and a new cargo canister&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2009-07-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Aegidian%27s X-Ships]] adds [[Python ET Special]]s, [[Cobra Mk.2 (Oolite)|Cobra Mk II]]s, [[Taipan]]s, [[Asp (Oolite)#Notable features|Asp Mark II Special]]s, and [[Sidewinder (Oolite)#Notable features|Sidewinder Special]]s&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2009-04-29&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Pirate Clan Blitzspears|Amen Brick's Pirate Clan One: The Blitzspears]] adds the [[Assassin Blitzspear|Assassin]], the [[Hoodlum]], the [[Scoundrel]], and the [[Spiv]]&lt;br /&gt;
|aut=Amen Brick&lt;br /&gt;
|date=2008-06-30}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Amiga Replacement Sounds]] is based on the sound set used in the Amiga version of the original Elite&lt;br /&gt;
|aut=EAGLE 5&lt;br /&gt;
|date=2006-03-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Systems&lt;br /&gt;
|desc=[[Anarchies OXP|Anarchies]] overhauls legal ratings and spices up anarchies with [[Hacker Outpost]]s, [[Salvage Gang]]s, special stations &amp;amp; ships&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|con=Killer Wolf, Griff, Cdr. Wyvern, Murgh, Aegidian, 8-Bit Apocalypse&lt;br /&gt;
|date=2011-03-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9462 Another HUD] is based on Killer Wolf's Generic HUD&lt;br /&gt;
|aut=NorthenderPNE&lt;br /&gt;
|date=2011-03-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Aphid]] adds the stylish Aphid Escort Service&lt;br /&gt;
|aut=8-Bit Apocalypse&lt;br /&gt;
|date=2005-01-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Aquatics OXP|Aquatics]] adds the Aquarian Shipbuilding Corporation of Aqualina, G3 along with its ships and a mission&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-03-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Armoured Transport Type 1]] adds Gaundlet's [[Gaundlet Armoured Transport Type1|Armoured Transport Type 1]] and [[Gaundlet Armoured Escort Viper|Armoured Escort Viper]] that ferry valuables&lt;br /&gt;
|aut=Arexack Heretic&lt;br /&gt;
|date=2005-12-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Armoury OXP|Armoury]] adds AMS, captured Thargons, drones, probes, a missile rack, some bombs, and the missile machine&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-06-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[The Assassins Guild OXP|Assassins Guild]] adds 21 missions involving murder to order in Galaxy 7&lt;br /&gt;
|aut=Littlebear&lt;br /&gt;
|date=2011-05-03&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Asteroid Storm]] adds different types of asteroids &amp;amp; a mission where a station in G1 is threatened by a large asteroid strike&lt;br /&gt;
|aut=LittleBear, Charlie&lt;br /&gt;
|date=2011-01-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Aurora]] adds huge passenger ships for the wealthiest in society&lt;br /&gt;
|aut=pagroove&lt;br /&gt;
|con=Griff, Thargoid&lt;br /&gt;
|date=2010-11-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://www.mediafire.com/?fnc65em7uh5un1d Auto ECM] fires the ECM once when a missile is fired at the player's ship. See the [http://aegidian.org/bb/viewtopic.php?p=138124#p138124 BB] for more info&lt;br /&gt;
|aut=Switeck&lt;br /&gt;
|date=2011-05-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Auto eject OXP|Auto Eject]] ejects your escape pod automatically when your energy becomes too low&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2010-06-16&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Automatic Chaff System]] provides an enhanced chaff-based missile countermeasure system&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2010-06-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Baakili Far Trader]] adds a dockable alien ship&lt;br /&gt;
|aut=Zieman&lt;br /&gt;
|date=2010-09-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Bandersnatch]] adds a pirate capital vessel armed with 4 x fore lasers&lt;br /&gt;
|aut=Flying_Circus&lt;br /&gt;
|date=2009-11-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Beer Cooler]] allows you to fit your ship with a beer cooler&lt;br /&gt;
|aut=Maik&lt;br /&gt;
|date=2010-08-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Behemoth]] adds a dockable Navy cruiser carrying [[Navy Asp]]s and [[Navy Viper]]s&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2011-01-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[ADCK%27s Behemoths]] adds shadered versions of the [[Behemoth]],  [[Galactic Navy OXP|Galactic Navy]] ships and stations, and then some&lt;br /&gt;
|aut=ADCK&lt;br /&gt;
|con=Aegidian, pagroove, Nemoricus, Selezen, Simon B&lt;br /&gt;
|date=2010-04-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Behemoth Spacewar]] adds intelligence to the Behemoth and brings a combat with Thargoids&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2010-01-09&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[BGS|BGS - Background Set]] framework for images, sounds and ambient music&lt;br /&gt;
|aut=pagroove, Svengali&lt;br /&gt;
|date=2011-03-16&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[BigShips OXP|Big Ships]] ensures that large ships do not dock and controls population of systems with them&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2009-11-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Black Monk Monastery]] offers loans in advanced systems and adds the [[Black Monk Gunship]] to persecute defaulters&lt;br /&gt;
|aut=LittleBear&lt;br /&gt;
|date=2010-06-14&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[BlackjacksBullion OXP|Blackjack's Bullion]] starts in galaxy 2 at Telace as Commander Blackjack arrives via escape pod&lt;br /&gt;
|aut=Rustybolts&lt;br /&gt;
|date=2010-03-08&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[BlOomberg Markets]] varies the in-game economy by generating random events that affect commodity prices&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2011-03-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Boa II Clipper Class]] is a development of the Boa Class Cruiser, adding a third engine at the cost of cargo space&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2011-01-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Boomslang]] adds a mid-range multi-role ship. Used by pirates and traders alike&lt;br /&gt;
|aut=milinks, Jar&lt;br /&gt;
|date=2008-09-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Bounty Scanner]] adds bounty details (if any) to the targeting lock-box display when locked onto other ships&lt;br /&gt;
|aut=Frame&lt;br /&gt;
|date=2010-07-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[BountyStatus OXP|Bounty Status]] displays your current bounty (and your legal status) on the F5 manifest screen&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-05-08&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Breakable_'Standard'_Equipment_OXPs|Breakable 'Standard' Equipment]] makes some standard equipment such as HUD/Scanner damageable in combat&lt;br /&gt;
|aut=Capt. Murphy&lt;br /&gt;
|date=2011-07-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Bulk Haulers]] adds the [[Lynx Bulk Carrier (Oolite)|Lynx Bulk Carrier]], the [[Long Range Cruiser (Oolite)|Long Range Cruiser]], the [[Bulk Hauler]], and the [[Super Bulk Hauler]]&lt;br /&gt;
|aut=ADCK&lt;br /&gt;
|con=Aegidian, pagroove&lt;br /&gt;
|date=2010-04-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[BuoyRepair|Buoy Repair]] adds a [[Buoy Repair Facility]] and related ships to repair defect or destroyed nav-beacons&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|con=Svengali, Murgh, Zieman&lt;br /&gt;
|date=2011-06-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[[Cabal Common Library]] is a collection of snippets and helpers for OXPs&lt;br /&gt;
|aut=Svengali&lt;br /&gt;
|con=Cmd.Cheyd, PhantorGorth&lt;br /&gt;
|date=2011-07-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Caduceus]] adds the very expensive (and deadly) Caduceus&lt;br /&gt;
|aut=ClymAngus&lt;br /&gt;
|con=Cdr. Wyvern, another_commander, Eric Walch, Thargoid&lt;br /&gt;
|date=2010-12-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Capisastra]] adds [[Capisastra Defender]]s, [[Capisastra Hauler]]s, and [[Capisastra Warrior]]s&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|date=2006-01-12}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Captain Berf Engineer]] adds a voice for crew members&lt;br /&gt;
|aut=Captain Berf&lt;br /&gt;
|date=2009-12-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Captain Berf Pilot]] adds a voice for crew members&lt;br /&gt;
|aut=Captain Berf&lt;br /&gt;
|date=2009-12-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Captain Berf Pilot Alien]] adds a voice for crew members&lt;br /&gt;
|aut=Captain Berf&lt;br /&gt;
|date=2009-12-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Captain Berf Tactical Officer]] adds a voice for crew members&lt;br /&gt;
|aut=Captain Berf&lt;br /&gt;
|date=2009-12-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Cargo Shepherd OXP|Cargo Shepherd]] attracts cargo pods and holds them until you can scoop them, also includes a beacon&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-04-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://www.box.net/shared/4lphdkazs5 CB-HUD] features a HUD that changes based on installed equipment. See the [http://aegidian.org/bb/viewtopic.php?p=141035#p141035 BB post] for more information&lt;br /&gt;
|aut=Captain Beatnik&lt;br /&gt;
|date=2011-05-29&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Clear Skies OXP|Clear Skies]] reduces nebula effects and dims stars. Handy if your system is finding it hard to run Oolite&lt;br /&gt;
|aut=johnsmith&lt;br /&gt;
|date=2006-11-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Cobra 3.5|Chopped Cobra]] adds the Cobra Mk 3.5, a slightly faster and tougher variant with a reduced cargo bay&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2006-12-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9157 Cobra AC] is a faithful reproduction of the Cobra on the cover of the Dark Wheel novella with improved specs&lt;br /&gt;
|aut=dertien&lt;br /&gt;
|date=2011-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Cobra Clipper SAR]] adds a custom Cobra Mk III to rescue stranded Commanders&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2010-04-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Cobra III NjX]] adds a faster, tougher variation on the Classic Cobra Mk III&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|date=2006-08-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Cobra Mark III-XT]] Cobra3 with revamped architecture and upgraded systems to boost performance&lt;br /&gt;
|aut=CaptSolo&lt;br /&gt;
|date=2011-07-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.purgatori.net/cobra4.htm Cobra MkIV] is [[Isis Interstellar]]'s successor to the Cobra MkIII, available in trader and fighter variants&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2010-11-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[OosoundsCombined OXP|Combined Murgh, Wiggy &amp;amp; xaotik's sounds]] combines the 3 available packs from Murgh, Wiggy and xaotik&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|con=Murgh, Wiggy, xaotik&lt;br /&gt;
|date=2009-09-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Systems&lt;br /&gt;
|desc=[[Commies]] Adds [[Astro Mines]], [[CZGF|Factories]], [[SLAPU|Production Units]], [[Worker%27s Commuter|Commuters]] &amp;amp; special police ships to Communist systems&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|con=Ramirez, Murgh, johnsmith, HueijRevisited&lt;br /&gt;
|date=2010-05-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[CompactHUD|Compact HUD]] provides an alternative HUD with a clean look&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Condor]] adds a very powerful police and Navy Cruiser&lt;br /&gt;
|aut=Charlie&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2010-10-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Console HUD]] Azure themed semi-transparent HUD with balanced array of indicators&lt;br /&gt;
|aut=CaptSolo&lt;br /&gt;
|date=2011-07-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[http://www.box.net/shared/mq1mzoc79t Constrictor Mission Hints] adds more hints for those doing the native Constrictor Mission&lt;br /&gt;
|aut=Arexack Heretic&lt;br /&gt;
|date=2010-08-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Contractor ZZ1]] Very fast combat 'stealth' ship. Appears in-game as a Bounty-hunter and rarely as Pirate. Buyable&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2011-01-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Copperhead]] Redux of core ship in Archimedes Elite slightly modified. NPC and player buyable&lt;br /&gt;
|aut=CaptSolo&lt;br /&gt;
|date=2011-05-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Croydon Starsoarer]] adds a ship that is similar to the Asp in specification&lt;br /&gt;
|aut=SimonB&lt;br /&gt;
|con=pagroove&lt;br /&gt;
|date=2010-05-08&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[CustomSounds OXP|CustomSounds]] replaces/adds 40+ sounds, featuring music &amp;amp; extensive use of calm female computer voice for warnings&lt;br /&gt;
|aut=milinks&lt;br /&gt;
|date=2006-12-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[DWCobra|Dark Wheel Cobra]] is a custom Cobra Mk III model, as seen on the cover of the Elite Manual&lt;br /&gt;
|aut=ramon&lt;br /&gt;
|date=2006-11-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[[Debug OXP]] is a special OXP that enables JavaScript console support in test releases of Oolite (1.70 and later)&lt;br /&gt;
|aut=Ahruman&lt;br /&gt;
|date=2010-06-19&lt;br /&gt;
|work=N}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[http://deephorizonindustries.com/Gas_Giant_Skimming.html Deep Horizon - Gas Giants Skimming] allows to skim gas giants to refuel a ship or mine them for rare minerals&lt;br /&gt;
|aut=Cdr. Cheyd&lt;br /&gt;
|date=2010-07-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://deephorizonindustries.com/Lights_Down.html Deep Horizon - Lights Down] lowers ambient light within system to give more natural feel to planets and ships&lt;br /&gt;
|aut=Cdr. Cheyd&lt;br /&gt;
|date=2010-07-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://deephorizonindustries.com/Nav_Buoy.html Deep Horizon - Nav Buoy 1.0] replaces Witchpoint, Station, and other Nav Buoys with a new model&lt;br /&gt;
|aut=Cdr. Cheyd&lt;br /&gt;
|date=2011-07-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[http://deephorizonindustries.com/Pirate_Ambushes.html Deep Horizon - Pirate Ambushes] adds pirates that ambush the player upon exit from witchspace&lt;br /&gt;
|aut=Cdr. Cheyd&lt;br /&gt;
|date=2010-07-06&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://deephorizonindustries.com/DH-Systems.html Deep Horizon - Systems] textures the main planet of a system as well as adding moons and additional planets&lt;br /&gt;
|aut=Cdr. Cheyd&lt;br /&gt;
|date=2010-07-06&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Deep Space Dredger]] adds dockable Space Dredgers, defended by [[Sabre]] fighters, and a missile to salvage derelict ships&lt;br /&gt;
|aut=Sabre&lt;br /&gt;
|date=2011-01-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[DeepSpacePirates|Deep Space Pirates]] adds pirates and asteroids outside the space lanes&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2010-01-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Deepspace Ships#Deepspace HUDs|Deepspace HUD]] is an alternative HUD with two versions&lt;br /&gt;
|aut=DeepSpace&lt;br /&gt;
|date=2010-02-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Deepspace Ships]] replaces the default ships with new textures&lt;br /&gt;
|aut=DeepSpace&lt;br /&gt;
|date=2010-02-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Deposed OXP|Deposed]] is a series of missions set in Galaxy 4 for an experienced Commander&lt;br /&gt;
|aut=Cdr. Wombat&lt;br /&gt;
|con=Commander McLane, Eric Walch&lt;br /&gt;
|date=2009-03-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Systems&lt;br /&gt;
|desc=[[Dictators OXP|Dictators]] adds a range of ships and stations to each dictatorship and offers new trading opportunities to players&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2010-06-19&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Diso OXP|Diso]] adds extra planets and stations to the Diso system in Galaxy 1&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2010-11-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Display reputation OXP|Display Reputation]] lets you know your current reputations in the passenger ferrying and the cargo contract market&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2010-03-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Oolite Docking Clearance Protocol (v1.72 or later)|Docking Clearance]] enables the docking clearance protocol for all stations&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2008-12-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Griff Industries|Dodo Stations]] adds new textures for Dodecahedron stations&lt;br /&gt;
|aut=Griff, CaptKev&lt;br /&gt;
|date=2010-05-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Dr HUD OXP|Dr HUD]] is an alternative HUD&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2006-12-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Dragon|Dragon Assault Craft]] adds a heavy combat ship, and the Military Smart Missile, an improved hard head&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2008-11-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Dragon#Download|Dragon Military Missile]] adds an enhanced hardhead, seeks priority targets when ECM'd&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2008-11-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.mediafire.com/?rllzzcbkwgm Dragonfly/Firefly S.T] adds [[Dragonfly S.T]] &amp;amp; much faster [[Firefly S.T]]. Ideal small fast ships for pirates or bounty hunters&lt;br /&gt;
|aut=Rustybolts&lt;br /&gt;
|date=2009-10-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Eagle Mk II]] adds the cheap Eagle Mk II escort vessel in several different versions, including an enhanced SE&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|date=2006-03-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[ADCK%27s Eagles|Eagles Mk I to IV]] adds four Eagle Long Range Fighters to the game&lt;br /&gt;
|aut=ADCK&lt;br /&gt;
|date=2010-04-07&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Energy Equipment OXP|Energy Equipment]] adds a pylon-mounted automatically triggered top-up for when the juice runs low&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-03-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Escort Contracts OXP|Escort Contracts 1.2]] allows players to enter into short-term escort contracts with NPC lone wolf traders&lt;br /&gt;
|aut=Capt Murphy&lt;br /&gt;
|date=2011-07-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[ETT Homing Beacon]] marks a position in space by deploying a pylon-mounted beacon&lt;br /&gt;
|aut=Twisted&lt;br /&gt;
|con=Lone_Wolf&lt;br /&gt;
|date=2011-04-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Executive SpaceWays]] adds [[Delta Long-Range Escort|Delta]]/[[Gemini Escort|Gemini]] Escorts, [[Starseeker Personal Shuttle|Starseeker]]/[[Trident Executive Shuttle|Trident Exec]] Shuttles, [[Strelka Cruise Liner]]s&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2010-06-19&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.box.net/shared/moreq536ht#/shared/moreq536ht/1/71484311/786362645/1 Extra Thargoids] adds 2 types of Thargoid ships, each of which packs surprises. Replaces the 'Poet' Frigate OXP&lt;br /&gt;
|aut=UK_Eliter&lt;br /&gt;
|date=2011-07-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Systems&lt;br /&gt;
|desc=[[Factions OXP|Factions]] from anarchy, feudal, dictatorship &amp;amp; communist systems meet in multi-government systems and start fighting&lt;br /&gt;
|aut= m4r35n357&lt;br /&gt;
|date=2011-06-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Famous Planets OXP|Famous Planets]] adds unique textures, new descriptions, and theme tunes for many planets in G1 and G2&lt;br /&gt;
|aut=pagroove&lt;br /&gt;
|con=Cdr. Cheyd, Stromboli, Pangloss, CaptKev, Drew Wagar, Thargoid, Svengali, Lestradae, UK Eliter&lt;br /&gt;
|date=2010-09-30&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Famous Planets Liners OXP|Famous Planets Liners]] adds Spaceway Liners on the 4 spaceways from Lave to Zadies&lt;br /&gt;
|aut=pagroove&lt;br /&gt;
|con=Ramirez, Presti70, Thargoid&lt;br /&gt;
|date=2009-03-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Far Arm ships|Far Arm Ships]] adds [[Far Arm Sunracer|Sunracer]]s, [[Far Arm Scow|Scow]]s, [[Far Arm Tanker|Tanker]]s, [[Far Arm Corsair|Corsair]]s, [[Far Arm Dart|Dart]]s, [[Far Arm Hunter|Hunter]]s, [[Far Arm Cruiser|Cruiser]]s, [[Far Arm Titan|Titan]]s, [[Far Arm Manchi Vulture|Vulture]]s, and [[Far Arm Manchi Wasp|Wasp]]s&lt;br /&gt;
|aut=Zieman&lt;br /&gt;
|date=2010-10-02&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Far Star Murderer]] adds a mid-range fighter / trader, with a fair sized cargo bay&lt;br /&gt;
|aut=8-Bit Apocalypse&lt;br /&gt;
|date=2005-01-01&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://www.box.net/shared/d57y0uip74 Far Sun] places suns further away from the planet than standard Oolite&lt;br /&gt;
|aut=Kaks&lt;br /&gt;
|date=2010-05-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.box.net/shared/moreq536ht Fer de Lance 3G] adds player &amp;amp; NPC Fer de Lance versions with custom paint jobs &amp;amp; altered specs. New bug fixes&lt;br /&gt;
|aut=UK_Eliter&lt;br /&gt;
|date=2011-07-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Fer de Lance NG]] adds a more powerful version of the Fer de Lance with several custom paint jobs&lt;br /&gt;
|aut=alien&lt;br /&gt;
|date=2005-03-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Ferdepai]] adds a new fighter / trader to Galaxy 2&lt;br /&gt;
|aut=johnsmith&lt;br /&gt;
|date=2006-12-17&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Systems&lt;br /&gt;
|desc=[[Feudal States]] adds the [[Jäger]], the [[Korvette]], the [[Zerstörer]], a [[Royal Hunting Lodge]] and other elements to feudal systems&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2011-05-30&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Fighter HUD (Oolite)|Fighter HUD]] is an alternative HUD&lt;br /&gt;
|aut=CaptKev&lt;br /&gt;
|date=2008-05-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Firewasp]] adds a fast interceptor&lt;br /&gt;
|aut=Draco_Caeles&lt;br /&gt;
|date=2006-05-10&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Fireworks OXP|Fireworks]] allows you a joyful celebration of whatever it is you want to celebrate&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-05-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Flight Log OXP|Flight Log]] adds a log of the last 10 systems visited&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-01-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Flying Dutchman OXP|Flying Dutchman]] adds the small chance to meet a Ghost Ship in the Ooniverse&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|con=Griff&lt;br /&gt;
|date=2011-04-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[[Freaky Thargoids OXP|Freaky Thargoids]] is a shader demonstration for Oolite&lt;br /&gt;
|aut=Ahruman&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2011-02-03&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Free Trade Zone]] adds an independent trading post of dubious legality to Multi-Government systems&lt;br /&gt;
|aut=Disembodied&lt;br /&gt;
|con=Commander McLane&lt;br /&gt;
|date=2010-10-08&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Frog Space Rickshaw]] adds a chatty space taxi service to the safer systems&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2006-01-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Fuel Collector OXP|Fuel Collector]] scoops fuel from killed ships and collects fuel while cruising, even in witch space&lt;br /&gt;
|aut=Frame&lt;br /&gt;
|con=Commander McLane&lt;br /&gt;
|date=2011-07-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Fuel Station OXP|Fuel Station]] adds fly-thru Fuel Stations and Fuel Satellites near the witchpoint and along route one&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-06-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Fuel Tank]] v2.2 mounts in place of a missile, to top up 3 light years of fuel&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2008-05-31&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Furball OXP|Furball]] adds barroom brawls that've got out of hand. Furious fugitives flee from pissed off police on the station's doorstep&lt;br /&gt;
|aut=Caracal&lt;br /&gt;
|con=m4r35n357&lt;br /&gt;
|date=2011-06-06&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Systems&lt;br /&gt;
|desc=[[Galactic Navy OXP|Galactic Navy]] adds more ships and stations to the arsenal of the Galactic Navy. Allows to join the Navy Reserves&lt;br /&gt;
|aut=Nemoricus&lt;br /&gt;
|date=2010-12-30&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[GalDrivePod]] A portable Galactic Hyperdrive unit, allowing you to complete the &amp;quot;Lost Worlds Grand Tour&amp;quot;&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2011-03-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://www.boxcn.net/shared/5dqx22u06i Galaxy Info] helps you search for systems by criteria you select and will try to locate the nearest one&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-04-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Gates OXP|Gates]] ads short-cut jump gates to suitable systems, speeding journeys between the main station and witchpoint&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-04-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Generation Ships OXP|Generation Ships]] adds encounters with the mythical Generation Ships from time to time&lt;br /&gt;
|aut=Draco_Caeles&lt;br /&gt;
|con=Commander McLane&lt;br /&gt;
|date=2011-04-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Globe station|Globe Station]] is a new type of stations that appears in advanced systems&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|con=Svengali&lt;br /&gt;
|date=2009-10-22&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Greek Ships OXP|Greek Ships]] adds [[Penelope Class Freighter]]s, [[Telemachus Class Escort]]s, and [[Ulysses Class Interceptor]]s&lt;br /&gt;
|aut=8-Bit Apocalypse&lt;br /&gt;
|date=2005-07-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Griff ArcElite|Griff's ArcElite]] adds versions of native Oolite ships textured &amp;amp; shaded to resemble the Acorn Archimedes version of Elite&lt;br /&gt;
|aut=Griff&lt;br /&gt;
|date=2008-09-29&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Griff Boa]] contains the famous Griff Boa&lt;br /&gt;
|aut=Griff&lt;br /&gt;
|date=2010-06-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://www.boxcn.net/shared/k2lvh3enuy Griff's Explosion Debris] adds new alloy &amp;amp; debris models to exploding ships&lt;br /&gt;
|aut=Griff&lt;br /&gt;
|con=Thargoid&lt;br /&gt;
|date=2009-02-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Griff Krait]] adds a heavily modified Krait, similar in design to the Griff Boa&lt;br /&gt;
|aut=Griff&lt;br /&gt;
|date=2010-06-17&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Griff Industries|Griff's Normalmapped Ships]] adds some of the best looking ships, stations, and flotsam available in Oolite&lt;br /&gt;
|aut=Griff&lt;br /&gt;
|date=2011-04-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Griffin Two (Oolite)|Griffin Two]] adds the Griffin Mk II from Frontier&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2005-10-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Gritty Coriolis OXP|Gritty Coriolis]] alternates the Coriolis stations with two elaborate gritty Corioli&lt;br /&gt;
|aut=xaotik&lt;br /&gt;
|date=2006-02-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://wiki.alioth.net/images/2/2d/G-HUD_Mk2.oxp.zip G-HUD Mk2] adds an alternative HUD&lt;br /&gt;
|aut=Gunney Plym&lt;br /&gt;
|date=2008-07-08&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Halsis]] features a female cockpit voice, sometimes called Hal's Hot Sister&lt;br /&gt;
|aut=Ovvldc&lt;br /&gt;
|date=2006-08-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[BoyRacer|Hatchling BoyRacers]] adds the  talkative (and often insulting) [[BoyRacer]]s to more advanced systems&lt;br /&gt;
|date=2006-01-13&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Staer9 haulerp30|Hauler P30]] is a very large cargo ship made by Staer9 Industries&lt;br /&gt;
|date=2011-05-11&lt;br /&gt;
|aut=Staer9&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Hawksound]] features a quality female computer voice, new weapon, damage and some station interface sounds&lt;br /&gt;
|aut=Hawkstrom&lt;br /&gt;
|date=2008-11-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Herald Military Gunboat|Herald]] adds the [[Herald Military Gunboat]], a powerful police and Navy interceptor&lt;br /&gt;
||aut=Flying_Circus&lt;br /&gt;
|date=2005-01-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Hired Guns OXP|Hired Guns]] adds escort ships that can be contracted to accompany you on your next journey&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-02-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Hognose|Hognose Tugships]] adds the [[Hognose]], a chatty tug ship that can be seen towing broken down ships&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|con=Jonnycuba&lt;br /&gt;
|date=2006-03-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[HoOpy Casino]]s appear near the station in advanced systems. You can win or lose credits in games of chance&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2010-06-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Hotrods OXP|Hotrods]] adds custom paint jobs to classic Elite ships, racing vehicles, and a space gang that doesn't like the player&lt;br /&gt;
|aut=Kaks&lt;br /&gt;
|con=Arexack_Heretic, Murgh&lt;br /&gt;
|date=2009-03-16&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[HyperCargo OXP|HyperCargo]] adds an extended and expanded cargo handling system&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-09-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Hyperradio js OXP|Hyperradio]] is an expandable music-player&lt;br /&gt;
|aut=Svengali&lt;br /&gt;
|date=2011-02-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Icarus (Oolite)|Icarus]] adds a small fighter / trader based on blueprints from the lost Solice system&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|date=2007-07-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Illegal_Goods_Tweak_OXP|Illegal Goods Tweak 1.4]] adds interactions with Galcop customs on docking at a main station with Contraband in the hold&lt;br /&gt;
|aut=Capt. Murphy&lt;br /&gt;
|date=2011-06-17&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Illicit Unlock OXP|Illicit Unlock]] allows the player to fly all the classic Elite ships&lt;br /&gt;
|aut=tgape&lt;br /&gt;
|date=2005-10-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Griff_Industries#Related_OXP's_by_Other_Authors|Illicit Unlock - Griff Version]] allows the player to fly [[Griff Industries#Griff's Normalmapped Ships OXP|Griff's]] pirate/viper Ships&lt;br /&gt;
|aut=ADCK&lt;br /&gt;
|con=dertien&lt;br /&gt;
|date=2011-02-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[I_Missile|I_Missile]] Very fast, very destructive weapon at an affordable price&lt;br /&gt;
|aut=CaptSolo&lt;br /&gt;
|date=2011-07-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Imperial Courier (Oolite)|Imperial Courier]] adds the powerful Imperial Courier from Frontier, constructed by [[Seldar Shipyards]]&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|con=Commander McLane&lt;br /&gt;
|date=2007-06-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Imperial Trader (Oolite)|Imperial Trader]] adds the powerful Imperial Trader from Frontier&lt;br /&gt;
|aut=ADCK&lt;br /&gt;
|date=2010-06-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Interstellar help OXP|Interstellar Help]] allows you to help out traders who got stuck in interstellar space without fuel&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-03-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Ionics OXP|Ionics]] adds a series of missions featuring the Ionics Company of Zaria, the Ramaza Liberation Front and The Link&lt;br /&gt;
|aut=Galileo&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2010-08-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[IronHide OXP|IronHide]] introduces the new range of IronHide ship armour from the Aquarian Shipbuilding Corporation&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-02-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Iron Raven]] is a multi-stage mission to investigate a dangerous conspiracy on behalf of GalCop High Command&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2011-04-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Ixian Ships|Ixian Military Ships]] adds Ixian [[Ixian Battle Cruiser|Battle Cruiser]]s, [[Ixian Bezerka|Bezerka]]s, [[Ixian Gunship|Gunship]]s and [[Ixian No-Ship Mark I|No-Ship]]s from Dune&lt;br /&gt;
|aut=8-Bit Apocalypse&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2009-03-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Ixian Ships#Ixian Freighter|Ixian Freighter]] adds a civilian freighter to the universe&lt;br /&gt;
|aut=8-Bit Apocalypse&lt;br /&gt;
|date=2005-01-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Jabberwocky]] adds the powerful Jabberwocky fighter / trader&lt;br /&gt;
|aut=Flying_Circus&lt;br /&gt;
|date=2006-03-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[JellyBaby Dispenser]] adds a handy Jellybaby Dispenser for your cockpit&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2011-03-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Kestrel &amp;amp; Falcon OXP|Kestrel &amp;amp; Falcon]] adds buyable Star Wars style [[Falcon_%28Oolite%29|Falcon]] for pirates/traders and the [[Kestrel]], a police/navy interceptor&lt;br /&gt;
|aut=Charlie&lt;br /&gt;
|con=Kaks&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Killer_Wolf's_Dynamic_HUD|Killer Wolf's Dynamic HUD]] adds a version of the dynamic HUD first seen in Killer Wolf's Werewolf ships, to all ships&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|con=Thargoid&lt;br /&gt;
|date=2010-07-08&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Killit_OXP|Killit]] adds a bunch of insane super weapons&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-05-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Kirin]] adds a heavy military hauler, CV &amp;amp; XM versions used by both pirates &amp;amp; traders&lt;br /&gt;
|aut=ClymAngus&lt;br /&gt;
|con=Cdr. Wyvern&lt;br /&gt;
|date=2009-09-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Klepto-HUD OXP|Klepto-HUD]] is a different take on a HUD with precise crosshairs&lt;br /&gt;
|aut=Kleptoid&lt;br /&gt;
|date=2006-03-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://sancho.dk/oolite/lane_legal.zip ''Lane Legal Racers''] adds NPC versions of [[Krait]]s, [[Mamba]]s, and [[Sidewinder]]s from different [[Racers#Listing_of_sponsored_teams|racing teams]]&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-09-27&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Lave OXP|Lave]] is a system make-over for Lave, adding all features described in The Dark Wheel novella included with original Elite&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2009-12-31&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Lave Academy OXP|Lave Academy]] adds Lave Academy Station above Lave &amp;amp; other planets, with 3 mini-games to test Commanders' skills&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-06-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[http://www.boxcn.net/shared/9q1cbydgan LinkG7] is a mission in Galaxy 7&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-02-16&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Llama]] adds the Llama fighter / trader. Updated from the version of Oosat1 to fix a small bug&lt;br /&gt;
|aut=Flying_Circus&lt;br /&gt;
|date=2006-02-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://www.boxcn.net/shared/jtpt2vlol5 Long Range Target Scanner] shows all ships currently in your system and allows to target them&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-05-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[LongWay_OXP|Long Way Around]] adds a transport mission well suited to the novice in Galaxy 1&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2009-04-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Longshot]] adds the Longshot fighter / trader, regarded by many as a cheaper alternative to the Cobra Mk III&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Lovecats.oxp|Lovecats]] is a mission about love &amp;amp; betrayal amongst the feline races of Galaxy 4. Fast ship &amp;amp; hard heart required!&lt;br /&gt;
|aut=johnsmith&lt;br /&gt;
|date=2010-01-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Second-hand ships|M-Pack (rusties)]] adds rusty banger versions of all Classic Elite ships in poor condition but still can haul cargo&lt;br /&gt;
|aut=murgh&lt;br /&gt;
|date=2006-01-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Manta]] adds the Manta light escort craft&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Marett Space Corporation OXP|Marett Space Corporation]] releases [[Adder Mk II]], [[Mosquito Trader]], [[Mosquito Sport]], new fighters / medium traders&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://www.crimsonforge.co.uk/cloister/MedusaHud.oxp.zip Medusa HUD] is an alternative HUD&lt;br /&gt;
|aut=ClymAngus&lt;br /&gt;
|date=2009-01-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Mega-Walnut Dashboard OXP|Mega-Walnut Dashboard]] is a generic version of the fabled Fer de Lance HUD&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2005-07-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Merlin_(Oolite)|Merlin]] Ships are interceptors used by the Police &amp;amp; Navy, but also available on the open market&lt;br /&gt;
|aut=Charlie&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[MildAudio]] Sound Set&lt;br /&gt;
|aut=xaotik&lt;br /&gt;
|date=2006-02-15&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Military_Fiasco|Military Fiasco]] adds a navy mission for Commanders with &amp;gt; 1,000 kills. Also equips Navy with powerful cruisers&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2011-01-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Military station|Military Station]] adds well armed Military Stations to the more advanced systems&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Military Stingray Mk. II|Military Stingray]] adds an ex-military ship that may show up in pirate hands or for the player to buy&lt;br /&gt;
|aut=CaptKev&lt;br /&gt;
|date=2007-03-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Milspec HUD|Milspec HUD]] is an alternative HUD with targeting aids and an emphasis on functionality&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2010-07-08&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Misjump_Analyser|Misjump Analyser]] scans witchspace &amp;amp; on detection of disturbances sounds an alarm &amp;amp; logs location of disturbance&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2010-05-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?p=135619#p135619 Misjump Inducer] can turn on/off misjumps on demand&lt;br /&gt;
|aut=Switeck&lt;br /&gt;
|date=2011-04-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Missile_Analyser|Missile Analyser]] scans incoming missiles &amp;amp; sets target to incoming missile when it is no standard missile&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2010-05-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Missiles_and_Bombs|Missiles &amp;amp; Bombs]] adds a wide variety of missiles &amp;amp; bombs that are are available to player &amp;amp; NPCs alike&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2009-12-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Missionaries OXP|Missionaries]] adds clerics of four faiths who spam Commanders with requests to worship their Gods&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Moccasin]] adds light escort craft from Xeceesian Shipyards modeled after ArcElite core ship&lt;br /&gt;
|aut=CaptSolo&lt;br /&gt;
|date=2011-06-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Mod-HUD]] is a slight modification / re-organization of the standard Oolite HUD without surround boxes&lt;br /&gt;
|aut=CaptSolo&lt;br /&gt;
|date=2011-05-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/monument.zip Monument] sometimes adds a monument to famous Commanders close to the Sun&lt;br /&gt;
|aut=dajt&lt;br /&gt;
|date=2005-05-28&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Morrigan]] adds a vast trade ship to the Universe&lt;br /&gt;
|aut=Flying_Circus&lt;br /&gt;
|date=2009-12-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Oosounds2_OXP|''Murgh's Replacement Sounds'']] contains 10 new sounds&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2005-08-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Murgh_Xships OXP|Murgh's X-Ships]] adds [[Bandy-Bandy]], [[Chuckwalla]], [[Eel Rapier]], [[Taipan]] (fast courier craft &amp;amp; 2 light escort ships)&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2009-09-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[NavalGrid OXP|Naval Grid]] enhances recharging rates by linking the naval energy unit to military-boosted shields&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-03-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Neolite Ships]] is an Oolite ships replacement set&lt;br /&gt;
|aut=SimonB&lt;br /&gt;
|date=2009-07-11&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/newships.oxp.zip ''New Ships''] adds [[Hamadryad]], [[Josher]], [[Naga]], [[Ringhals]] (mining and trade ships from previous versions of Elite)&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2006-05-15&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/hud_ng.oxp.zip NG HUD] is an alternate HUD. All standard functions, but with a personal view&lt;br /&gt;
|aut=alien&lt;br /&gt;
|date=2005-03-06&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[NPC-shields OXP|NPC-shields]] gives shields to NPCs, together with a nice glow effect&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-04-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://wiki.alioth.net/index.php/Numeric_Style_HUDs Numeric Style HUDs] New invention/numeric gauges.[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9977 Info]&lt;br /&gt;
|aut=CommonSenseOTB&lt;br /&gt;
|date=2011-06-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/nuvipers.zip Nu Vipers] increases the types of Viper patrol ships with [[GalCop Viper Mark II]], [[GalCop Viper Cruiser]]&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Nukes.oxp|Nuclear Torpedos]] adds some powerful, but slow moving, missiles&lt;br /&gt;
|aut=E. Walch, Cdr. Wyvern&lt;br /&gt;
|date=2010-06-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Offender traders OXP|Offender Traders]] makes some traders into offenders/fugitives&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-04-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Old Ships]] adds Elite-A [[Bushmaster Miner]]s, [[Cat (Oolite)|Cat]]s, [[Chameleon (Oolite)|Chameleon]]s, [[Ghavial (Oolite)|Ghavial]]s, [[Iguana (Oolite)|Iguana]]s, [[Monitor (Oolite)|Monitor]]s, [[Ophidian (Oolite)|Ophidian]]s, [[Salamander (Oolite)|Salamander]]s&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2006-08-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Old Ships 2010]] is a retextured version of [[Old Ships]], adding the bonus Monitor 2 ship&lt;br /&gt;
|aut=pagroove&lt;br /&gt;
|con=Murgh, ADCK, Simon B, Lestradae&lt;br /&gt;
|date=2011-02-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Oo-Haul]] adds vast bulk [[L-Crate Hauler]]s to the space lanes and offers missions at [[Your Ad Here!|constores]] to safely escort them&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|con=Eric Walch, Ark&lt;br /&gt;
|date=2009-02-21&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[ooCheat_OXP|ooCheat]] adds a cheat menu to the game&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-02-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[http://www.box.net/shared/rrlm77ztzm Oolite en français] is a French Oolite localization&lt;br /&gt;
|aut=Pierre-Olivier&lt;br /&gt;
|date=2009-07-12}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[http://marc-schaffer.ch/data/OoliteGerman_V0.3.zip Oolite auf Deutsch] is a German Oolite localization&lt;br /&gt;
|aut=SwissMäc&lt;br /&gt;
|date=2009-06-02&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[http://www.box.net/shared/p3engis1ds Oolite Italiano] is an Italian Oolite localization&lt;br /&gt;
|aut=another_commander&lt;br /&gt;
|date=2010-06-15&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=Oolite in Russian: [http://www.roolite.org Roolite.org] provides localizations of Oolite 1.74.2 and some OXPs. Also check [http://www.elite-games.ru/conference/viewtopic.php?t=48476&amp;amp;start=0 Elite Games]&lt;br /&gt;
|aut=Seventh&lt;br /&gt;
|date=2009-03-26&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://www.box.net/shared/x9u5xoulkq Orbits] positions planets on orbits around the sun&lt;br /&gt;
|date=2010-07-01&lt;br /&gt;
|aut=Ebi&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Ore Processor]] extracts valuable materials from asteroid fragments when mounted to a ship's fuel scoop&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|con=Ark, Kaks, Eric Walch&lt;br /&gt;
|date=2011-01-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Orisis]] BigTraders are new passenger liners that ferry passengers around&lt;br /&gt;
|aut=pagroove&lt;br /&gt;
|con=ADCK, Thargoid&lt;br /&gt;
|date=2010-01-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Outrider (Oolite)|Outrider]] is a medium fighter produced by the [[Taranis Corporation HQ (Oolite)|Taranis Corporation]]&lt;br /&gt;
|aut=Roberto&lt;br /&gt;
|date=2006-08-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[[OXPConfig]] provides means to configure supported OXPs, to recognize errors, or to avoid clashes&lt;br /&gt;
|aut=Svengali&lt;br /&gt;
|date=2011-07-16&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[P.A. Groove Stations OXP|P.A. Groove Stations]] adds lots of different types of Coriolis and Dodec Stations&lt;br /&gt;
|aut=pagroove&lt;br /&gt;
|con=Griff, Commander McLane&lt;br /&gt;
|date=2010-04-16&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Pallas]] adds a fast but lightly shielded fighter.&lt;br /&gt;
|aut=Charlie&lt;br /&gt;
|con=Svengali&lt;br /&gt;
|date=2010-12-02&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Pelamis]] adds the Pelamis trade ship&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2006-04-24&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Phoenix]] is a strange ship, built from salvaged parts from various Serpent Class ships&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2007-01-17&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://wiki.alioth.net/index.php/Pie_Chart_Style_HUDs Pie Chart Style HUDs] New invention=&amp;gt;pie gauges.[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9788 Info]&lt;br /&gt;
|aut=CommonSenseOTB&lt;br /&gt;
|date=2011-05-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Pirate Coves OXP|Pirate Coves]] adds rock hermits that have been taken over by pirates in more dangerous systems&lt;br /&gt;
|aut=lazygun&lt;br /&gt;
|date=2011-07-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/piratetraps.oxp.zip Pirate Traps] are dummy traders which transmit details of pirates firing on them to the police&lt;br /&gt;
|aut=popsch&lt;br /&gt;
|date=2006-01-04&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Planetfall_OXP|Planetfall]] allows the player to land on and trade at the planets and moons of each system&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-04-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Pods_OXP|Pods]] adds fuel, missile, bulk &amp;amp; empty cargo pods and pods which jam, explode, have trumbles or take a few scoops&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-03-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Police_IFF_Scanner_Upgrade|Police IFF Scanner Upgrade]] highlights offender and fugitive ships with custom IFF scanner colours&lt;br /&gt;
|aut=Capt. Murphy&lt;br /&gt;
|date=2011-06-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Pteradyne Technologies Ships OXP|Pteradyne Technologies Ships]] adds the [[Excalibur]], a buyable combat ship and the [[Paladin]], a military version&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2006-12-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://www.boxcn.net/shared/xccp8ml5cq Pylon Based Equipment Remover] allows to remove a selected piece of equipment from your pylons&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-04-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Python Class Cruiser]] is a large powerful trade ship, which can also hold its own in battle&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2007-07-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/racers.oxp.zip Racers] adds [[Chicaneer Mk II]], [[Chicaneer Mk IV]], [[Dragster Mk I]], and [[Dragster Mk II]] racing ships&lt;br /&gt;
|aut=murgh&lt;br /&gt;
|date=2006-01-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Railgun OXP|Railgun]] introduces a revolutionary new weapons system to the Ooniverse&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-05-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Ramon's Anaconda]] is a fantastic re-imagining of the Anaconda freighter. Check out its special features&lt;br /&gt;
|aut=Ramon&lt;br /&gt;
|con=Griff&lt;br /&gt;
|date=2009-04-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Random_Docking_Music_OXP|Random Docking Music]] plays a random music track from a pre-set list on activating docking computers&lt;br /&gt;
|aut=Frame&lt;br /&gt;
|date=2010-05-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Random Hits OXP|Random Hits]] adds [[Space Bar|seedy space bars]] to anarchy systems that offer large bounties on the galaxy's Most Wanted Criminals&lt;br /&gt;
|aut=LittleBear&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2011-03-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://terrastorage.ath.cx/Marmagka/e8e9ce360da6bb40f5952cbe00f02501/RedSet.zip RedSet] contains red-themed backgrounds for the UI screens&lt;br /&gt;
|aut=another_commander&lt;br /&gt;
|date=2010-06-18&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.purgatori.net/reduxedvamps.htm Reduxed Vampires] adds reworked versions of the Vampire Mk I and Mk II and a Reaper &amp;quot;Gold Edition&amp;quot;&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2010-10-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[RegistrationID|Registration ID]] adds ID tags to all Oolite standard ships&lt;br /&gt;
|aut=Frame&lt;br /&gt;
|date=2010-02-28&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Remorse_Of_Conscience_v2|Remorse Of Conscience]] is a trade ship with a large hold, that can hold its own in combat&lt;br /&gt;
|aut=8-bit Apocalypse&lt;br /&gt;
|date=2005-02-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Renegade Pirates OXP|Renegade Pirates]] adds rare, very well-armed, high bounty pirate versions of Classic Elite ships&lt;br /&gt;
|aut=LittleBear&lt;br /&gt;
|con=Aegidian, Griff&lt;br /&gt;
|date=2006-12-03&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/RVandGS.zip Renegade Viper + Grass Snake] adds [[Renegade Viper|stolen Vipers]] which earn large bounties &amp;amp; [[Grass Snake]], a large pirate trade ship&lt;br /&gt;
|aut=8-bit Apocalypse&lt;br /&gt;
|date=2004-11-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Repair_Bots_OXP|Repair 'Bots]] adds a pylon mounted canister of repair nanobots which attempt to fix damaged equipment in mid-flight&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-02-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Ring_Racer_OXP|Ring Racer]] adds the Corporate Systems Ring Racing League to Galaxy 1&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-04-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Rock Hermit Locator]] adds equipment to locate Rock Hermits&lt;br /&gt;
|aut=Frame&lt;br /&gt;
|date=2011-03-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Saleza Aeronautics]] adds [[Bellatrix Cruiser]]s, [[Rigel Bomber|Rigel Tactical Bomber]]s, and [[Saiph Interceptor]]s to high tech corporate systems&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2010-10-24&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Santa]] adds very rare Santa Sledge to space lanes escorted by plasma gun toting reindeer space bikers!&lt;br /&gt;
|aut=Griff&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2010-05-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.purgatori.net/scorpius.htm Scorpius] adds a heavily armoured private trading and transport vessel, protected by Vampire escorts&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|con=Griff&lt;br /&gt;
|date=2011-02-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Scourge of the Black Baron]] features combat &amp;amp; transport Galaxy 1 missions&lt;br /&gt;
|aut=Rxke&lt;br /&gt;
|con=Kaks, Thargoid&lt;br /&gt;
|date=2010-08-07&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Scout]] is a cheap but good looking ship from Staer9 that shares a lot of technology with the [[Xeikil]]&lt;br /&gt;
|aut=Staer9&lt;br /&gt;
|date=2011-05-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Second Wave OXP|Second Wave]] adds variants of Thargoid Warship, Thargon Robot Fighter and alien ships&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-06-06&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Selezen's S-Ships]] adds [[GalCop SWAT Viper]]s and [[Oresrian Trader]]s&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|date=2007-07-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Sell equipment OXP|Sell Equipment]] allows for small fee, resale of equipment at 60% price at suitable tech level world&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-02-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[[Shady Cobra OXP|Shady Cobra]] adds shader effects to Cobra Mk III&lt;br /&gt;
|aut=Ahruman&lt;br /&gt;
|date=2007-07-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Shady Sungs]] adds replacement textures for all Classic Elite Ships&lt;br /&gt;
|aut=Sung, ADCK&lt;br /&gt;
|date=2010-05-21&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://wiki.alioth.net/index.php/Shield_Equalizer_%26_Capacitors_OXP Shield Equalizer] balances shield energy automatically. [http://wiki.alioth.net/index.php/Shield_Equalizer_%26_Capacitors_OXP Capacitors] store unused shield energy for use later&lt;br /&gt;
|aut=CommonSenseOTB&lt;br /&gt;
|date=2011-05-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Skrounk All-Stars Limited]] adds [[All Stars Large Freighter|Large Freighter]], [[Seymour Class Sled]], [[Starbelly Class Sled]], [[Starhawk]] &amp;amp; [[Starwolf_Mark_I|Starwolf Mk I]]&lt;br /&gt;
|aut=goji62&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Smivs%27_ShipSet|Smiv's Shipset 3.0]] re-textures the standard Oolite ships beautifully with a realistic look &amp;amp; non-shader lighting effects&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2010-12-08&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Snark]] is a powerful fighter/trader, often used by pirates and bounty hunters&lt;br /&gt;
|aut=Flying_Circus&lt;br /&gt;
|date=2006-06-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=10515 Sniper Sight] is equipment to help with long distance targeting&lt;br /&gt;
|aut=Wildeblood&lt;br /&gt;
|date=2011-07-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=10176 Sniper Scope MilHUD integrated] is an version of MilHUD with integrated Sniper Sight functionality&lt;br /&gt;
|aut=Wildeblood&lt;br /&gt;
|date=2011-06-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Snoopers]] adds the galactic news network channels&lt;br /&gt;
|aut=DaddyHoggy&lt;br /&gt;
|con=Disembodied, Drew, Svengali&lt;br /&gt;
|date=2011-05-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Solid Gold Cobra Mk.3]] is a limited edition Cobra Mk3 to celebrate its 25 years anniversary&lt;br /&gt;
|aut=ADCK&lt;br /&gt;
|date=2010-06-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[http://www.purgatori.net/Sothis.htm Sothis Space Station] is a station from [[Isis Interstellar]] with a compact design of comparable size to a standard Coriolis&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2010-08-08&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Spearhead Interceptor Mk.I]] is a pure fighter, fast &amp;amp; nippy but with weak shields, no cargo bay. Can be twitchy to fly&lt;br /&gt;
|aut=Randell&lt;br /&gt;
|date=2006-07-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[S.I.R.F.|Special Interstellar Repair Facilities]] offer different trading strategies &amp;amp; repair facilities on uncommon trading routes&lt;br /&gt;
|aut=Tinker&lt;br /&gt;
|date=2010-07-02&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.purgatori.net/spectres.htm Spectre] adds [[Isis Interstellar]]'s Vampire Mk V, a secret military vessel fighting Thargoids in witch space&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2011-01-16&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Spy Hunter OXP|Spy Hunter]] is a mission for Galactic Navy for Commander with rating of 'Dangerous' or above&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|date=2009-04-11&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Staer9 Spectre]] is a cheap small fighter with high maneuverability that flopped in the market&lt;br /&gt;
|aut=Staer9&lt;br /&gt;
|date=2011-05-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Star-Jelly]] Beautiful translucent organisms sometimes found in Asteroid fields.&lt;br /&gt;
|aut=Smivs,Staer9&lt;br /&gt;
|date=2011-05-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Star Wars Ships]] adds [[A-Wing]], [[B-Wing]], [[Lambda Shuttle]], [[Tie-Fighter]], [[Tie-Interceptor]], [[X-Wing]], [[Y-Wing]]&lt;br /&gt;
|aut=Azzameen&lt;br /&gt;
|date=2006-05-31&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Status Quo Q-bomb OXP|Status Quo Q-bomb]] changes the behaviour of Q-bombs according to the [[Status Quo]] novel&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-02-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[S.T.E]] is a step up from the Cobra III with improved trading capabilities and increased speed&lt;br /&gt;
|aut=Rustybolts&lt;br /&gt;
|date=2009-07-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Stealth OXP|Stealth]] is a small G3 mission showcasing new scanner capabilities &amp;amp; introducing stealth ships&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-03-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://www.purgatori.net/Steampunk%20HUD.htm Steampunk HUD] adds a steampunk style HUD by [[Isis Interstellar]]&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2010-01-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Stellar Serpents OXP|Stellar Serpents]] adds huge space-born serpent monsters which move from system to system and are good hunting prey&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-07-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[http://sancho.dk/oolite/sunskimmers.zip Sunskimmers] adds ships to the sun/planet corridor&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-08-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[SuperCobra]] is larger, faster with stronger hull than Cobra Mk III&lt;br /&gt;
|aut=8-Bit Apocalypse&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2010-10-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Superhub]] from GASEC is the first station that is capable of transporting itself to its destination&lt;br /&gt;
|aut=P.A. Groove&lt;br /&gt;
|date=2009-11-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Swift]] is a very fast ship often used by pirates or bounty hunters with limited cargo space &amp;amp; nominal shields&lt;br /&gt;
|aut=Charlie&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Switeck's Mod OXP|Switeck's Mod]] rebalances ships &amp;amp; market prices. Adds Medium, Hard, and Harder Jameson saves&lt;br /&gt;
|aut=Switeck&lt;br /&gt;
|date=2011-01-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[System Demux (Oolite)|System Demux]] textures home planet, adds planet/moon combination to systems&lt;br /&gt;
|aut=DrBeeb&lt;br /&gt;
|date=2010-07-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[System Redux (Oolite)|System Redux]] v1.2 textures home planet, adds planet/moon combination to systems&lt;br /&gt;
|aut=CaptKev&lt;br /&gt;
|date=2011-02-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://www.box.net/shared/r05ub873b5 TAF Reset] resets the Time Acceleration Factor (TAF) to 1.0 upon docking&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2009-09-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Taranis OXP|Taranis]] is a mission for law abiding Commanders with rating of Competent+. Adds [[Taranis Corporation HQ (Oolite)|Taranis Corporation HQ]]&lt;br /&gt;
|aut=Roberto&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2009-10-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Target_Autolock_OXP|Target Autolock]] updates [[Scanner Targeting Enhancement]] to auto-lock onto attacking ships&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-02-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Target Range OXP|Target Range]] is found in all rich systems with stable governments&lt;br /&gt;
|aut=Caracal&lt;br /&gt;
|date=2010-07-24&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Target Reticle]] updates [[Scanner Targeting Enhancement]] to turn reticle red when target centred&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2010-05-31&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Taxi Galactica]] adds a Taxi Service and a non player flyable taxi cab ship to systems&lt;br /&gt;
|aut=pleb87&lt;br /&gt;
|date=2008-06-12&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Teretrurus Mk.I]] is a medium fighter/trader somewhat faster &amp;amp; tougher than Cobra Mk III, but with smaller cargo bay&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2008-02-01&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Terrapin|Terrapin Trader]] is a medium fighter/trader. A good upgrade from Cobra Mk III&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2008-02-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Tesoura]] is a slow, but well shielded trade ship&lt;br /&gt;
|aut=Randall, Dr. Nil&lt;br /&gt;
|date=2008-02-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Thargoid Carrier]] arms Thargoids with capital carrier&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|date=2006-06-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Thargorn_Threat_oxp|Thargoid Threat]] adds [[Thargoid Terrorizer Frigate]], [[Thargoid Thargorn Battleship]], [[Thargoid Thorgon Cruiser]]&lt;br /&gt;
|aut=Arexack Heretic&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2011-02-03&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Thargoid Wars]] intensifies war with the Thargoids, featuring new attack and defense missions&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2011-07-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Tianve OXP|Tianve]] adds [[Navy Station]], as well as Visuals, including a pulsar, to the Galaxy 1 system of Tianve&lt;br /&gt;
|aut=Drew&lt;br /&gt;
|date=2009-12-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Tiger Mark I]] is a truly awesome (and very expensive) multi-role craft&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2006-05-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Tionisla Orbital Graveyard]] adds the famed graveyard to Tionisla, G1, as described in “The Dark Wheel” novella&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2011-02-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Tionisla Reporter]] adds a mission for a starting commander&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2011-07-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[TCAT OXP|To Catch a Thargoid]] is a G3 follow-up mission to Thargoid Plans, for Dangerous or Elite rank Commanders&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-12-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Torus station|Torus Station]] adds a vast 2001 style space station to very high tech level systems&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|con=Svengali&lt;br /&gt;
|date=2010-10-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Total patrol OXP|Total Patrol]] makes police ships patrol between planet, witchpoint &amp;amp; sun&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-03-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[ToughGuys|ToughGuys]] Adds 3 levels of increased toughness of 'Baddies', and gives a backdrop for an immersive storyline&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2011-02-16&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Trader Outpost (Oolite)|Trade Outpost]] adds Griff's trade outpost without ads&lt;br /&gt;
|aut=CaptKev, Griff, Ark&lt;br /&gt;
|date=2009-02-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Traffic_Control_OXP|Traffic Control]] personnel gives help with approach to and manual docking at all main stations&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-06-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Transhab station|Transhab Station]] adds a large station with rotating arms to some medium tech level systems&lt;br /&gt;
|aut=Draco_Caeles&lt;br /&gt;
|date=2006-06-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Transports]] adds [[CoachWhip]], [[Coral]], [[Woma]]&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|con=Eric Walch, Kaks&lt;br /&gt;
|date=2010-12-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://wiki.alioth.net/images/d/d9/TrekHud.zip Trek HUD] replaces your HUD with a Star Trek NG LCARS-style HUD&lt;br /&gt;
|aut=barabis&lt;br /&gt;
|date=2008-11-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Trident Down]] contains a series of Galaxy 4 missions investigating a vicious attack on a [[Executive SpaceWays|Trident Shuttle]]&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2010-12-31&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[UPS Courier]] offers Commanders transport of goods/documents &amp;amp; occasional combat missions&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2011-03-29&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Urutu Mark III &amp;amp; Urutu Mark IV]] are medium fighters/traders from Elite-A&lt;br /&gt;
|aut=Milinks&lt;br /&gt;
|date=2006-09-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Vampire]] adds the Purgatori Vampire series of combat ships&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2007-01-29&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Vampire - Diamondback]] adds the Diamondback Vampire series of combat ships&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2010-04-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Vampire - Dominatrix]] adds the Dominatrix Vampire series of combat ships&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2009-12-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Vector OXP|Vector]] is a unusual mission type - fast money, slavers, tricks and GalCop is watching you...&lt;br /&gt;
|aut=Svengali&lt;br /&gt;
|date=2011-02-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Velocity_OXP|Velocity]] is a fast fighter ship&lt;br /&gt;
|aut=Sabre&lt;br /&gt;
|date=2009-09-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.purgatori.net/Venom.oxp.zip Venom] adds [[Venom]]s in normal and renegade versions  from [[Isis Interstellar]]&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2009-12-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Vortex OXP|Vortex]] A new ex-military player ship. Rare, expensive and powerful - kitted out with advanced and unique features&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-03-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.purgatori.net/wasps.htm Wasps] adds formation flying wasps, queen wasps, and wasp nests&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|con=Thargoid, Ahruman, Eric Walch&lt;br /&gt;
|date=2010-08-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/weeviloid2.zip ''Weeviloid''] adds [[Weeviloid Hunter]]s, fearsome multi-gunned war ships and [[Weeviloid Scoutship]]s, light trade ships&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2006-05-11&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Welcome_Mat_OXP|Welcome Mat]] upgrades the comms systems to expand the information that is given on arrival in new system&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-06-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Werewolf]] from [[Isis Interstellar]] has 3 variants:  [[Werewolf|Werewolf ~ Damage Inc.]], [[Werewolf|Werewolf (Civilian)]] &amp;amp; [[Werewolf|Werewolf (Purgatori Model)]]&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2011-02-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Wolf_Mk.2_%28Oolite%29|Wolf Mk II]] adds the powerful Wolf Mk II, as seen in Elite-A&lt;br /&gt;
|aut=Ark&lt;br /&gt;
|date=2009-07-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://wiki.alioth.net/images/0/06/Wolfs_variants.zip Wolfwood's Variants] adds [[Asp_Mk.I|Asp Mk I]], [[Cobra Courier]], [[Cobra Rapier]], [[Drake]], [[Drake Mk II]] &amp;amp; [[Wolf Mk I]]&lt;br /&gt;
|aut=Wolfwood&lt;br /&gt;
|date=2008-02-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Wormhole restoration OXP|Wormhole Restoration]] adds a new way to leave interstellar space without using fuel, expanding on Thargoid backstory&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-05-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Xarik]] is an advanced aircraft, last creation of the late Prof. Eisel Xarik. Used by pirates, traders, and hunters&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2010-02-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Xeikil]] adds a player, a GalCop interceptor, and 24 pirate variants of Staer9 Industries' current top fighter&lt;br /&gt;
|aut=Staer9&lt;br /&gt;
|date=2011-05-16&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Xeikil MK2]] adds a player, a GalCop interceptor, and 24 pirate variants of Staer9 Industries' replacement [[Xeikil]]&lt;br /&gt;
|aut=Staer9&lt;br /&gt;
|date=2011-05-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[YellOo_Cabs]] adds YellOo Cab Co taxis to the Ooniverse. NPC and Buyable&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2011-01-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Your Ad Here!]] adds Convenience Stores [[Pi-42]], [[Tescoo Oxpress]], [[Star]], [[Mall Wart]], [[Sainsboory's]] &amp;amp; [[Security Sidewinder|security sidewinders]]&lt;br /&gt;
|aut=Griff&lt;br /&gt;
|con=DaddyHoggy, Pangloss, Disembodied, Eric Walch&lt;br /&gt;
|date=2011-02-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Z-ships]] adds [[Z-ships_Asp_Explorer|Asp Explorer]], [[Z-ships_Cobra_Commodore|Cobra Commodore]], [[Z-ships_Porcupine|Porcupine]] &amp;amp; [[Z-ships_Python_Courier|Python Courier]]&lt;br /&gt;
|aut=Zieman&lt;br /&gt;
|date=2010-03-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9056 Z-GrOovY Griff's Cobra Mk3 Variety Pack] adds multiple Griff's Cobra Mk3 with alternate hull paintings&lt;br /&gt;
|aut=dertien&lt;br /&gt;
|date=2011-01-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9306 Z-GrOovY System Stations] adds Griff-based Tetrahedron, Octahedron, Coriolis, Dodecahedron, Icosahederon stations&lt;br /&gt;
|aut=dertien&lt;br /&gt;
|date=2011-03-03&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9146 Z-GrOovY Viper Raider] adds a new player ship based on the police Viper&lt;br /&gt;
|aut=dertien&lt;br /&gt;
|date=2011-02-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9056 Z-GrOovY YAH Sidewinder Variety Pack] adds multiple Your Ad Here! Constore defenders with alternate hull paintings&lt;br /&gt;
|aut=dertien&lt;br /&gt;
|date=2011-01-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9056 Z-GrOovY YellOo Cab Variety Pack] adds the Moray Starboat with taxi hull painting&lt;br /&gt;
|aut=dertien&lt;br /&gt;
|date=2011-01-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Work in Progress OXPs  ==&lt;br /&gt;
The following table contains OXPs that either have not yet been released by their authors but are already being discussed on the [http://www.aegidian.org/bb/viewforum.php?f=4 Expansion Pack Forum], or released OXPs that still have WIP status. Links get you either to the respective discussion or the Wiki page if it already exists.&lt;br /&gt;
{{OXPListTableHeader}}&lt;br /&gt;
&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[http://www.box.net/shared/moreq536ht Nexus missile]. Three versions of a multi-warhead missile. Like the anti-thargoid missile but not just for (against) thargoids.&lt;br /&gt;
|aut=UK_Eliter&lt;br /&gt;
|date=2011-07-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?t=8341 Animated Ships] adds animated butterflies flapping their wings as a demo&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-08-06&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9864 Cargo Scanner] scans targeted cargo containers to find out what they contain&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-05-17&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://www.aegidian.org/bb/viewtopic.php?t=8526 Comms Demo] provides a way to communicate with NPC ships&lt;br /&gt;
|aut=Kaks&lt;br /&gt;
|date=2009-10-26&lt;br /&gt;
|work=N}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=6&amp;amp;t=9087 Guerilla War] puts you in a position to lead a fighter squadron&lt;br /&gt;
|aut=Ramirez|date=2011-04-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.box.net/shared/0i2fnrc175t Katipo] adds a very fast, moderate maneuverability, low cargo ship with low thrust&lt;br /&gt;
|aut=Simon B&lt;br /&gt;
|date=2011-03-03&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9441 Miner Pod] breaks up asteroids and collects the splinters&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-03-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?t=8275 Mining] adds mines to protect and provide resources for to get gold&lt;br /&gt;
|aut=docwild&lt;br /&gt;
|date=2010-07-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Nuit Space Station OXP|Nuit Space Station]] is the newest creation of [[Isis Interstellar]]&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2009-11-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mission&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?p=130221#p130221 Oresrati Challenge] adds a fun mission to the loneliest system of the Ooniverse, Oresrati&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-04-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9946 Phantom] is a trader/fighter from [[Isis Interstellar]] with external missiles&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2011-05-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?p=138226#p138226 Shield Cycler] distributes shield energy between fore and aft shields&lt;br /&gt;
|aut=Lone_Wolf&lt;br /&gt;
|date=2011-05-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=5484 Solar System] adds extra planets and jump gates to a system&lt;br /&gt;
|aut=Frame&lt;br /&gt;
|date=2009-01-11&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9472 Sun Skimmer Pod] adds a pod that goes sun skimming and returns full of fuel&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-03-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9488 Target Tracker] aligns your ship on your target&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-03-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9353 Thor Class Supercarrier] adds a Navy Carrier as a replacement pack for the Behemoth and the Galactic Navy&lt;br /&gt;
|aut=dertien&lt;br /&gt;
|date=2011-03-03&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9242 Wormhole Drones] creates a path of worm holes to lead you to your destination system&lt;br /&gt;
|aut=Mauiby de Fug&lt;br /&gt;
|date=2011-02-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[http://www.aegidian.org/bb/viewtopic.php?t=8541 Zygoroids] add new beautifully textured asteroid models to the Ooniverse&lt;br /&gt;
|aut=ZygoUgo&lt;br /&gt;
|date=2010-10-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== OXPs with Problems ==&lt;br /&gt;
The following table contains OXPs that have problems eg. broken download, or have been written for versions of Oolite earlier than the current 1.75.2&lt;br /&gt;
{{OXPListTableHeader}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Amen Bricks Megaships|Amen Brick's Megaships]] adds [[Battleship]]s, [[Biodome]]s, [[Cruiseship]]s, [[Hospitalship]]s, [[Supercargo]]s, [[Superlifter]]s, and [[Yacht - Amen Class|Yacht]]s (This version 1.1 contains a corrupted shipData.plist)&lt;br /&gt;
|aut=Amen Brick&lt;br /&gt;
|date=2008-07-11}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Cataclysm OXP|Cataclysm]] takes up the threads of Constrictor Hunt and Thargoid Plans, and sends you on your biggest Navy mission yet&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2009-01-06&lt;br /&gt;
|work=N}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Kirin#Download|Kirin Sport]] adds a a smaller, faster, more agile - and less well armed - civilian variant of the [[Kirin]]&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2009-07-22&lt;br /&gt;
|work=N}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Localhero_OXP|Localhero]] adds a mission campaign in the first galaxies&lt;br /&gt;
|aut=Svengali&lt;br /&gt;
|date=2008-04-09&lt;br /&gt;
|work=N}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Orb]] adds a new alien race, which might help GalCop in the battle against the Thargoids.&lt;br /&gt;
|aut=Charlie&lt;br /&gt;
|date=2007-02-13&lt;br /&gt;
|work=N}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Personalities OXP|Personalities]] adds a bunch of unique, well-known personalities from the Bulletin Board to the Ooniverse&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2009-11-05&lt;br /&gt;
|work=N}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[[Save Anywhere]] allows you to save your game at any OXP Station&lt;br /&gt;
|aut=Frame&lt;br /&gt;
|date=2008-10-01&lt;br /&gt;
|work=N}}&lt;br /&gt;
|}&lt;br /&gt;
[[Category:Oolite expansion packs]]&lt;br /&gt;
[[Category:OXP Lists]]&lt;br /&gt;
[[Category:Factual]]&lt;/div&gt;</summary>
		<author><name>Mcarans</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.alioth.net/index.php?title=OXP_List&amp;diff=28637</id>
		<title>OXP List</title>
		<link rel="alternate" type="text/html" href="https://wiki.alioth.net/index.php?title=OXP_List&amp;diff=28637"/>
		<updated>2011-07-26T20:31:47Z</updated>

		<summary type="html">&lt;p&gt;Mcarans: /* Sortable Table of OXPs */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
== OXP Categories ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; width=&amp;quot;100%&amp;quot; style=&amp;quot;border-collapse: collapse; border-width: 1px; border-style: solid; border-color: #ffffff; table-layout: fixed; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; width=&amp;quot;70px&amp;quot; style=&amp;quot;margin: 0px; padding: 0px; border-width: 1px; border-style: solid; border-color: #ffffff; background-color: #e7e7ff; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot; |&amp;lt;p style=&amp;quot;font-size: 13px;&amp;quot;&amp;gt;Category&amp;lt;/p&amp;gt;&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;margin: 0px; padding: 0px; border-width: 1px; border-style: solid; border-color: #ffffff; background-color: #e7e7ff; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot; |&amp;lt;p style=&amp;quot;font-size: 13px;&amp;quot;&amp;gt;Description of OXP Category&amp;lt;/p&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Activities_OXPs|Activities]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Allow Commanders to carry out a new activity or task eg. racing, gas giant skimming, taking out loans&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Dockables_OXPs|Dockables]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Add new objects that the player can dock with eg. carriers, space bars, casinos, fuel stations. Also, see [[Oolite Stations]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Ambience_OXPs|Ambience]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Change or add to the scenery, visuals or sound effects eg. planet skins, add new planets/moons to systems, move suns further away, dim nebulae, add monuments&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Equipment_OXPs|Equipment]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Buy upgrades for your ship excluding weapons&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Mechanics_OXPs|Mechanics]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Change the game play in a specific way eg. alter market mechanics, add more pirates&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:HUDs_OXPs|HUDs]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Modifications of your dials, gauges and other read-outs&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Missions_OXPs|Missions]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|New missions for Commanders to undertake. For more information, see [[Oolite Missions]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Retextures_OXPs|Retextures]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Retexture existing objects, either by replacing or adding variations, but without adding objects that did not exist before&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Ships_OXPs|Ships]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|New ships, except dockable ships. Also, see [[Oolite Ships]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Systems_OXPs|Systems]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Alter multiple star systems in a number of ways eg. combinations of changing main station and local police ships, adding new stations, ships, activities, missions&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Weapons_OXPs|Weapons]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Addons for your ship for blowing up the baddies&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Misc_OXPs|Misc]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|OXPs that don't fit into the other categories eg. debug consoles, internationalisations, config mechanisms, demo OXPs&lt;br /&gt;
|}&lt;br /&gt;
OXP authors: if you are unsure how to categorise your OXP or if you wish to update the details of an OXP for an author who has disappeared, please seek advice on the [http://www.aegidian.org/bb/viewforum.php?f=4 Expansion Pack Forum] before proceeding. Please put your OXP in one category only. You can edit the section below to add your OXP.&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Sortable Table of OXPs ==&lt;br /&gt;
The following table is optimized for a horizontal screen resolution of at least 1280px so that all OXP descriptions fit on one line.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; width=&amp;quot;100%&amp;quot; style=&amp;quot;border-collapse: collapse; border-width: 1px; border-style: solid; border-color: #ffffff; table-layout: fixed; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;border-width: 1px; border-style: solid; border-color: #ffffff; background-color: #e7e7ff; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot; |The &amp;quot;C&amp;quot; column indicates compatibility with Oolite beta 1.75:&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Y&amp;quot;=compatible, &amp;quot;Y*&amp;quot;=compatible (but the OXP is not in full working order), &amp;quot;N&amp;quot;=incompatible,  blank=unknown/untested.&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;!-- KEEP DESCRIPTIONS (desc=...) ALPHABETICAL --&amp;gt;&lt;br /&gt;
&amp;lt;!-- KEEP LENGTHS OF DESCRIPTIONS TO THAT OF EXISTING ENTRIES OR LESS --&amp;gt;&lt;br /&gt;
{{OXPListTableHeader}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Accessories OXP|Accessories]] replaces the textures of all Stations and non-ship objects in Oolite with a more detailed and realistic look&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2010-06-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Accipiter]] is the market entry from Xeceesian shipyards, a strong &amp;amp; fast all purpose vessel for experienced commanders&lt;br /&gt;
|aut=CaptSolo&lt;br /&gt;
|con=Staer9, Griff&lt;br /&gt;
|date=2011-05-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Aegidian%27s Specials]] adds the powerful [[Mussurana]], the [[Asp (Oolite)#Notable features|Asp Mark II Special]], and a new cargo canister&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2009-07-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Aegidian%27s X-Ships]] adds [[Python ET Special]]s, [[Cobra Mk.2 (Oolite)|Cobra Mk II]]s, [[Taipan]]s, [[Asp (Oolite)#Notable features|Asp Mark II Special]]s, and [[Sidewinder (Oolite)#Notable features|Sidewinder Special]]s&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2009-04-29&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Pirate Clan Blitzspears|Amen Brick's Pirate Clan One: The Blitzspears]] adds the [[Assassin Blitzspear|Assassin]], the [[Hoodlum]], the [[Scoundrel]], and the [[Spiv]]&lt;br /&gt;
|aut=Amen Brick&lt;br /&gt;
|date=2008-06-30}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Amiga Replacement Sounds]] is based on the sound set used in the Amiga version of the original Elite&lt;br /&gt;
|aut=EAGLE 5&lt;br /&gt;
|date=2006-03-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Systems&lt;br /&gt;
|desc=[[Anarchies OXP|Anarchies]] overhauls legal ratings and spices up anarchies with [[Hacker Outpost]]s, [[Salvage Gang]]s, special stations &amp;amp; ships&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|con=Killer Wolf, Griff, Cdr. Wyvern, Murgh, Aegidian, 8-Bit Apocalypse&lt;br /&gt;
|date=2011-03-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9462 Another HUD] is based on Killer Wolf's Generic HUD&lt;br /&gt;
|aut=NorthenderPNE&lt;br /&gt;
|date=2011-03-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Aphid]] adds the stylish Aphid Escort Service&lt;br /&gt;
|aut=8-Bit Apocalypse&lt;br /&gt;
|date=2005-01-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Aquatics OXP|Aquatics]] adds the Aquarian Shipbuilding Corporation of Aqualina, G3 along with its ships and a mission&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-03-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Armoured Transport Type 1]] adds Gaundlet's [[Gaundlet Armoured Transport Type1|Armoured Transport Type 1]] and [[Gaundlet Armoured Escort Viper|Armoured Escort Viper]] that ferry valuables&lt;br /&gt;
|aut=Arexack Heretic&lt;br /&gt;
|date=2005-12-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Armoury OXP|Armoury]] adds AMS, captured Thargons, drones, probes, a missile rack, some bombs, and the missile machine&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-06-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[The Assassins Guild OXP|Assassins Guild]] adds 21 missions involving murder to order in Galaxy 7&lt;br /&gt;
|aut=Littlebear&lt;br /&gt;
|date=2011-05-03&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Asteroid Storm]] adds different types of asteroids &amp;amp; a mission where a station in G1 is threatened by a large asteroid strike&lt;br /&gt;
|aut=LittleBear, Charlie&lt;br /&gt;
|date=2011-01-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Aurora]] adds huge passenger ships for the wealthiest in society&lt;br /&gt;
|aut=pagroove&lt;br /&gt;
|con=Griff, Thargoid&lt;br /&gt;
|date=2010-11-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://www.mediafire.com/?fnc65em7uh5un1d Auto ECM] fires the ECM once when a missile is fired at the player's ship. See the [http://aegidian.org/bb/viewtopic.php?p=138124#p138124 BB] for more info&lt;br /&gt;
|aut=Switeck&lt;br /&gt;
|date=2011-05-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Auto eject OXP|Auto Eject]] ejects your escape pod automatically when your energy becomes too low&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2010-06-16&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Automatic Chaff System]] provides an enhanced chaff-based missile countermeasure system&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2010-06-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Baakili Far Trader]] adds a dockable alien ship&lt;br /&gt;
|aut=Zieman&lt;br /&gt;
|date=2010-09-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Bandersnatch]] adds a pirate capital vessel armed with 4 x fore lasers&lt;br /&gt;
|aut=Flying_Circus&lt;br /&gt;
|date=2009-11-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Beer Cooler]] allows you to fit your ship with a beer cooler&lt;br /&gt;
|aut=Maik&lt;br /&gt;
|date=2010-08-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Behemoth]] adds a dockable Navy cruiser carrying [[Navy Asp]]s and [[Navy Viper]]s&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2011-01-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[ADCK%27s Behemoths]] adds shadered versions of the [[Behemoth]],  [[Galactic Navy OXP|Galactic Navy]] ships and stations, and then some&lt;br /&gt;
|aut=ADCK&lt;br /&gt;
|con=Aegidian, pagroove, Nemoricus, Selezen, Simon B&lt;br /&gt;
|date=2010-04-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Behemoth Spacewar]] adds intelligence to the Behemoth and brings a combat with Thargoids&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2010-01-09&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[BGS|BGS - Background Set]] framework for images, sounds and ambient music&lt;br /&gt;
|aut=pagroove, Svengali&lt;br /&gt;
|date=2011-03-16&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[BigShips OXP|Big Ships]] ensures that large ships do not dock and controls population of systems with them&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2009-11-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Black Monk Monastery]] offers loans in advanced systems and adds the [[Black Monk Gunship]] to persecute defaulters&lt;br /&gt;
|aut=LittleBear&lt;br /&gt;
|date=2010-06-14&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[BlackjacksBullion OXP|Blackjack's Bullion]] starts in galaxy 2 at Telace as Commander Blackjack arrives via escape pod&lt;br /&gt;
|aut=Rustybolts&lt;br /&gt;
|date=2010-03-08&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[BlOomberg Markets]] varies the in-game economy by generating random events that affect commodity prices&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2011-03-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Boa II Clipper Class]] is a development of the Boa Class Cruiser, adding a third engine at the cost of cargo space&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2011-01-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Boomslang]] adds a mid-range multi-role ship. Used by pirates and traders alike&lt;br /&gt;
|aut=milinks, Jar&lt;br /&gt;
|date=2008-09-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Bounty Scanner]] adds bounty details (if any) to the targeting lock-box display when locked onto other ships&lt;br /&gt;
|aut=Frame&lt;br /&gt;
|date=2010-07-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[BountyStatus OXP|Bounty Status]] displays your current bounty (and your legal status) on the F5 manifest screen&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-05-08&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Breakable_'Standard'_Equipment_OXPs|Breakable 'Standard' Equipment]] makes some standard equipment such as HUD/Scanner damageable in combat&lt;br /&gt;
|aut=Capt. Murphy&lt;br /&gt;
|date=2011-07-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Bulk Haulers]] adds the [[Lynx Bulk Carrier (Oolite)|Lynx Bulk Carrier]], the [[Long Range Cruiser (Oolite)|Long Range Cruiser]], the [[Bulk Hauler]], and the [[Super Bulk Hauler]]&lt;br /&gt;
|aut=ADCK&lt;br /&gt;
|con=Aegidian, pagroove&lt;br /&gt;
|date=2010-04-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[BuoyRepair|Buoy Repair]] adds a [[Buoy Repair Facility]] and related ships to repair defect or destroyed nav-beacons&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|con=Svengali, Murgh, Zieman&lt;br /&gt;
|date=2011-06-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[[Cabal Common Library]] is a collection of snippets and helpers for OXPs&lt;br /&gt;
|aut=Svengali&lt;br /&gt;
|con=Cmd.Cheyd, PhantorGorth&lt;br /&gt;
|date=2011-07-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Caduceus]] adds the very expensive (and deadly) Caduceus&lt;br /&gt;
|aut=ClymAngus&lt;br /&gt;
|con=Cdr. Wyvern, another_commander, Eric Walch, Thargoid&lt;br /&gt;
|date=2010-12-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Capisastra]] adds [[Capisastra Defender]]s, [[Capisastra Hauler]]s, and [[Capisastra Warrior]]s&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|date=2006-01-12}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Captain Berf Engineer]] adds a voice for crew members&lt;br /&gt;
|aut=Captain Berf&lt;br /&gt;
|date=2009-12-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Captain Berf Pilot]] adds a voice for crew members&lt;br /&gt;
|aut=Captain Berf&lt;br /&gt;
|date=2009-12-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Captain Berf Pilot Alien]] adds a voice for crew members&lt;br /&gt;
|aut=Captain Berf&lt;br /&gt;
|date=2009-12-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Captain Berf Tactical Officer]] adds a voice for crew members&lt;br /&gt;
|aut=Captain Berf&lt;br /&gt;
|date=2009-12-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Cargo Shepherd OXP|Cargo Shepherd]] attracts cargo pods and holds them until you can scoop them, also includes a beacon&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-04-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://www.box.net/shared/4lphdkazs5 CB-HUD] features a HUD that changes based on installed equipment. See the [http://aegidian.org/bb/viewtopic.php?p=141035#p141035 BB post] for more information&lt;br /&gt;
|aut=Captain Beatnik&lt;br /&gt;
|date=2011-05-29&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Clear Skies OXP|Clear Skies]] reduces nebula effects and dims stars. Handy if your system is finding it hard to run Oolite&lt;br /&gt;
|aut=johnsmith&lt;br /&gt;
|date=2006-11-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Cobra 3.5|Chopped Cobra]] adds the Cobra Mk 3.5, a slightly faster and tougher variant with a reduced cargo bay&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2006-12-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9157 Cobra AC] is a faithful reproduction of the Cobra on the cover of the Dark Wheel novella with improved specs&lt;br /&gt;
|aut=dertien&lt;br /&gt;
|date=2011-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Cobra Clipper SAR]] adds a custom Cobra Mk III to rescue stranded Commanders&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2010-04-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Cobra III NjX]] adds a faster, tougher variation on the Classic Cobra Mk III&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|date=2006-08-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Cobra Mark III-XT]] Cobra3 with revamped architecture and upgraded systems to boost performance&lt;br /&gt;
|aut=CaptSolo&lt;br /&gt;
|date=2011-07-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.purgatori.net/cobra4.htm Cobra MkIV] is [[Isis Interstellar]]'s successor to the Cobra MkIII, available in trader and fighter variants&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2010-11-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[OosoundsCombined OXP|Combined Murgh, Wiggy &amp;amp; xaotik's sounds]] combines the 3 available packs from Murgh, Wiggy and xaotik&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|con=Murgh, Wiggy, xaotik&lt;br /&gt;
|date=2009-09-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Systems&lt;br /&gt;
|desc=[[Commies]] Adds [[Astro Mines]], [[CZGF|Factories]], [[SLAPU|Production Units]], [[Worker%27s Commuter|Commuters]] &amp;amp; special police ships to Communist systems&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|con=Ramirez, Murgh, johnsmith, HueijRevisited&lt;br /&gt;
|date=2010-05-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[CompactHUD|Compact HUD]] provides an alternative HUD with a clean look&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Condor]] adds a very powerful police and Navy Cruiser&lt;br /&gt;
|aut=Charlie&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2010-10-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Console HUD]] Azure themed semi-transparent HUD with balanced array of indicators&lt;br /&gt;
|aut=CaptSolo&lt;br /&gt;
|date=2011-07-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[http://www.box.net/shared/mq1mzoc79t Constrictor Mission Hints] adds more hints for those doing the native Constrictor Mission&lt;br /&gt;
|aut=Arexack Heretic&lt;br /&gt;
|date=2010-08-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Contractor ZZ1]] Very fast combat 'stealth' ship. Appears in-game as a Bounty-hunter and rarely as Pirate. Buyable&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2011-01-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Copperhead]] Redux of core ship in Archimedes Elite slightly modified. NPC and player buyable&lt;br /&gt;
|aut=CaptSolo&lt;br /&gt;
|date=2011-05-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Croydon Starsoarer]] adds a ship that is similar to the Asp in specification&lt;br /&gt;
|aut=SimonB&lt;br /&gt;
|con=pagroove&lt;br /&gt;
|date=2010-05-08&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[CustomSounds OXP|CustomSounds]] replaces/adds 40+ sounds, featuring music &amp;amp; extensive use of calm female computer voice for warnings&lt;br /&gt;
|aut=milinks&lt;br /&gt;
|date=2006-12-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[DWCobra|Dark Wheel Cobra]] is a custom Cobra Mk III model, as seen on the cover of the Elite Manual&lt;br /&gt;
|aut=ramon&lt;br /&gt;
|date=2006-11-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[[Debug OXP]] is a special OXP that enables JavaScript console support in test releases of Oolite (1.70 and later)&lt;br /&gt;
|aut=Ahruman&lt;br /&gt;
|date=2010-06-19&lt;br /&gt;
|work=N}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[http://deephorizonindustries.com/Gas_Giant_Skimming.html Deep Horizon - Gas Giants Skimming] allows to skim gas giants to refuel a ship or mine them for rare minerals&lt;br /&gt;
|aut=Cdr. Cheyd&lt;br /&gt;
|date=2010-07-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://deephorizonindustries.com/Lights_Down.html Deep Horizon - Lights Down] lowers ambient light within system to give more natural feel to planets and ships&lt;br /&gt;
|aut=Cdr. Cheyd&lt;br /&gt;
|date=2010-07-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://deephorizonindustries.com/Nav_Buoy.html Deep Horizon - Nav Buoy 1.0] replaces Witchpoint, Station, and other Nav Buoys with a new model.&lt;br /&gt;
|aut=Cdr. Cheyd&lt;br /&gt;
|date=2011-07-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[http://deephorizonindustries.com/Pirate_Ambushes.html Deep Horizon - Pirate Ambushes] adds pirates that ambush the player upon exit from witchspace&lt;br /&gt;
|aut=Cdr. Cheyd&lt;br /&gt;
|date=2010-07-06&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://deephorizonindustries.com/DH-Systems.html Deep Horizon - Systems] textures the main planet of a system as well as adding moons and additional planets&lt;br /&gt;
|aut=Cdr. Cheyd&lt;br /&gt;
|date=2010-07-06&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Deep Space Dredger]] adds dockable Space Dredgers, defended by [[Sabre]] fighters, and a missile to salvage derelict ships&lt;br /&gt;
|aut=Sabre&lt;br /&gt;
|date=2011-01-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[DeepSpacePirates|Deep Space Pirates]] adds pirates and asteroids outside the space lanes&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2010-01-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Deepspace Ships#Deepspace HUDs|Deepspace HUD]] is an alternative HUD with two versions&lt;br /&gt;
|aut=DeepSpace&lt;br /&gt;
|date=2010-02-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Deepspace Ships]] replaces the default ships with new textures&lt;br /&gt;
|aut=DeepSpace&lt;br /&gt;
|date=2010-02-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Deposed OXP|Deposed]] is a series of missions set in Galaxy 4 for an experienced Commander&lt;br /&gt;
|aut=Cdr. Wombat&lt;br /&gt;
|con=Commander McLane, Eric Walch&lt;br /&gt;
|date=2009-03-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Systems&lt;br /&gt;
|desc=[[Dictators OXP|Dictators]] adds a range of ships and stations to each dictatorship and offers new trading opportunities to players&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2010-06-19&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Diso OXP|Diso]] adds extra planets and stations to the Diso system in Galaxy 1&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2010-11-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Display reputation OXP|Display Reputation]] lets you know your current reputations in the passenger ferrying and the cargo contract market&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2010-03-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Oolite Docking Clearance Protocol (v1.72 or later)|Docking Clearance]] enables the docking clearance protocol for all stations&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2008-12-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Griff Industries|Dodo Stations]] adds new textures for Dodecahedron stations&lt;br /&gt;
|aut=Griff, CaptKev&lt;br /&gt;
|date=2010-05-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Dr HUD OXP|Dr HUD]] is an alternative HUD&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2006-12-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Dragon|Dragon Assault Craft]] adds a heavy combat ship, and the Military Smart Missile, an improved hard head&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2008-11-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Dragon#Download|Dragon Military Missile]] adds an enhanced hardhead, seeks priority targets when ECM'd&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2008-11-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.mediafire.com/?rllzzcbkwgm Dragonfly/Firefly S.T] adds [[Dragonfly S.T]] &amp;amp; much faster [[Firefly S.T]]. Ideal small fast ships for pirates or bounty hunters&lt;br /&gt;
|aut=Rustybolts&lt;br /&gt;
|date=2009-10-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Eagle Mk II]] adds the cheap Eagle Mk II escort vessel in several different versions, including an enhanced SE&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|date=2006-03-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[ADCK%27s Eagles|Eagles Mk I to IV]] adds four Eagle Long Range Fighters to the game&lt;br /&gt;
|aut=ADCK&lt;br /&gt;
|date=2010-04-07&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Energy Equipment OXP|Energy Equipment]] adds a pylon-mounted automatically triggered top-up for when the juice runs low&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-03-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Escort Contracts OXP|Escort Contracts 1.2]] allows players to enter into short-term escort contracts with NPC lone wolf traders&lt;br /&gt;
|aut=Capt Murphy&lt;br /&gt;
|date=2011-07-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[ETT Homing Beacon]] marks a position in space by deploying a pylon-mounted beacon&lt;br /&gt;
|aut=Twisted&lt;br /&gt;
|con=Lone_Wolf&lt;br /&gt;
|date=2011-04-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Executive SpaceWays]] adds [[Delta Long-Range Escort|Delta]]/[[Gemini Escort|Gemini]] Escorts, [[Starseeker Personal Shuttle|Starseeker]]/[[Trident Executive Shuttle|Trident Exec]] Shuttles, [[Strelka Cruise Liner]]s&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2010-06-19&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.box.net/shared/moreq536ht#/shared/moreq536ht/1/71484311/786362645/1 Extra Thargoids] adds 2 types of Thargoid ships, each of which packs surprises. Replaces the 'Poet' Frigate OXP&lt;br /&gt;
|aut=UK_Eliter&lt;br /&gt;
|date=2011-07-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Systems&lt;br /&gt;
|desc=[[Factions OXP|Factions]] from anarchy, feudal, dictatorship &amp;amp; communist systems meet in multi-government systems and start fighting&lt;br /&gt;
|aut= m4r35n357&lt;br /&gt;
|date=2011-06-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Famous Planets OXP|Famous Planets]] adds unique textures, new descriptions, and theme tunes for many planets in G1 and G2&lt;br /&gt;
|aut=pagroove&lt;br /&gt;
|con=Cdr. Cheyd, Stromboli, Pangloss, CaptKev, Drew Wagar, Thargoid, Svengali, Lestradae, UK Eliter&lt;br /&gt;
|date=2010-09-30&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Famous Planets Liners OXP|Famous Planets Liners]] adds Spaceway Liners on the 4 spaceways from Lave to Zadies&lt;br /&gt;
|aut=pagroove&lt;br /&gt;
|con=Ramirez, Presti70, Thargoid&lt;br /&gt;
|date=2009-03-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Far Arm ships|Far Arm Ships]] adds [[Far Arm Sunracer|Sunracer]]s, [[Far Arm Scow|Scow]]s, [[Far Arm Tanker|Tanker]]s, [[Far Arm Corsair|Corsair]]s, [[Far Arm Dart|Dart]]s, [[Far Arm Hunter|Hunter]]s, [[Far Arm Cruiser|Cruiser]]s, [[Far Arm Titan|Titan]]s, [[Far Arm Manchi Vulture|Vulture]]s, and [[Far Arm Manchi Wasp|Wasp]]s&lt;br /&gt;
|aut=Zieman&lt;br /&gt;
|date=2010-10-02&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Far Star Murderer]] adds a mid-range fighter / trader, with a fair sized cargo bay&lt;br /&gt;
|aut=8-Bit Apocalypse&lt;br /&gt;
|date=2005-01-01&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://www.box.net/shared/d57y0uip74 Far Sun] places suns further away from the planet than standard Oolite&lt;br /&gt;
|aut=Kaks&lt;br /&gt;
|date=2010-05-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.box.net/shared/moreq536ht Fer de Lance 3G] adds player &amp;amp; NPC Fer de Lance versions with custom paint jobs &amp;amp; altered specs. New bug fixes&lt;br /&gt;
|aut=UK_Eliter&lt;br /&gt;
|date=2011-07-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Fer de Lance NG]] adds a more powerful version of the Fer de Lance with several custom paint jobs&lt;br /&gt;
|aut=alien&lt;br /&gt;
|date=2005-03-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Ferdepai]] adds a new fighter / trader to Galaxy 2&lt;br /&gt;
|aut=johnsmith&lt;br /&gt;
|date=2006-12-17&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Systems&lt;br /&gt;
|desc=[[Feudal States]] adds the [[Jäger]], the [[Korvette]], the [[Zerstörer]], a [[Royal Hunting Lodge]] and other elements to feudal systems&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2011-05-30&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Fighter HUD (Oolite)|Fighter HUD]] is an alternative HUD&lt;br /&gt;
|aut=CaptKev&lt;br /&gt;
|date=2008-05-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Firewasp]] adds a fast interceptor&lt;br /&gt;
|aut=Draco_Caeles&lt;br /&gt;
|date=2006-05-10&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Fireworks OXP|Fireworks]] allows you a joyful celebration of whatever it is you want to celebrate&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-05-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Flight Log OXP|Flight Log]] adds a log of the last 10 systems visited&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-01-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Flying Dutchman OXP|Flying Dutchman]] adds the small chance to meet a Ghost Ship in the Ooniverse&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|con=Griff&lt;br /&gt;
|date=2011-04-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[[Freaky Thargoids OXP|Freaky Thargoids]] is a shader demonstration for Oolite&lt;br /&gt;
|aut=Ahruman&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2011-02-03&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Free Trade Zone]] adds an independent trading post of dubious legality to Multi-Government systems&lt;br /&gt;
|aut=Disembodied&lt;br /&gt;
|con=Commander McLane&lt;br /&gt;
|date=2010-10-08&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Frog Space Rickshaw]] adds a chatty space taxi service to the safer systems&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2006-01-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Fuel Collector OXP|Fuel Collector]] scoops fuel from killed ships and collects fuel while cruising, even in witch space&lt;br /&gt;
|aut=Frame&lt;br /&gt;
|con=Commander McLane&lt;br /&gt;
|date=2011-07-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Fuel Station OXP|Fuel Station]] adds fly-thru Fuel Stations and Fuel Satellites near the witchpoint and along route one&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-06-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Fuel Tank]] v2.2 mounts in place of a missile, to top up 3 light years of fuel&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2008-05-31&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Furball OXP|Furball]] adds barroom brawls that've got out of hand. Furious fugitives flee from pissed off police on the station's doorstep&lt;br /&gt;
|aut=Caracal&lt;br /&gt;
|con=m4r35n357&lt;br /&gt;
|date=2011-06-06&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Systems&lt;br /&gt;
|desc=[[Galactic Navy OXP|Galactic Navy]] adds more ships and stations to the arsenal of the Galactic Navy. Allows to join the Navy Reserves&lt;br /&gt;
|aut=Nemoricus&lt;br /&gt;
|date=2010-12-30&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[GalDrivePod]] A portable Galactic Hyperdrive unit, allowing you to complete the &amp;quot;Lost Worlds Grand Tour&amp;quot;&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2011-03-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://www.boxcn.net/shared/5dqx22u06i Galaxy Info] helps you search for systems by criteria you select and will try to locate the nearest one&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-04-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Gates OXP|Gates]] ads short-cut jump gates to suitable systems, speeding journeys between the main station and witchpoint&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-04-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Generation Ships OXP|Generation Ships]] adds encounters with the mythical Generation Ships from time to time&lt;br /&gt;
|aut=Draco_Caeles&lt;br /&gt;
|con=Commander McLane&lt;br /&gt;
|date=2011-04-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Globe station|Globe Station]] is a new type of stations that appears in advanced systems&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|con=Svengali&lt;br /&gt;
|date=2009-10-22&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Greek Ships OXP|Greek Ships]] adds [[Penelope Class Freighter]]s, [[Telemachus Class Escort]]s, and [[Ulysses Class Interceptor]]s&lt;br /&gt;
|aut=8-Bit Apocalypse&lt;br /&gt;
|date=2005-07-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Griff ArcElite|Griff's ArcElite]] adds versions of native Oolite ships textured &amp;amp; shaded to resemble the Acorn Archimedes version of Elite&lt;br /&gt;
|aut=Griff&lt;br /&gt;
|date=2008-09-29&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Griff Boa]] contains the famous Griff Boa&lt;br /&gt;
|aut=Griff&lt;br /&gt;
|date=2010-06-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://www.boxcn.net/shared/k2lvh3enuy Griff's Explosion Debris] adds new alloy &amp;amp; debris models to exploding ships&lt;br /&gt;
|aut=Griff&lt;br /&gt;
|con=Thargoid&lt;br /&gt;
|date=2009-02-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Griff Krait]] adds a heavily modified Krait, similar in design to the Griff Boa&lt;br /&gt;
|aut=Griff&lt;br /&gt;
|date=2010-06-17&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Griff Industries|Griff's Normalmapped Ships]] adds some of the best looking ships, stations, and flotsam available in Oolite&lt;br /&gt;
|aut=Griff&lt;br /&gt;
|date=2011-04-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Griffin Two (Oolite)|Griffin Two]] adds the Griffin Mk II from Frontier&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2005-10-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Gritty Coriolis OXP|Gritty Coriolis]] alternates the Coriolis stations with two elaborate gritty Corioli&lt;br /&gt;
|aut=xaotik&lt;br /&gt;
|date=2006-02-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://wiki.alioth.net/images/2/2d/G-HUD_Mk2.oxp.zip G-HUD Mk2] adds an alternative HUD&lt;br /&gt;
|aut=Gunney Plym&lt;br /&gt;
|date=2008-07-08&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Halsis]] features a female cockpit voice, sometimes called Hal's Hot Sister&lt;br /&gt;
|aut=Ovvldc&lt;br /&gt;
|date=2006-08-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[BoyRacer|Hatchling BoyRacers]] adds the  talkative (and often insulting) [[BoyRacer]]s to more advanced systems&lt;br /&gt;
|date=2006-01-13&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Staer9 haulerp30|Hauler P30]] is a very large cargo ship made by Staer9 Industries&lt;br /&gt;
|date=2011-05-11&lt;br /&gt;
|aut=Staer9&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Hawksound]] features a quality female computer voice, new weapon, damage and some station interface sounds&lt;br /&gt;
|aut=Hawkstrom&lt;br /&gt;
|date=2008-11-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Herald Military Gunboat|Herald]] adds the [[Herald Military Gunboat]], a powerful police and Navy interceptor&lt;br /&gt;
||aut=Flying_Circus&lt;br /&gt;
|date=2005-01-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Hired Guns OXP|Hired Guns]] adds escort ships that can be contracted to accompany you on your next journey&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-02-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Hognose|Hognose Tugships]] adds the [[Hognose]], a chatty tug ship that can be seen towing broken down ships&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|con=Jonnycuba&lt;br /&gt;
|date=2006-03-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[HoOpy Casino]]s appear near the station in advanced systems. You can win or lose credits in games of chance&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2010-06-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Hotrods OXP|Hotrods]] adds custom paint jobs to classic Elite ships, racing vehicles, and a space gang that doesn't like the player&lt;br /&gt;
|aut=Kaks&lt;br /&gt;
|con=Arexack_Heretic, Murgh&lt;br /&gt;
|date=2009-03-16&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[HyperCargo OXP|HyperCargo]] adds an extended and expanded cargo handling system&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-09-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Hyperradio js OXP|Hyperradio]] is an expandable music-player&lt;br /&gt;
|aut=Svengali&lt;br /&gt;
|date=2011-02-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Icarus (Oolite)|Icarus]] adds a small fighter / trader based on blueprints from the lost Solice system&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|date=2007-07-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Illegal_Goods_Tweak_OXP|Illegal Goods Tweak 1.4]] adds interactions with Galcop customs on docking at a main station with Contraband in the hold&lt;br /&gt;
|aut=Capt. Murphy&lt;br /&gt;
|date=2011-06-17&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Illicit Unlock OXP|Illicit Unlock]] allows the player to fly all the classic Elite ships&lt;br /&gt;
|aut=tgape&lt;br /&gt;
|date=2005-10-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Griff_Industries#Related_OXP's_by_Other_Authors|Illicit Unlock - Griff Version]] allows the player to fly [[Griff Industries#Griff's Normalmapped Ships OXP|Griff's]] pirate/viper Ships&lt;br /&gt;
|aut=ADCK&lt;br /&gt;
|con=dertien&lt;br /&gt;
|date=2011-02-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[I_Missile|I_Missile]] Very fast, very destructive weapon at an affordable price&lt;br /&gt;
|aut=CaptSolo&lt;br /&gt;
|date=2011-07-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Imperial Courier (Oolite)|Imperial Courier]] adds the powerful Imperial Courier from Frontier, constructed by [[Seldar Shipyards]]&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|con=Commander McLane&lt;br /&gt;
|date=2007-06-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Imperial Trader (Oolite)|Imperial Trader]] adds the powerful Imperial Trader from Frontier&lt;br /&gt;
|aut=ADCK&lt;br /&gt;
|date=2010-06-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Interstellar help OXP|Interstellar Help]] allows you to help out traders who got stuck in interstellar space without fuel&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-03-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Ionics OXP|Ionics]] adds a series of missions featuring the Ionics Company of Zaria, the Ramaza Liberation Front and The Link&lt;br /&gt;
|aut=Galileo&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2010-08-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[IronHide OXP|IronHide]] introduces the new range of IronHide ship armour from the Aquarian Shipbuilding Corporation&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-02-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Iron Raven]] is a multi-stage mission to investigate a dangerous conspiracy on behalf of GalCop High Command&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2011-04-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Ixian Ships|Ixian Military Ships]] adds Ixian [[Ixian Battle Cruiser|Battle Cruiser]]s, [[Ixian Bezerka|Bezerka]]s, [[Ixian Gunship|Gunship]]s and [[Ixian No-Ship Mark I|No-Ship]]s from Dune&lt;br /&gt;
|aut=8-Bit Apocalypse&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2009-03-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Ixian Ships#Ixian Freighter|Ixian Freighter]] adds a civilian freighter to the universe&lt;br /&gt;
|aut=8-Bit Apocalypse&lt;br /&gt;
|date=2005-01-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Jabberwocky]] adds the powerful Jabberwocky fighter / trader&lt;br /&gt;
|aut=Flying_Circus&lt;br /&gt;
|date=2006-03-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[JellyBaby Dispenser]] adds a handy Jellybaby Dispenser for your cockpit&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2011-03-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Kestrel &amp;amp; Falcon OXP|Kestrel &amp;amp; Falcon]] adds buyable Star Wars style [[Falcon_%28Oolite%29|Falcon]] for pirates/traders and the [[Kestrel]], a police/navy interceptor&lt;br /&gt;
|aut=Charlie&lt;br /&gt;
|con=Kaks&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Killer_Wolf's_Dynamic_HUD|Killer Wolf's Dynamic HUD]] adds a version of the dynamic HUD first seen in Killer Wolf's Werewolf ships, to all ships&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|con=Thargoid&lt;br /&gt;
|date=2010-07-08&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Killit_OXP|Killit]] adds a bunch of insane super weapons&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-05-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Kirin]] adds a heavy military hauler, CV &amp;amp; XM versions used by both pirates &amp;amp; traders&lt;br /&gt;
|aut=ClymAngus&lt;br /&gt;
|con=Cdr. Wyvern&lt;br /&gt;
|date=2009-09-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Klepto-HUD OXP|Klepto-HUD]] is a different take on a HUD with precise crosshairs&lt;br /&gt;
|aut=Kleptoid&lt;br /&gt;
|date=2006-03-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://sancho.dk/oolite/lane_legal.zip ''Lane Legal Racers''] adds NPC versions of [[Krait]]s, [[Mamba]]s, and [[Sidewinder]]s from different [[Racers#Listing_of_sponsored_teams|racing teams]]&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-09-27&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Lave OXP|Lave]] is a system make-over for Lave, adding all features described in The Dark Wheel novella included with original Elite&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2009-12-31&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Lave Academy OXP|Lave Academy]] adds Lave Academy Station above Lave &amp;amp; other planets, with 3 mini-games to test Commanders' skills&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-06-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[http://www.boxcn.net/shared/9q1cbydgan LinkG7] is a mission in Galaxy 7&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-02-16&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Llama]] adds the Llama fighter / trader. Updated from the version of Oosat1 to fix a small bug&lt;br /&gt;
|aut=Flying_Circus&lt;br /&gt;
|date=2006-02-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://www.boxcn.net/shared/jtpt2vlol5 Long Range Target Scanner] shows all ships currently in your system and allows to target them&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-05-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[LongWay_OXP|Long Way Around]] adds a transport mission well suited to the novice in Galaxy 1&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2009-04-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Longshot]] adds the Longshot fighter / trader, regarded by many as a cheaper alternative to the Cobra Mk III&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Lovecats.oxp|Lovecats]] is a mission about love &amp;amp; betrayal amongst the feline races of Galaxy 4. Fast ship &amp;amp; hard heart required!&lt;br /&gt;
|aut=johnsmith&lt;br /&gt;
|date=2010-01-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Second-hand ships|M-Pack (rusties)]] adds rusty banger versions of all Classic Elite ships in poor condition but still can haul cargo&lt;br /&gt;
|aut=murgh&lt;br /&gt;
|date=2006-01-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Manta]] adds the Manta light escort craft&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Marett Space Corporation OXP|Marett Space Corporation]] releases [[Adder Mk II]], [[Mosquito Trader]], [[Mosquito Sport]], new fighters / medium traders&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://www.crimsonforge.co.uk/cloister/MedusaHud.oxp.zip Medusa HUD] is an alternative HUD&lt;br /&gt;
|aut=ClymAngus&lt;br /&gt;
|date=2009-01-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Mega-Walnut Dashboard OXP|Mega-Walnut Dashboard]] is a generic version of the fabled Fer de Lance HUD&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2005-07-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Merlin_(Oolite)|Merlin]] Ships are interceptors used by the Police &amp;amp; Navy, but also available on the open market&lt;br /&gt;
|aut=Charlie&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[MildAudio]] Sound Set&lt;br /&gt;
|aut=xaotik&lt;br /&gt;
|date=2006-02-15&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Military_Fiasco|Military Fiasco]] adds a navy mission for Commanders with &amp;gt; 1,000 kills. Also equips Navy with powerful cruisers&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2011-01-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Military station|Military Station]] adds well armed Military Stations to the more advanced systems&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Military Stingray Mk. II|Military Stingray]] adds an ex-military ship that may show up in pirate hands or for the player to buy&lt;br /&gt;
|aut=CaptKev&lt;br /&gt;
|date=2007-03-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Milspec HUD|Milspec HUD]] is an alternative HUD with targeting aids and an emphasis on functionality&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2010-07-08&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Misjump_Analyser|Misjump Analyser]] scans witchspace &amp;amp; on detection of disturbances sounds an alarm &amp;amp; logs location of disturbance&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2010-05-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?p=135619#p135619 Misjump Inducer] can turn on/off misjumps on demand&lt;br /&gt;
|aut=Switeck&lt;br /&gt;
|date=2011-04-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Missile_Analyser|Missile Analyser]] scans incoming missiles &amp;amp; sets target to incoming missile when it is no standard missile&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2010-05-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Missiles_and_Bombs|Missiles &amp;amp; Bombs]] adds a wide variety of missiles &amp;amp; bombs that are are available to player &amp;amp; NPCs alike&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2009-12-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Missionaries OXP|Missionaries]] adds clerics of four faiths who spam Commanders with requests to worship their Gods&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Moccasin]] adds light escort craft from Xeceesian Shipyards modeled after ArcElite core ship&lt;br /&gt;
|aut=CaptSolo&lt;br /&gt;
|date=2011-06-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Mod-HUD]] is a slight modification / re-organization of the standard Oolite HUD without surround boxes&lt;br /&gt;
|aut=CaptSolo&lt;br /&gt;
|date=2011-05-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/monument.zip Monument] sometimes adds a monument to famous Commanders close to the Sun&lt;br /&gt;
|aut=dajt&lt;br /&gt;
|date=2005-05-28&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Morrigan]] adds a vast trade ship to the Universe&lt;br /&gt;
|aut=Flying_Circus&lt;br /&gt;
|date=2009-12-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Oosounds2_OXP|''Murgh's Replacement Sounds'']] contains 10 new sounds&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2005-08-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Murgh_Xships OXP|Murgh's X-Ships]] adds [[Bandy-Bandy]], [[Chuckwalla]], [[Eel Rapier]], [[Taipan]] (fast courier craft &amp;amp; 2 light escort ships)&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2009-09-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[NavalGrid OXP|Naval Grid]] enhances recharging rates by linking the naval energy unit to military-boosted shields&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-03-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Neolite Ships]] is an Oolite ships replacement set&lt;br /&gt;
|aut=SimonB&lt;br /&gt;
|date=2009-07-11&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/newships.oxp.zip ''New Ships''] adds [[Hamadryad]], [[Josher]], [[Naga]], [[Ringhals]] (mining and trade ships from previous versions of Elite)&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2006-05-15&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/hud_ng.oxp.zip NG HUD] is an alternate HUD. All standard functions, but with a personal view&lt;br /&gt;
|aut=alien&lt;br /&gt;
|date=2005-03-06&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[NPC-shields OXP|NPC-shields]] gives shields to NPCs, together with a nice glow effect&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-04-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://wiki.alioth.net/index.php/Numeric_Style_HUDs Numeric Style HUDs] New invention/numeric gauges.[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9977 Info]&lt;br /&gt;
|aut=CommonSenseOTB&lt;br /&gt;
|date=2011-06-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/nuvipers.zip Nu Vipers] increases the types of Viper patrol ships with [[GalCop Viper Mark II]], [[GalCop Viper Cruiser]]&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Nukes.oxp|Nuclear Torpedos]] adds some powerful, but slow moving, missiles&lt;br /&gt;
|aut=E. Walch, Cdr. Wyvern&lt;br /&gt;
|date=2010-06-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Offender traders OXP|Offender Traders]] makes some traders into offenders/fugitives&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-04-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Old Ships]] adds Elite-A [[Bushmaster Miner]]s, [[Cat (Oolite)|Cat]]s, [[Chameleon (Oolite)|Chameleon]]s, [[Ghavial (Oolite)|Ghavial]]s, [[Iguana (Oolite)|Iguana]]s, [[Monitor (Oolite)|Monitor]]s, [[Ophidian (Oolite)|Ophidian]]s, [[Salamander (Oolite)|Salamander]]s&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2006-08-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Old Ships 2010]] is a retextured version of [[Old Ships]], adding the bonus Monitor 2 ship&lt;br /&gt;
|aut=pagroove&lt;br /&gt;
|con=Murgh, ADCK, Simon B, Lestradae&lt;br /&gt;
|date=2011-02-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Oo-Haul]] adds vast bulk [[L-Crate Hauler]]s to the space lanes and offers missions at [[Your Ad Here!|constores]] to safely escort them&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|con=Eric Walch, Ark&lt;br /&gt;
|date=2009-02-21&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[ooCheat_OXP|ooCheat]] adds a cheat menu to the game&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-02-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[http://www.box.net/shared/rrlm77ztzm Oolite en français] is a French Oolite localization&lt;br /&gt;
|aut=Pierre-Olivier&lt;br /&gt;
|date=2009-07-12}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[http://marc-schaffer.ch/data/OoliteGerman_V0.3.zip Oolite auf Deutsch] is a German Oolite localization&lt;br /&gt;
|aut=SwissMäc&lt;br /&gt;
|date=2009-06-02&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[http://www.box.net/shared/p3engis1ds Oolite Italiano] is an Italian Oolite localization&lt;br /&gt;
|aut=another_commander&lt;br /&gt;
|date=2010-06-15&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=Oolite in Russian: [http://www.roolite.org Roolite.org] provides localizations of Oolite 1.74.2 and some OXPs. Also check [http://www.elite-games.ru/conference/viewtopic.php?t=48476&amp;amp;start=0 Elite Games]&lt;br /&gt;
|aut=Seventh&lt;br /&gt;
|date=2009-03-26&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://www.box.net/shared/x9u5xoulkq Orbits] positions planets on orbits around the sun&lt;br /&gt;
|date=2010-07-01&lt;br /&gt;
|aut=Ebi&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Ore Processor]] extracts valuable materials from asteroid fragments when mounted to a ship's fuel scoop&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|con=Ark, Kaks, Eric Walch&lt;br /&gt;
|date=2011-01-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Orisis]] BigTraders are new passenger liners that ferry passengers around&lt;br /&gt;
|aut=pagroove&lt;br /&gt;
|con=ADCK, Thargoid&lt;br /&gt;
|date=2010-01-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Outrider (Oolite)|Outrider]] is a medium fighter produced by the [[Taranis Corporation HQ (Oolite)|Taranis Corporation]]&lt;br /&gt;
|aut=Roberto&lt;br /&gt;
|date=2006-08-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[[OXPConfig]] provides means to configure supported OXPs, to recognize errors, or to avoid clashes&lt;br /&gt;
|aut=Svengali&lt;br /&gt;
|date=2011-07-16&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[P.A. Groove Stations OXP|P.A. Groove Stations]] adds lots of different types of Coriolis and Dodec Stations&lt;br /&gt;
|aut=pagroove&lt;br /&gt;
|con=Griff, Commander McLane&lt;br /&gt;
|date=2010-04-16&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Pallas]] adds a fast but lightly shielded fighter.&lt;br /&gt;
|aut=Charlie&lt;br /&gt;
|con=Svengali&lt;br /&gt;
|date=2010-12-02&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Pelamis]] adds the Pelamis trade ship&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2006-04-24&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Phoenix]] is a strange ship, built from salvaged parts from various Serpent Class ships&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2007-01-17&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://wiki.alioth.net/index.php/Pie_Chart_Style_HUDs Pie Chart Style HUDs] New invention=&amp;gt;pie gauges.[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9788 Info]&lt;br /&gt;
|aut=CommonSenseOTB&lt;br /&gt;
|date=2011-05-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Pirate Coves OXP|Pirate Coves]] adds rock hermits that have been taken over by pirates in more dangerous systems&lt;br /&gt;
|aut=lazygun&lt;br /&gt;
|date=2011-07-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/piratetraps.oxp.zip Pirate Traps] are dummy traders which transmit details of pirates firing on them to the police&lt;br /&gt;
|aut=popsch&lt;br /&gt;
|date=2006-01-04&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Planetfall_OXP|Planetfall]] allows the player to land on and trade at the planets and moons of each system&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-04-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Pods_OXP|Pods]] adds fuel, missile, bulk &amp;amp; empty cargo pods and pods which jam, explode, have trumbles or take a few scoops&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-03-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Police_IFF_Scanner_Upgrade|Police IFF Scanner Upgrade]] highlights offender and fugitive ships with custom IFF scanner colours&lt;br /&gt;
|aut=Capt. Murphy&lt;br /&gt;
|date=2011-06-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Pteradyne Technologies Ships OXP|Pteradyne Technologies Ships]] adds the [[Excalibur]], a buyable combat ship and the [[Paladin]], a military version&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2006-12-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://www.boxcn.net/shared/xccp8ml5cq Pylon Based Equipment Remover] allows to remove a selected piece of equipment from your pylons&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-04-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Python Class Cruiser]] is a large powerful trade ship, which can also hold its own in battle&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2007-07-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/racers.oxp.zip Racers] adds [[Chicaneer Mk II]], [[Chicaneer Mk IV]], [[Dragster Mk I]], and [[Dragster Mk II]] racing ships&lt;br /&gt;
|aut=murgh&lt;br /&gt;
|date=2006-01-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Railgun OXP|Railgun]] introduces a revolutionary new weapons system to the Ooniverse&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-05-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Ramon's Anaconda]] is a fantastic re-imagining of the Anaconda freighter. Check out its special features&lt;br /&gt;
|aut=Ramon&lt;br /&gt;
|con=Griff&lt;br /&gt;
|date=2009-04-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Random_Docking_Music_OXP|Random Docking Music]] plays a random music track from a pre-set list on activating docking computers&lt;br /&gt;
|aut=Frame&lt;br /&gt;
|date=2010-05-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Random Hits OXP|Random Hits]] adds [[Space Bar|seedy space bars]] to anarchy systems that offer large bounties on the galaxy's Most Wanted Criminals&lt;br /&gt;
|aut=LittleBear&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2011-03-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://terrastorage.ath.cx/Marmagka/e8e9ce360da6bb40f5952cbe00f02501/RedSet.zip RedSet] contains red-themed backgrounds for the UI screens&lt;br /&gt;
|aut=another_commander&lt;br /&gt;
|date=2010-06-18&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.purgatori.net/reduxedvamps.htm Reduxed Vampires] adds reworked versions of the Vampire Mk I and Mk II and a Reaper &amp;quot;Gold Edition&amp;quot;&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2010-10-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[RegistrationID|Registration ID]] adds ID tags to all Oolite standard ships&lt;br /&gt;
|aut=Frame&lt;br /&gt;
|date=2010-02-28&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Remorse_Of_Conscience_v2|Remorse Of Conscience]] is a trade ship with a large hold, that can hold its own in combat&lt;br /&gt;
|aut=8-bit Apocalypse&lt;br /&gt;
|date=2005-02-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Renegade Pirates OXP|Renegade Pirates]] adds rare, very well-armed, high bounty pirate versions of Classic Elite ships&lt;br /&gt;
|aut=LittleBear&lt;br /&gt;
|con=Aegidian, Griff&lt;br /&gt;
|date=2006-12-03&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/RVandGS.zip Renegade Viper + Grass Snake] adds [[Renegade Viper|stolen Vipers]] which earn large bounties &amp;amp; [[Grass Snake]], a large pirate trade ship&lt;br /&gt;
|aut=8-bit Apocalypse&lt;br /&gt;
|date=2004-11-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Repair_Bots_OXP|Repair 'Bots]] adds a pylon mounted canister of repair nanobots which attempt to fix damaged equipment in mid-flight&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-02-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Ring_Racer_OXP|Ring Racer]] adds the Corporate Systems Ring Racing League to Galaxy 1&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-04-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Rock Hermit Locator]] adds equipment to locate Rock Hermits&lt;br /&gt;
|aut=Frame&lt;br /&gt;
|date=2011-03-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Saleza Aeronautics]] adds [[Bellatrix Cruiser]]s, [[Rigel Bomber|Rigel Tactical Bomber]]s, and [[Saiph Interceptor]]s to high tech corporate systems&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2010-10-24&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Santa]] adds very rare Santa Sledge to space lanes escorted by plasma gun toting reindeer space bikers!&lt;br /&gt;
|aut=Griff&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2010-05-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.purgatori.net/scorpius.htm Scorpius] adds a heavily armoured private trading and transport vessel, protected by Vampire escorts&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|con=Griff&lt;br /&gt;
|date=2011-02-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Scourge of the Black Baron]] features combat &amp;amp; transport Galaxy 1 missions&lt;br /&gt;
|aut=Rxke&lt;br /&gt;
|con=Kaks, Thargoid&lt;br /&gt;
|date=2010-08-07&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Scout]] is a cheap but good looking ship from Staer9 that shares a lot of technology with the [[Xeikil]]&lt;br /&gt;
|aut=Staer9&lt;br /&gt;
|date=2011-05-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Second Wave OXP|Second Wave]] adds variants of Thargoid Warship, Thargon Robot Fighter and alien ships&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-06-06&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Selezen's S-Ships]] adds [[GalCop SWAT Viper]]s and [[Oresrian Trader]]s&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|date=2007-07-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Sell equipment OXP|Sell Equipment]] allows for small fee, resale of equipment at 60% price at suitable tech level world&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-02-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[[Shady Cobra OXP|Shady Cobra]] adds shader effects to Cobra Mk III&lt;br /&gt;
|aut=Ahruman&lt;br /&gt;
|date=2007-07-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Shady Sungs]] adds replacement textures for all Classic Elite Ships&lt;br /&gt;
|aut=Sung, ADCK&lt;br /&gt;
|date=2010-05-21&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://wiki.alioth.net/index.php/Shield_Equalizer_%26_Capacitors_OXP Shield Equalizer] balances shield energy automatically. [http://wiki.alioth.net/index.php/Shield_Equalizer_%26_Capacitors_OXP Capacitors] store unused shield energy for use later&lt;br /&gt;
|aut=CommonSenseOTB&lt;br /&gt;
|date=2011-05-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Skrounk All-Stars Limited]] adds [[All Stars Large Freighter|Large Freighter]], [[Seymour Class Sled]], [[Starbelly Class Sled]], [[Starhawk]] &amp;amp; [[Starwolf_Mark_I|Starwolf Mk I]]&lt;br /&gt;
|aut=goji62&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Smivs%27_ShipSet|Smiv's Shipset 3.0]] re-textures the standard Oolite ships beautifully with a realistic look &amp;amp; non-shader lighting effects&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2010-12-08&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Snark]] is a powerful fighter/trader, often used by pirates and bounty hunters&lt;br /&gt;
|aut=Flying_Circus&lt;br /&gt;
|date=2006-06-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=10515 Sniper Sight] is equipment to help with long distance targeting&lt;br /&gt;
|aut=Wildeblood&lt;br /&gt;
|date=2011-07-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=10176 Sniper Scope MilHUD integrated] is an version of MilHUD with integrated Sniper Sight functionality&lt;br /&gt;
|aut=Wildeblood&lt;br /&gt;
|date=2011-06-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Snoopers]] adds the galactic news network channels&lt;br /&gt;
|aut=DaddyHoggy&lt;br /&gt;
|con=Disembodied, Drew, Svengali&lt;br /&gt;
|date=2011-05-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Solid Gold Cobra Mk.3]] is a limited edition Cobra Mk3 to celebrate its 25 years anniversary&lt;br /&gt;
|aut=ADCK&lt;br /&gt;
|date=2010-06-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[http://www.purgatori.net/Sothis.htm Sothis Space Station] is a station from [[Isis Interstellar]] with a compact design of comparable size to a standard Coriolis&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2010-08-08&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Spearhead Interceptor Mk.I]] is a pure fighter, fast &amp;amp; nippy but with weak shields, no cargo bay. Can be twitchy to fly&lt;br /&gt;
|aut=Randell&lt;br /&gt;
|date=2006-07-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[S.I.R.F.|Special Interstellar Repair Facilities]] offer different trading strategies &amp;amp; repair facilities on uncommon trading routes&lt;br /&gt;
|aut=Tinker&lt;br /&gt;
|date=2010-07-02&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.purgatori.net/spectres.htm Spectre] adds [[Isis Interstellar]]'s Vampire Mk V, a secret military vessel fighting Thargoids in witch space&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2011-01-16&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Spy Hunter OXP|Spy Hunter]] is a mission for Galactic Navy for Commander with rating of 'Dangerous' or above&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|date=2009-04-11&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Staer9 Spectre]] is a cheap small fighter with high maneuverability that flopped in the market&lt;br /&gt;
|aut=Staer9&lt;br /&gt;
|date=2011-05-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Star-Jelly]] Beautiful translucent organisms sometimes found in Asteroid fields.&lt;br /&gt;
|aut=Smivs,Staer9&lt;br /&gt;
|date=2011-05-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Star Wars Ships]] adds [[A-Wing]], [[B-Wing]], [[Lambda Shuttle]], [[Tie-Fighter]], [[Tie-Interceptor]], [[X-Wing]], [[Y-Wing]]&lt;br /&gt;
|aut=Azzameen&lt;br /&gt;
|date=2006-05-31&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Status Quo Q-bomb OXP|Status Quo Q-bomb]] changes the behaviour of Q-bombs according to the [[Status Quo]] novel&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-02-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[S.T.E]] is a step up from the Cobra III with improved trading capabilities and increased speed&lt;br /&gt;
|aut=Rustybolts&lt;br /&gt;
|date=2009-07-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Stealth OXP|Stealth]] is a small G3 mission showcasing new scanner capabilities &amp;amp; introducing stealth ships&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-03-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://www.purgatori.net/Steampunk%20HUD.htm Steampunk HUD] adds a steampunk style HUD by [[Isis Interstellar]]&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2010-01-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Stellar Serpents OXP|Stellar Serpents]] adds huge space-born serpent monsters which move from system to system and are good hunting prey&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-07-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[http://sancho.dk/oolite/sunskimmers.zip Sunskimmers] adds ships to the sun/planet corridor&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-08-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[SuperCobra]] is larger, faster with stronger hull than Cobra Mk III&lt;br /&gt;
|aut=8-Bit Apocalypse&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2010-10-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Superhub]] from GASEC is the first station that is capable of transporting itself to its destination&lt;br /&gt;
|aut=P.A. Groove&lt;br /&gt;
|date=2009-11-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Swift]] is a very fast ship often used by pirates or bounty hunters with limited cargo space &amp;amp; nominal shields&lt;br /&gt;
|aut=Charlie&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Switeck's Mod OXP|Switeck's Mod]] rebalances ships &amp;amp; market prices. Adds Medium, Hard, and Harder Jameson saves&lt;br /&gt;
|aut=Switeck&lt;br /&gt;
|date=2011-01-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[System Demux (Oolite)|System Demux]] textures home planet, adds planet/moon combination to systems&lt;br /&gt;
|aut=DrBeeb&lt;br /&gt;
|date=2010-07-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[System Redux (Oolite)|System Redux]] v1.2 textures home planet, adds planet/moon combination to systems&lt;br /&gt;
|aut=CaptKev&lt;br /&gt;
|date=2011-02-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://www.box.net/shared/r05ub873b5 TAF Reset] resets the Time Acceleration Factor (TAF) to 1.0 upon docking&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2009-09-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Taranis OXP|Taranis]] is a mission for law abiding Commanders with rating of Competent+. Adds [[Taranis Corporation HQ (Oolite)|Taranis Corporation HQ]]&lt;br /&gt;
|aut=Roberto&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2009-10-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Target_Autolock_OXP|Target Autolock]] updates [[Scanner Targeting Enhancement]] to auto-lock onto attacking ships&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-02-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Target Range OXP|Target Range]] is found in all rich systems with stable governments&lt;br /&gt;
|aut=Caracal&lt;br /&gt;
|date=2010-07-24&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Target Reticle]] updates [[Scanner Targeting Enhancement]] to turn reticle red when target centred&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2010-05-31&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Taxi Galactica]] adds a Taxi Service and a non player flyable taxi cab ship to systems&lt;br /&gt;
|aut=pleb87&lt;br /&gt;
|date=2008-06-12&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Teretrurus Mk.I]] is a medium fighter/trader somewhat faster &amp;amp; tougher than Cobra Mk III, but with smaller cargo bay&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2008-02-01&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Terrapin|Terrapin Trader]] is a medium fighter/trader. A good upgrade from Cobra Mk III&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2008-02-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Tesoura]] is a slow, but well shielded trade ship&lt;br /&gt;
|aut=Randall, Dr. Nil&lt;br /&gt;
|date=2008-02-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Thargoid Carrier]] arms Thargoids with capital carrier&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|date=2006-06-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Thargorn_Threat_oxp|Thargoid Threat]] adds [[Thargoid Terrorizer Frigate]], [[Thargoid Thargorn Battleship]], [[Thargoid Thorgon Cruiser]]&lt;br /&gt;
|aut=Arexack Heretic&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2011-02-03&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Thargoid Wars]] intensifies war with the Thargoids, featuring new attack and defense missions&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2011-07-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Tianve OXP|Tianve]] adds [[Navy Station]], as well as Visuals, including a pulsar, to the Galaxy 1 system of Tianve&lt;br /&gt;
|aut=Drew&lt;br /&gt;
|date=2009-12-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Tiger Mark I]] is a truly awesome (and very expensive) multi-role craft&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2006-05-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Tionisla Orbital Graveyard]] adds the famed graveyard to Tionisla, G1, as described in “The Dark Wheel” novella&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2011-02-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Tionisla Reporter]] adds a mission for a starting commander&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2011-07-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[TCAT OXP|To Catch a Thargoid]] is a G3 follow-up mission to Thargoid Plans, for Dangerous or Elite rank Commanders&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-12-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Torus station|Torus Station]] adds a vast 2001 style space station to very high tech level systems&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|con=Svengali&lt;br /&gt;
|date=2010-10-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Total patrol OXP|Total Patrol]] makes police ships patrol between planet, witchpoint &amp;amp; sun&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-03-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[ToughGuys|ToughGuys]] Adds 3 levels of increased toughness of 'Baddies', and gives a backdrop for an immersive storyline&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2011-02-16&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Trader Outpost (Oolite)|Trade Outpost]] adds Griff's trade outpost without ads&lt;br /&gt;
|aut=CaptKev, Griff, Ark&lt;br /&gt;
|date=2009-02-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Traffic_Control_OXP|Traffic Control]] personnel gives help with approach to and manual docking at all main stations&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-06-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Transhab station|Transhab Station]] adds a large station with rotating arms to some medium tech level systems&lt;br /&gt;
|aut=Draco_Caeles&lt;br /&gt;
|date=2006-06-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Transports]] adds [[CoachWhip]], [[Coral]], [[Woma]]&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|con=Eric Walch, Kaks&lt;br /&gt;
|date=2010-12-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://wiki.alioth.net/images/d/d9/TrekHud.zip Trek HUD] replaces your HUD with a Star Trek NG LCARS-style HUD&lt;br /&gt;
|aut=barabis&lt;br /&gt;
|date=2008-11-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Trident Down]] contains a series of Galaxy 4 missions investigating a vicious attack on a [[Executive SpaceWays|Trident Shuttle]]&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2010-12-31&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[UPS Courier]] offers Commanders transport of goods/documents &amp;amp; occasional combat missions&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2011-03-29&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Urutu Mark III &amp;amp; Urutu Mark IV]] are medium fighters/traders from Elite-A&lt;br /&gt;
|aut=Milinks&lt;br /&gt;
|date=2006-09-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Vampire]] adds the Purgatori Vampire series of combat ships&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2007-01-29&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Vampire - Diamondback]] adds the Diamondback Vampire series of combat ships&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2010-04-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Vampire - Dominatrix]] adds the Dominatrix Vampire series of combat ships&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2009-12-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Vector OXP|Vector]] is a unusual mission type - fast money, slavers, tricks and GalCop is watching you...&lt;br /&gt;
|aut=Svengali&lt;br /&gt;
|date=2011-02-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Velocity_OXP|Velocity]] is a fast fighter ship&lt;br /&gt;
|aut=Sabre&lt;br /&gt;
|date=2009-09-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.purgatori.net/Venom.oxp.zip Venom] adds [[Venom]]s in normal and renegade versions  from [[Isis Interstellar]]&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2009-12-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Vortex OXP|Vortex]] A new ex-military player ship. Rare, expensive and powerful - kitted out with advanced and unique features&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-03-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.purgatori.net/wasps.htm Wasps] adds formation flying wasps, queen wasps, and wasp nests&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|con=Thargoid, Ahruman, Eric Walch&lt;br /&gt;
|date=2010-08-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/weeviloid2.zip ''Weeviloid''] adds [[Weeviloid Hunter]]s, fearsome multi-gunned war ships and [[Weeviloid Scoutship]]s, light trade ships&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2006-05-11&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Welcome_Mat_OXP|Welcome Mat]] upgrades the comms systems to expand the information that is given on arrival in new system&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-06-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Werewolf]] from [[Isis Interstellar]] has 3 variants:  [[Werewolf|Werewolf ~ Damage Inc.]], [[Werewolf|Werewolf (Civilian)]] &amp;amp; [[Werewolf|Werewolf (Purgatori Model)]]&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2011-02-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Wolf_Mk.2_%28Oolite%29|Wolf Mk II]] adds the powerful Wolf Mk II, as seen in Elite-A&lt;br /&gt;
|aut=Ark&lt;br /&gt;
|date=2009-07-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://wiki.alioth.net/images/0/06/Wolfs_variants.zip Wolfwood's Variants] adds [[Asp_Mk.I|Asp Mk I]], [[Cobra Courier]], [[Cobra Rapier]], [[Drake]], [[Drake Mk II]] &amp;amp; [[Wolf Mk I]]&lt;br /&gt;
|aut=Wolfwood&lt;br /&gt;
|date=2008-02-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Wormhole restoration OXP|Wormhole Restoration]] adds a new way to leave interstellar space without using fuel, expanding on Thargoid backstory&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-05-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Xarik]] is an advanced aircraft, last creation of the late Prof. Eisel Xarik. Used by pirates, traders, and hunters&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2010-02-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Xeikil]] adds a player, a GalCop interceptor, and 24 pirate variants of Staer9 Industries' current top fighter&lt;br /&gt;
|aut=Staer9&lt;br /&gt;
|date=2011-05-16&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Xeikil MK2]] adds a player, a GalCop interceptor, and 24 pirate variants of Staer9 Industries' replacement [[Xeikil]]&lt;br /&gt;
|aut=Staer9&lt;br /&gt;
|date=2011-05-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[YellOo_Cabs]] adds YellOo Cab Co taxis to the Ooniverse. NPC and Buyable&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2011-01-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Your Ad Here!]] adds Convenience Stores [[Pi-42]], [[Tescoo Oxpress]], [[Star]], [[Mall Wart]], [[Sainsboory's]] &amp;amp; [[Security Sidewinder|security sidewinders]]&lt;br /&gt;
|aut=Griff&lt;br /&gt;
|con=DaddyHoggy, Pangloss, Disembodied, Eric Walch&lt;br /&gt;
|date=2011-02-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Z-ships]] adds [[Z-ships_Asp_Explorer|Asp Explorer]], [[Z-ships_Cobra_Commodore|Cobra Commodore]], [[Z-ships_Porcupine|Porcupine]] &amp;amp; [[Z-ships_Python_Courier|Python Courier]]&lt;br /&gt;
|aut=Zieman&lt;br /&gt;
|date=2010-03-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9056 Z-GrOovY Griff's Cobra Mk3 Variety Pack] adds multiple Griff's Cobra Mk3 with alternate hull paintings&lt;br /&gt;
|aut=dertien&lt;br /&gt;
|date=2011-01-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9306 Z-GrOovY System Stations] adds Griff-based Tetrahedron, Octahedron, Coriolis, Dodecahedron, Icosahederon stations&lt;br /&gt;
|aut=dertien&lt;br /&gt;
|date=2011-03-03&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9146 Z-GrOovY Viper Raider] adds a new player ship based on the police Viper&lt;br /&gt;
|aut=dertien&lt;br /&gt;
|date=2011-02-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9056 Z-GrOovY YAH Sidewinder Variety Pack] adds multiple Your Ad Here! Constore defenders with alternate hull paintings&lt;br /&gt;
|aut=dertien&lt;br /&gt;
|date=2011-01-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9056 Z-GrOovY YellOo Cab Variety Pack] adds the Moray Starboat with taxi hull painting&lt;br /&gt;
|aut=dertien&lt;br /&gt;
|date=2011-01-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Work in Progress OXPs  ==&lt;br /&gt;
The following table contains OXPs that either have not yet been released by their authors but are already being discussed on the [http://www.aegidian.org/bb/viewforum.php?f=4 Expansion Pack Forum], or released OXPs that still have WIP status. Links get you either to the respective discussion or the Wiki page if it already exists.&lt;br /&gt;
{{OXPListTableHeader}}&lt;br /&gt;
&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[http://www.box.net/shared/moreq536ht Nexus missile]. Three versions of a multi-warhead missile. Like the anti-thargoid missile but not just for (against) thargoids.&lt;br /&gt;
|aut=UK_Eliter&lt;br /&gt;
|date=2011-07-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?t=8341 Animated Ships] adds animated butterflies flapping their wings as a demo&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-08-06&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9864 Cargo Scanner] scans targeted cargo containers to find out what they contain&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-05-17&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://www.aegidian.org/bb/viewtopic.php?t=8526 Comms Demo] provides a way to communicate with NPC ships&lt;br /&gt;
|aut=Kaks&lt;br /&gt;
|date=2009-10-26&lt;br /&gt;
|work=N}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=6&amp;amp;t=9087 Guerilla War] puts you in a position to lead a fighter squadron&lt;br /&gt;
|aut=Ramirez|date=2011-04-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.box.net/shared/0i2fnrc175t Katipo] adds a very fast, moderate maneuverability, low cargo ship with low thrust&lt;br /&gt;
|aut=Simon B&lt;br /&gt;
|date=2011-03-03&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9441 Miner Pod] breaks up asteroids and collects the splinters&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-03-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?t=8275 Mining] adds mines to protect and provide resources for to get gold&lt;br /&gt;
|aut=docwild&lt;br /&gt;
|date=2010-07-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Nuit Space Station OXP|Nuit Space Station]] is the newest creation of [[Isis Interstellar]]&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2009-11-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mission&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?p=130221#p130221 Oresrati Challenge] adds a fun mission to the loneliest system of the Ooniverse, Oresrati&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-04-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9946 Phantom] is a trader/fighter from [[Isis Interstellar]] with external missiles&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2011-05-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?p=138226#p138226 Shield Cycler] distributes shield energy between fore and aft shields&lt;br /&gt;
|aut=Lone_Wolf&lt;br /&gt;
|date=2011-05-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=5484 Solar System] adds extra planets and jump gates to a system&lt;br /&gt;
|aut=Frame&lt;br /&gt;
|date=2009-01-11&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9472 Sun Skimmer Pod] adds a pod that goes sun skimming and returns full of fuel&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-03-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9488 Target Tracker] aligns your ship on your target&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-03-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9353 Thor Class Supercarrier] adds a Navy Carrier as a replacement pack for the Behemoth and the Galactic Navy&lt;br /&gt;
|aut=dertien&lt;br /&gt;
|date=2011-03-03&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9242 Wormhole Drones] creates a path of worm holes to lead you to your destination system&lt;br /&gt;
|aut=Mauiby de Fug&lt;br /&gt;
|date=2011-02-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[http://www.aegidian.org/bb/viewtopic.php?t=8541 Zygoroids] add new beautifully textured asteroid models to the Ooniverse&lt;br /&gt;
|aut=ZygoUgo&lt;br /&gt;
|date=2010-10-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== OXPs with Problems ==&lt;br /&gt;
The following table contains OXPs that have problems eg. broken download, or have been written for versions of Oolite earlier than the current 1.75.2&lt;br /&gt;
{{OXPListTableHeader}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Amen Bricks Megaships|Amen Brick's Megaships]] adds [[Battleship]]s, [[Biodome]]s, [[Cruiseship]]s, [[Hospitalship]]s, [[Supercargo]]s, [[Superlifter]]s, and [[Yacht - Amen Class|Yacht]]s (This version 1.1 contains a corrupted shipData.plist)&lt;br /&gt;
|aut=Amen Brick&lt;br /&gt;
|date=2008-07-11}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Cataclysm OXP|Cataclysm]] takes up the threads of Constrictor Hunt and Thargoid Plans, and sends you on your biggest Navy mission yet&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2009-01-06&lt;br /&gt;
|work=N}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Kirin#Download|Kirin Sport]] adds a a smaller, faster, more agile - and less well armed - civilian variant of the [[Kirin]]&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2009-07-22&lt;br /&gt;
|work=N}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Localhero_OXP|Localhero]] adds a mission campaign in the first galaxies&lt;br /&gt;
|aut=Svengali&lt;br /&gt;
|date=2008-04-09&lt;br /&gt;
|work=N}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Orb]] adds a new alien race, which might help GalCop in the battle against the Thargoids.&lt;br /&gt;
|aut=Charlie&lt;br /&gt;
|date=2007-02-13&lt;br /&gt;
|work=N}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Personalities OXP|Personalities]] adds a bunch of unique, well-known personalities from the Bulletin Board to the Ooniverse&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2009-11-05&lt;br /&gt;
|work=N}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[[Save Anywhere]] allows you to save your game at any OXP Station&lt;br /&gt;
|aut=Frame&lt;br /&gt;
|date=2008-10-01&lt;br /&gt;
|work=N}}&lt;br /&gt;
|}&lt;br /&gt;
[[Category:Oolite expansion packs]]&lt;br /&gt;
[[Category:OXP Lists]]&lt;br /&gt;
[[Category:Factual]]&lt;/div&gt;</summary>
		<author><name>Mcarans</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.alioth.net/index.php?title=OXP_List&amp;diff=28631</id>
		<title>OXP List</title>
		<link rel="alternate" type="text/html" href="https://wiki.alioth.net/index.php?title=OXP_List&amp;diff=28631"/>
		<updated>2011-07-25T20:23:54Z</updated>

		<summary type="html">&lt;p&gt;Mcarans: /* Sortable Table of OXPs */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
== OXP Categories ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; width=&amp;quot;100%&amp;quot; style=&amp;quot;border-collapse: collapse; border-width: 1px; border-style: solid; border-color: #ffffff; table-layout: fixed; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; width=&amp;quot;70px&amp;quot; style=&amp;quot;margin: 0px; padding: 0px; border-width: 1px; border-style: solid; border-color: #ffffff; background-color: #e7e7ff; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot; |&amp;lt;p style=&amp;quot;font-size: 13px;&amp;quot;&amp;gt;Category&amp;lt;/p&amp;gt;&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;margin: 0px; padding: 0px; border-width: 1px; border-style: solid; border-color: #ffffff; background-color: #e7e7ff; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot; |&amp;lt;p style=&amp;quot;font-size: 13px;&amp;quot;&amp;gt;Description of OXP Category&amp;lt;/p&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Activities_OXPs|Activities]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Allow Commanders to carry out a new activity or task eg. racing, gas giant skimming, taking out loans&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Dockables_OXPs|Dockables]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Add new objects that the player can dock with eg. carriers, space bars, casinos, fuel stations. Also, see [[Oolite Stations]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Ambience_OXPs|Ambience]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Change or add to the scenery, visuals or sound effects eg. planet skins, add new planets/moons to systems, move suns further away, dim nebulae, add monuments&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Equipment_OXPs|Equipment]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Buy upgrades for your ship excluding weapons&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Mechanics_OXPs|Mechanics]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Change the game play in a specific way eg. alter market mechanics, add more pirates&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:HUDs_OXPs|HUDs]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Modifications of your dials, gauges and other read-outs&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Missions_OXPs|Missions]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|New missions for Commanders to undertake. For more information, see [[Oolite Missions]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Retextures_OXPs|Retextures]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Retexture existing objects, either by replacing or adding variations, but without adding objects that did not exist before&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Ships_OXPs|Ships]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|New ships, except dockable ships. Also, see [[Oolite Ships]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Systems_OXPs|Systems]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Alter multiple star systems in a number of ways eg. combinations of changing main station and local police ships, adding new stations, ships, activities, missions&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Weapons_OXPs|Weapons]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Addons for your ship for blowing up the baddies&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Misc_OXPs|Misc]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|OXPs that don't fit into the other categories eg. debug consoles, internationalisations, config mechanisms, demo OXPs&lt;br /&gt;
|}&lt;br /&gt;
OXP authors: if you are unsure how to categorise your OXP or if you wish to update the details of an OXP for an author who has disappeared, please seek advice on the [http://www.aegidian.org/bb/viewforum.php?f=4 Expansion Pack Forum] before proceeding. Please put your OXP in one category only. You can edit the section below to add your OXP.&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Sortable Table of OXPs ==&lt;br /&gt;
The following table is optimized for a horizontal screen resolution of at least 1280px so that all OXP descriptions fit on one line.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; width=&amp;quot;100%&amp;quot; style=&amp;quot;border-collapse: collapse; border-width: 1px; border-style: solid; border-color: #ffffff; table-layout: fixed; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;border-width: 1px; border-style: solid; border-color: #ffffff; background-color: #e7e7ff; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot; |The &amp;quot;C&amp;quot; column indicates compatibility with Oolite beta 1.75:&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Y&amp;quot;=compatible, &amp;quot;Y*&amp;quot;=compatible (but the OXP is not in full working order), &amp;quot;N&amp;quot;=incompatible,  blank=unknown/untested.&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;!-- KEEP DESCRIPTIONS (desc=...) ALPHABETICAL --&amp;gt;&lt;br /&gt;
&amp;lt;!-- KEEP LENGTHS OF DESCRIPTIONS TO THAT OF EXISTING ENTRIES OR LESS --&amp;gt;&lt;br /&gt;
{{OXPListTableHeader}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Accessories OXP|Accessories]] replaces the textures of all Stations and non-ship objects in Oolite with a more detailed and realistic look&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2010-06-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Accipiter]] is the market entry from Xeceesian shipyards, a strong &amp;amp; fast all purpose vessel for experienced commanders&lt;br /&gt;
|aut=CaptSolo&lt;br /&gt;
|con=Staer9, Griff&lt;br /&gt;
|date=2011-05-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Aegidian%27s Specials]] adds the powerful [[Mussurana]], the [[Asp (Oolite)#Notable features|Asp Mark II Special]], and a new cargo canister&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2009-07-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Aegidian%27s X-Ships]] adds [[Python ET Special]]s, [[Cobra Mk.2 (Oolite)|Cobra Mk II]]s, [[Taipan]]s, [[Asp (Oolite)#Notable features|Asp Mark II Special]]s, and [[Sidewinder (Oolite)#Notable features|Sidewinder Special]]s&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2009-04-29&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Pirate Clan Blitzspears|Amen Brick's Pirate Clan One: The Blitzspears]] adds the [[Assassin Blitzspear|Assassin]], the [[Hoodlum]], the [[Scoundrel]], and the [[Spiv]]&lt;br /&gt;
|aut=Amen Brick&lt;br /&gt;
|date=2008-06-30}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Amiga Replacement Sounds]] is based on the sound set used in the Amiga version of the original Elite&lt;br /&gt;
|aut=EAGLE 5&lt;br /&gt;
|date=2006-03-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Systems&lt;br /&gt;
|desc=[[Anarchies OXP|Anarchies]] overhauls legal ratings and spices up anarchies with [[Hacker Outpost]]s, [[Salvage Gang]]s, special stations &amp;amp; ships&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|con=Killer Wolf, Griff, Cdr. Wyvern, Murgh, Aegidian, 8-Bit Apocalypse&lt;br /&gt;
|date=2011-03-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9462 Another HUD] is based on Killer Wolf's Generic HUD&lt;br /&gt;
|aut=NorthenderPNE&lt;br /&gt;
|date=2011-03-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Aphid]] adds the stylish Aphid Escort Service&lt;br /&gt;
|aut=8-Bit Apocalypse&lt;br /&gt;
|date=2005-01-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Aquatics OXP|Aquatics]] adds the Aquarian Shipbuilding Corporation of Aqualina, G3 along with its ships and a mission&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-03-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Armoured Transport Type 1]] adds Gaundlet's [[Gaundlet Armoured Transport Type1|Armoured Transport Type 1]] and [[Gaundlet Armoured Escort Viper|Armoured Escort Viper]] that ferry valuables&lt;br /&gt;
|aut=Arexack Heretic&lt;br /&gt;
|date=2005-12-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Armoury OXP|Armoury]] adds AMS, captured Thargons, drones, probes, a missile rack, some bombs, and the missile machine&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-06-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[The Assassins Guild OXP|Assassins Guild]] adds 21 missions involving murder to order in Galaxy 7&lt;br /&gt;
|aut=Littlebear&lt;br /&gt;
|date=2011-05-03&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Asteroid Storm]] adds different types of asteroids &amp;amp; a mission where a station in G1 is threatened by a large asteroid strike&lt;br /&gt;
|aut=LittleBear, Charlie&lt;br /&gt;
|date=2011-01-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Aurora]] adds huge passenger ships for the wealthiest in society&lt;br /&gt;
|aut=pagroove&lt;br /&gt;
|con=Griff, Thargoid&lt;br /&gt;
|date=2010-11-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://www.mediafire.com/?fnc65em7uh5un1d Auto ECM] fires the ECM once when a missile is fired at the player's ship. See the [http://aegidian.org/bb/viewtopic.php?p=138124#p138124 BB] for more info&lt;br /&gt;
|aut=Switeck&lt;br /&gt;
|date=2011-05-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Auto eject OXP|Auto Eject]] ejects your escape pod automatically when your energy becomes too low&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2010-06-16&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Automatic Chaff System]] provides an enhanced chaff-based missile countermeasure system&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2010-06-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Baakili Far Trader]] adds a dockable alien ship&lt;br /&gt;
|aut=Zieman&lt;br /&gt;
|date=2010-09-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Bandersnatch]] adds a pirate capital vessel armed with 4 x fore lasers&lt;br /&gt;
|aut=Flying_Circus&lt;br /&gt;
|date=2009-11-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Beer Cooler]] allows you to fit your ship with a beer cooler&lt;br /&gt;
|aut=Maik&lt;br /&gt;
|date=2010-08-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Behemoth]] adds a dockable Navy cruiser carrying [[Navy Asp]]s and [[Navy Viper]]s&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2011-01-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[ADCK%27s Behemoths]] adds shadered versions of the [[Behemoth]],  [[Galactic Navy OXP|Galactic Navy]] ships and stations, and then some&lt;br /&gt;
|aut=ADCK&lt;br /&gt;
|con=Aegidian, pagroove, Nemoricus, Selezen, Simon B&lt;br /&gt;
|date=2010-04-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Behemoth Spacewar]] adds intelligence to the Behemoth and brings a combat with Thargoids&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2010-01-09&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[BGS|BGS - Background Set]] framework for images, sounds and ambient music&lt;br /&gt;
|aut=pagroove, Svengali&lt;br /&gt;
|date=2011-03-16&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[BigShips OXP|Big Ships]] ensures that large ships do not dock and controls population of systems with them&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2009-11-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Black Monk Monastery]] offers loans in advanced systems and adds the [[Black Monk Gunship]] to persecute defaulters&lt;br /&gt;
|aut=LittleBear&lt;br /&gt;
|date=2010-06-14&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[BlackjacksBullion OXP|Blackjack's Bullion]] starts in galaxy 2 at Telace as Commander Blackjack arrives via escape pod&lt;br /&gt;
|aut=Rustybolts&lt;br /&gt;
|date=2010-03-08&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[BlOomberg Markets]] varies the in-game economy by generating random events that affect commodity prices&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2011-03-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Boa II Clipper Class]] is a development of the Boa Class Cruiser, adding a third engine at the cost of cargo space&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2011-01-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Boomslang]] adds a mid-range multi-role ship. Used by pirates and traders alike&lt;br /&gt;
|aut=milinks, Jar&lt;br /&gt;
|date=2008-09-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Bounty Scanner]] adds bounty details (if any) to the targeting lock-box display when locked onto other ships&lt;br /&gt;
|aut=Frame&lt;br /&gt;
|date=2010-07-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[BountyStatus OXP|Bounty Status]] displays your current bounty (and your legal status) on the F5 manifest screen&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-05-08&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Breakable_'Standard'_Equipment_OXPs|Breakable 'Standard' Equipment]] makes some standard equipment such as HUD/Scanner damageable in combat&lt;br /&gt;
|aut=Capt. Murphy&lt;br /&gt;
|date=2011-07-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Bulk Haulers]] adds the [[Lynx Bulk Carrier (Oolite)|Lynx Bulk Carrier]], the [[Long Range Cruiser (Oolite)|Long Range Cruiser]], the [[Bulk Hauler]], and the [[Super Bulk Hauler]]&lt;br /&gt;
|aut=ADCK&lt;br /&gt;
|con=Aegidian, pagroove&lt;br /&gt;
|date=2010-04-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[BuoyRepair|Buoy Repair]] adds a [[Buoy Repair Facility]] and related ships to repair defect or destroyed nav-beacons&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|con=Svengali, Murgh, Zieman&lt;br /&gt;
|date=2011-06-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[[Cabal Common Library]] is a collection of snippets and helpers for OXPs&lt;br /&gt;
|aut=Svengali&lt;br /&gt;
|con=Cmd.Cheyd, PhantorGorth&lt;br /&gt;
|date=2011-07-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Caduceus]] adds the very expensive (and deadly) Caduceus&lt;br /&gt;
|aut=ClymAngus&lt;br /&gt;
|con=Cdr. Wyvern, another_commander, Eric Walch, Thargoid&lt;br /&gt;
|date=2010-12-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Capisastra]] adds [[Capisastra Defender]]s, [[Capisastra Hauler]]s, and [[Capisastra Warrior]]s&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|date=2006-01-12}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Captain Berf Engineer]] adds a voice for crew members&lt;br /&gt;
|aut=Captain Berf&lt;br /&gt;
|date=2009-12-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Captain Berf Pilot]] adds a voice for crew members&lt;br /&gt;
|aut=Captain Berf&lt;br /&gt;
|date=2009-12-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Captain Berf Pilot Alien]] adds a voice for crew members&lt;br /&gt;
|aut=Captain Berf&lt;br /&gt;
|date=2009-12-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Captain Berf Tactical Officer]] adds a voice for crew members&lt;br /&gt;
|aut=Captain Berf&lt;br /&gt;
|date=2009-12-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Cargo Shepherd OXP|Cargo Shepherd]] attracts cargo pods and holds them until you can scoop them, also includes a beacon&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-04-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://www.box.net/shared/4lphdkazs5 CB-HUD] features a HUD that changes based on installed equipment. See the [http://aegidian.org/bb/viewtopic.php?p=141035#p141035 BB post] for more information&lt;br /&gt;
|aut=Captain Beatnik&lt;br /&gt;
|date=2011-05-29&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Clear Skies OXP|Clear Skies]] reduces nebula effects and dims stars. Handy if your system is finding it hard to run Oolite&lt;br /&gt;
|aut=johnsmith&lt;br /&gt;
|date=2006-11-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Cobra 3.5|Chopped Cobra]] adds the Cobra Mk 3.5, a slightly faster and tougher variant with a reduced cargo bay&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2006-12-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9157 Cobra AC] is a faithful reproduction of the Cobra on the cover of the Dark Wheel novella with improved specs&lt;br /&gt;
|aut=dertien&lt;br /&gt;
|date=2011-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Cobra Clipper SAR]] adds a custom Cobra Mk III to rescue stranded Commanders&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2010-04-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Cobra III NjX]] adds a faster, tougher variation on the Classic Cobra Mk III&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|date=2006-08-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Cobra Mark III-XT]] Cobra3 with revamped architecture and upgraded systems to boost performance&lt;br /&gt;
|aut=CaptSolo&lt;br /&gt;
|date=2011-07-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.purgatori.net/cobra4.htm Cobra MkIV] is [[Isis Interstellar]]'s successor to the Cobra MkIII, available in trader and fighter variants&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2010-11-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[OosoundsCombined OXP|Combined Murgh, Wiggy &amp;amp; xaotik's sounds]] combines the 3 available packs from Murgh, Wiggy and xaotik&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|con=Murgh, Wiggy, xaotik&lt;br /&gt;
|date=2009-09-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Systems&lt;br /&gt;
|desc=[[Commies]] Adds [[Astro Mines]], [[CZGF|Factories]], [[SLAPU|Production Units]], [[Worker%27s Commuter|Commuters]] &amp;amp; special police ships to Communist systems&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|con=Ramirez, Murgh, johnsmith, HueijRevisited&lt;br /&gt;
|date=2010-05-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[CompactHUD|Compact HUD]] provides an alternative HUD with a clean look&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Condor]] adds a very powerful police and Navy Cruiser&lt;br /&gt;
|aut=Charlie&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2010-10-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Console HUD]] Azure themed semi-transparent HUD with balanced array of indicators&lt;br /&gt;
|aut=CaptSolo&lt;br /&gt;
|date=2011-07-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[http://www.box.net/shared/mq1mzoc79t Constrictor Mission Hints] adds more hints for those doing the native Constrictor Mission&lt;br /&gt;
|aut=Arexack Heretic&lt;br /&gt;
|date=2010-08-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Contractor ZZ1]] Very fast combat 'stealth' ship. Appears in-game as a Bounty-hunter and rarely as Pirate. Buyable&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2011-01-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Copperhead]] Redux of core ship in Archimedes Elite slightly modified. NPC and player buyable&lt;br /&gt;
|aut=CaptSolo&lt;br /&gt;
|date=2011-05-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Croydon Starsoarer]] adds a ship that is similar to the Asp in specification&lt;br /&gt;
|aut=SimonB&lt;br /&gt;
|con=pagroove&lt;br /&gt;
|date=2010-05-08&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[CustomSounds OXP|CustomSounds]] replaces/adds 40+ sounds, featuring music &amp;amp; extensive use of calm female computer voice for warnings&lt;br /&gt;
|aut=milinks&lt;br /&gt;
|date=2006-12-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[DWCobra|Dark Wheel Cobra]] is a custom Cobra Mk III model, as seen on the cover of the Elite Manual&lt;br /&gt;
|aut=ramon&lt;br /&gt;
|date=2006-11-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[[Debug OXP]] is a special OXP that enables JavaScript console support in test releases of Oolite (1.70 and later)&lt;br /&gt;
|aut=Ahruman&lt;br /&gt;
|date=2010-06-19&lt;br /&gt;
|work=N}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[http://deephorizonindustries.com/Gas_Giant_Skimming.html Deep Horizon - Gas Giants Skimming] allows to skim gas giants to refuel a ship or mine them for rare minerals&lt;br /&gt;
|aut=Cdr. Cheyd&lt;br /&gt;
|date=2010-07-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://deephorizonindustries.com/Lights_Down.html Deep Horizon - Lights Down] lowers ambient light within system to give more natural feel to planets and ships&lt;br /&gt;
|aut=Cdr. Cheyd&lt;br /&gt;
|date=2010-07-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://deephorizonindustries.com/Nav_Buoy.html Deep Horizon - Nav Buoy 1.0] replaces Witchpoint, Station, and other Nav Buoys with a new model.&lt;br /&gt;
|aut=Cdr. Cheyd&lt;br /&gt;
|date=2011-07-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[http://deephorizonindustries.com/Pirate_Ambushes.html Deep Horizon - Pirate Ambushes] adds pirates that ambush the player upon exit from witchspace&lt;br /&gt;
|aut=Cdr. Cheyd&lt;br /&gt;
|date=2010-07-06&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://deephorizonindustries.com/DH-Systems.html Deep Horizon - Systems] textures the main planet of a system as well as adding moons and additional planets&lt;br /&gt;
|aut=Cdr. Cheyd&lt;br /&gt;
|date=2010-07-06&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Deep Space Dredger]] adds dockable Space Dredgers, defended by [[Sabre]] fighters, and a missile to salvage derelict ships&lt;br /&gt;
|aut=Sabre&lt;br /&gt;
|date=2011-01-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[DeepSpacePirates|Deep Space Pirates]] adds pirates and asteroids outside the space lanes&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2010-01-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Deepspace Ships#Deepspace HUDs|Deepspace HUD]] is an alternative HUD with two versions&lt;br /&gt;
|aut=DeepSpace&lt;br /&gt;
|date=2010-02-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Deepspace Ships]] replaces the default ships with new textures&lt;br /&gt;
|aut=DeepSpace&lt;br /&gt;
|date=2010-02-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Deposed OXP|Deposed]] is a series of missions set in Galaxy 4 for an experienced Commander&lt;br /&gt;
|aut=Cdr. Wombat&lt;br /&gt;
|con=Commander McLane, Eric Walch&lt;br /&gt;
|date=2009-03-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Systems&lt;br /&gt;
|desc=[[Dictators OXP|Dictators]] adds a range of ships and stations to each dictatorship and offers new trading opportunities to players&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2010-06-19&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Diso OXP|Diso]] adds extra planets and stations to the Diso system in Galaxy 1&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2010-11-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Display reputation OXP|Display Reputation]] lets you know your current reputations in the passenger ferrying and the cargo contract market&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2010-03-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Oolite Docking Clearance Protocol (v1.72 or later)|Docking Clearance]] enables the docking clearance protocol for all stations&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2008-12-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Griff Industries|Dodo Stations]] adds new textures for Dodecahedron stations&lt;br /&gt;
|aut=Griff, CaptKev&lt;br /&gt;
|date=2010-05-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Dr HUD OXP|Dr HUD]] is an alternative HUD&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2006-12-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Dragon|Dragon Assault Craft]] adds a heavy combat ship, and the Military Smart Missile, an improved hard head&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2008-11-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Dragon#Download|Dragon Military Missile]] adds an enhanced hardhead, seeks priority targets when ECM'd&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2008-11-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.mediafire.com/?rllzzcbkwgm Dragonfly/Firefly S.T] adds [[Dragonfly S.T]] &amp;amp; much faster [[Firefly S.T]]. Ideal small fast ships for pirates or bounty hunters&lt;br /&gt;
|aut=Rustybolts&lt;br /&gt;
|date=2009-10-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Eagle Mk II]] adds the cheap Eagle Mk II escort vessel in several different versions, including an enhanced SE&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|date=2006-03-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[ADCK%27s Eagles|Eagles Mk I to IV]] adds four Eagle Long Range Fighters to the game&lt;br /&gt;
|aut=ADCK&lt;br /&gt;
|date=2010-04-07&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Energy Equipment OXP|Energy Equipment]] adds a pylon-mounted automatically triggered top-up for when the juice runs low&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-03-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Escort Contracts OXP|Escort Contracts 1.2]] allows players to enter into short-term escort contracts with NPC lone wolf traders&lt;br /&gt;
|aut=Capt Murphy&lt;br /&gt;
|date=2011-07-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[ETT Homing Beacon]] marks a position in space by deploying a pylon-mounted beacon&lt;br /&gt;
|aut=Twisted&lt;br /&gt;
|con=Lone_Wolf&lt;br /&gt;
|date=2011-04-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Executive SpaceWays]] adds [[Delta Long-Range Escort|Delta]]/[[Gemini Escort|Gemini]] Escorts, [[Starseeker Personal Shuttle|Starseeker]]/[[Trident Executive Shuttle|Trident Exec]] Shuttles, [[Strelka Cruise Liner]]s&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2010-06-19&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.box.net/shared/moreq536ht#/shared/moreq536ht/1/71484311/786362645/1 Extra Thargoids] adds 2 types of Thargoid ships, each of which packs surprises. Replaces the 'Poet' Frigate OXP&lt;br /&gt;
|aut=UK_Eliter&lt;br /&gt;
|date=2011-07-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Systems&lt;br /&gt;
|desc=[[Factions OXP|Factions]] from anarchy, feudal, dictatorship &amp;amp; communist systems meet in multi-government systems and start fighting&lt;br /&gt;
|aut= m4r35n357&lt;br /&gt;
|date=2011-06-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Famous Planets OXP|Famous Planets]] adds unique textures, new descriptions, and theme tunes for many planets in G1 and G2&lt;br /&gt;
|aut=pagroove&lt;br /&gt;
|con=Cdr. Cheyd, Stromboli, Pangloss, CaptKev, Drew Wagar, Thargoid, Svengali, Lestradae, UK Eliter&lt;br /&gt;
|date=2010-09-30&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Famous Planets Liners OXP|Famous Planets Liners]] adds Spaceway Liners on the 4 spaceways from Lave to Zadies&lt;br /&gt;
|aut=pagroove&lt;br /&gt;
|con=Ramirez, Presti70, Thargoid&lt;br /&gt;
|date=2009-03-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Far Arm ships|Far Arm Ships]] adds [[Far Arm Sunracer|Sunracer]]s, [[Far Arm Scow|Scow]]s, [[Far Arm Tanker|Tanker]]s, [[Far Arm Corsair|Corsair]]s, [[Far Arm Dart|Dart]]s, [[Far Arm Hunter|Hunter]]s, [[Far Arm Cruiser|Cruiser]]s, [[Far Arm Titan|Titan]]s, [[Far Arm Manchi Vulture|Vulture]]s, and [[Far Arm Manchi Wasp|Wasp]]s&lt;br /&gt;
|aut=Zieman&lt;br /&gt;
|date=2010-10-02&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Far Star Murderer]] adds a mid-range fighter / trader, with a fair sized cargo bay&lt;br /&gt;
|aut=8-Bit Apocalypse&lt;br /&gt;
|date=2005-01-01&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://www.box.net/shared/d57y0uip74 Far Sun] places suns further away from the planet than standard Oolite&lt;br /&gt;
|aut=Kaks&lt;br /&gt;
|date=2010-05-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.box.net/shared/moreq536ht Fer de Lance 3G] adds player &amp;amp; NPC Fer de Lance versions with custom paint jobs &amp;amp; altered specs. New bug fixes&lt;br /&gt;
|aut=UK_Eliter&lt;br /&gt;
|date=2011-07-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Fer de Lance NG]] adds a more powerful version of the Fer de Lance with several custom paint jobs&lt;br /&gt;
|aut=alien&lt;br /&gt;
|date=2005-03-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Ferdepai]] adds a new fighter / trader to Galaxy 2&lt;br /&gt;
|aut=johnsmith&lt;br /&gt;
|date=2006-12-17&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Systems&lt;br /&gt;
|desc=[[Feudal States]] adds the [[Jäger]], the [[Korvette]], the [[Zerstörer]], a [[Royal Hunting Lodge]] and other elements to feudal systems&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2011-05-30&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Fighter HUD (Oolite)|Fighter HUD]] is an alternative HUD&lt;br /&gt;
|aut=CaptKev&lt;br /&gt;
|date=2008-05-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Firewasp]] adds a fast interceptor&lt;br /&gt;
|aut=Draco_Caeles&lt;br /&gt;
|date=2006-05-10&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Fireworks OXP|Fireworks]] allows you a joyful celebration of whatever it is you want to celebrate&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-05-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Flight Log OXP|Flight Log]] adds a log of the last 10 systems visited&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-01-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Flying Dutchman OXP|Flying Dutchman]] adds the small chance to meet a Ghost Ship in the Ooniverse&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|con=Griff&lt;br /&gt;
|date=2011-04-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[[Freaky Thargoids OXP|Freaky Thargoids]] is a shader demonstration for Oolite&lt;br /&gt;
|aut=Ahruman&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2011-02-03&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Free Trade Zone]] adds an independent trading post of dubious legality to Multi-Government systems&lt;br /&gt;
|aut=Disembodied&lt;br /&gt;
|con=Commander McLane&lt;br /&gt;
|date=2010-10-08&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Frog Space Rickshaw]] adds a chatty space taxi service to the safer systems&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2006-01-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Fuel Collector OXP|Fuel Collector]] scoops fuel from killed ships and collects fuel while cruising, even in witch space&lt;br /&gt;
|aut=Frame&lt;br /&gt;
|con=Commander McLane&lt;br /&gt;
|date=2011-07-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Fuel Station OXP|Fuel Station]] adds fly-thru Fuel Stations and Fuel Satellites near the witchpoint and along route one&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-06-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Fuel Tank]] v2.2 mounts in place of a missile, to top up 3 light years of fuel&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2008-05-31&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Furball OXP|Furball]] adds barroom brawls that've got out of hand. Furious fugitives flee from pissed off police on the station's doorstep&lt;br /&gt;
|aut=Caracal&lt;br /&gt;
|con=m4r35n357&lt;br /&gt;
|date=2011-06-06&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Systems&lt;br /&gt;
|desc=[[Galactic Navy OXP|Galactic Navy]] adds more ships and stations to the arsenal of the Galactic Navy. Allows to join the Navy Reserves&lt;br /&gt;
|aut=Nemoricus&lt;br /&gt;
|date=2010-12-30&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[GalDrivePod]] A portable Galactic Hyperdrive unit, allowing you to complete the &amp;quot;Lost Worlds Grand Tour&amp;quot;&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2011-03-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://www.boxcn.net/shared/5dqx22u06i Galaxy Info] helps you search for systems by criteria you select and will try to locate the nearest one&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-04-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Gates OXP|Gates]] ads short-cut jump gates to suitable systems, speeding journeys between the main station and witchpoint&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-04-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Generation Ships OXP|Generation Ships]] adds encounters with the mythical Generation Ships from time to time&lt;br /&gt;
|aut=Draco_Caeles&lt;br /&gt;
|con=Commander McLane&lt;br /&gt;
|date=2011-04-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Globe station|Globe Station]] is a new type of stations that appears in advanced systems&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|con=Svengali&lt;br /&gt;
|date=2009-10-22&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Greek Ships OXP|Greek Ships]] adds [[Penelope Class Freighter]]s, [[Telemachus Class Escort]]s, and [[Ulysses Class Interceptor]]s&lt;br /&gt;
|aut=8-Bit Apocalypse&lt;br /&gt;
|date=2005-07-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Griff ArcElite|Griff's ArcElite]] adds versions of native Oolite ships textured &amp;amp; shaded to resemble the Acorn Archimedes version of Elite&lt;br /&gt;
|aut=Griff&lt;br /&gt;
|date=2008-09-29&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Griff Boa]] contains the famous Griff Boa&lt;br /&gt;
|aut=Griff&lt;br /&gt;
|date=2010-06-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://www.boxcn.net/shared/k2lvh3enuy Griff's Explosion Debris] adds new alloy &amp;amp; debris models to exploding ships&lt;br /&gt;
|aut=Griff&lt;br /&gt;
|con=Thargoid&lt;br /&gt;
|date=2009-02-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Griff Krait]] adds a heavily modified Krait, similar in design to the Griff Boa&lt;br /&gt;
|aut=Griff&lt;br /&gt;
|date=2010-06-17&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Griff Industries|Griff's Normalmapped Ships]] adds some of the best looking ships, stations, and flotsam available in Oolite&lt;br /&gt;
|aut=Griff&lt;br /&gt;
|date=2011-04-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Griffin Two (Oolite)|Griffin Two]] adds the Griffin Mk II from Frontier&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2005-10-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Gritty Coriolis OXP|Gritty Coriolis]] alternates the Coriolis stations with two elaborate gritty Corioli&lt;br /&gt;
|aut=xaotik&lt;br /&gt;
|date=2006-02-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://wiki.alioth.net/images/2/2d/G-HUD_Mk2.oxp.zip G-HUD Mk2] adds an alternative HUD&lt;br /&gt;
|aut=Gunney Plym&lt;br /&gt;
|date=2008-07-08&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Halsis]] features a female cockpit voice, sometimes called Hal's Hot Sister&lt;br /&gt;
|aut=Ovvldc&lt;br /&gt;
|date=2006-08-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[BoyRacer|Hatchling BoyRacers]] adds the  talkative (and often insulting) [[BoyRacer]]s to more advanced systems&lt;br /&gt;
|date=2006-01-13&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Staer9 haulerp30|Hauler P30]] is a very large cargo ship made by Staer9 Industries&lt;br /&gt;
|date=2011-05-11&lt;br /&gt;
|aut=Staer9&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Hawksound]] features a quality female computer voice, new weapon, damage and some station interface sounds&lt;br /&gt;
|aut=Hawkstrom&lt;br /&gt;
|date=2008-11-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Herald Military Gunboat|Herald]] adds the [[Herald Military Gunboat]], a powerful police and Navy interceptor&lt;br /&gt;
||aut=Flying_Circus&lt;br /&gt;
|date=2005-01-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Hired Guns OXP|Hired Guns]] adds escort ships that can be contracted to accompany you on your next journey&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-02-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Hognose|Hognose Tugships]] adds the [[Hognose]], a chatty tug ship that can be seen towing broken down ships&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|con=Jonnycuba&lt;br /&gt;
|date=2006-03-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[HoOpy Casino]]s appear near the station in advanced systems. You can win or lose credits in games of chance&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2010-06-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Hotrods OXP|Hotrods]] adds custom paint jobs to classic Elite ships, racing vehicles, and a space gang that doesn't like the player&lt;br /&gt;
|aut=Kaks&lt;br /&gt;
|con=Arexack_Heretic, Murgh&lt;br /&gt;
|date=2009-03-16&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[HyperCargo OXP|HyperCargo]] adds an extended and expanded cargo handling system&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-09-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Hyperradio js OXP|Hyperradio]] is an expandable music-player&lt;br /&gt;
|aut=Svengali&lt;br /&gt;
|date=2011-02-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Icarus (Oolite)|Icarus]] adds a small fighter / trader based on blueprints from the lost Solice system&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|date=2007-07-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Illegal_Goods_Tweak_OXP|Illegal Goods Tweak 1.4]] adds interactions with Galcop customs on docking at a main station with Contraband in the hold&lt;br /&gt;
|aut=Capt. Murphy&lt;br /&gt;
|date=2011-06-17&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Illicit Unlock OXP|Illicit Unlock]] allows the player to fly all the classic Elite ships&lt;br /&gt;
|aut=tgape&lt;br /&gt;
|date=2005-10-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Griff_Industries#Related_OXP's_by_Other_Authors|Illicit Unlock - Griff Version]] allows the player to fly [[Griff Industries#Griff's Normalmapped Ships OXP|Griff's]] pirate/viper Ships&lt;br /&gt;
|aut=ADCK&lt;br /&gt;
|con=dertien&lt;br /&gt;
|date=2011-02-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[I_Missile|I_Missile]] Very fast, very destructive weapon at an affordable price&lt;br /&gt;
|aut=CaptSolo&lt;br /&gt;
|date=2011-07-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Imperial Courier (Oolite)|Imperial Courier]] adds the powerful Imperial Courier from Frontier, constructed by [[Seldar Shipyards]]&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|con=Commander McLane&lt;br /&gt;
|date=2007-06-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Imperial Trader (Oolite)|Imperial Trader]] adds the powerful Imperial Trader from Frontier&lt;br /&gt;
|aut=ADCK&lt;br /&gt;
|date=2010-06-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Interstellar help OXP|Interstellar Help]] allows you to help out traders who got stuck in interstellar space without fuel&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-03-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Ionics OXP|Ionics]] adds a series of missions featuring the Ionics Company of Zaria, the Ramaza Liberation Front and The Link&lt;br /&gt;
|aut=Galileo&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2010-08-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[IronHide OXP|IronHide]] introduces the new range of IronHide ship armour from the Aquarian Shipbuilding Corporation&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-02-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Iron Raven]] is a multi-stage mission to investigate a dangerous conspiracy on behalf of GalCop High Command&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2011-04-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Ixian Ships|Ixian Military Ships]] adds Ixian [[Ixian Battle Cruiser|Battle Cruiser]]s, [[Ixian Bezerka|Bezerka]]s, [[Ixian Gunship|Gunship]]s and [[Ixian No-Ship Mark I|No-Ship]]s from Dune&lt;br /&gt;
|aut=8-Bit Apocalypse&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2009-03-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Ixian Ships#Ixian Freighter|Ixian Freighter]] adds a civilian freighter to the universe&lt;br /&gt;
|aut=8-Bit Apocalypse&lt;br /&gt;
|date=2005-01-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Jabberwocky]] adds the powerful Jabberwocky fighter / trader&lt;br /&gt;
|aut=Flying_Circus&lt;br /&gt;
|date=2006-03-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[JellyBaby Dispenser]] adds a handy Jellybaby Dispenser for your cockpit&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2011-03-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Kestrel &amp;amp; Falcon OXP|Kestrel &amp;amp; Falcon]] adds buyable Star Wars style [[Falcon_%28Oolite%29|Falcon]] for pirates/traders and the [[Kestrel]], a police/navy interceptor&lt;br /&gt;
|aut=Charlie&lt;br /&gt;
|con=Kaks&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Killer_Wolf's_Dynamic_HUD|Killer Wolf's Dynamic HUD]] adds a version of the dynamic HUD first seen in Killer Wolf's Werewolf ships, to all ships&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|con=Thargoid&lt;br /&gt;
|date=2010-07-08&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Killit_OXP|Killit]] adds a bunch of insane super weapons&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-05-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Kirin]] adds a heavy military hauler, CV &amp;amp; XM versions used by both pirates &amp;amp; traders&lt;br /&gt;
|aut=ClymAngus&lt;br /&gt;
|con=Cdr. Wyvern&lt;br /&gt;
|date=2009-09-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Klepto-HUD OXP|Klepto-HUD]] is a different take on a HUD with precise crosshairs&lt;br /&gt;
|aut=Kleptoid&lt;br /&gt;
|date=2006-03-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://sancho.dk/oolite/lane_legal.zip ''Lane Legal Racers''] adds NPC versions of [[Krait]]s, [[Mamba]]s, and [[Sidewinder]]s from different [[Racers#Listing_of_sponsored_teams|racing teams]]&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-09-27&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Lave OXP|Lave]] is a system make-over for Lave, adding all features described in The Dark Wheel novella included with original Elite&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2009-12-31&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Lave Academy OXP|Lave Academy]] adds Lave Academy Station above Lave &amp;amp; other planets, with 3 mini-games to test Commanders' skills&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-06-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[http://www.boxcn.net/shared/9q1cbydgan LinkG7] is a mission in Galaxy 7&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-02-16&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Llama]] adds the Llama fighter / trader. Updated from the version of Oosat1 to fix a small bug&lt;br /&gt;
|aut=Flying_Circus&lt;br /&gt;
|date=2006-02-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://www.boxcn.net/shared/jtpt2vlol5 Long Range Target Scanner] shows all ships currently in your system and allows to target them&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-05-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[LongWay_OXP|Long Way Around]] adds a transport mission well suited to the novice in Galaxy 1&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2009-04-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Longshot]] adds the Longshot fighter / trader, regarded by many as a cheaper alternative to the Cobra Mk III&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Lovecats.oxp|Lovecats]] is a mission about love &amp;amp; betrayal amongst the feline races of Galaxy 4. Fast ship &amp;amp; hard heart required!&lt;br /&gt;
|aut=johnsmith&lt;br /&gt;
|date=2010-01-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Second-hand ships|M-Pack (rusties)]] adds rusty banger versions of all Classic Elite ships in poor condition but still can haul cargo&lt;br /&gt;
|aut=murgh&lt;br /&gt;
|date=2006-01-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Manta]] adds the Manta light escort craft&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Marett Space Corporation OXP|Marett Space Corporation]] releases [[Adder Mk II]], [[Mosquito Trader]], [[Mosquito Sport]], new fighters / medium traders&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://www.crimsonforge.co.uk/cloister/MedusaHud.oxp.zip Medusa HUD] is an alternative HUD&lt;br /&gt;
|aut=ClymAngus&lt;br /&gt;
|date=2009-01-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Mega-Walnut Dashboard OXP|Mega-Walnut Dashboard]] is a generic version of the fabled Fer de Lance HUD&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2005-07-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Merlin_(Oolite)|Merlin]] Ships are interceptors used by the Police &amp;amp; Navy, but also available on the open market&lt;br /&gt;
|aut=Charlie&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[MildAudio]] Sound Set&lt;br /&gt;
|aut=xaotik&lt;br /&gt;
|date=2006-02-15&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Military_Fiasco|Military Fiasco]] adds a navy mission for Commanders with &amp;gt; 1,000 kills. Also equips Navy with powerful cruisers&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2011-01-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Military station|Military Station]] adds well armed Military Stations to the more advanced systems&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Military Stingray Mk. II|Military Stingray]] adds an ex-military ship that may show up in pirate hands or for the player to buy&lt;br /&gt;
|aut=CaptKev&lt;br /&gt;
|date=2007-03-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Milspec HUD|Milspec HUD]] is an alternative HUD with targeting aids and an emphasis on functionality&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2010-07-08&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Misjump_Analyser|Misjump Analyser]] scans witchspace &amp;amp; on detection of disturbances sounds an alarm &amp;amp; logs location of disturbance&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2010-05-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?p=135619#p135619 Misjump Inducer] can turn on/off misjumps on demand&lt;br /&gt;
|aut=Switeck&lt;br /&gt;
|date=2011-04-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Missile_Analyser|Missile Analyser]] scans incoming missiles &amp;amp; sets target to incoming missile when it is no standard missile&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2010-05-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Missiles_and_Bombs|Missiles &amp;amp; Bombs]] adds a wide variety of missiles &amp;amp; bombs that are are available to player &amp;amp; NPCs alike&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2009-12-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Missionaries OXP|Missionaries]] adds clerics of four faiths who spam Commanders with requests to worship their Gods&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Moccasin]] adds light escort craft from Xeceesian Shipyards modeled after ArcElite core ship&lt;br /&gt;
|aut=CaptSolo&lt;br /&gt;
|date=2011-06-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Mod-HUD]] is a slight modification / re-organization of the standard Oolite HUD without surround boxes&lt;br /&gt;
|aut=CaptSolo&lt;br /&gt;
|date=2011-05-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/monument.zip Monument] sometimes adds a monument to famous Commanders close to the Sun&lt;br /&gt;
|aut=dajt&lt;br /&gt;
|date=2005-05-28&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Morrigan]] adds a vast trade ship to the Universe&lt;br /&gt;
|aut=Flying_Circus&lt;br /&gt;
|date=2009-12-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Oosounds2_OXP|''Murgh's Replacement Sounds'']] contains 10 new sounds&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2005-08-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Murgh_Xships OXP|Murgh's X-Ships]] adds [[Bandy-Bandy]], [[Chuckwalla]], [[Eel Rapier]], [[Taipan]] (fast courier craft &amp;amp; 2 light escort ships)&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2009-09-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[NavalGrid OXP|Naval Grid]] enhances recharging rates by linking the naval energy unit to military-boosted shields&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-03-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Neolite Ships]] is an Oolite ships replacement set&lt;br /&gt;
|aut=SimonB&lt;br /&gt;
|date=2009-07-11&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/newships.oxp.zip ''New Ships''] adds [[Hamadryad]], [[Josher]], [[Naga]], [[Ringhals]] (mining and trade ships from previous versions of Elite)&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2006-05-15&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/hud_ng.oxp.zip NG HUD] is an alternate HUD. All standard functions, but with a personal view&lt;br /&gt;
|aut=alien&lt;br /&gt;
|date=2005-03-06&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[NPC-shields OXP|NPC-shields]] gives shields to NPCs, together with a nice glow effect&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-04-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://wiki.alioth.net/index.php/Numeric_Style_HUDs Numeric Style HUDs] New invention/numeric gauges.[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9977 Info]&lt;br /&gt;
|aut=CommonSenseOTB&lt;br /&gt;
|date=2011-06-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/nuvipers.zip Nu Vipers] increases the types of Viper patrol ships with [[GalCop Viper Mark II]], [[GalCop Viper Cruiser]]&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Nukes.oxp|Nuclear Torpedos]] adds some powerful, but slow moving, missiles&lt;br /&gt;
|aut=E. Walch, Cdr. Wyvern&lt;br /&gt;
|date=2010-06-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Offender traders OXP|Offender Traders]] makes some traders into offenders/fugitives&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-04-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Old Ships]] adds Elite-A [[Bushmaster Miner]]s, [[Cat (Oolite)|Cat]]s, [[Chameleon (Oolite)|Chameleon]]s, [[Ghavial (Oolite)|Ghavial]]s, [[Iguana (Oolite)|Iguana]]s, [[Monitor (Oolite)|Monitor]]s, [[Ophidian (Oolite)|Ophidian]]s, [[Salamander (Oolite)|Salamander]]s&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2006-08-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Old Ships 2010]] is a retextured version of [[Old Ships]], adding the bonus Monitor 2 ship&lt;br /&gt;
|aut=pagroove&lt;br /&gt;
|con=Murgh, ADCK, Simon B, Lestradae&lt;br /&gt;
|date=2011-02-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Oo-Haul]] adds vast bulk [[L-Crate Hauler]]s to the space lanes and offers missions at [[Your Ad Here!|constores]] to safely escort them&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|con=Eric Walch, Ark&lt;br /&gt;
|date=2009-02-21&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[ooCheat_OXP|ooCheat]] adds a cheat menu to the game&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-02-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[http://www.box.net/shared/rrlm77ztzm Oolite en français] is a French Oolite localization&lt;br /&gt;
|aut=Pierre-Olivier&lt;br /&gt;
|date=2009-07-12}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[http://marc-schaffer.ch/data/OoliteGerman_V0.3.zip Oolite auf Deutsch] is a German Oolite localization&lt;br /&gt;
|aut=SwissMäc&lt;br /&gt;
|date=2009-06-02&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[http://www.box.net/shared/p3engis1ds Oolite Italiano] is an Italian Oolite localization&lt;br /&gt;
|aut=another_commander&lt;br /&gt;
|date=2010-06-15&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=Oolite in Russian: [http://www.roolite.org Roolite.org] provides localizations of Oolite 1.74.2 and some OXPs. Also check [http://www.elite-games.ru/conference/viewtopic.php?t=48476&amp;amp;start=0 Elite Games]&lt;br /&gt;
|aut=Seventh&lt;br /&gt;
|date=2009-03-26&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://www.box.net/shared/x9u5xoulkq Orbits] positions planets on orbits around the sun&lt;br /&gt;
|date=2010-07-01&lt;br /&gt;
|aut=Ebi&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Ore Processor]] extracts valuable materials from asteroid fragments when mounted to a ship's fuel scoop&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|con=Ark, Kaks, Eric Walch&lt;br /&gt;
|date=2011-01-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Orisis]] BigTraders are new passenger liners that ferry passengers around&lt;br /&gt;
|aut=pagroove&lt;br /&gt;
|con=ADCK, Thargoid&lt;br /&gt;
|date=2010-01-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Outrider (Oolite)|Outrider]] is a medium fighter produced by the [[Taranis Corporation HQ (Oolite)|Taranis Corporation]]&lt;br /&gt;
|aut=Roberto&lt;br /&gt;
|date=2006-08-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[[OXPConfig]] provides means to configure supported OXPs, to recognize errors, or to avoid clashes&lt;br /&gt;
|aut=Svengali&lt;br /&gt;
|date=2011-07-16&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[P.A. Groove Stations OXP|P.A. Groove Stations]] adds lots of different types of Coriolis and Dodec Stations&lt;br /&gt;
|aut=pagroove&lt;br /&gt;
|con=Griff, Commander McLane&lt;br /&gt;
|date=2010-04-16&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Pallas]] adds a fast but lightly shielded fighter.&lt;br /&gt;
|aut=Charlie&lt;br /&gt;
|con=Svengali&lt;br /&gt;
|date=2010-12-02&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Pelamis]] adds the Pelamis trade ship&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2006-04-24&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Phoenix]] is a strange ship, built from salvaged parts from various Serpent Class ships&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2007-01-17&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://wiki.alioth.net/index.php/Pie_Chart_Style_HUDs Pie Chart Style HUDs] New invention=&amp;gt;pie gauges.[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9788 Info]&lt;br /&gt;
|aut=CommonSenseOTB&lt;br /&gt;
|date=2011-05-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Pirate Coves OXP|Pirate Coves]] adds rock hermits that have been taken over by pirates in more dangerous systems&lt;br /&gt;
|aut=lazygun&lt;br /&gt;
|date=2011-07-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/piratetraps.oxp.zip Pirate Traps] are dummy traders which transmit details of pirates firing on them to the police&lt;br /&gt;
|aut=popsch&lt;br /&gt;
|date=2006-01-04&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Planetfall_OXP|Planetfall]] allows the player to land on and trade at the planets and moons of each system&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-04-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Pods_OXP|Pods]] adds fuel, missile, bulk &amp;amp; empty cargo pods and pods which jam, explode, have trumbles or take a few scoops&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-03-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Police_IFF_Scanner_Upgrade|Police IFF Scanner Upgrade]] highlights offender and fugitive ships with custom IFF scanner colours&lt;br /&gt;
|aut=Capt. Murphy&lt;br /&gt;
|date=2011-06-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Pteradyne Technologies Ships OXP|Pteradyne Technologies Ships]] adds the [[Excalibur]], a buyable combat ship and the [[Paladin]], a military version&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2006-12-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://www.boxcn.net/shared/xccp8ml5cq Pylon Based Equipment Remover] allows to remove a selected piece of equipment from your pylons&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-04-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Python Class Cruiser]] is a large powerful trade ship, which can also hold its own in battle&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2007-07-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/racers.oxp.zip Racers] adds [[Chicaneer Mk II]], [[Chicaneer Mk IV]], [[Dragster Mk I]], and [[Dragster Mk II]] racing ships&lt;br /&gt;
|aut=murgh&lt;br /&gt;
|date=2006-01-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Railgun OXP|Railgun]] introduces a revolutionary new weapons system to the Ooniverse&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-05-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Ramon's Anaconda]] is a fantastic re-imagining of the Anaconda freighter. Check out its special features&lt;br /&gt;
|aut=Ramon&lt;br /&gt;
|con=Griff&lt;br /&gt;
|date=2009-04-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Random_Docking_Music_OXP|Random Docking Music]] plays a random music track from a pre-set list on activating docking computers&lt;br /&gt;
|aut=Frame&lt;br /&gt;
|date=2010-05-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Random Hits OXP|Random Hits]] adds [[Space Bar|seedy space bars]] to anarchy systems that offer large bounties on the galaxy's Most Wanted Criminals&lt;br /&gt;
|aut=LittleBear&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2011-03-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://terrastorage.ath.cx/Marmagka/e8e9ce360da6bb40f5952cbe00f02501/RedSet.zip RedSet] contains red-themed backgrounds for the UI screens&lt;br /&gt;
|aut=another_commander&lt;br /&gt;
|date=2010-06-18&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.purgatori.net/reduxedvamps.htm Reduxed Vampires] adds reworked versions of the Vampire Mk I and Mk II and a Reaper &amp;quot;Gold Edition&amp;quot;&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2010-10-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[RegistrationID|Registration ID]] adds ID tags to all Oolite standard ships&lt;br /&gt;
|aut=Frame&lt;br /&gt;
|date=2010-02-28&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Remorse_Of_Conscience_v2|Remorse Of Conscience]] is a trade ship with a large hold, that can hold its own in combat&lt;br /&gt;
|aut=8-bit Apocalypse&lt;br /&gt;
|date=2005-02-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Renegade Pirates OXP|Renegade Pirates]] adds rare, very well-armed, high bounty pirate versions of Classic Elite ships&lt;br /&gt;
|aut=LittleBear&lt;br /&gt;
|con=Aegidian, Griff&lt;br /&gt;
|date=2006-12-03&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/RVandGS.zip Renegade Viper + Grass Snake] adds [[Renegade Viper|stolen Vipers]] which earn large bounties &amp;amp; [[Grass Snake]], a large pirate trade ship&lt;br /&gt;
|aut=8-bit Apocalypse&lt;br /&gt;
|date=2004-11-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Repair_Bots_OXP|Repair 'Bots]] adds a pylon mounted canister of repair nanobots which attempt to fix damaged equipment in mid-flight&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-02-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Ring_Racer_OXP|Ring Racer]] adds the Corporate Systems Ring Racing League to Galaxy 1&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-04-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Rock Hermit Locator]] adds equipment to locate Rock Hermits&lt;br /&gt;
|aut=Frame&lt;br /&gt;
|date=2011-03-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Saleza Aeronautics]] adds [[Bellatrix Cruiser]]s, [[Rigel Bomber|Rigel Tactical Bomber]]s, and [[Saiph Interceptor]]s to high tech corporate systems&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2010-10-24&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Santa]] adds very rare Santa Sledge to space lanes escorted by plasma gun toting reindeer space bikers!&lt;br /&gt;
|aut=Griff&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2010-05-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.purgatori.net/scorpius.htm Scorpius] adds a heavily armoured private trading and transport vessel, protected by Vampire escorts&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|con=Griff&lt;br /&gt;
|date=2011-02-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Scourge of the Black Baron]] features combat &amp;amp; transport Galaxy 1 missions&lt;br /&gt;
|aut=Rxke&lt;br /&gt;
|con=Kaks, Thargoid&lt;br /&gt;
|date=2010-08-07&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Scout]] is a cheap but good looking ship from Staer9 that shares a lot of technology with the [[Xeikil]]&lt;br /&gt;
|aut=Staer9&lt;br /&gt;
|date=2011-05-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Second Wave OXP|Second Wave]] adds variants of Thargoid Warship, Thargon Robot Fighter and alien ships&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-06-06&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Selezen's S-Ships]] adds [[GalCop SWAT Viper]]s and [[Oresrian Trader]]s&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|date=2007-07-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Sell equipment OXP|Sell Equipment]] allows for small fee, resale of equipment at 60% price at suitable tech level world&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-02-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[[Shady Cobra OXP|Shady Cobra]] adds shader effects to Cobra Mk III&lt;br /&gt;
|aut=Ahruman&lt;br /&gt;
|date=2007-07-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Shady Sungs]] adds replacement textures for all Classic Elite Ships&lt;br /&gt;
|aut=Sung, ADCK&lt;br /&gt;
|date=2010-05-21&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://wiki.alioth.net/index.php/Shield_Equalizer_%26_Capacitors_OXP Shield Equalizer] balances shield energy automatically. [http://wiki.alioth.net/index.php/Shield_Equalizer_%26_Capacitors_OXP Capacitors] store unused shield energy for use later&lt;br /&gt;
|aut=CommonSenseOTB&lt;br /&gt;
|date=2011-05-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Skrounk All-Stars Limited]] adds [[All Stars Large Freighter|Large Freighter]], [[Seymour Class Sled]], [[Starbelly Class Sled]], [[Starhawk]] &amp;amp; [[Starwolf_Mark_I|Starwolf Mk I]]&lt;br /&gt;
|aut=goji62&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Smivs%27_ShipSet|Smiv's Shipset 3.0]] re-textures the standard Oolite ships beautifully with a realistic look &amp;amp; non-shader lighting effects&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2010-12-08&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Snark]] is a powerful fighter/trader, often used by pirates and bounty hunters&lt;br /&gt;
|aut=Flying_Circus&lt;br /&gt;
|date=2006-06-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=10515 Sniper Sight] is equipment to help with long distance targeting.&lt;br /&gt;
|aut=Wildeblood&lt;br /&gt;
|date=2011-07-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=10176 Sniper Scope MilHUD integrated] is an version of MilHUD with integrated Sniper Sight functionality&lt;br /&gt;
|aut=Wildeblood&lt;br /&gt;
|date=2011-06-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Snoopers]] adds the galactic news network channels&lt;br /&gt;
|aut=DaddyHoggy&lt;br /&gt;
|con=Disembodied, Drew, Svengali&lt;br /&gt;
|date=2011-05-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Solid Gold Cobra Mk.3]] is a limited edition Cobra Mk3 to celebrate its 25 years anniversary&lt;br /&gt;
|aut=ADCK&lt;br /&gt;
|date=2010-06-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[http://www.purgatori.net/Sothis.htm Sothis Space Station] is a station from [[Isis Interstellar]] with a compact design of comparable size to a standard Coriolis&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2010-08-08&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Spearhead Interceptor Mk.I]] is a pure fighter, fast &amp;amp; nippy but with weak shields, no cargo bay. Can be twitchy to fly&lt;br /&gt;
|aut=Randell&lt;br /&gt;
|date=2006-07-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[S.I.R.F.|Special Interstellar Repair Facilities]] offer different trading strategies &amp;amp; repair facilities on uncommon trading routes&lt;br /&gt;
|aut=Tinker&lt;br /&gt;
|date=2010-07-02&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.purgatori.net/spectres.htm Spectre] adds [[Isis Interstellar]]'s Vampire Mk V, a secret military vessel fighting Thargoids in witch space&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2011-01-16&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Spy Hunter OXP|Spy Hunter]] is a mission for Galactic Navy for Commander with rating of 'Dangerous' or above&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|date=2009-04-11&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Staer9 Spectre]] is a cheap small fighter with high maneuverability that flopped in the market&lt;br /&gt;
|aut=Staer9&lt;br /&gt;
|date=2011-05-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Star-Jelly]] Beautiful translucent organisms sometimes found in Asteroid fields.&lt;br /&gt;
|aut=Smivs,Staer9&lt;br /&gt;
|date=2011-05-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Star Wars Ships]] adds [[A-Wing]], [[B-Wing]], [[Lambda Shuttle]], [[Tie-Fighter]], [[Tie-Interceptor]], [[X-Wing]], [[Y-Wing]]&lt;br /&gt;
|aut=Azzameen&lt;br /&gt;
|date=2006-05-31&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Status Quo Q-bomb OXP|Status Quo Q-bomb]] changes the behaviour of Q-bombs according to the [[Status Quo]] novel&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-02-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[S.T.E]] is a step up from the Cobra III with improved trading capabilities and increased speed&lt;br /&gt;
|aut=Rustybolts&lt;br /&gt;
|date=2009-07-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Stealth OXP|Stealth]] is a small G3 mission showcasing new scanner capabilities &amp;amp; introducing stealth ships&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-03-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://www.purgatori.net/Steampunk%20HUD.htm Steampunk HUD] adds a steampunk style HUD by [[Isis Interstellar]]&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2010-01-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Stellar Serpents OXP|Stellar Serpents]] adds huge space-born serpent monsters which move from system to system and are good hunting prey&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-07-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[http://sancho.dk/oolite/sunskimmers.zip Sunskimmers] adds ships to the sun/planet corridor&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-08-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[SuperCobra]] is larger, faster with stronger hull than Cobra Mk III&lt;br /&gt;
|aut=8-Bit Apocalypse&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2010-10-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Superhub]] from GASEC is the first station that is capable of transporting itself to its destination&lt;br /&gt;
|aut=P.A. Groove&lt;br /&gt;
|date=2009-11-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Swift]] is a very fast ship often used by pirates or bounty hunters with limited cargo space &amp;amp; nominal shields&lt;br /&gt;
|aut=Charlie&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Switeck's Mod OXP|Switeck's Mod]] rebalances ships &amp;amp; market prices. Adds Medium, Hard, and Harder Jameson saves&lt;br /&gt;
|aut=Switeck&lt;br /&gt;
|date=2011-01-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[System Demux (Oolite)|System Demux]] textures home planet, adds planet/moon combination to systems&lt;br /&gt;
|aut=DrBeeb&lt;br /&gt;
|date=2010-07-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[System Redux (Oolite)|System Redux]] v1.2 textures home planet, adds planet/moon combination to systems&lt;br /&gt;
|aut=CaptKev&lt;br /&gt;
|date=2011-02-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://www.box.net/shared/r05ub873b5 TAF Reset] resets the Time Acceleration Factor (TAF) to 1.0 upon docking&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2009-09-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Taranis OXP|Taranis]] is a mission for law abiding Commanders with rating of Competent+. Adds [[Taranis Corporation HQ (Oolite)|Taranis Corporation HQ]]&lt;br /&gt;
|aut=Roberto&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2009-10-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Target_Autolock_OXP|Target Autolock]] updates [[Scanner Targeting Enhancement]] to auto-lock onto attacking ships&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-02-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Target Range OXP|Target Range]] is found in all rich systems with stable governments&lt;br /&gt;
|aut=Caracal&lt;br /&gt;
|date=2010-07-24&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Target Reticle]] updates [[Scanner Targeting Enhancement]] to turn reticle red when target centred&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2010-05-31&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Taxi Galactica]] adds a Taxi Service and a non player flyable taxi cab ship to systems&lt;br /&gt;
|aut=pleb87&lt;br /&gt;
|date=2008-06-12&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Teretrurus Mk.I]] is a medium fighter/trader somewhat faster &amp;amp; tougher than Cobra Mk III, but with smaller cargo bay&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2008-02-01&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Terrapin|Terrapin Trader]] is a medium fighter/trader. A good upgrade from Cobra Mk III&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2008-02-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Tesoura]] is a slow, but well shielded trade ship&lt;br /&gt;
|aut=Randall, Dr. Nil&lt;br /&gt;
|date=2008-02-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Thargoid Carrier]] arms Thargoids with capital carrier&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|date=2006-06-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Thargorn_Threat_oxp|Thargoid Threat]] adds [[Thargoid Terrorizer Frigate]], [[Thargoid Thargorn Battleship]], [[Thargoid Thorgon Cruiser]]&lt;br /&gt;
|aut=Arexack Heretic&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2011-02-03&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Thargoid Wars]] intensifies war with the Thargoids, featuring new attack and defense missions&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2011-07-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Tianve OXP|Tianve]] adds [[Navy Station]], as well as Visuals, including a pulsar, to the Galaxy 1 system of Tianve&lt;br /&gt;
|aut=Drew&lt;br /&gt;
|date=2009-12-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Tiger Mark I]] is a truly awesome (and very expensive) multi-role craft&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2006-05-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Tionisla Orbital Graveyard]] adds the famed graveyard to Tionisla, G1, as described in “The Dark Wheel” novella&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2011-02-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Tionisla Reporter]] adds a mission for a starting commander&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2011-07-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[TCAT OXP|To Catch a Thargoid]] is a G3 follow-up mission to Thargoid Plans, for Dangerous or Elite rank Commanders&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-12-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Torus station|Torus Station]] adds a vast 2001 style space station to very high tech level systems&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|con=Svengali&lt;br /&gt;
|date=2010-10-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Total patrol OXP|Total Patrol]] makes police ships patrol between planet, witchpoint &amp;amp; sun&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-03-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[ToughGuys|ToughGuys]] Adds 3 levels of increased toughness of 'Baddies', and gives a backdrop for an immersive storyline&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2011-02-16&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Trader Outpost (Oolite)|Trade Outpost]] adds Griff's trade outpost without ads&lt;br /&gt;
|aut=CaptKev, Griff, Ark&lt;br /&gt;
|date=2009-02-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Traffic_Control_OXP|Traffic Control]] personnel gives help with approach to and manual docking at all main stations&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-06-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Transhab station|Transhab Station]] adds a large station with rotating arms to some medium tech level systems&lt;br /&gt;
|aut=Draco_Caeles&lt;br /&gt;
|date=2006-06-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Transports]] adds [[CoachWhip]], [[Coral]], [[Woma]]&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|con=Eric Walch, Kaks&lt;br /&gt;
|date=2010-12-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://wiki.alioth.net/images/d/d9/TrekHud.zip Trek HUD] replaces your HUD with a Star Trek NG LCARS-style HUD&lt;br /&gt;
|aut=barabis&lt;br /&gt;
|date=2008-11-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Trident Down]] contains a series of Galaxy 4 missions investigating a vicious attack on a [[Executive SpaceWays|Trident Shuttle]]&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2010-12-31&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[UPS Courier]] offers Commanders transport of goods/documents &amp;amp; occasional combat missions&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2011-03-29&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Urutu Mark III &amp;amp; Urutu Mark IV]] are medium fighters/traders from Elite-A&lt;br /&gt;
|aut=Milinks&lt;br /&gt;
|date=2006-09-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Vampire]] adds the Purgatori Vampire series of combat ships&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2007-01-29&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Vampire - Diamondback]] adds the Diamondback Vampire series of combat ships&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2010-04-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Vampire - Dominatrix]] adds the Dominatrix Vampire series of combat ships&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2009-12-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Vector OXP|Vector]] is a unusual mission type - fast money, slavers, tricks and GalCop is watching you...&lt;br /&gt;
|aut=Svengali&lt;br /&gt;
|date=2011-02-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Velocity_OXP|Velocity]] is a fast fighter ship&lt;br /&gt;
|aut=Sabre&lt;br /&gt;
|date=2009-09-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.purgatori.net/Venom.oxp.zip Venom] adds [[Venom]]s in normal and renegade versions  from [[Isis Interstellar]]&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2009-12-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Vortex OXP|Vortex]] A new ex-military player ship. Rare, expensive and powerful - kitted out with advanced and unique features&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-03-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.purgatori.net/wasps.htm Wasps] adds formation flying wasps, queen wasps, and wasp nests&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|con=Thargoid, Ahruman, Eric Walch&lt;br /&gt;
|date=2010-08-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/weeviloid2.zip ''Weeviloid''] adds [[Weeviloid Hunter]]s, fearsome multi-gunned war ships and [[Weeviloid Scoutship]]s, light trade ships&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2006-05-11&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Welcome_Mat_OXP|Welcome Mat]] upgrades the comms systems to expand the information that is given on arrival in new system&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-06-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Werewolf]] from [[Isis Interstellar]] has 3 variants:  [[Werewolf|Werewolf ~ Damage Inc.]], [[Werewolf|Werewolf (Civilian)]] &amp;amp; [[Werewolf|Werewolf (Purgatori Model)]]&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2011-02-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Wolf_Mk.2_%28Oolite%29|Wolf Mk II]] adds the powerful Wolf Mk II, as seen in Elite-A&lt;br /&gt;
|aut=Ark&lt;br /&gt;
|date=2009-07-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://wiki.alioth.net/images/0/06/Wolfs_variants.zip Wolfwood's Variants] adds [[Asp_Mk.I|Asp Mk I]], [[Cobra Courier]], [[Cobra Rapier]], [[Drake]], [[Drake Mk II]] &amp;amp; [[Wolf Mk I]]&lt;br /&gt;
|aut=Wolfwood&lt;br /&gt;
|date=2008-02-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Wormhole restoration OXP|Wormhole Restoration]] adds a new way to leave interstellar space without using fuel, expanding on Thargoid backstory&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-05-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Xarik]] is an advanced aircraft, last creation of the late Prof. Eisel Xarik. Used by pirates, traders, and hunters&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2010-02-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Xeikil]] adds a player, a GalCop interceptor, and 24 pirate variants of Staer9 Industries' current top fighter&lt;br /&gt;
|aut=Staer9&lt;br /&gt;
|date=2011-05-16&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Xeikil MK2]] adds a player, a GalCop interceptor, and 24 pirate variants of Staer9 Industries' replacement [[Xeikil]]&lt;br /&gt;
|aut=Staer9&lt;br /&gt;
|date=2011-05-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[YellOo_Cabs]] adds YellOo Cab Co taxis to the Ooniverse. NPC and Buyable&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2011-01-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Your Ad Here!]] adds Convenience Stores [[Pi-42]], [[Tescoo Oxpress]], [[Star]], [[Mall Wart]], [[Sainsboory's]] &amp;amp; [[Security Sidewinder|security sidewinders]]&lt;br /&gt;
|aut=Griff&lt;br /&gt;
|con=DaddyHoggy, Pangloss, Disembodied, Eric Walch&lt;br /&gt;
|date=2011-02-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Z-ships]] adds [[Z-ships_Asp_Explorer|Asp Explorer]], [[Z-ships_Cobra_Commodore|Cobra Commodore]], [[Z-ships_Porcupine|Porcupine]] &amp;amp; [[Z-ships_Python_Courier|Python Courier]]&lt;br /&gt;
|aut=Zieman&lt;br /&gt;
|date=2010-03-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9056 Z-GrOovY Griff's Cobra Mk3 Variety Pack] adds multiple Griff's Cobra Mk3 with alternate hull paintings&lt;br /&gt;
|aut=dertien&lt;br /&gt;
|date=2011-01-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9306 Z-GrOovY System Stations] adds Griff-based Tetrahedron, Octahedron, Coriolis, Dodecahedron, Icosahederon stations&lt;br /&gt;
|aut=dertien&lt;br /&gt;
|date=2011-03-03&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9146 Z-GrOovY Viper Raider] adds a new player ship based on the police Viper&lt;br /&gt;
|aut=dertien&lt;br /&gt;
|date=2011-02-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9056 Z-GrOovY YAH Sidewinder Variety Pack] adds multiple Your Ad Here! Constore defenders with alternate hull paintings&lt;br /&gt;
|aut=dertien&lt;br /&gt;
|date=2011-01-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9056 Z-GrOovY YellOo Cab Variety Pack] adds the Moray Starboat with taxi hull painting&lt;br /&gt;
|aut=dertien&lt;br /&gt;
|date=2011-01-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Work in Progress OXPs  ==&lt;br /&gt;
The following table contains OXPs that either have not yet been released by their authors but are already being discussed on the [http://www.aegidian.org/bb/viewforum.php?f=4 Expansion Pack Forum], or released OXPs that still have WIP status. Links get you either to the respective discussion or the Wiki page if it already exists.&lt;br /&gt;
{{OXPListTableHeader}}&lt;br /&gt;
&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[http://www.box.net/shared/moreq536ht Nexus missile]. Three versions of a multi-warhead missile. Like the anti-thargoid missile but not just for (against) thargoids.&lt;br /&gt;
|aut=UK_Eliter&lt;br /&gt;
|date=2011-07-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?t=8341 Animated Ships] adds animated butterflies flapping their wings as a demo&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-08-06&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9864 Cargo Scanner] scans targeted cargo containers to find out what they contain&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-05-17&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://www.aegidian.org/bb/viewtopic.php?t=8526 Comms Demo] provides a way to communicate with NPC ships&lt;br /&gt;
|aut=Kaks&lt;br /&gt;
|date=2009-10-26&lt;br /&gt;
|work=N}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=6&amp;amp;t=9087 Guerilla War] puts you in a position to lead a fighter squadron&lt;br /&gt;
|aut=Ramirez|date=2011-04-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.box.net/shared/0i2fnrc175t Katipo] adds a very fast, moderate maneuverability, low cargo ship with low thrust&lt;br /&gt;
|aut=Simon B&lt;br /&gt;
|date=2011-03-03&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9441 Miner Pod] breaks up asteroids and collects the splinters&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-03-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?t=8275 Mining] adds mines to protect and provide resources for to get gold&lt;br /&gt;
|aut=docwild&lt;br /&gt;
|date=2010-07-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Nuit Space Station OXP|Nuit Space Station]] is the newest creation of [[Isis Interstellar]]&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2009-11-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mission&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?p=130221#p130221 Oresrati Challenge] adds a fun mission to the loneliest system of the Ooniverse, Oresrati&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-04-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9946 Phantom] is a trader/fighter from [[Isis Interstellar]] with external missiles&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2011-05-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?p=138226#p138226 Shield Cycler] distributes shield energy between fore and aft shields&lt;br /&gt;
|aut=Lone_Wolf&lt;br /&gt;
|date=2011-05-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=5484 Solar System] adds extra planets and jump gates to a system&lt;br /&gt;
|aut=Frame&lt;br /&gt;
|date=2009-01-11&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9472 Sun Skimmer Pod] adds a pod that goes sun skimming and returns full of fuel&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-03-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9488 Target Tracker] aligns your ship on your target&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-03-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9353 Thor Class Supercarrier] adds a Navy Carrier as a replacement pack for the Behemoth and the Galactic Navy&lt;br /&gt;
|aut=dertien&lt;br /&gt;
|date=2011-03-03&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9242 Wormhole Drones] creates a path of worm holes to lead you to your destination system&lt;br /&gt;
|aut=Mauiby de Fug&lt;br /&gt;
|date=2011-02-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[http://www.aegidian.org/bb/viewtopic.php?t=8541 Zygoroids] add new beautifully textured asteroid models to the Ooniverse&lt;br /&gt;
|aut=ZygoUgo&lt;br /&gt;
|date=2010-10-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== OXPs with Problems ==&lt;br /&gt;
The following table contains OXPs that have problems eg. broken download, or have been written for versions of Oolite earlier than the current 1.75.2&lt;br /&gt;
{{OXPListTableHeader}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Amen Bricks Megaships|Amen Brick's Megaships]] adds [[Battleship]]s, [[Biodome]]s, [[Cruiseship]]s, [[Hospitalship]]s, [[Supercargo]]s, [[Superlifter]]s, and [[Yacht - Amen Class|Yacht]]s (This version 1.1 contains a corrupted shipData.plist)&lt;br /&gt;
|aut=Amen Brick&lt;br /&gt;
|date=2008-07-11}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Cataclysm OXP|Cataclysm]] takes up the threads of Constrictor Hunt and Thargoid Plans, and sends you on your biggest Navy mission yet&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2009-01-06&lt;br /&gt;
|work=N}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Kirin#Download|Kirin Sport]] adds a a smaller, faster, more agile - and less well armed - civilian variant of the [[Kirin]]&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2009-07-22&lt;br /&gt;
|work=N}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Localhero_OXP|Localhero]] adds a mission campaign in the first galaxies&lt;br /&gt;
|aut=Svengali&lt;br /&gt;
|date=2008-04-09&lt;br /&gt;
|work=N}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Orb]] adds a new alien race, which might help GalCop in the battle against the Thargoids.&lt;br /&gt;
|aut=Charlie&lt;br /&gt;
|date=2007-02-13&lt;br /&gt;
|work=N}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Personalities OXP|Personalities]] adds a bunch of unique, well-known personalities from the Bulletin Board to the Ooniverse&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2009-11-05&lt;br /&gt;
|work=N}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[[Save Anywhere]] allows you to save your game at any OXP Station&lt;br /&gt;
|aut=Frame&lt;br /&gt;
|date=2008-10-01&lt;br /&gt;
|work=N}}&lt;br /&gt;
|}&lt;br /&gt;
[[Category:Oolite expansion packs]]&lt;br /&gt;
[[Category:OXP Lists]]&lt;br /&gt;
[[Category:Factual]]&lt;/div&gt;</summary>
		<author><name>Mcarans</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.alioth.net/index.php?title=OXP_List&amp;diff=28630</id>
		<title>OXP List</title>
		<link rel="alternate" type="text/html" href="https://wiki.alioth.net/index.php?title=OXP_List&amp;diff=28630"/>
		<updated>2011-07-25T20:23:18Z</updated>

		<summary type="html">&lt;p&gt;Mcarans: /* Sortable Table of OXPs */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
== OXP Categories ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; width=&amp;quot;100%&amp;quot; style=&amp;quot;border-collapse: collapse; border-width: 1px; border-style: solid; border-color: #ffffff; table-layout: fixed; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; width=&amp;quot;70px&amp;quot; style=&amp;quot;margin: 0px; padding: 0px; border-width: 1px; border-style: solid; border-color: #ffffff; background-color: #e7e7ff; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot; |&amp;lt;p style=&amp;quot;font-size: 13px;&amp;quot;&amp;gt;Category&amp;lt;/p&amp;gt;&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;margin: 0px; padding: 0px; border-width: 1px; border-style: solid; border-color: #ffffff; background-color: #e7e7ff; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot; |&amp;lt;p style=&amp;quot;font-size: 13px;&amp;quot;&amp;gt;Description of OXP Category&amp;lt;/p&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Activities_OXPs|Activities]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Allow Commanders to carry out a new activity or task eg. racing, gas giant skimming, taking out loans&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Dockables_OXPs|Dockables]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Add new objects that the player can dock with eg. carriers, space bars, casinos, fuel stations. Also, see [[Oolite Stations]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Ambience_OXPs|Ambience]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Change or add to the scenery, visuals or sound effects eg. planet skins, add new planets/moons to systems, move suns further away, dim nebulae, add monuments&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Equipment_OXPs|Equipment]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Buy upgrades for your ship excluding weapons&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Mechanics_OXPs|Mechanics]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Change the game play in a specific way eg. alter market mechanics, add more pirates&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:HUDs_OXPs|HUDs]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Modifications of your dials, gauges and other read-outs&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Missions_OXPs|Missions]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|New missions for Commanders to undertake. For more information, see [[Oolite Missions]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Retextures_OXPs|Retextures]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Retexture existing objects, either by replacing or adding variations, but without adding objects that did not exist before&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Ships_OXPs|Ships]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|New ships, except dockable ships. Also, see [[Oolite Ships]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Systems_OXPs|Systems]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Alter multiple star systems in a number of ways eg. combinations of changing main station and local police ships, adding new stations, ships, activities, missions&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Weapons_OXPs|Weapons]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Addons for your ship for blowing up the baddies&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Misc_OXPs|Misc]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|OXPs that don't fit into the other categories eg. debug consoles, internationalisations, config mechanisms, demo OXPs&lt;br /&gt;
|}&lt;br /&gt;
OXP authors: if you are unsure how to categorise your OXP or if you wish to update the details of an OXP for an author who has disappeared, please seek advice on the [http://www.aegidian.org/bb/viewforum.php?f=4 Expansion Pack Forum] before proceeding. Please put your OXP in one category only. You can edit the section below to add your OXP.&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Sortable Table of OXPs ==&lt;br /&gt;
The following table is optimized for a horizontal screen resolution of at least 1280px so that all OXP descriptions fit on one line.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; width=&amp;quot;100%&amp;quot; style=&amp;quot;border-collapse: collapse; border-width: 1px; border-style: solid; border-color: #ffffff; table-layout: fixed; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;border-width: 1px; border-style: solid; border-color: #ffffff; background-color: #e7e7ff; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot; |The &amp;quot;C&amp;quot; column indicates compatibility with Oolite beta 1.75:&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Y&amp;quot;=compatible, &amp;quot;Y*&amp;quot;=compatible (but the OXP is not in full working order), &amp;quot;N&amp;quot;=incompatible,  blank=unknown/untested.&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;!-- KEEP DESCRIPTIONS (desc=...) ALPHABETICAL --&amp;gt;&lt;br /&gt;
&amp;lt;!-- KEEP LENGTHS OF DESCRIPTIONS TO THAT OF EXISTING ENTRIES OR LESS --&amp;gt;&lt;br /&gt;
{{OXPListTableHeader}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Accessories OXP|Accessories]] replaces the textures of all Stations and non-ship objects in Oolite with a more detailed and realistic look&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2010-06-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Accipiter]] is the market entry from Xeceesian shipyards, a strong &amp;amp; fast all purpose vessel for experienced commanders&lt;br /&gt;
|aut=CaptSolo&lt;br /&gt;
|con=Staer9, Griff&lt;br /&gt;
|date=2011-05-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Aegidian%27s Specials]] adds the powerful [[Mussurana]], the [[Asp (Oolite)#Notable features|Asp Mark II Special]], and a new cargo canister&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2009-07-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Aegidian%27s X-Ships]] adds [[Python ET Special]]s, [[Cobra Mk.2 (Oolite)|Cobra Mk II]]s, [[Taipan]]s, [[Asp (Oolite)#Notable features|Asp Mark II Special]]s, and [[Sidewinder (Oolite)#Notable features|Sidewinder Special]]s&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2009-04-29&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Pirate Clan Blitzspears|Amen Brick's Pirate Clan One: The Blitzspears]] adds the [[Assassin Blitzspear|Assassin]], the [[Hoodlum]], the [[Scoundrel]], and the [[Spiv]]&lt;br /&gt;
|aut=Amen Brick&lt;br /&gt;
|date=2008-06-30}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Amiga Replacement Sounds]] is based on the sound set used in the Amiga version of the original Elite&lt;br /&gt;
|aut=EAGLE 5&lt;br /&gt;
|date=2006-03-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Systems&lt;br /&gt;
|desc=[[Anarchies OXP|Anarchies]] overhauls legal ratings and spices up anarchies with [[Hacker Outpost]]s, [[Salvage Gang]]s, special stations &amp;amp; ships&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|con=Killer Wolf, Griff, Cdr. Wyvern, Murgh, Aegidian, 8-Bit Apocalypse&lt;br /&gt;
|date=2011-03-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9462 Another HUD] is based on Killer Wolf's Generic HUD&lt;br /&gt;
|aut=NorthenderPNE&lt;br /&gt;
|date=2011-03-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Aphid]] adds the stylish Aphid Escort Service&lt;br /&gt;
|aut=8-Bit Apocalypse&lt;br /&gt;
|date=2005-01-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Aquatics OXP|Aquatics]] adds the Aquarian Shipbuilding Corporation of Aqualina, G3 along with its ships and a mission&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-03-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Armoured Transport Type 1]] adds Gaundlet's [[Gaundlet Armoured Transport Type1|Armoured Transport Type 1]] and [[Gaundlet Armoured Escort Viper|Armoured Escort Viper]] that ferry valuables&lt;br /&gt;
|aut=Arexack Heretic&lt;br /&gt;
|date=2005-12-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Armoury OXP|Armoury]] adds AMS, captured Thargons, drones, probes, a missile rack, some bombs, and the missile machine&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-06-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[The Assassins Guild OXP|Assassins Guild]] adds 21 missions involving murder to order in Galaxy 7&lt;br /&gt;
|aut=Littlebear&lt;br /&gt;
|date=2011-05-03&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Asteroid Storm]] adds different types of asteroids &amp;amp; a mission where a station in G1 is threatened by a large asteroid strike&lt;br /&gt;
|aut=LittleBear, Charlie&lt;br /&gt;
|date=2011-01-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Aurora]] adds huge passenger ships for the wealthiest in society&lt;br /&gt;
|aut=pagroove&lt;br /&gt;
|con=Griff, Thargoid&lt;br /&gt;
|date=2010-11-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://www.mediafire.com/?fnc65em7uh5un1d Auto ECM] fires the ECM once when a missile is fired at the player's ship. See the [http://aegidian.org/bb/viewtopic.php?p=138124#p138124 BB] for more info&lt;br /&gt;
|aut=Switeck&lt;br /&gt;
|date=2011-05-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Auto eject OXP|Auto Eject]] ejects your escape pod automatically when your energy becomes too low&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2010-06-16&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Automatic Chaff System]] provides an enhanced chaff-based missile countermeasure system&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2010-06-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Baakili Far Trader]] adds a dockable alien ship&lt;br /&gt;
|aut=Zieman&lt;br /&gt;
|date=2010-09-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Bandersnatch]] adds a pirate capital vessel armed with 4 x fore lasers&lt;br /&gt;
|aut=Flying_Circus&lt;br /&gt;
|date=2009-11-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Beer Cooler]] allows you to fit your ship with a beer cooler&lt;br /&gt;
|aut=Maik&lt;br /&gt;
|date=2010-08-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Behemoth]] adds a dockable Navy cruiser carrying [[Navy Asp]]s and [[Navy Viper]]s&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2011-01-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[ADCK%27s Behemoths]] adds shadered versions of the [[Behemoth]],  [[Galactic Navy OXP|Galactic Navy]] ships and stations, and then some&lt;br /&gt;
|aut=ADCK&lt;br /&gt;
|con=Aegidian, pagroove, Nemoricus, Selezen, Simon B&lt;br /&gt;
|date=2010-04-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Behemoth Spacewar]] adds intelligence to the Behemoth and brings a combat with Thargoids&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2010-01-09&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[BGS|BGS - Background Set]] framework for images, sounds and ambient music&lt;br /&gt;
|aut=pagroove, Svengali&lt;br /&gt;
|date=2011-03-16&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[BigShips OXP|Big Ships]] ensures that large ships do not dock and controls population of systems with them&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2009-11-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Black Monk Monastery]] offers loans in advanced systems and adds the [[Black Monk Gunship]] to persecute defaulters&lt;br /&gt;
|aut=LittleBear&lt;br /&gt;
|date=2010-06-14&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[BlackjacksBullion OXP|Blackjack's Bullion]] starts in galaxy 2 at Telace as Commander Blackjack arrives via escape pod&lt;br /&gt;
|aut=Rustybolts&lt;br /&gt;
|date=2010-03-08&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[BlOomberg Markets]] varies the in-game economy by generating random events that affect commodity prices&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2011-03-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Boa II Clipper Class]] is a development of the Boa Class Cruiser, adding a third engine at the cost of cargo space&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2011-01-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Boomslang]] adds a mid-range multi-role ship. Used by pirates and traders alike&lt;br /&gt;
|aut=milinks, Jar&lt;br /&gt;
|date=2008-09-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Bounty Scanner]] adds bounty details (if any) to the targeting lock-box display when locked onto other ships&lt;br /&gt;
|aut=Frame&lt;br /&gt;
|date=2010-07-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[BountyStatus OXP|Bounty Status]] displays your current bounty (and your legal status) on the F5 manifest screen&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-05-08&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Breakable_'Standard'_Equipment_OXPs|Breakable 'Standard' Equipment]] makes some standard equipment such as HUD/Scanner damageable in combat&lt;br /&gt;
|aut=Capt. Murphy&lt;br /&gt;
|date=2011-07-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Bulk Haulers]] adds the [[Lynx Bulk Carrier (Oolite)|Lynx Bulk Carrier]], the [[Long Range Cruiser (Oolite)|Long Range Cruiser]], the [[Bulk Hauler]], and the [[Super Bulk Hauler]]&lt;br /&gt;
|aut=ADCK&lt;br /&gt;
|con=Aegidian, pagroove&lt;br /&gt;
|date=2010-04-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[BuoyRepair|Buoy Repair]] adds a [[Buoy Repair Facility]] and related ships to repair defect or destroyed nav-beacons&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|con=Svengali, Murgh, Zieman&lt;br /&gt;
|date=2011-06-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[[Cabal Common Library]] is a collection of snippets and helpers for OXPs&lt;br /&gt;
|aut=Svengali&lt;br /&gt;
|con=Cmd.Cheyd, PhantorGorth&lt;br /&gt;
|date=2011-07-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Caduceus]] adds the very expensive (and deadly) Caduceus&lt;br /&gt;
|aut=ClymAngus&lt;br /&gt;
|con=Cdr. Wyvern, another_commander, Eric Walch, Thargoid&lt;br /&gt;
|date=2010-12-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Capisastra]] adds [[Capisastra Defender]]s, [[Capisastra Hauler]]s, and [[Capisastra Warrior]]s&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|date=2006-01-12}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Captain Berf Engineer]] adds a voice for crew members&lt;br /&gt;
|aut=Captain Berf&lt;br /&gt;
|date=2009-12-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Captain Berf Pilot]] adds a voice for crew members&lt;br /&gt;
|aut=Captain Berf&lt;br /&gt;
|date=2009-12-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Captain Berf Pilot Alien]] adds a voice for crew members&lt;br /&gt;
|aut=Captain Berf&lt;br /&gt;
|date=2009-12-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Captain Berf Tactical Officer]] adds a voice for crew members&lt;br /&gt;
|aut=Captain Berf&lt;br /&gt;
|date=2009-12-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Cargo Shepherd OXP|Cargo Shepherd]] attracts cargo pods and holds them until you can scoop them, also includes a beacon&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-04-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://www.box.net/shared/4lphdkazs5 CB-HUD] features a HUD that changes based on installed equipment. See the [http://aegidian.org/bb/viewtopic.php?p=141035#p141035 BB post] for more information&lt;br /&gt;
|aut=Captain Beatnik&lt;br /&gt;
|date=2011-05-29&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Clear Skies OXP|Clear Skies]] reduces nebula effects and dims stars. Handy if your system is finding it hard to run Oolite&lt;br /&gt;
|aut=johnsmith&lt;br /&gt;
|date=2006-11-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Cobra 3.5|Chopped Cobra]] adds the Cobra Mk 3.5, a slightly faster and tougher variant with a reduced cargo bay&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2006-12-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9157 Cobra AC] is a faithful reproduction of the Cobra on the cover of the Dark Wheel novella with improved specs&lt;br /&gt;
|aut=dertien&lt;br /&gt;
|date=2011-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Cobra Clipper SAR]] adds a custom Cobra Mk III to rescue stranded Commanders&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2010-04-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Cobra III NjX]] adds a faster, tougher variation on the Classic Cobra Mk III&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|date=2006-08-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Cobra Mark III-XT]] Cobra3 with revamped architecture and upgraded systems to boost performance&lt;br /&gt;
|aut=CaptSolo&lt;br /&gt;
|date=2011-07-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.purgatori.net/cobra4.htm Cobra MkIV] is [[Isis Interstellar]]'s successor to the Cobra MkIII, available in trader and fighter variants&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2010-11-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[OosoundsCombined OXP|Combined Murgh, Wiggy &amp;amp; xaotik's sounds]] combines the 3 available packs from Murgh, Wiggy and xaotik&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|con=Murgh, Wiggy, xaotik&lt;br /&gt;
|date=2009-09-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Systems&lt;br /&gt;
|desc=[[Commies]] Adds [[Astro Mines]], [[CZGF|Factories]], [[SLAPU|Production Units]], [[Worker%27s Commuter|Commuters]] &amp;amp; special police ships to Communist systems&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|con=Ramirez, Murgh, johnsmith, HueijRevisited&lt;br /&gt;
|date=2010-05-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[CompactHUD|Compact HUD]] provides an alternative HUD with a clean look&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Condor]] adds a very powerful police and Navy Cruiser&lt;br /&gt;
|aut=Charlie&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2010-10-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Console HUD]] Azure themed semi-transparent HUD with balanced array of indicators&lt;br /&gt;
|aut=CaptSolo&lt;br /&gt;
|date=2011-07-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[http://www.box.net/shared/mq1mzoc79t Constrictor Mission Hints] adds more hints for those doing the native Constrictor Mission&lt;br /&gt;
|aut=Arexack Heretic&lt;br /&gt;
|date=2010-08-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Contractor ZZ1]] Very fast combat 'stealth' ship. Appears in-game as a Bounty-hunter and rarely as Pirate. Buyable&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2011-01-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Copperhead]] Redux of core ship in Archimedes Elite slightly modified. NPC and player buyable&lt;br /&gt;
|aut=CaptSolo&lt;br /&gt;
|date=2011-05-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Croydon Starsoarer]] adds a ship that is similar to the Asp in specification&lt;br /&gt;
|aut=SimonB&lt;br /&gt;
|con=pagroove&lt;br /&gt;
|date=2010-05-08&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[CustomSounds OXP|CustomSounds]] replaces/adds 40+ sounds, featuring music &amp;amp; extensive use of calm female computer voice for warnings&lt;br /&gt;
|aut=milinks&lt;br /&gt;
|date=2006-12-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[DWCobra|Dark Wheel Cobra]] is a custom Cobra Mk III model, as seen on the cover of the Elite Manual&lt;br /&gt;
|aut=ramon&lt;br /&gt;
|date=2006-11-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[[Debug OXP]] is a special OXP that enables JavaScript console support in test releases of Oolite (1.70 and later)&lt;br /&gt;
|aut=Ahruman&lt;br /&gt;
|date=2010-06-19&lt;br /&gt;
|work=N}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[http://deephorizonindustries.com/Gas_Giant_Skimming.html Deep Horizon - Gas Giants Skimming] allows to skim gas giants to refuel a ship or mine them for rare minerals&lt;br /&gt;
|aut=Cdr. Cheyd&lt;br /&gt;
|date=2010-07-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://deephorizonindustries.com/Lights_Down.html Deep Horizon - Lights Down] lowers ambient light within system to give more natural feel to planets and ships&lt;br /&gt;
|aut=Cdr. Cheyd&lt;br /&gt;
|date=2010-07-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://deephorizonindustries.com/Nav_Buoy.html Deep Horizon - Nav Buoy 1.0] replaces Witchpoint, Station, and other Nav Buoys with a new model.&lt;br /&gt;
|aut=Cdr. Cheyd&lt;br /&gt;
|date=2011-07-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[http://deephorizonindustries.com/Pirate_Ambushes.html Deep Horizon - Pirate Ambushes] adds pirates that ambush the player upon exit from witchspace&lt;br /&gt;
|aut=Cdr. Cheyd&lt;br /&gt;
|date=2010-07-06&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://deephorizonindustries.com/DH-Systems.html Deep Horizon - Systems] textures the main planet of a system as well as adding moons and additional planets&lt;br /&gt;
|aut=Cdr. Cheyd&lt;br /&gt;
|date=2010-07-06&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Deep Space Dredger]] adds dockable Space Dredgers, defended by [[Sabre]] fighters, and a missile to salvage derelict ships&lt;br /&gt;
|aut=Sabre&lt;br /&gt;
|date=2011-01-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[DeepSpacePirates|Deep Space Pirates]] adds pirates and asteroids outside the space lanes&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2010-01-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Deepspace Ships#Deepspace HUDs|Deepspace HUD]] is an alternative HUD with two versions&lt;br /&gt;
|aut=DeepSpace&lt;br /&gt;
|date=2010-02-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Deepspace Ships]] replaces the default ships with new textures&lt;br /&gt;
|aut=DeepSpace&lt;br /&gt;
|date=2010-02-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Deposed OXP|Deposed]] is a series of missions set in Galaxy 4 for an experienced Commander&lt;br /&gt;
|aut=Cdr. Wombat&lt;br /&gt;
|con=Commander McLane, Eric Walch&lt;br /&gt;
|date=2009-03-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Systems&lt;br /&gt;
|desc=[[Dictators OXP|Dictators]] adds a range of ships and stations to each dictatorship and offers new trading opportunities to players&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2010-06-19&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Diso OXP|Diso]] adds extra planets and stations to the Diso system in Galaxy 1&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2010-11-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Display reputation OXP|Display Reputation]] lets you know your current reputations in the passenger ferrying and the cargo contract market&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2010-03-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Oolite Docking Clearance Protocol (v1.72 or later)|Docking Clearance]] enables the docking clearance protocol for all stations&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2008-12-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Griff Industries|Dodo Stations]] adds new textures for Dodecahedron stations&lt;br /&gt;
|aut=Griff, CaptKev&lt;br /&gt;
|date=2010-05-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Dr HUD OXP|Dr HUD]] is an alternative HUD&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2006-12-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Dragon|Dragon Assault Craft]] adds a heavy combat ship, and the Military Smart Missile, an improved hard head&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2008-11-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Dragon#Download|Dragon Military Missile]] adds an enhanced hardhead, seeks priority targets when ECM'd&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2008-11-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.mediafire.com/?rllzzcbkwgm Dragonfly/Firefly S.T] adds [[Dragonfly S.T]] &amp;amp; much faster [[Firefly S.T]]. Ideal small fast ships for pirates or bounty hunters&lt;br /&gt;
|aut=Rustybolts&lt;br /&gt;
|date=2009-10-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Eagle Mk II]] adds the cheap Eagle Mk II escort vessel in several different versions, including an enhanced SE&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|date=2006-03-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[ADCK%27s Eagles|Eagles Mk I to IV]] adds four Eagle Long Range Fighters to the game&lt;br /&gt;
|aut=ADCK&lt;br /&gt;
|date=2010-04-07&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Energy Equipment OXP|Energy Equipment]] adds a pylon-mounted automatically triggered top-up for when the juice runs low&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-03-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Escort Contracts OXP|Escort Contracts 1.2]] allows players to enter into short-term escort contracts with NPC lone wolf traders&lt;br /&gt;
|aut=Capt Murphy&lt;br /&gt;
|date=2011-07-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[ETT Homing Beacon]] marks a position in space by deploying a pylon-mounted beacon&lt;br /&gt;
|aut=Twisted&lt;br /&gt;
|con=Lone_Wolf&lt;br /&gt;
|date=2011-04-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Executive SpaceWays]] adds [[Delta Long-Range Escort|Delta]]/[[Gemini Escort|Gemini]] Escorts, [[Starseeker Personal Shuttle|Starseeker]]/[[Trident Executive Shuttle|Trident Exec]] Shuttles, [[Strelka Cruise Liner]]s&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2010-06-19&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.box.net/shared/moreq536ht#/shared/moreq536ht/1/71484311/786362645/1 Extra Thargoids] adds 2 types of Thargoid ships, each of which packs surprises. Replaces the 'Poet' Frigate OXP&lt;br /&gt;
|aut=UK_Eliter&lt;br /&gt;
|date=2011-07-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Systems&lt;br /&gt;
|desc=[[Factions OXP|Factions]] from anarchy, feudal, dictatorship &amp;amp; communist systems meet in multi-government systems and start fighting&lt;br /&gt;
|aut= m4r35n357&lt;br /&gt;
|date=2011-06-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Famous Planets OXP|Famous Planets]] adds unique textures, new descriptions, and theme tunes for many planets in G1 and G2&lt;br /&gt;
|aut=pagroove&lt;br /&gt;
|con=Cdr. Cheyd, Stromboli, Pangloss, CaptKev, Drew Wagar, Thargoid, Svengali, Lestradae, UK Eliter&lt;br /&gt;
|date=2010-09-30&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Famous Planets Liners OXP|Famous Planets Liners]] adds Spaceway Liners on the 4 spaceways from Lave to Zadies&lt;br /&gt;
|aut=pagroove&lt;br /&gt;
|con=Ramirez, Presti70, Thargoid&lt;br /&gt;
|date=2009-03-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Far Arm ships|Far Arm Ships]] adds [[Far Arm Sunracer|Sunracer]]s, [[Far Arm Scow|Scow]]s, [[Far Arm Tanker|Tanker]]s, [[Far Arm Corsair|Corsair]]s, [[Far Arm Dart|Dart]]s, [[Far Arm Hunter|Hunter]]s, [[Far Arm Cruiser|Cruiser]]s, [[Far Arm Titan|Titan]]s, [[Far Arm Manchi Vulture|Vulture]]s, and [[Far Arm Manchi Wasp|Wasp]]s&lt;br /&gt;
|aut=Zieman&lt;br /&gt;
|date=2010-10-02&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Far Star Murderer]] adds a mid-range fighter / trader, with a fair sized cargo bay&lt;br /&gt;
|aut=8-Bit Apocalypse&lt;br /&gt;
|date=2005-01-01&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://www.box.net/shared/d57y0uip74 Far Sun] places suns further away from the planet than standard Oolite&lt;br /&gt;
|aut=Kaks&lt;br /&gt;
|date=2010-05-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.box.net/shared/moreq536ht Fer de Lance 3G] adds player &amp;amp; NPC Fer de Lance versions with custom paint jobs &amp;amp; altered specs. New bug fixes&lt;br /&gt;
|aut=UK_Eliter&lt;br /&gt;
|date=2011-07-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Fer de Lance NG]] adds a more powerful version of the Fer de Lance with several custom paint jobs&lt;br /&gt;
|aut=alien&lt;br /&gt;
|date=2005-03-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Ferdepai]] adds a new fighter / trader to Galaxy 2&lt;br /&gt;
|aut=johnsmith&lt;br /&gt;
|date=2006-12-17&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Systems&lt;br /&gt;
|desc=[[Feudal States]] adds the [[Jäger]], the [[Korvette]], the [[Zerstörer]], a [[Royal Hunting Lodge]] and other elements to feudal systems&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2011-05-30&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Fighter HUD (Oolite)|Fighter HUD]] is an alternative HUD&lt;br /&gt;
|aut=CaptKev&lt;br /&gt;
|date=2008-05-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Firewasp]] adds a fast interceptor&lt;br /&gt;
|aut=Draco_Caeles&lt;br /&gt;
|date=2006-05-10&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Fireworks OXP|Fireworks]] allows you a joyful celebration of whatever it is you want to celebrate&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-05-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Flight Log OXP|Flight Log]] adds a log of the last 10 systems visited&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-01-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Flying Dutchman OXP|Flying Dutchman]] adds the small chance to meet a Ghost Ship in the Ooniverse&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|con=Griff&lt;br /&gt;
|date=2011-04-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[[Freaky Thargoids OXP|Freaky Thargoids]] is a shader demonstration for Oolite&lt;br /&gt;
|aut=Ahruman&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2011-02-03&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Free Trade Zone]] adds an independent trading post of dubious legality to Multi-Government systems&lt;br /&gt;
|aut=Disembodied&lt;br /&gt;
|con=Commander McLane&lt;br /&gt;
|date=2010-10-08&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Frog Space Rickshaw]] adds a chatty space taxi service to the safer systems&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2006-01-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Fuel Collector OXP|Fuel Collector]] scoops fuel from killed ships and collects fuel while cruising, even in witch space&lt;br /&gt;
|aut=Frame&lt;br /&gt;
|con=Commander McLane&lt;br /&gt;
|date=2011-07-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Fuel Station OXP|Fuel Station]] adds fly-thru Fuel Stations and Fuel Satellites near the witchpoint and along route one&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-06-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Fuel Tank]] v2.2 mounts in place of a missile, to top up 3 light years of fuel&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2008-05-31&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Furball OXP|Furball]] adds barroom brawls that've got out of hand. Furious fugitives flee from pissed off police on the station's doorstep&lt;br /&gt;
|aut=Caracal&lt;br /&gt;
|con=m4r35n357&lt;br /&gt;
|date=2011-06-06&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Systems&lt;br /&gt;
|desc=[[Galactic Navy OXP|Galactic Navy]] adds more ships and stations to the arsenal of the Galactic Navy. Allows to join the Navy Reserves&lt;br /&gt;
|aut=Nemoricus&lt;br /&gt;
|date=2010-12-30&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[GalDrivePod]] A portable Galactic Hyperdrive unit, allowing you to complete the &amp;quot;Lost Worlds Grand Tour&amp;quot;&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2011-03-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://www.boxcn.net/shared/5dqx22u06i Galaxy Info] helps you search for systems by criteria you select and will try to locate the nearest one&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-04-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Gates OXP|Gates]] ads short-cut jump gates to suitable systems, speeding journeys between the main station and witchpoint&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-04-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Generation Ships OXP|Generation Ships]] adds encounters with the mythical Generation Ships from time to time&lt;br /&gt;
|aut=Draco_Caeles&lt;br /&gt;
|con=Commander McLane&lt;br /&gt;
|date=2011-04-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Globe station|Globe Station]] is a new type of stations that appears in advanced systems&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|con=Svengali&lt;br /&gt;
|date=2009-10-22&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Greek Ships OXP|Greek Ships]] adds [[Penelope Class Freighter]]s, [[Telemachus Class Escort]]s, and [[Ulysses Class Interceptor]]s&lt;br /&gt;
|aut=8-Bit Apocalypse&lt;br /&gt;
|date=2005-07-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Griff ArcElite|Griff's ArcElite]] adds versions of native Oolite ships textured &amp;amp; shaded to resemble the Acorn Archimedes version of Elite&lt;br /&gt;
|aut=Griff&lt;br /&gt;
|date=2008-09-29&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Griff Boa]] contains the famous Griff Boa&lt;br /&gt;
|aut=Griff&lt;br /&gt;
|date=2010-06-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://www.boxcn.net/shared/k2lvh3enuy Griff's Explosion Debris] adds new alloy &amp;amp; debris models to exploding ships&lt;br /&gt;
|aut=Griff&lt;br /&gt;
|con=Thargoid&lt;br /&gt;
|date=2009-02-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Griff Krait]] adds a heavily modified Krait, similar in design to the Griff Boa&lt;br /&gt;
|aut=Griff&lt;br /&gt;
|date=2010-06-17&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Griff Industries|Griff's Normalmapped Ships]] adds some of the best looking ships, stations, and flotsam available in Oolite&lt;br /&gt;
|aut=Griff&lt;br /&gt;
|date=2011-04-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Griffin Two (Oolite)|Griffin Two]] adds the Griffin Mk II from Frontier&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2005-10-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Gritty Coriolis OXP|Gritty Coriolis]] alternates the Coriolis stations with two elaborate gritty Corioli&lt;br /&gt;
|aut=xaotik&lt;br /&gt;
|date=2006-02-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://wiki.alioth.net/images/2/2d/G-HUD_Mk2.oxp.zip G-HUD Mk2] adds an alternative HUD&lt;br /&gt;
|aut=Gunney Plym&lt;br /&gt;
|date=2008-07-08&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Halsis]] features a female cockpit voice, sometimes called Hal's Hot Sister&lt;br /&gt;
|aut=Ovvldc&lt;br /&gt;
|date=2006-08-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[BoyRacer|Hatchling BoyRacers]] adds the  talkative (and often insulting) [[BoyRacer]]s to more advanced systems&lt;br /&gt;
|date=2006-01-13&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Staer9 haulerp30|Hauler P30]] is a very large cargo ship made by Staer9 Industries&lt;br /&gt;
|date=2011-05-11&lt;br /&gt;
|aut=Staer9&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Hawksound]] features a quality female computer voice, new weapon, damage and some station interface sounds&lt;br /&gt;
|aut=Hawkstrom&lt;br /&gt;
|date=2008-11-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Herald Military Gunboat|Herald]] adds the [[Herald Military Gunboat]], a powerful police and Navy interceptor&lt;br /&gt;
||aut=Flying_Circus&lt;br /&gt;
|date=2005-01-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Hired Guns OXP|Hired Guns]] adds escort ships that can be contracted to accompany you on your next journey&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-02-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Hognose|Hognose Tugships]] adds the [[Hognose]], a chatty tug ship that can be seen towing broken down ships&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|con=Jonnycuba&lt;br /&gt;
|date=2006-03-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[HoOpy Casino]]s appear near the station in advanced systems. You can win or lose credits in games of chance&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2010-06-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Hotrods OXP|Hotrods]] adds custom paint jobs to classic Elite ships, racing vehicles, and a space gang that doesn't like the player&lt;br /&gt;
|aut=Kaks&lt;br /&gt;
|con=Arexack_Heretic, Murgh&lt;br /&gt;
|date=2009-03-16&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[HyperCargo OXP|HyperCargo]] adds an extended and expanded cargo handling system&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-09-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Hyperradio js OXP|Hyperradio]] is an expandable music-player&lt;br /&gt;
|aut=Svengali&lt;br /&gt;
|date=2011-02-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Icarus (Oolite)|Icarus]] adds a small fighter / trader based on blueprints from the lost Solice system&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|date=2007-07-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Illegal_Goods_Tweak_OXP|Illegal Goods Tweak 1.4]] adds interactions with Galcop customs on docking at a main station with Contraband in the hold&lt;br /&gt;
|aut=Capt. Murphy&lt;br /&gt;
|date=2011-06-17&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Illicit Unlock OXP|Illicit Unlock]] allows the player to fly all the classic Elite ships&lt;br /&gt;
|aut=tgape&lt;br /&gt;
|date=2005-10-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Griff_Industries#Related_OXP's_by_Other_Authors|Illicit Unlock - Griff Version]] allows the player to fly [[Griff Industries#Griff's Normalmapped Ships OXP|Griff's]] pirate/viper Ships&lt;br /&gt;
|aut=ADCK&lt;br /&gt;
|con=dertien&lt;br /&gt;
|date=2011-02-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[I_Missile|I_Missile]] Very fast, very destructive weapon at an affordable price.&lt;br /&gt;
|aut=CaptSolo&lt;br /&gt;
|date=2011-07-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Imperial Courier (Oolite)|Imperial Courier]] adds the powerful Imperial Courier from Frontier, constructed by [[Seldar Shipyards]]&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|con=Commander McLane&lt;br /&gt;
|date=2007-06-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Imperial Trader (Oolite)|Imperial Trader]] adds the powerful Imperial Trader from Frontier&lt;br /&gt;
|aut=ADCK&lt;br /&gt;
|date=2010-06-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Interstellar help OXP|Interstellar Help]] allows you to help out traders who got stuck in interstellar space without fuel&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-03-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Ionics OXP|Ionics]] adds a series of missions featuring the Ionics Company of Zaria, the Ramaza Liberation Front and The Link&lt;br /&gt;
|aut=Galileo&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2010-08-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[IronHide OXP|IronHide]] introduces the new range of IronHide ship armour from the Aquarian Shipbuilding Corporation&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-02-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Iron Raven]] is a multi-stage mission to investigate a dangerous conspiracy on behalf of GalCop High Command&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2011-04-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Ixian Ships|Ixian Military Ships]] adds Ixian [[Ixian Battle Cruiser|Battle Cruiser]]s, [[Ixian Bezerka|Bezerka]]s, [[Ixian Gunship|Gunship]]s and [[Ixian No-Ship Mark I|No-Ship]]s from Dune&lt;br /&gt;
|aut=8-Bit Apocalypse&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2009-03-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Ixian Ships#Ixian Freighter|Ixian Freighter]] adds a civilian freighter to the universe&lt;br /&gt;
|aut=8-Bit Apocalypse&lt;br /&gt;
|date=2005-01-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Jabberwocky]] adds the powerful Jabberwocky fighter / trader&lt;br /&gt;
|aut=Flying_Circus&lt;br /&gt;
|date=2006-03-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[JellyBaby Dispenser]] adds a handy Jellybaby Dispenser for your cockpit&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2011-03-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Kestrel &amp;amp; Falcon OXP|Kestrel &amp;amp; Falcon]] adds buyable Star Wars style [[Falcon_%28Oolite%29|Falcon]] for pirates/traders and the [[Kestrel]], a police/navy interceptor&lt;br /&gt;
|aut=Charlie&lt;br /&gt;
|con=Kaks&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Killer_Wolf's_Dynamic_HUD|Killer Wolf's Dynamic HUD]] adds a version of the dynamic HUD first seen in Killer Wolf's Werewolf ships, to all ships&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|con=Thargoid&lt;br /&gt;
|date=2010-07-08&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Killit_OXP|Killit]] adds a bunch of insane super weapons&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-05-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Kirin]] adds a heavy military hauler, CV &amp;amp; XM versions used by both pirates &amp;amp; traders&lt;br /&gt;
|aut=ClymAngus&lt;br /&gt;
|con=Cdr. Wyvern&lt;br /&gt;
|date=2009-09-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Klepto-HUD OXP|Klepto-HUD]] is a different take on a HUD with precise crosshairs&lt;br /&gt;
|aut=Kleptoid&lt;br /&gt;
|date=2006-03-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://sancho.dk/oolite/lane_legal.zip ''Lane Legal Racers''] adds NPC versions of [[Krait]]s, [[Mamba]]s, and [[Sidewinder]]s from different [[Racers#Listing_of_sponsored_teams|racing teams]]&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-09-27&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Lave OXP|Lave]] is a system make-over for Lave, adding all features described in The Dark Wheel novella included with original Elite&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2009-12-31&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Lave Academy OXP|Lave Academy]] adds Lave Academy Station above Lave &amp;amp; other planets, with 3 mini-games to test Commanders' skills&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-06-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[http://www.boxcn.net/shared/9q1cbydgan LinkG7] is a mission in Galaxy 7&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-02-16&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Llama]] adds the Llama fighter / trader. Updated from the version of Oosat1 to fix a small bug&lt;br /&gt;
|aut=Flying_Circus&lt;br /&gt;
|date=2006-02-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://www.boxcn.net/shared/jtpt2vlol5 Long Range Target Scanner] shows all ships currently in your system and allows to target them&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-05-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[LongWay_OXP|Long Way Around]] adds a transport mission well suited to the novice in Galaxy 1&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2009-04-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Longshot]] adds the Longshot fighter / trader, regarded by many as a cheaper alternative to the Cobra Mk III&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Lovecats.oxp|Lovecats]] is a mission about love &amp;amp; betrayal amongst the feline races of Galaxy 4. Fast ship &amp;amp; hard heart required!&lt;br /&gt;
|aut=johnsmith&lt;br /&gt;
|date=2010-01-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Second-hand ships|M-Pack (rusties)]] adds rusty banger versions of all Classic Elite ships in poor condition but still can haul cargo&lt;br /&gt;
|aut=murgh&lt;br /&gt;
|date=2006-01-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Manta]] adds the Manta light escort craft&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Marett Space Corporation OXP|Marett Space Corporation]] releases [[Adder Mk II]], [[Mosquito Trader]], [[Mosquito Sport]], new fighters / medium traders&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://www.crimsonforge.co.uk/cloister/MedusaHud.oxp.zip Medusa HUD] is an alternative HUD&lt;br /&gt;
|aut=ClymAngus&lt;br /&gt;
|date=2009-01-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Mega-Walnut Dashboard OXP|Mega-Walnut Dashboard]] is a generic version of the fabled Fer de Lance HUD&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2005-07-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Merlin_(Oolite)|Merlin]] Ships are interceptors used by the Police &amp;amp; Navy, but also available on the open market&lt;br /&gt;
|aut=Charlie&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[MildAudio]] Sound Set&lt;br /&gt;
|aut=xaotik&lt;br /&gt;
|date=2006-02-15&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Military_Fiasco|Military Fiasco]] adds a navy mission for Commanders with &amp;gt; 1,000 kills. Also equips Navy with powerful cruisers&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2011-01-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Military station|Military Station]] adds well armed Military Stations to the more advanced systems&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Military Stingray Mk. II|Military Stingray]] adds an ex-military ship that may show up in pirate hands or for the player to buy&lt;br /&gt;
|aut=CaptKev&lt;br /&gt;
|date=2007-03-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Milspec HUD|Milspec HUD]] is an alternative HUD with targeting aids and an emphasis on functionality&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2010-07-08&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Misjump_Analyser|Misjump Analyser]] scans witchspace &amp;amp; on detection of disturbances sounds an alarm &amp;amp; logs location of disturbance&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2010-05-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?p=135619#p135619 Misjump Inducer] can turn on/off misjumps on demand&lt;br /&gt;
|aut=Switeck&lt;br /&gt;
|date=2011-04-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Missile_Analyser|Missile Analyser]] scans incoming missiles &amp;amp; sets target to incoming missile when it is no standard missile&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2010-05-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Missiles_and_Bombs|Missiles &amp;amp; Bombs]] adds a wide variety of missiles &amp;amp; bombs that are are available to player &amp;amp; NPCs alike&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2009-12-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Missionaries OXP|Missionaries]] adds clerics of four faiths who spam Commanders with requests to worship their Gods&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Moccasin]] adds light escort craft from Xeceesian Shipyards modeled after ArcElite core ship&lt;br /&gt;
|aut=CaptSolo&lt;br /&gt;
|date=2011-06-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Mod-HUD]] is a slight modification / re-organization of the standard Oolite HUD without surround boxes&lt;br /&gt;
|aut=CaptSolo&lt;br /&gt;
|date=2011-05-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/monument.zip Monument] sometimes adds a monument to famous Commanders close to the Sun&lt;br /&gt;
|aut=dajt&lt;br /&gt;
|date=2005-05-28&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Morrigan]] adds a vast trade ship to the Universe&lt;br /&gt;
|aut=Flying_Circus&lt;br /&gt;
|date=2009-12-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Oosounds2_OXP|''Murgh's Replacement Sounds'']] contains 10 new sounds&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2005-08-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Murgh_Xships OXP|Murgh's X-Ships]] adds [[Bandy-Bandy]], [[Chuckwalla]], [[Eel Rapier]], [[Taipan]] (fast courier craft &amp;amp; 2 light escort ships)&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2009-09-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[NavalGrid OXP|Naval Grid]] enhances recharging rates by linking the naval energy unit to military-boosted shields&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-03-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Neolite Ships]] is an Oolite ships replacement set&lt;br /&gt;
|aut=SimonB&lt;br /&gt;
|date=2009-07-11&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/newships.oxp.zip ''New Ships''] adds [[Hamadryad]], [[Josher]], [[Naga]], [[Ringhals]] (mining and trade ships from previous versions of Elite)&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2006-05-15&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/hud_ng.oxp.zip NG HUD] is an alternate HUD. All standard functions, but with a personal view&lt;br /&gt;
|aut=alien&lt;br /&gt;
|date=2005-03-06&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[NPC-shields OXP|NPC-shields]] gives shields to NPCs, together with a nice glow effect&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-04-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://wiki.alioth.net/index.php/Numeric_Style_HUDs Numeric Style HUDs] New invention/numeric gauges.[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9977 Info]&lt;br /&gt;
|aut=CommonSenseOTB&lt;br /&gt;
|date=2011-06-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/nuvipers.zip Nu Vipers] increases the types of Viper patrol ships with [[GalCop Viper Mark II]], [[GalCop Viper Cruiser]]&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Nukes.oxp|Nuclear Torpedos]] adds some powerful, but slow moving, missiles&lt;br /&gt;
|aut=E. Walch, Cdr. Wyvern&lt;br /&gt;
|date=2010-06-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Offender traders OXP|Offender Traders]] makes some traders into offenders/fugitives&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-04-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Old Ships]] adds Elite-A [[Bushmaster Miner]]s, [[Cat (Oolite)|Cat]]s, [[Chameleon (Oolite)|Chameleon]]s, [[Ghavial (Oolite)|Ghavial]]s, [[Iguana (Oolite)|Iguana]]s, [[Monitor (Oolite)|Monitor]]s, [[Ophidian (Oolite)|Ophidian]]s, [[Salamander (Oolite)|Salamander]]s&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2006-08-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Old Ships 2010]] is a retextured version of [[Old Ships]], adding the bonus Monitor 2 ship&lt;br /&gt;
|aut=pagroove&lt;br /&gt;
|con=Murgh, ADCK, Simon B, Lestradae&lt;br /&gt;
|date=2011-02-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Oo-Haul]] adds vast bulk [[L-Crate Hauler]]s to the space lanes and offers missions at [[Your Ad Here!|constores]] to safely escort them&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|con=Eric Walch, Ark&lt;br /&gt;
|date=2009-02-21&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[ooCheat_OXP|ooCheat]] adds a cheat menu to the game&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-02-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[http://www.box.net/shared/rrlm77ztzm Oolite en français] is a French Oolite localization&lt;br /&gt;
|aut=Pierre-Olivier&lt;br /&gt;
|date=2009-07-12}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[http://marc-schaffer.ch/data/OoliteGerman_V0.3.zip Oolite auf Deutsch] is a German Oolite localization&lt;br /&gt;
|aut=SwissMäc&lt;br /&gt;
|date=2009-06-02&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[http://www.box.net/shared/p3engis1ds Oolite Italiano] is an Italian Oolite localization&lt;br /&gt;
|aut=another_commander&lt;br /&gt;
|date=2010-06-15&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=Oolite in Russian: [http://www.roolite.org Roolite.org] provides localizations of Oolite 1.74.2 and some OXPs. Also check [http://www.elite-games.ru/conference/viewtopic.php?t=48476&amp;amp;start=0 Elite Games]&lt;br /&gt;
|aut=Seventh&lt;br /&gt;
|date=2009-03-26&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://www.box.net/shared/x9u5xoulkq Orbits] positions planets on orbits around the sun&lt;br /&gt;
|date=2010-07-01&lt;br /&gt;
|aut=Ebi&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Ore Processor]] extracts valuable materials from asteroid fragments when mounted to a ship's fuel scoop&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|con=Ark, Kaks, Eric Walch&lt;br /&gt;
|date=2011-01-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Orisis]] BigTraders are new passenger liners that ferry passengers around&lt;br /&gt;
|aut=pagroove&lt;br /&gt;
|con=ADCK, Thargoid&lt;br /&gt;
|date=2010-01-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Outrider (Oolite)|Outrider]] is a medium fighter produced by the [[Taranis Corporation HQ (Oolite)|Taranis Corporation]]&lt;br /&gt;
|aut=Roberto&lt;br /&gt;
|date=2006-08-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[[OXPConfig]] provides means to configure supported OXPs, to recognize errors, or to avoid clashes&lt;br /&gt;
|aut=Svengali&lt;br /&gt;
|date=2011-07-16&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[P.A. Groove Stations OXP|P.A. Groove Stations]] adds lots of different types of Coriolis and Dodec Stations&lt;br /&gt;
|aut=pagroove&lt;br /&gt;
|con=Griff, Commander McLane&lt;br /&gt;
|date=2010-04-16&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Pallas]] adds a fast but lightly shielded fighter.&lt;br /&gt;
|aut=Charlie&lt;br /&gt;
|con=Svengali&lt;br /&gt;
|date=2010-12-02&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Pelamis]] adds the Pelamis trade ship&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2006-04-24&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Phoenix]] is a strange ship, built from salvaged parts from various Serpent Class ships&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2007-01-17&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://wiki.alioth.net/index.php/Pie_Chart_Style_HUDs Pie Chart Style HUDs] New invention=&amp;gt;pie gauges.[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9788 Info]&lt;br /&gt;
|aut=CommonSenseOTB&lt;br /&gt;
|date=2011-05-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Pirate Coves OXP|Pirate Coves]] adds rock hermits that have been taken over by pirates in more dangerous systems&lt;br /&gt;
|aut=lazygun&lt;br /&gt;
|date=2011-07-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/piratetraps.oxp.zip Pirate Traps] are dummy traders which transmit details of pirates firing on them to the police&lt;br /&gt;
|aut=popsch&lt;br /&gt;
|date=2006-01-04&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Planetfall_OXP|Planetfall]] allows the player to land on and trade at the planets and moons of each system&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-04-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Pods_OXP|Pods]] adds fuel, missile, bulk &amp;amp; empty cargo pods and pods which jam, explode, have trumbles or take a few scoops&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-03-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Police_IFF_Scanner_Upgrade|Police IFF Scanner Upgrade]] highlights offender and fugitive ships with custom IFF scanner colours&lt;br /&gt;
|aut=Capt. Murphy&lt;br /&gt;
|date=2011-06-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Pteradyne Technologies Ships OXP|Pteradyne Technologies Ships]] adds the [[Excalibur]], a buyable combat ship and the [[Paladin]], a military version&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2006-12-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://www.boxcn.net/shared/xccp8ml5cq Pylon Based Equipment Remover] allows to remove a selected piece of equipment from your pylons&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-04-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Python Class Cruiser]] is a large powerful trade ship, which can also hold its own in battle&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2007-07-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/racers.oxp.zip Racers] adds [[Chicaneer Mk II]], [[Chicaneer Mk IV]], [[Dragster Mk I]], and [[Dragster Mk II]] racing ships&lt;br /&gt;
|aut=murgh&lt;br /&gt;
|date=2006-01-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Railgun OXP|Railgun]] introduces a revolutionary new weapons system to the Ooniverse&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-05-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Ramon's Anaconda]] is a fantastic re-imagining of the Anaconda freighter. Check out its special features&lt;br /&gt;
|aut=Ramon&lt;br /&gt;
|con=Griff&lt;br /&gt;
|date=2009-04-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Random_Docking_Music_OXP|Random Docking Music]] plays a random music track from a pre-set list on activating docking computers&lt;br /&gt;
|aut=Frame&lt;br /&gt;
|date=2010-05-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Random Hits OXP|Random Hits]] adds [[Space Bar|seedy space bars]] to anarchy systems that offer large bounties on the galaxy's Most Wanted Criminals&lt;br /&gt;
|aut=LittleBear&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2011-03-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://terrastorage.ath.cx/Marmagka/e8e9ce360da6bb40f5952cbe00f02501/RedSet.zip RedSet] contains red-themed backgrounds for the UI screens&lt;br /&gt;
|aut=another_commander&lt;br /&gt;
|date=2010-06-18&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.purgatori.net/reduxedvamps.htm Reduxed Vampires] adds reworked versions of the Vampire Mk I and Mk II and a Reaper &amp;quot;Gold Edition&amp;quot;&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2010-10-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[RegistrationID|Registration ID]] adds ID tags to all Oolite standard ships&lt;br /&gt;
|aut=Frame&lt;br /&gt;
|date=2010-02-28&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Remorse_Of_Conscience_v2|Remorse Of Conscience]] is a trade ship with a large hold, that can hold its own in combat&lt;br /&gt;
|aut=8-bit Apocalypse&lt;br /&gt;
|date=2005-02-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Renegade Pirates OXP|Renegade Pirates]] adds rare, very well-armed, high bounty pirate versions of Classic Elite ships&lt;br /&gt;
|aut=LittleBear&lt;br /&gt;
|con=Aegidian, Griff&lt;br /&gt;
|date=2006-12-03&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/RVandGS.zip Renegade Viper + Grass Snake] adds [[Renegade Viper|stolen Vipers]] which earn large bounties &amp;amp; [[Grass Snake]], a large pirate trade ship&lt;br /&gt;
|aut=8-bit Apocalypse&lt;br /&gt;
|date=2004-11-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Repair_Bots_OXP|Repair 'Bots]] adds a pylon mounted canister of repair nanobots which attempt to fix damaged equipment in mid-flight&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-02-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Ring_Racer_OXP|Ring Racer]] adds the Corporate Systems Ring Racing League to Galaxy 1&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-04-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Rock Hermit Locator]] adds equipment to locate Rock Hermits&lt;br /&gt;
|aut=Frame&lt;br /&gt;
|date=2011-03-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Saleza Aeronautics]] adds [[Bellatrix Cruiser]]s, [[Rigel Bomber|Rigel Tactical Bomber]]s, and [[Saiph Interceptor]]s to high tech corporate systems&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2010-10-24&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Santa]] adds very rare Santa Sledge to space lanes escorted by plasma gun toting reindeer space bikers!&lt;br /&gt;
|aut=Griff&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2010-05-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.purgatori.net/scorpius.htm Scorpius] adds a heavily armoured private trading and transport vessel, protected by Vampire escorts&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|con=Griff&lt;br /&gt;
|date=2011-02-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Scourge of the Black Baron]] features combat &amp;amp; transport Galaxy 1 missions&lt;br /&gt;
|aut=Rxke&lt;br /&gt;
|con=Kaks, Thargoid&lt;br /&gt;
|date=2010-08-07&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Scout]] is a cheap but good looking ship from Staer9 that shares a lot of technology with the [[Xeikil]]&lt;br /&gt;
|aut=Staer9&lt;br /&gt;
|date=2011-05-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Second Wave OXP|Second Wave]] adds variants of Thargoid Warship, Thargon Robot Fighter and alien ships&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-06-06&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Selezen's S-Ships]] adds [[GalCop SWAT Viper]]s and [[Oresrian Trader]]s&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|date=2007-07-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Sell equipment OXP|Sell Equipment]] allows for small fee, resale of equipment at 60% price at suitable tech level world&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-02-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[[Shady Cobra OXP|Shady Cobra]] adds shader effects to Cobra Mk III&lt;br /&gt;
|aut=Ahruman&lt;br /&gt;
|date=2007-07-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Shady Sungs]] adds replacement textures for all Classic Elite Ships&lt;br /&gt;
|aut=Sung, ADCK&lt;br /&gt;
|date=2010-05-21&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://wiki.alioth.net/index.php/Shield_Equalizer_%26_Capacitors_OXP Shield Equalizer] balances shield energy automatically. [http://wiki.alioth.net/index.php/Shield_Equalizer_%26_Capacitors_OXP Capacitors] store unused shield energy for use later&lt;br /&gt;
|aut=CommonSenseOTB&lt;br /&gt;
|date=2011-05-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Skrounk All-Stars Limited]] adds [[All Stars Large Freighter|Large Freighter]], [[Seymour Class Sled]], [[Starbelly Class Sled]], [[Starhawk]] &amp;amp; [[Starwolf_Mark_I|Starwolf Mk I]]&lt;br /&gt;
|aut=goji62&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Smivs%27_ShipSet|Smiv's Shipset 3.0]] re-textures the standard Oolite ships beautifully with a realistic look &amp;amp; non-shader lighting effects&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2010-12-08&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Snark]] is a powerful fighter/trader, often used by pirates and bounty hunters&lt;br /&gt;
|aut=Flying_Circus&lt;br /&gt;
|date=2006-06-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=10515 Sniper Sight] is equipment to help with long distance targeting.&lt;br /&gt;
|aut=Wildeblood&lt;br /&gt;
|date=2011-07-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=10176 Sniper Scope MilHUD integrated] is an version of MilHUD with integrated Sniper Sight functionality&lt;br /&gt;
|aut=Wildeblood&lt;br /&gt;
|date=2011-06-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Snoopers]] adds the galactic news network channels&lt;br /&gt;
|aut=DaddyHoggy&lt;br /&gt;
|con=Disembodied, Drew, Svengali&lt;br /&gt;
|date=2011-05-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Solid Gold Cobra Mk.3]] is a limited edition Cobra Mk3 to celebrate its 25 years anniversary&lt;br /&gt;
|aut=ADCK&lt;br /&gt;
|date=2010-06-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[http://www.purgatori.net/Sothis.htm Sothis Space Station] is a station from [[Isis Interstellar]] with a compact design of comparable size to a standard Coriolis&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2010-08-08&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Spearhead Interceptor Mk.I]] is a pure fighter, fast &amp;amp; nippy but with weak shields, no cargo bay. Can be twitchy to fly&lt;br /&gt;
|aut=Randell&lt;br /&gt;
|date=2006-07-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[S.I.R.F.|Special Interstellar Repair Facilities]] offer different trading strategies &amp;amp; repair facilities on uncommon trading routes&lt;br /&gt;
|aut=Tinker&lt;br /&gt;
|date=2010-07-02&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.purgatori.net/spectres.htm Spectre] adds [[Isis Interstellar]]'s Vampire Mk V, a secret military vessel fighting Thargoids in witch space&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2011-01-16&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Spy Hunter OXP|Spy Hunter]] is a mission for Galactic Navy for Commander with rating of 'Dangerous' or above&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|date=2009-04-11&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Staer9 Spectre]] is a cheap small fighter with high maneuverability that flopped in the market&lt;br /&gt;
|aut=Staer9&lt;br /&gt;
|date=2011-05-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Star-Jelly]] Beautiful translucent organisms sometimes found in Asteroid fields.&lt;br /&gt;
|aut=Smivs,Staer9&lt;br /&gt;
|date=2011-05-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Star Wars Ships]] adds [[A-Wing]], [[B-Wing]], [[Lambda Shuttle]], [[Tie-Fighter]], [[Tie-Interceptor]], [[X-Wing]], [[Y-Wing]]&lt;br /&gt;
|aut=Azzameen&lt;br /&gt;
|date=2006-05-31&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Status Quo Q-bomb OXP|Status Quo Q-bomb]] changes the behaviour of Q-bombs according to the [[Status Quo]] novel&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-02-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[S.T.E]] is a step up from the Cobra III with improved trading capabilities and increased speed&lt;br /&gt;
|aut=Rustybolts&lt;br /&gt;
|date=2009-07-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Stealth OXP|Stealth]] is a small G3 mission showcasing new scanner capabilities &amp;amp; introducing stealth ships&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-03-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://www.purgatori.net/Steampunk%20HUD.htm Steampunk HUD] adds a steampunk style HUD by [[Isis Interstellar]]&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2010-01-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Stellar Serpents OXP|Stellar Serpents]] adds huge space-born serpent monsters which move from system to system and are good hunting prey&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-07-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[http://sancho.dk/oolite/sunskimmers.zip Sunskimmers] adds ships to the sun/planet corridor&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-08-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[SuperCobra]] is larger, faster with stronger hull than Cobra Mk III&lt;br /&gt;
|aut=8-Bit Apocalypse&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2010-10-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Superhub]] from GASEC is the first station that is capable of transporting itself to its destination&lt;br /&gt;
|aut=P.A. Groove&lt;br /&gt;
|date=2009-11-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Swift]] is a very fast ship often used by pirates or bounty hunters with limited cargo space &amp;amp; nominal shields&lt;br /&gt;
|aut=Charlie&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Switeck's Mod OXP|Switeck's Mod]] rebalances ships &amp;amp; market prices. Adds Medium, Hard, and Harder Jameson saves&lt;br /&gt;
|aut=Switeck&lt;br /&gt;
|date=2011-01-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[System Demux (Oolite)|System Demux]] textures home planet, adds planet/moon combination to systems&lt;br /&gt;
|aut=DrBeeb&lt;br /&gt;
|date=2010-07-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[System Redux (Oolite)|System Redux]] v1.2 textures home planet, adds planet/moon combination to systems&lt;br /&gt;
|aut=CaptKev&lt;br /&gt;
|date=2011-02-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://www.box.net/shared/r05ub873b5 TAF Reset] resets the Time Acceleration Factor (TAF) to 1.0 upon docking&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2009-09-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Taranis OXP|Taranis]] is a mission for law abiding Commanders with rating of Competent+. Adds [[Taranis Corporation HQ (Oolite)|Taranis Corporation HQ]]&lt;br /&gt;
|aut=Roberto&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2009-10-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Target_Autolock_OXP|Target Autolock]] updates [[Scanner Targeting Enhancement]] to auto-lock onto attacking ships&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-02-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Target Range OXP|Target Range]] is found in all rich systems with stable governments&lt;br /&gt;
|aut=Caracal&lt;br /&gt;
|date=2010-07-24&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Target Reticle]] updates [[Scanner Targeting Enhancement]] to turn reticle red when target centred&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2010-05-31&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Taxi Galactica]] adds a Taxi Service and a non player flyable taxi cab ship to systems&lt;br /&gt;
|aut=pleb87&lt;br /&gt;
|date=2008-06-12&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Teretrurus Mk.I]] is a medium fighter/trader somewhat faster &amp;amp; tougher than Cobra Mk III, but with smaller cargo bay&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2008-02-01&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Terrapin|Terrapin Trader]] is a medium fighter/trader. A good upgrade from Cobra Mk III&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2008-02-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Tesoura]] is a slow, but well shielded trade ship&lt;br /&gt;
|aut=Randall, Dr. Nil&lt;br /&gt;
|date=2008-02-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Thargoid Carrier]] arms Thargoids with capital carrier&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|date=2006-06-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Thargorn_Threat_oxp|Thargoid Threat]] adds [[Thargoid Terrorizer Frigate]], [[Thargoid Thargorn Battleship]], [[Thargoid Thorgon Cruiser]]&lt;br /&gt;
|aut=Arexack Heretic&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2011-02-03&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Thargoid Wars]] intensifies war with the Thargoids, featuring new attack and defense missions&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2011-07-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Tianve OXP|Tianve]] adds [[Navy Station]], as well as Visuals, including a pulsar, to the Galaxy 1 system of Tianve&lt;br /&gt;
|aut=Drew&lt;br /&gt;
|date=2009-12-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Tiger Mark I]] is a truly awesome (and very expensive) multi-role craft&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2006-05-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Tionisla Orbital Graveyard]] adds the famed graveyard to Tionisla, G1, as described in “The Dark Wheel” novella&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2011-02-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Tionisla Reporter]] adds a mission for a starting commander&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2011-07-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[TCAT OXP|To Catch a Thargoid]] is a G3 follow-up mission to Thargoid Plans, for Dangerous or Elite rank Commanders&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-12-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Torus station|Torus Station]] adds a vast 2001 style space station to very high tech level systems&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|con=Svengali&lt;br /&gt;
|date=2010-10-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Total patrol OXP|Total Patrol]] makes police ships patrol between planet, witchpoint &amp;amp; sun&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-03-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[ToughGuys|ToughGuys]] Adds 3 levels of increased toughness of 'Baddies', and gives a backdrop for an immersive storyline&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2011-02-16&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Trader Outpost (Oolite)|Trade Outpost]] adds Griff's trade outpost without ads&lt;br /&gt;
|aut=CaptKev, Griff, Ark&lt;br /&gt;
|date=2009-02-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Traffic_Control_OXP|Traffic Control]] personnel gives help with approach to and manual docking at all main stations&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-06-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Transhab station|Transhab Station]] adds a large station with rotating arms to some medium tech level systems&lt;br /&gt;
|aut=Draco_Caeles&lt;br /&gt;
|date=2006-06-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Transports]] adds [[CoachWhip]], [[Coral]], [[Woma]]&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|con=Eric Walch, Kaks&lt;br /&gt;
|date=2010-12-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://wiki.alioth.net/images/d/d9/TrekHud.zip Trek HUD] replaces your HUD with a Star Trek NG LCARS-style HUD&lt;br /&gt;
|aut=barabis&lt;br /&gt;
|date=2008-11-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Trident Down]] contains a series of Galaxy 4 missions investigating a vicious attack on a [[Executive SpaceWays|Trident Shuttle]]&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2010-12-31&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[UPS Courier]] offers Commanders transport of goods/documents &amp;amp; occasional combat missions&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2011-03-29&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Urutu Mark III &amp;amp; Urutu Mark IV]] are medium fighters/traders from Elite-A&lt;br /&gt;
|aut=Milinks&lt;br /&gt;
|date=2006-09-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Vampire]] adds the Purgatori Vampire series of combat ships&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2007-01-29&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Vampire - Diamondback]] adds the Diamondback Vampire series of combat ships&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2010-04-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Vampire - Dominatrix]] adds the Dominatrix Vampire series of combat ships&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2009-12-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Vector OXP|Vector]] is a unusual mission type - fast money, slavers, tricks and GalCop is watching you...&lt;br /&gt;
|aut=Svengali&lt;br /&gt;
|date=2011-02-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Velocity_OXP|Velocity]] is a fast fighter ship&lt;br /&gt;
|aut=Sabre&lt;br /&gt;
|date=2009-09-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.purgatori.net/Venom.oxp.zip Venom] adds [[Venom]]s in normal and renegade versions  from [[Isis Interstellar]]&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2009-12-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Vortex OXP|Vortex]] A new ex-military player ship. Rare, expensive and powerful - kitted out with advanced and unique features&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-03-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.purgatori.net/wasps.htm Wasps] adds formation flying wasps, queen wasps, and wasp nests&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|con=Thargoid, Ahruman, Eric Walch&lt;br /&gt;
|date=2010-08-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/weeviloid2.zip ''Weeviloid''] adds [[Weeviloid Hunter]]s, fearsome multi-gunned war ships and [[Weeviloid Scoutship]]s, light trade ships&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2006-05-11&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Welcome_Mat_OXP|Welcome Mat]] upgrades the comms systems to expand the information that is given on arrival in new system&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-06-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Werewolf]] from [[Isis Interstellar]] has 3 variants:  [[Werewolf|Werewolf ~ Damage Inc.]], [[Werewolf|Werewolf (Civilian)]] &amp;amp; [[Werewolf|Werewolf (Purgatori Model)]]&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2011-02-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Wolf_Mk.2_%28Oolite%29|Wolf Mk II]] adds the powerful Wolf Mk II, as seen in Elite-A&lt;br /&gt;
|aut=Ark&lt;br /&gt;
|date=2009-07-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://wiki.alioth.net/images/0/06/Wolfs_variants.zip Wolfwood's Variants] adds [[Asp_Mk.I|Asp Mk I]], [[Cobra Courier]], [[Cobra Rapier]], [[Drake]], [[Drake Mk II]] &amp;amp; [[Wolf Mk I]]&lt;br /&gt;
|aut=Wolfwood&lt;br /&gt;
|date=2008-02-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Wormhole restoration OXP|Wormhole Restoration]] adds a new way to leave interstellar space without using fuel, expanding on Thargoid backstory&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-05-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Xarik]] is an advanced aircraft, last creation of the late Prof. Eisel Xarik. Used by pirates, traders, and hunters&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2010-02-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Xeikil]] adds a player, a GalCop interceptor, and 24 pirate variants of Staer9 Industries' current top fighter&lt;br /&gt;
|aut=Staer9&lt;br /&gt;
|date=2011-05-16&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Xeikil MK2]] adds a player, a GalCop interceptor, and 24 pirate variants of Staer9 Industries' replacement [[Xeikil]]&lt;br /&gt;
|aut=Staer9&lt;br /&gt;
|date=2011-05-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[YellOo_Cabs]] adds YellOo Cab Co taxis to the Ooniverse. NPC and Buyable&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2011-01-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Your Ad Here!]] adds Convenience Stores [[Pi-42]], [[Tescoo Oxpress]], [[Star]], [[Mall Wart]], [[Sainsboory's]] &amp;amp; [[Security Sidewinder|security sidewinders]]&lt;br /&gt;
|aut=Griff&lt;br /&gt;
|con=DaddyHoggy, Pangloss, Disembodied, Eric Walch&lt;br /&gt;
|date=2011-02-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Z-ships]] adds [[Z-ships_Asp_Explorer|Asp Explorer]], [[Z-ships_Cobra_Commodore|Cobra Commodore]], [[Z-ships_Porcupine|Porcupine]] &amp;amp; [[Z-ships_Python_Courier|Python Courier]]&lt;br /&gt;
|aut=Zieman&lt;br /&gt;
|date=2010-03-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9056 Z-GrOovY Griff's Cobra Mk3 Variety Pack] adds multiple Griff's Cobra Mk3 with alternate hull paintings&lt;br /&gt;
|aut=dertien&lt;br /&gt;
|date=2011-01-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9306 Z-GrOovY System Stations] adds Griff-based Tetrahedron, Octahedron, Coriolis, Dodecahedron, Icosahederon stations&lt;br /&gt;
|aut=dertien&lt;br /&gt;
|date=2011-03-03&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9146 Z-GrOovY Viper Raider] adds a new player ship based on the police Viper&lt;br /&gt;
|aut=dertien&lt;br /&gt;
|date=2011-02-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9056 Z-GrOovY YAH Sidewinder Variety Pack] adds multiple Your Ad Here! Constore defenders with alternate hull paintings&lt;br /&gt;
|aut=dertien&lt;br /&gt;
|date=2011-01-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9056 Z-GrOovY YellOo Cab Variety Pack] adds the Moray Starboat with taxi hull painting&lt;br /&gt;
|aut=dertien&lt;br /&gt;
|date=2011-01-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Work in Progress OXPs  ==&lt;br /&gt;
The following table contains OXPs that either have not yet been released by their authors but are already being discussed on the [http://www.aegidian.org/bb/viewforum.php?f=4 Expansion Pack Forum], or released OXPs that still have WIP status. Links get you either to the respective discussion or the Wiki page if it already exists.&lt;br /&gt;
{{OXPListTableHeader}}&lt;br /&gt;
&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[http://www.box.net/shared/moreq536ht Nexus missile]. Three versions of a multi-warhead missile. Like the anti-thargoid missile but not just for (against) thargoids.&lt;br /&gt;
|aut=UK_Eliter&lt;br /&gt;
|date=2011-07-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?t=8341 Animated Ships] adds animated butterflies flapping their wings as a demo&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-08-06&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9864 Cargo Scanner] scans targeted cargo containers to find out what they contain&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-05-17&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://www.aegidian.org/bb/viewtopic.php?t=8526 Comms Demo] provides a way to communicate with NPC ships&lt;br /&gt;
|aut=Kaks&lt;br /&gt;
|date=2009-10-26&lt;br /&gt;
|work=N}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=6&amp;amp;t=9087 Guerilla War] puts you in a position to lead a fighter squadron&lt;br /&gt;
|aut=Ramirez|date=2011-04-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.box.net/shared/0i2fnrc175t Katipo] adds a very fast, moderate maneuverability, low cargo ship with low thrust&lt;br /&gt;
|aut=Simon B&lt;br /&gt;
|date=2011-03-03&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9441 Miner Pod] breaks up asteroids and collects the splinters&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-03-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?t=8275 Mining] adds mines to protect and provide resources for to get gold&lt;br /&gt;
|aut=docwild&lt;br /&gt;
|date=2010-07-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Nuit Space Station OXP|Nuit Space Station]] is the newest creation of [[Isis Interstellar]]&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2009-11-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mission&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?p=130221#p130221 Oresrati Challenge] adds a fun mission to the loneliest system of the Ooniverse, Oresrati&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-04-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9946 Phantom] is a trader/fighter from [[Isis Interstellar]] with external missiles&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2011-05-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?p=138226#p138226 Shield Cycler] distributes shield energy between fore and aft shields&lt;br /&gt;
|aut=Lone_Wolf&lt;br /&gt;
|date=2011-05-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=5484 Solar System] adds extra planets and jump gates to a system&lt;br /&gt;
|aut=Frame&lt;br /&gt;
|date=2009-01-11&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9472 Sun Skimmer Pod] adds a pod that goes sun skimming and returns full of fuel&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-03-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9488 Target Tracker] aligns your ship on your target&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-03-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9353 Thor Class Supercarrier] adds a Navy Carrier as a replacement pack for the Behemoth and the Galactic Navy&lt;br /&gt;
|aut=dertien&lt;br /&gt;
|date=2011-03-03&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9242 Wormhole Drones] creates a path of worm holes to lead you to your destination system&lt;br /&gt;
|aut=Mauiby de Fug&lt;br /&gt;
|date=2011-02-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[http://www.aegidian.org/bb/viewtopic.php?t=8541 Zygoroids] add new beautifully textured asteroid models to the Ooniverse&lt;br /&gt;
|aut=ZygoUgo&lt;br /&gt;
|date=2010-10-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== OXPs with Problems ==&lt;br /&gt;
The following table contains OXPs that have problems eg. broken download, or have been written for versions of Oolite earlier than the current 1.75.2&lt;br /&gt;
{{OXPListTableHeader}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Amen Bricks Megaships|Amen Brick's Megaships]] adds [[Battleship]]s, [[Biodome]]s, [[Cruiseship]]s, [[Hospitalship]]s, [[Supercargo]]s, [[Superlifter]]s, and [[Yacht - Amen Class|Yacht]]s (This version 1.1 contains a corrupted shipData.plist)&lt;br /&gt;
|aut=Amen Brick&lt;br /&gt;
|date=2008-07-11}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Cataclysm OXP|Cataclysm]] takes up the threads of Constrictor Hunt and Thargoid Plans, and sends you on your biggest Navy mission yet&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2009-01-06&lt;br /&gt;
|work=N}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Kirin#Download|Kirin Sport]] adds a a smaller, faster, more agile - and less well armed - civilian variant of the [[Kirin]]&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2009-07-22&lt;br /&gt;
|work=N}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Localhero_OXP|Localhero]] adds a mission campaign in the first galaxies&lt;br /&gt;
|aut=Svengali&lt;br /&gt;
|date=2008-04-09&lt;br /&gt;
|work=N}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Orb]] adds a new alien race, which might help GalCop in the battle against the Thargoids.&lt;br /&gt;
|aut=Charlie&lt;br /&gt;
|date=2007-02-13&lt;br /&gt;
|work=N}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Personalities OXP|Personalities]] adds a bunch of unique, well-known personalities from the Bulletin Board to the Ooniverse&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2009-11-05&lt;br /&gt;
|work=N}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[[Save Anywhere]] allows you to save your game at any OXP Station&lt;br /&gt;
|aut=Frame&lt;br /&gt;
|date=2008-10-01&lt;br /&gt;
|work=N}}&lt;br /&gt;
|}&lt;br /&gt;
[[Category:Oolite expansion packs]]&lt;br /&gt;
[[Category:OXP Lists]]&lt;br /&gt;
[[Category:Factual]]&lt;/div&gt;</summary>
		<author><name>Mcarans</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.alioth.net/index.php?title=OXP_List&amp;diff=28629</id>
		<title>OXP List</title>
		<link rel="alternate" type="text/html" href="https://wiki.alioth.net/index.php?title=OXP_List&amp;diff=28629"/>
		<updated>2011-07-25T20:20:18Z</updated>

		<summary type="html">&lt;p&gt;Mcarans: /* Sortable Table of OXPs */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
== OXP Categories ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; width=&amp;quot;100%&amp;quot; style=&amp;quot;border-collapse: collapse; border-width: 1px; border-style: solid; border-color: #ffffff; table-layout: fixed; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; width=&amp;quot;70px&amp;quot; style=&amp;quot;margin: 0px; padding: 0px; border-width: 1px; border-style: solid; border-color: #ffffff; background-color: #e7e7ff; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot; |&amp;lt;p style=&amp;quot;font-size: 13px;&amp;quot;&amp;gt;Category&amp;lt;/p&amp;gt;&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;margin: 0px; padding: 0px; border-width: 1px; border-style: solid; border-color: #ffffff; background-color: #e7e7ff; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot; |&amp;lt;p style=&amp;quot;font-size: 13px;&amp;quot;&amp;gt;Description of OXP Category&amp;lt;/p&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Activities_OXPs|Activities]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Allow Commanders to carry out a new activity or task eg. racing, gas giant skimming, taking out loans&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Dockables_OXPs|Dockables]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Add new objects that the player can dock with eg. carriers, space bars, casinos, fuel stations. Also, see [[Oolite Stations]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Ambience_OXPs|Ambience]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Change or add to the scenery, visuals or sound effects eg. planet skins, add new planets/moons to systems, move suns further away, dim nebulae, add monuments&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Equipment_OXPs|Equipment]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Buy upgrades for your ship excluding weapons&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Mechanics_OXPs|Mechanics]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Change the game play in a specific way eg. alter market mechanics, add more pirates&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:HUDs_OXPs|HUDs]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Modifications of your dials, gauges and other read-outs&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Missions_OXPs|Missions]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|New missions for Commanders to undertake. For more information, see [[Oolite Missions]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Retextures_OXPs|Retextures]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Retexture existing objects, either by replacing or adding variations, but without adding objects that did not exist before&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Ships_OXPs|Ships]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|New ships, except dockable ships. Also, see [[Oolite Ships]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Systems_OXPs|Systems]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Alter multiple star systems in a number of ways eg. combinations of changing main station and local police ships, adding new stations, ships, activities, missions&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Weapons_OXPs|Weapons]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Addons for your ship for blowing up the baddies&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Misc_OXPs|Misc]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|OXPs that don't fit into the other categories eg. debug consoles, internationalisations, config mechanisms, demo OXPs&lt;br /&gt;
|}&lt;br /&gt;
OXP authors: if you are unsure how to categorise your OXP or if you wish to update the details of an OXP for an author who has disappeared, please seek advice on the [http://www.aegidian.org/bb/viewforum.php?f=4 Expansion Pack Forum] before proceeding. Please put your OXP in one category only. You can edit the section below to add your OXP.&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Sortable Table of OXPs ==&lt;br /&gt;
The following table is optimized for a horizontal screen resolution of at least 1280px so that all OXP descriptions fit on one line.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; width=&amp;quot;100%&amp;quot; style=&amp;quot;border-collapse: collapse; border-width: 1px; border-style: solid; border-color: #ffffff; table-layout: fixed; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;border-width: 1px; border-style: solid; border-color: #ffffff; background-color: #e7e7ff; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot; |The &amp;quot;C&amp;quot; column indicates compatibility with Oolite beta 1.75:&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Y&amp;quot;=compatible, &amp;quot;Y*&amp;quot;=compatible (but the OXP is not in full working order), &amp;quot;N&amp;quot;=incompatible,  blank=unknown/untested.&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;!-- KEEP ENTRIES ALPHABETICAL AND KEEP LENGTHS OF DESCRIPTIONS TO THAT OF EXISTING ENTRIES OR LESS! --&amp;gt;&lt;br /&gt;
{{OXPListTableHeader}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Accessories OXP|Accessories]] replaces the textures of all Stations and non-ship objects in Oolite with a more detailed and realistic look&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2010-06-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Accipiter]] is the market entry from Xeceesian shipyards, a strong &amp;amp; fast all purpose vessel for experienced commanders&lt;br /&gt;
|aut=CaptSolo&lt;br /&gt;
|con=Staer9, Griff&lt;br /&gt;
|date=2011-05-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Aegidian%27s Specials]] adds the powerful [[Mussurana]], the [[Asp (Oolite)#Notable features|Asp Mark II Special]], and a new cargo canister&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2009-07-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Aegidian%27s X-Ships]] adds [[Python ET Special]]s, [[Cobra Mk.2 (Oolite)|Cobra Mk II]]s, [[Taipan]]s, [[Asp (Oolite)#Notable features|Asp Mark II Special]]s, and [[Sidewinder (Oolite)#Notable features|Sidewinder Special]]s&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2009-04-29&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Pirate Clan Blitzspears|Amen Brick's Pirate Clan One: The Blitzspears]] adds the [[Assassin Blitzspear|Assassin]], the [[Hoodlum]], the [[Scoundrel]], and the [[Spiv]]&lt;br /&gt;
|aut=Amen Brick&lt;br /&gt;
|date=2008-06-30}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Amiga Replacement Sounds]] is based on the sound set used in the Amiga version of the original Elite&lt;br /&gt;
|aut=EAGLE 5&lt;br /&gt;
|date=2006-03-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Systems&lt;br /&gt;
|desc=[[Anarchies OXP|Anarchies]] overhauls legal ratings and spices up anarchies with [[Hacker Outpost]]s, [[Salvage Gang]]s, special stations &amp;amp; ships&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|con=Killer Wolf, Griff, Cdr. Wyvern, Murgh, Aegidian, 8-Bit Apocalypse&lt;br /&gt;
|date=2011-03-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9462 Another HUD] is based on Killer Wolf's Generic HUD&lt;br /&gt;
|aut=NorthenderPNE&lt;br /&gt;
|date=2011-03-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Aphid]] adds the stylish Aphid Escort Service&lt;br /&gt;
|aut=8-Bit Apocalypse&lt;br /&gt;
|date=2005-01-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Aquatics OXP|Aquatics]] adds the Aquarian Shipbuilding Corporation of Aqualina, G3 along with its ships and a mission&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-03-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Armoured Transport Type 1]] adds Gaundlet's [[Gaundlet Armoured Transport Type1|Armoured Transport Type 1]] and [[Gaundlet Armoured Escort Viper|Armoured Escort Viper]] that ferry valuables&lt;br /&gt;
|aut=Arexack Heretic&lt;br /&gt;
|date=2005-12-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Armoury OXP|Armoury]] adds AMS, captured Thargons, drones, probes, a missile rack, some bombs, and the missile machine&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-06-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[The Assassins Guild OXP|Assassins Guild]] adds 21 missions involving murder to order in Galaxy 7&lt;br /&gt;
|aut=Littlebear&lt;br /&gt;
|date=2011-05-03&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Asteroid Storm]] adds different types of asteroids &amp;amp; a mission where a station in G1 is threatened by a large asteroid strike&lt;br /&gt;
|aut=LittleBear, Charlie&lt;br /&gt;
|date=2011-01-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Aurora]] adds huge passenger ships for the wealthiest in society&lt;br /&gt;
|aut=pagroove&lt;br /&gt;
|con=Griff, Thargoid&lt;br /&gt;
|date=2010-11-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://www.mediafire.com/?fnc65em7uh5un1d Auto ECM] fires the ECM once when a missile is fired at the player's ship. See the [http://aegidian.org/bb/viewtopic.php?p=138124#p138124 BB] for more info&lt;br /&gt;
|aut=Switeck&lt;br /&gt;
|date=2011-05-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Auto eject OXP|Auto Eject]] ejects your escape pod automatically when your energy becomes too low&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2010-06-16&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Automatic Chaff System]] provides an enhanced chaff-based missile countermeasure system&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2010-06-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Baakili Far Trader]] adds a dockable alien ship&lt;br /&gt;
|aut=Zieman&lt;br /&gt;
|date=2010-09-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Bandersnatch]] adds a pirate capital vessel armed with 4 x fore lasers&lt;br /&gt;
|aut=Flying_Circus&lt;br /&gt;
|date=2009-11-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Beer Cooler]] allows you to fit your ship with a beer cooler&lt;br /&gt;
|aut=Maik&lt;br /&gt;
|date=2010-08-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Behemoth]] adds a dockable Navy cruiser carrying [[Navy Asp]]s and [[Navy Viper]]s&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2011-01-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[ADCK%27s Behemoths]] adds shadered versions of the [[Behemoth]],  [[Galactic Navy OXP|Galactic Navy]] ships and stations, and then some&lt;br /&gt;
|aut=ADCK&lt;br /&gt;
|con=Aegidian, pagroove, Nemoricus, Selezen, Simon B&lt;br /&gt;
|date=2010-04-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Behemoth Spacewar]] adds intelligence to the Behemoth and brings a combat with Thargoids&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2010-01-09&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[BGS|BGS - Background Set]] framework for images, sounds and ambient music&lt;br /&gt;
|aut=pagroove, Svengali&lt;br /&gt;
|date=2011-03-16&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[BigShips OXP|Big Ships]] ensures that large ships do not dock and controls population of systems with them&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2009-11-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Black Monk Monastery]] offers loans in advanced systems and adds the [[Black Monk Gunship]] to persecute defaulters&lt;br /&gt;
|aut=LittleBear&lt;br /&gt;
|date=2010-06-14&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[BlackjacksBullion OXP|Blackjack's Bullion]] starts in galaxy 2 at Telace as Commander Blackjack arrives via escape pod&lt;br /&gt;
|aut=Rustybolts&lt;br /&gt;
|date=2010-03-08&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[BlOomberg Markets]] varies the in-game economy by generating random events that affect commodity prices&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2011-03-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Boa II Clipper Class]] is a development of the Boa Class Cruiser, adding a third engine at the cost of cargo space&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2011-01-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Boomslang]] adds a mid-range multi-role ship. Used by pirates and traders alike&lt;br /&gt;
|aut=milinks, Jar&lt;br /&gt;
|date=2008-09-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Bounty Scanner]] adds bounty details (if any) to the targeting lock-box display when locked onto other ships&lt;br /&gt;
|aut=Frame&lt;br /&gt;
|date=2010-07-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[BountyStatus OXP|Bounty Status]] displays your current bounty (and your legal status) on the F5 manifest screen&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-05-08&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Breakable_'Standard'_Equipment_OXPs|Breakable 'Standard' Equipment]] makes some standard equipment such as HUD/Scanner damageable in combat&lt;br /&gt;
|aut=Capt. Murphy&lt;br /&gt;
|date=2011-07-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Bulk Haulers]] adds the [[Lynx Bulk Carrier (Oolite)|Lynx Bulk Carrier]], the [[Long Range Cruiser (Oolite)|Long Range Cruiser]], the [[Bulk Hauler]], and the [[Super Bulk Hauler]]&lt;br /&gt;
|aut=ADCK&lt;br /&gt;
|con=Aegidian, pagroove&lt;br /&gt;
|date=2010-04-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[BuoyRepair|Buoy Repair]] adds a [[Buoy Repair Facility]] and related ships to repair defect or destroyed nav-beacons&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|con=Svengali, Murgh, Zieman&lt;br /&gt;
|date=2011-06-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[[Cabal Common Library]] is a collection of snippets and helpers for OXPs&lt;br /&gt;
|aut=Svengali&lt;br /&gt;
|con=Cmd.Cheyd, PhantorGorth&lt;br /&gt;
|date=2011-07-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Caduceus]] adds the very expensive (and deadly) Caduceus&lt;br /&gt;
|aut=ClymAngus&lt;br /&gt;
|con=Cdr. Wyvern, another_commander, Eric Walch, Thargoid&lt;br /&gt;
|date=2010-12-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Capisastra]] adds [[Capisastra Defender]]s, [[Capisastra Hauler]]s, and [[Capisastra Warrior]]s&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|date=2006-01-12}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Captain Berf Engineer]] adds a voice for crew members&lt;br /&gt;
|aut=Captain Berf&lt;br /&gt;
|date=2009-12-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Captain Berf Pilot]] adds a voice for crew members&lt;br /&gt;
|aut=Captain Berf&lt;br /&gt;
|date=2009-12-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Captain Berf Pilot Alien]] adds a voice for crew members&lt;br /&gt;
|aut=Captain Berf&lt;br /&gt;
|date=2009-12-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Captain Berf Tactical Officer]] adds a voice for crew members&lt;br /&gt;
|aut=Captain Berf&lt;br /&gt;
|date=2009-12-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Cargo Shepherd OXP|Cargo Shepherd]] attracts cargo pods and holds them until you can scoop them, also includes a beacon&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-04-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://www.box.net/shared/4lphdkazs5 CB-HUD] features a HUD that changes based on installed equipment. See the [http://aegidian.org/bb/viewtopic.php?p=141035#p141035 BB post] for more information&lt;br /&gt;
|aut=Captain Beatnik&lt;br /&gt;
|date=2011-05-29&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Clear Skies OXP|Clear Skies]] reduces nebula effects and dims stars. Handy if your system is finding it hard to run Oolite&lt;br /&gt;
|aut=johnsmith&lt;br /&gt;
|date=2006-11-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Cobra 3.5|Chopped Cobra]] adds the Cobra Mk 3.5, a slightly faster and tougher variant with a reduced cargo bay&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2006-12-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9157 Cobra AC] is a faithful reproduction of the Cobra on the cover of the Dark Wheel novella with improved specs&lt;br /&gt;
|aut=dertien&lt;br /&gt;
|date=2011-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Cobra Clipper SAR]] adds a custom Cobra Mk III to rescue stranded Commanders&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2010-04-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Cobra III NjX]] adds a faster, tougher variation on the Classic Cobra Mk III&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|date=2006-08-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Cobra Mark III-XT]] Cobra3 with revamped architecture and upgraded systems to boost performance&lt;br /&gt;
|aut=CaptSolo&lt;br /&gt;
|date=2011-07-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.purgatori.net/cobra4.htm Cobra MkIV] is [[Isis Interstellar]]'s successor to the Cobra MkIII, available in trader and fighter variants&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2010-11-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[OosoundsCombined OXP|Combined Murgh, Wiggy &amp;amp; xaotik's sounds]] combines the 3 available packs from Murgh, Wiggy and xaotik&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|con=Murgh, Wiggy, xaotik&lt;br /&gt;
|date=2009-09-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Systems&lt;br /&gt;
|desc=[[Commies]] Adds [[Astro Mines]], [[CZGF|Factories]], [[SLAPU|Production Units]], [[Worker%27s Commuter|Commuters]] &amp;amp; special police ships to Communist systems&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|con=Ramirez, Murgh, johnsmith, HueijRevisited&lt;br /&gt;
|date=2010-05-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[CompactHUD|Compact HUD]] provides an alternative HUD with a clean look&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Condor]] adds a very powerful police and Navy Cruiser&lt;br /&gt;
|aut=Charlie&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2010-10-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Console HUD]] Azure themed semi-transparent HUD with balanced array of indicators&lt;br /&gt;
|aut=CaptSolo&lt;br /&gt;
|date=2011-07-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[http://www.box.net/shared/mq1mzoc79t Constrictor Mission Hints] adds more hints for those doing the native Constrictor Mission&lt;br /&gt;
|aut=Arexack Heretic&lt;br /&gt;
|date=2010-08-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Contractor ZZ1]] Very fast combat 'stealth' ship. Appears in-game as a Bounty-hunter and rarely as Pirate. Buyable&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2011-01-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Copperhead]] Redux of core ship in Archimedes Elite slightly modified. NPC and player buyable&lt;br /&gt;
|aut=CaptSolo&lt;br /&gt;
|date=2011-05-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Croydon Starsoarer]] adds a ship that is similar to the Asp in specification&lt;br /&gt;
|aut=SimonB&lt;br /&gt;
|con=pagroove&lt;br /&gt;
|date=2010-05-08&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[CustomSounds OXP|CustomSounds]] replaces/adds 40+ sounds, featuring music &amp;amp; extensive use of calm female computer voice for warnings&lt;br /&gt;
|aut=milinks&lt;br /&gt;
|date=2006-12-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[DWCobra|Dark Wheel Cobra]] is a custom Cobra Mk III model, as seen on the cover of the Elite Manual&lt;br /&gt;
|aut=ramon&lt;br /&gt;
|date=2006-11-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[[Debug OXP]] is a special OXP that enables JavaScript console support in test releases of Oolite (1.70 and later)&lt;br /&gt;
|aut=Ahruman&lt;br /&gt;
|date=2010-06-19&lt;br /&gt;
|work=N}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[http://deephorizonindustries.com/Gas_Giant_Skimming.html Deep Horizon - Gas Giants Skimming] allows to skim gas giants to refuel a ship or mine them for rare minerals&lt;br /&gt;
|aut=Cdr. Cheyd&lt;br /&gt;
|date=2010-07-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://deephorizonindustries.com/Lights_Down.html Deep Horizon - Lights Down] lowers ambient light within system to give more natural feel to planets and ships&lt;br /&gt;
|aut=Cdr. Cheyd&lt;br /&gt;
|date=2010-07-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://deephorizonindustries.com/Nav_Buoy.html Deep Horizon - Nav Buoy 1.0] replaces Witchpoint, Station, and other Nav Buoys with a new model.&lt;br /&gt;
|aut=Cdr. Cheyd&lt;br /&gt;
|date=2011-07-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[http://deephorizonindustries.com/Pirate_Ambushes.html Deep Horizon - Pirate Ambushes] adds pirates that ambush the player upon exit from witchspace&lt;br /&gt;
|aut=Cdr. Cheyd&lt;br /&gt;
|date=2010-07-06&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://deephorizonindustries.com/DH-Systems.html Deep Horizon - Systems] textures the main planet of a system as well as adding moons and additional planets&lt;br /&gt;
|aut=Cdr. Cheyd&lt;br /&gt;
|date=2010-07-06&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Deep Space Dredger]] adds dockable Space Dredgers, defended by [[Sabre]] fighters, and a missile to salvage derelict ships&lt;br /&gt;
|aut=Sabre&lt;br /&gt;
|date=2011-01-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[DeepSpacePirates|Deep Space Pirates]] adds pirates and asteroids outside the space lanes&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2010-01-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Deepspace Ships#Deepspace HUDs|Deepspace HUD]] is an alternative HUD with two versions&lt;br /&gt;
|aut=DeepSpace&lt;br /&gt;
|date=2010-02-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Deepspace Ships]] replaces the default ships with new textures&lt;br /&gt;
|aut=DeepSpace&lt;br /&gt;
|date=2010-02-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Deposed OXP|Deposed]] is a series of missions set in Galaxy 4 for an experienced Commander&lt;br /&gt;
|aut=Cdr. Wombat&lt;br /&gt;
|con=Commander McLane, Eric Walch&lt;br /&gt;
|date=2009-03-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Systems&lt;br /&gt;
|desc=[[Dictators OXP|Dictators]] adds a range of ships and stations to each dictatorship and offers new trading opportunities to players&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2010-06-19&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Diso OXP|Diso]] adds extra planets and stations to the Diso system in Galaxy 1&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2010-11-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Display reputation OXP|Display Reputation]] lets you know your current reputations in the passenger ferrying and the cargo contract market&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2010-03-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Oolite Docking Clearance Protocol (v1.72 or later)|Docking Clearance]] enables the docking clearance protocol for all stations&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2008-12-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Griff Industries|Dodo Stations]] adds new textures for Dodecahedron stations&lt;br /&gt;
|aut=Griff, CaptKev&lt;br /&gt;
|date=2010-05-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Dr HUD OXP|Dr HUD]] is an alternative HUD&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2006-12-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Dragon|Dragon Assault Craft]] adds a heavy combat ship, and the Military Smart Missile, an improved hard head&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2008-11-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Dragon#Download|Dragon Military Missile]] adds an enhanced hardhead, seeks priority targets when ECM'd&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2008-11-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.mediafire.com/?rllzzcbkwgm Dragonfly/Firefly S.T] adds [[Dragonfly S.T]] &amp;amp; much faster [[Firefly S.T]]. Ideal small fast ships for pirates or bounty hunters&lt;br /&gt;
|aut=Rustybolts&lt;br /&gt;
|date=2009-10-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Eagle Mk II]] adds the cheap Eagle Mk II escort vessel in several different versions, including an enhanced SE&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|date=2006-03-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[ADCK%27s Eagles|Eagles Mk I to IV]] adds four Eagle Long Range Fighters to the game&lt;br /&gt;
|aut=ADCK&lt;br /&gt;
|date=2010-04-07&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Energy Equipment OXP|Energy Equipment]] adds a pylon-mounted automatically triggered top-up for when the juice runs low&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-03-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Escort Contracts OXP|Escort Contracts 1.2]] allows players to enter into short-term escort contracts with NPC lone wolf traders&lt;br /&gt;
|aut=Capt Murphy&lt;br /&gt;
|date=2011-07-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[ETT Homing Beacon]] marks a position in space by deploying a pylon-mounted beacon&lt;br /&gt;
|aut=Twisted&lt;br /&gt;
|con=Lone_Wolf&lt;br /&gt;
|date=2011-04-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Executive SpaceWays]] adds [[Delta Long-Range Escort|Delta]]/[[Gemini Escort|Gemini]] Escorts, [[Starseeker Personal Shuttle|Starseeker]]/[[Trident Executive Shuttle|Trident Exec]] Shuttles, [[Strelka Cruise Liner]]s&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2010-06-19&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.box.net/shared/moreq536ht#/shared/moreq536ht/1/71484311/786362645/1 Extra Thargoids] adds 2 types of Thargoid ships, each of which packs surprises. Replaces the 'Poet' Frigate OXP&lt;br /&gt;
|aut=UK_Eliter&lt;br /&gt;
|date=2011-07-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Systems&lt;br /&gt;
|desc=[[Factions OXP|Factions]] from anarchy, feudal, dictatorship &amp;amp; communist systems meet in multi-government systems and start fighting&lt;br /&gt;
|aut= m4r35n357&lt;br /&gt;
|date=2011-06-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Famous Planets OXP|Famous Planets]] adds unique textures, new descriptions, and theme tunes for many planets in G1 and G2&lt;br /&gt;
|aut=pagroove&lt;br /&gt;
|con=Cdr. Cheyd, Stromboli, Pangloss, CaptKev, Drew Wagar, Thargoid, Svengali, Lestradae, UK Eliter&lt;br /&gt;
|date=2010-09-30&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Famous Planets Liners OXP|Famous Planets Liners]] adds Spaceway Liners on the 4 spaceways from Lave to Zadies&lt;br /&gt;
|aut=pagroove&lt;br /&gt;
|con=Ramirez, Presti70, Thargoid&lt;br /&gt;
|date=2009-03-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Far Arm ships|Far Arm Ships]] adds [[Far Arm Sunracer|Sunracer]]s, [[Far Arm Scow|Scow]]s, [[Far Arm Tanker|Tanker]]s, [[Far Arm Corsair|Corsair]]s, [[Far Arm Dart|Dart]]s, [[Far Arm Hunter|Hunter]]s, [[Far Arm Cruiser|Cruiser]]s, [[Far Arm Titan|Titan]]s, [[Far Arm Manchi Vulture|Vulture]]s, and [[Far Arm Manchi Wasp|Wasp]]s&lt;br /&gt;
|aut=Zieman&lt;br /&gt;
|date=2010-10-02&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Far Star Murderer]] adds a mid-range fighter / trader, with a fair sized cargo bay&lt;br /&gt;
|aut=8-Bit Apocalypse&lt;br /&gt;
|date=2005-01-01&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://www.box.net/shared/d57y0uip74 Far Sun] places suns further away from the planet than standard Oolite&lt;br /&gt;
|aut=Kaks&lt;br /&gt;
|date=2010-05-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.box.net/shared/moreq536ht Fer de Lance 3G] adds player &amp;amp; NPC Fer de Lance versions with custom paint jobs &amp;amp; altered specs. New bug fixes&lt;br /&gt;
|aut=UK_Eliter&lt;br /&gt;
|date=2011-07-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Fer de Lance NG]] adds a more powerful version of the Fer de Lance with several custom paint jobs&lt;br /&gt;
|aut=alien&lt;br /&gt;
|date=2005-03-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Ferdepai]] adds a new fighter / trader to Galaxy 2&lt;br /&gt;
|aut=johnsmith&lt;br /&gt;
|date=2006-12-17&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Systems&lt;br /&gt;
|desc=[[Feudal States]] adds the [[Jäger]], the [[Korvette]], the [[Zerstörer]], a [[Royal Hunting Lodge]] and other elements to feudal systems&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2011-05-30&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Fighter HUD (Oolite)|Fighter HUD]] is an alternative HUD&lt;br /&gt;
|aut=CaptKev&lt;br /&gt;
|date=2008-05-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Firewasp]] adds a fast interceptor&lt;br /&gt;
|aut=Draco_Caeles&lt;br /&gt;
|date=2006-05-10&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Fireworks OXP|Fireworks]] allows you a joyful celebration of whatever it is you want to celebrate&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-05-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Flight Log OXP|Flight Log]] adds a log of the last 10 systems visited&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-01-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Flying Dutchman OXP|Flying Dutchman]] adds the small chance to meet a Ghost Ship in the Ooniverse&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|con=Griff&lt;br /&gt;
|date=2011-04-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[[Freaky Thargoids OXP|Freaky Thargoids]] is a shader demonstration for Oolite&lt;br /&gt;
|aut=Ahruman&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2011-02-03&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Free Trade Zone]] adds an independent trading post of dubious legality to Multi-Government systems&lt;br /&gt;
|aut=Disembodied&lt;br /&gt;
|con=Commander McLane&lt;br /&gt;
|date=2010-10-08&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Frog Space Rickshaw]] adds a chatty space taxi service to the safer systems&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2006-01-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Fuel Collector OXP|Fuel Collector]] scoops fuel from killed ships and collects fuel while cruising, even in witch space&lt;br /&gt;
|aut=Frame&lt;br /&gt;
|con=Commander McLane&lt;br /&gt;
|date=2011-07-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Fuel Station OXP|Fuel Station]] adds fly-thru Fuel Stations and Fuel Satellites near the witchpoint and along route one&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-06-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Fuel Tank]] v2.2 mounts in place of a missile, to top up 3 light years of fuel&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2008-05-31&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Furball OXP|Furball]] adds barroom brawls that've got out of hand. Furious fugitives flee from pissed off police on the station's doorstep&lt;br /&gt;
|aut=Caracal&lt;br /&gt;
|con=m4r35n357&lt;br /&gt;
|date=2011-06-06&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Systems&lt;br /&gt;
|desc=[[Galactic Navy OXP|Galactic Navy]] adds more ships and stations to the arsenal of the Galactic Navy. Allows to join the Navy Reserves&lt;br /&gt;
|aut=Nemoricus&lt;br /&gt;
|date=2010-12-30&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[GalDrivePod]] A portable Galactic Hyperdrive unit, allowing you to complete the &amp;quot;Lost Worlds Grand Tour&amp;quot;&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2011-03-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://www.boxcn.net/shared/5dqx22u06i Galaxy Info] helps you search for systems by criteria you select and will try to locate the nearest one&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-04-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Gates OXP|Gates]] ads short-cut jump gates to suitable systems, speeding journeys between the main station and witchpoint&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-04-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Generation Ships OXP|Generation Ships]] adds encounters with the mythical Generation Ships from time to time&lt;br /&gt;
|aut=Draco_Caeles&lt;br /&gt;
|con=Commander McLane&lt;br /&gt;
|date=2011-04-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Globe station|Globe Station]] is a new type of stations that appears in advanced systems&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|con=Svengali&lt;br /&gt;
|date=2009-10-22&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Greek Ships OXP|Greek Ships]] adds [[Penelope Class Freighter]]s, [[Telemachus Class Escort]]s, and [[Ulysses Class Interceptor]]s&lt;br /&gt;
|aut=8-Bit Apocalypse&lt;br /&gt;
|date=2005-07-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Griff ArcElite|Griff's ArcElite]] adds versions of native Oolite ships textured &amp;amp; shaded to resemble the Acorn Archimedes version of Elite&lt;br /&gt;
|aut=Griff&lt;br /&gt;
|date=2008-09-29&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Griff Boa]] contains the famous Griff Boa&lt;br /&gt;
|aut=Griff&lt;br /&gt;
|date=2010-06-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://www.boxcn.net/shared/k2lvh3enuy Griff's Explosion Debris] adds new alloy &amp;amp; debris models to exploding ships&lt;br /&gt;
|aut=Griff&lt;br /&gt;
|con=Thargoid&lt;br /&gt;
|date=2009-02-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Griff Krait]] adds a heavily modified Krait, similar in design to the Griff Boa&lt;br /&gt;
|aut=Griff&lt;br /&gt;
|date=2010-06-17&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Griff Industries|Griff's Normalmapped Ships]] adds some of the best looking ships, stations, and flotsam available in Oolite&lt;br /&gt;
|aut=Griff&lt;br /&gt;
|date=2011-04-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Griffin Two (Oolite)|Griffin Two]] adds the Griffin Mk II from Frontier&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2005-10-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Gritty Coriolis OXP|Gritty Coriolis]] alternates the Coriolis stations with two elaborate gritty Corioli&lt;br /&gt;
|aut=xaotik&lt;br /&gt;
|date=2006-02-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://wiki.alioth.net/images/2/2d/G-HUD_Mk2.oxp.zip G-HUD Mk2] adds an alternative HUD&lt;br /&gt;
|aut=Gunney Plym&lt;br /&gt;
|date=2008-07-08&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Halsis]] features a female cockpit voice, sometimes called Hal's Hot Sister&lt;br /&gt;
|aut=Ovvldc&lt;br /&gt;
|date=2006-08-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[BoyRacer|Hatchling BoyRacers]] adds the  talkative (and often insulting) [[BoyRacer]]s to more advanced systems&lt;br /&gt;
|date=2006-01-13&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Staer9 haulerp30|Hauler P30]] is a very large cargo ship made by Staer9 Industries&lt;br /&gt;
|date=2011-05-11&lt;br /&gt;
|aut=Staer9&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Hawksound]] features a quality female computer voice, new weapon, damage and some station interface sounds&lt;br /&gt;
|aut=Hawkstrom&lt;br /&gt;
|date=2008-11-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Herald Military Gunboat|Herald]] adds the [[Herald Military Gunboat]], a powerful police and Navy interceptor&lt;br /&gt;
||aut=Flying_Circus&lt;br /&gt;
|date=2005-01-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Hired Guns OXP|Hired Guns]] adds escort ships that can be contracted to accompany you on your next journey&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-02-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Hognose|Hognose Tugships]] adds the [[Hognose]], a chatty tug ship that can be seen towing broken down ships&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|con=Jonnycuba&lt;br /&gt;
|date=2006-03-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[HoOpy Casino]]s appear near the station in advanced systems. You can win or lose credits in games of chance&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2010-06-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Hotrods OXP|Hotrods]] adds custom paint jobs to classic Elite ships, racing vehicles, and a space gang that doesn't like the player&lt;br /&gt;
|aut=Kaks&lt;br /&gt;
|con=Arexack_Heretic, Murgh&lt;br /&gt;
|date=2009-03-16&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[HyperCargo OXP|HyperCargo]] adds an extended and expanded cargo handling system&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-09-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Hyperradio js OXP|Hyperradio]] is an expandable music-player&lt;br /&gt;
|aut=Svengali&lt;br /&gt;
|date=2011-02-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Icarus (Oolite)|Icarus]] adds a small fighter / trader based on blueprints from the lost Solice system&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|date=2007-07-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Illegal_Goods_Tweak_OXP|Illegal Goods Tweak 1.4]] adds interactions with Galcop customs on docking at a main station with Contraband in the hold&lt;br /&gt;
|aut=Capt. Murphy&lt;br /&gt;
|date=2011-06-17&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Illicit Unlock OXP|Illicit Unlock]] allows the player to fly all the classic Elite ships&lt;br /&gt;
|aut=tgape&lt;br /&gt;
|date=2005-10-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Griff_Industries#Related_OXP's_by_Other_Authors|Illicit Unlock - Griff Version]] allows the player to fly [[Griff Industries#Griff's Normalmapped Ships OXP|Griff's]] pirate/viper Ships&lt;br /&gt;
|aut=ADCK&lt;br /&gt;
|con=dertien&lt;br /&gt;
|date=2011-02-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[I_Missile|I_Missile]] Very fast, very destructive weapon at an affordable price.&lt;br /&gt;
|aut=CaptSolo&lt;br /&gt;
|date=2011-07-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Imperial Courier (Oolite)|Imperial Courier]] adds the powerful Imperial Courier from Frontier, constructed by [[Seldar Shipyards]]&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|con=Commander McLane&lt;br /&gt;
|date=2007-06-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Imperial Trader (Oolite)|Imperial Trader]] adds the powerful Imperial Trader from Frontier&lt;br /&gt;
|aut=ADCK&lt;br /&gt;
|date=2010-06-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Interstellar help OXP|Interstellar Help]] allows you to help out traders who got stuck in interstellar space without fuel&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-03-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Ionics OXP|Ionics]] adds a series of missions featuring the Ionics Company of Zaria, the Ramaza Liberation Front and The Link&lt;br /&gt;
|aut=Galileo&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2010-08-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[IronHide OXP|IronHide]] introduces the new range of IronHide ship armour from the Aquarian Shipbuilding Corporation&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-02-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Iron Raven]] is a multi-stage mission to investigate a dangerous conspiracy on behalf of GalCop High Command&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2011-04-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Ixian Ships|Ixian Military Ships]] adds Ixian [[Ixian Battle Cruiser|Battle Cruiser]]s, [[Ixian Bezerka|Bezerka]]s, [[Ixian Gunship|Gunship]]s and [[Ixian No-Ship Mark I|No-Ship]]s from Dune&lt;br /&gt;
|aut=8-Bit Apocalypse&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2009-03-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Ixian Ships#Ixian Freighter|Ixian Freighter]] adds a civilian freighter to the universe&lt;br /&gt;
|aut=8-Bit Apocalypse&lt;br /&gt;
|date=2005-01-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Jabberwocky]] adds the powerful Jabberwocky fighter / trader&lt;br /&gt;
|aut=Flying_Circus&lt;br /&gt;
|date=2006-03-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[JellyBaby Dispenser]] adds a handy Jellybaby Dispenser for your cockpit&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2011-03-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Kestrel &amp;amp; Falcon OXP|Kestrel &amp;amp; Falcon]] adds buyable Star Wars style [[Falcon_%28Oolite%29|Falcon]] for pirates/traders and the [[Kestrel]], a police/navy interceptor&lt;br /&gt;
|aut=Charlie&lt;br /&gt;
|con=Kaks&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Killer_Wolf's_Dynamic_HUD|Killer Wolf's Dynamic HUD]] adds a version of the dynamic HUD first seen in Killer Wolf's Werewolf ships, to all ships&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|con=Thargoid&lt;br /&gt;
|date=2010-07-08&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Killit_OXP|Killit]] adds a bunch of insane super weapons&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-05-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Kirin]] adds a heavy military hauler, CV &amp;amp; XM versions used by both pirates &amp;amp; traders&lt;br /&gt;
|aut=ClymAngus&lt;br /&gt;
|con=Cdr. Wyvern&lt;br /&gt;
|date=2009-09-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Klepto-HUD OXP|Klepto-HUD]] is a different take on a HUD with precise crosshairs&lt;br /&gt;
|aut=Kleptoid&lt;br /&gt;
|date=2006-03-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://sancho.dk/oolite/lane_legal.zip ''Lane Legal Racers''] adds NPC versions of [[Krait]]s, [[Mamba]]s, and [[Sidewinder]]s from different [[Racers#Listing_of_sponsored_teams|racing teams]]&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-09-27&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Lave OXP|Lave]] is a system make-over for Lave, adding all features described in The Dark Wheel novella included with original Elite&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2009-12-31&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Lave Academy OXP|Lave Academy]] adds Lave Academy Station above Lave &amp;amp; other planets, with 3 mini-games to test Commanders' skills&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-06-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[http://www.boxcn.net/shared/9q1cbydgan LinkG7] is a mission in Galaxy 7&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-02-16&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Llama]] adds the Llama fighter / trader. Updated from the version of Oosat1 to fix a small bug&lt;br /&gt;
|aut=Flying_Circus&lt;br /&gt;
|date=2006-02-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://www.boxcn.net/shared/jtpt2vlol5 Long Range Target Scanner] shows all ships currently in your system and allows to target them&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-05-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[LongWay_OXP|Long Way Around]] adds a transport mission well suited to the novice in Galaxy 1&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2009-04-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Longshot]] adds the Longshot fighter / trader, regarded by many as a cheaper alternative to the Cobra Mk III&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Lovecats.oxp|Lovecats]] is a mission about love &amp;amp; betrayal amongst the feline races of Galaxy 4. Fast ship &amp;amp; hard heart required!&lt;br /&gt;
|aut=johnsmith&lt;br /&gt;
|date=2010-01-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Second-hand ships|M-Pack (rusties)]] adds rusty banger versions of all Classic Elite ships in poor condition but still can haul cargo&lt;br /&gt;
|aut=murgh&lt;br /&gt;
|date=2006-01-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Manta]] adds the Manta light escort craft&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Marett Space Corporation OXP|Marett Space Corporation]] releases [[Adder Mk II]], [[Mosquito Trader]], [[Mosquito Sport]], new fighters / medium traders&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://www.crimsonforge.co.uk/cloister/MedusaHud.oxp.zip Medusa HUD] is an alternative HUD&lt;br /&gt;
|aut=ClymAngus&lt;br /&gt;
|date=2009-01-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Mega-Walnut Dashboard OXP|Mega-Walnut Dashboard]] is a generic version of the fabled Fer de Lance HUD&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2005-07-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Merlin_(Oolite)|Merlin]] Ships are interceptors used by the Police &amp;amp; Navy, but also available on the open market&lt;br /&gt;
|aut=Charlie&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[MildAudio]] Sound Set&lt;br /&gt;
|aut=xaotik&lt;br /&gt;
|date=2006-02-15&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Military_Fiasco|Military Fiasco]] adds a navy mission for Commanders with &amp;gt; 1,000 kills. Also equips Navy with powerful cruisers&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2011-01-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Military station|Military Station]] adds well armed Military Stations to the more advanced systems&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Military Stingray Mk. II|Military Stingray]] adds an ex-military ship that may show up in pirate hands or for the player to buy&lt;br /&gt;
|aut=CaptKev&lt;br /&gt;
|date=2007-03-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Milspec HUD|Milspec HUD]] is an alternative HUD with targeting aids and an emphasis on functionality&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2010-07-08&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Misjump_Analyser|Misjump Analyser]] scans witchspace &amp;amp; on detection of disturbances sounds an alarm &amp;amp; logs location of disturbance&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2010-05-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?p=135619#p135619 Misjump Inducer] can turn on/off misjumps on demand&lt;br /&gt;
|aut=Switeck&lt;br /&gt;
|date=2011-04-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Missile_Analyser|Missile Analyser]] scans incoming missiles &amp;amp; sets target to incoming missile when it is no standard missile&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2010-05-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Missiles_and_Bombs|Missiles &amp;amp; Bombs]] adds a wide variety of missiles &amp;amp; bombs that are are available to player &amp;amp; NPCs alike&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2009-12-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Missionaries OXP|Missionaries]] adds clerics of four faiths who spam Commanders with requests to worship their Gods&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Moccasin]] adds light escort craft from Xeceesian Shipyards modeled after ArcElite core ship&lt;br /&gt;
|aut=CaptSolo&lt;br /&gt;
|date=2011-06-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Mod-HUD]] is a slight modification / re-organization of the standard Oolite HUD without surround boxes&lt;br /&gt;
|aut=CaptSolo&lt;br /&gt;
|date=2011-05-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/monument.zip Monument] sometimes adds a monument to famous Commanders close to the Sun&lt;br /&gt;
|aut=dajt&lt;br /&gt;
|date=2005-05-28&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Morrigan]] adds a vast trade ship to the Universe&lt;br /&gt;
|aut=Flying_Circus&lt;br /&gt;
|date=2009-12-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Oosounds2_OXP|''Murgh's Replacement Sounds'']] contains 10 new sounds&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2005-08-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Murgh_Xships OXP|Murgh's X-Ships]] adds [[Bandy-Bandy]], [[Chuckwalla]], [[Eel Rapier]], [[Taipan]] (fast courier craft &amp;amp; 2 light escort ships)&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2009-09-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[NavalGrid OXP|Naval Grid]] enhances recharging rates by linking the naval energy unit to military-boosted shields&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-03-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Neolite Ships]] is an Oolite ships replacement set&lt;br /&gt;
|aut=SimonB&lt;br /&gt;
|date=2009-07-11&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/newships.oxp.zip ''New Ships''] adds [[Hamadryad]], [[Josher]], [[Naga]], [[Ringhals]] (mining and trade ships from previous versions of Elite)&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2006-05-15&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/hud_ng.oxp.zip NG HUD] is an alternate HUD. All standard functions, but with a personal view&lt;br /&gt;
|aut=alien&lt;br /&gt;
|date=2005-03-06&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[NPC-shields OXP|NPC-shields]] gives shields to NPCs, together with a nice glow effect&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-04-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://wiki.alioth.net/index.php/Numeric_Style_HUDs Numeric Style HUDs] New invention/numeric gauges.[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9977 Info]&lt;br /&gt;
|aut=CommonSenseOTB&lt;br /&gt;
|date=2011-06-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/nuvipers.zip Nu Vipers] increases the types of Viper patrol ships with [[GalCop Viper Mark II]], [[GalCop Viper Cruiser]]&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Nukes.oxp|Nuclear Torpedos]] adds some powerful, but slow moving, missiles&lt;br /&gt;
|aut=E. Walch, Cdr. Wyvern&lt;br /&gt;
|date=2010-06-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Offender traders OXP|Offender Traders]] makes some traders into offenders/fugitives&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-04-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Old Ships]] adds Elite-A [[Bushmaster Miner]]s, [[Cat (Oolite)|Cat]]s, [[Chameleon (Oolite)|Chameleon]]s, [[Ghavial (Oolite)|Ghavial]]s, [[Iguana (Oolite)|Iguana]]s, [[Monitor (Oolite)|Monitor]]s, [[Ophidian (Oolite)|Ophidian]]s, [[Salamander (Oolite)|Salamander]]s&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2006-08-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Old Ships 2010]] is a retextured version of [[Old Ships]], adding the bonus Monitor 2 ship&lt;br /&gt;
|aut=pagroove&lt;br /&gt;
|con=Murgh, ADCK, Simon B, Lestradae&lt;br /&gt;
|date=2011-02-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Oo-Haul]] adds vast bulk [[L-Crate Hauler]]s to the space lanes and offers missions at [[Your Ad Here!|constores]] to safely escort them&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|con=Eric Walch, Ark&lt;br /&gt;
|date=2009-02-21&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[ooCheat_OXP|ooCheat]] adds a cheat menu to the game&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-02-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[http://www.box.net/shared/rrlm77ztzm Oolite en français] is a French Oolite localization&lt;br /&gt;
|aut=Pierre-Olivier&lt;br /&gt;
|date=2009-07-12}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[http://marc-schaffer.ch/data/OoliteGerman_V0.3.zip Oolite auf Deutsch] is a German Oolite localization&lt;br /&gt;
|aut=SwissMäc&lt;br /&gt;
|date=2009-06-02&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[http://www.box.net/shared/p3engis1ds Oolite Italiano] is an Italian Oolite localization&lt;br /&gt;
|aut=another_commander&lt;br /&gt;
|date=2010-06-15&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=Oolite in Russian: [http://www.roolite.org Roolite.org] provides localizations of Oolite 1.74.2 and some OXPs. Also check [http://www.elite-games.ru/conference/viewtopic.php?t=48476&amp;amp;start=0 Elite Games]&lt;br /&gt;
|aut=Seventh&lt;br /&gt;
|date=2009-03-26&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://www.box.net/shared/x9u5xoulkq Orbits] positions planets on orbits around the sun&lt;br /&gt;
|date=2010-07-01&lt;br /&gt;
|aut=Ebi&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Ore Processor]] extracts valuable materials from asteroid fragments when mounted to a ship's fuel scoop&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|con=Ark, Kaks, Eric Walch&lt;br /&gt;
|date=2011-01-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Orisis]] BigTraders are new passenger liners that ferry passengers around&lt;br /&gt;
|aut=pagroove&lt;br /&gt;
|con=ADCK, Thargoid&lt;br /&gt;
|date=2010-01-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Outrider (Oolite)|Outrider]] is a medium fighter produced by the [[Taranis Corporation HQ (Oolite)|Taranis Corporation]]&lt;br /&gt;
|aut=Roberto&lt;br /&gt;
|date=2006-08-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[[OXPConfig]] provides means to configure supported OXPs, to recognize errors, or to avoid clashes&lt;br /&gt;
|aut=Svengali&lt;br /&gt;
|date=2011-07-16&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[P.A. Groove Stations OXP|P.A. Groove Stations]] adds lots of different types of Coriolis and Dodec Stations&lt;br /&gt;
|aut=pagroove&lt;br /&gt;
|con=Griff, Commander McLane&lt;br /&gt;
|date=2010-04-16&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Pallas]] adds a fast but lightly shielded fighter.&lt;br /&gt;
|aut=Charlie&lt;br /&gt;
|con=Svengali&lt;br /&gt;
|date=2010-12-02&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Pelamis]] adds the Pelamis trade ship&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2006-04-24&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Phoenix]] is a strange ship, built from salvaged parts from various Serpent Class ships&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2007-01-17&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://wiki.alioth.net/index.php/Pie_Chart_Style_HUDs Pie Chart Style HUDs] New invention=&amp;gt;pie gauges.[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9788 Info]&lt;br /&gt;
|aut=CommonSenseOTB&lt;br /&gt;
|date=2011-05-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Pirate Coves OXP|Pirate Coves]] adds rock hermits that have been taken over by pirates in more dangerous systems&lt;br /&gt;
|aut=lazygun&lt;br /&gt;
|date=2011-07-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/piratetraps.oxp.zip Pirate Traps] are dummy traders which transmit details of pirates firing on them to the police&lt;br /&gt;
|aut=popsch&lt;br /&gt;
|date=2006-01-04&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Planetfall_OXP|Planetfall]] allows the player to land on and trade at the planets and moons of each system&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-04-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Pods_OXP|Pods]] adds fuel, missile, bulk &amp;amp; empty cargo pods and pods which jam, explode, have trumbles or take a few scoops&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-03-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Police_IFF_Scanner_Upgrade|Police IFF Scanner Upgrade]] highlights offender and fugitive ships with custom IFF scanner colours&lt;br /&gt;
|aut=Capt. Murphy&lt;br /&gt;
|date=2011-06-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Pteradyne Technologies Ships OXP|Pteradyne Technologies Ships]] adds the [[Excalibur]], a buyable combat ship and the [[Paladin]], a military version&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2006-12-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://www.boxcn.net/shared/xccp8ml5cq Pylon Based Equipment Remover] allows to remove a selected piece of equipment from your pylons&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-04-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Python Class Cruiser]] is a large powerful trade ship, which can also hold its own in battle&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2007-07-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/racers.oxp.zip Racers] adds [[Chicaneer Mk II]], [[Chicaneer Mk IV]], [[Dragster Mk I]], and [[Dragster Mk II]] racing ships&lt;br /&gt;
|aut=murgh&lt;br /&gt;
|date=2006-01-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Railgun OXP|Railgun]] introduces a revolutionary new weapons system to the Ooniverse&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-05-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Ramon's Anaconda]] is a fantastic re-imagining of the Anaconda freighter. Check out its special features&lt;br /&gt;
|aut=Ramon&lt;br /&gt;
|con=Griff&lt;br /&gt;
|date=2009-04-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Random_Docking_Music_OXP|Random Docking Music]] plays a random music track from a pre-set list on activating docking computers&lt;br /&gt;
|aut=Frame&lt;br /&gt;
|date=2010-05-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Random Hits OXP|Random Hits]] adds [[Space Bar|seedy space bars]] to anarchy systems that offer large bounties on the galaxy's Most Wanted Criminals&lt;br /&gt;
|aut=LittleBear&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2011-03-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://terrastorage.ath.cx/Marmagka/e8e9ce360da6bb40f5952cbe00f02501/RedSet.zip RedSet] contains red-themed backgrounds for the UI screens&lt;br /&gt;
|aut=another_commander&lt;br /&gt;
|date=2010-06-18&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.purgatori.net/reduxedvamps.htm Reduxed Vampires] adds reworked versions of the Vampire Mk I and Mk II and a Reaper &amp;quot;Gold Edition&amp;quot;&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2010-10-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[RegistrationID|Registration ID]] adds ID tags to all Oolite standard ships&lt;br /&gt;
|aut=Frame&lt;br /&gt;
|date=2010-02-28&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Remorse_Of_Conscience_v2|Remorse Of Conscience]] is a trade ship with a large hold, that can hold its own in combat&lt;br /&gt;
|aut=8-bit Apocalypse&lt;br /&gt;
|date=2005-02-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Renegade Pirates OXP|Renegade Pirates]] adds rare, very well-armed, high bounty pirate versions of Classic Elite ships&lt;br /&gt;
|aut=LittleBear&lt;br /&gt;
|con=Aegidian, Griff&lt;br /&gt;
|date=2006-12-03&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/RVandGS.zip Renegade Viper + Grass Snake] adds [[Renegade Viper|stolen Vipers]] which earn large bounties &amp;amp; [[Grass Snake]], a large pirate trade ship&lt;br /&gt;
|aut=8-bit Apocalypse&lt;br /&gt;
|date=2004-11-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Repair_Bots_OXP|Repair 'Bots]] adds a pylon mounted canister of repair nanobots which attempt to fix damaged equipment in mid-flight&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-02-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Ring_Racer_OXP|Ring Racer]] adds the Corporate Systems Ring Racing League to Galaxy 1&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-04-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Rock Hermit Locator]] adds equipment to locate Rock Hermits&lt;br /&gt;
|aut=Frame&lt;br /&gt;
|date=2011-03-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Saleza Aeronautics]] adds [[Bellatrix Cruiser]]s, [[Rigel Bomber|Rigel Tactical Bomber]]s, and [[Saiph Interceptor]]s to high tech corporate systems&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2010-10-24&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Santa]] adds very rare Santa Sledge to space lanes escorted by plasma gun toting reindeer space bikers!&lt;br /&gt;
|aut=Griff&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2010-05-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.purgatori.net/scorpius.htm Scorpius] adds a heavily armoured private trading and transport vessel, protected by Vampire escorts&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|con=Griff&lt;br /&gt;
|date=2011-02-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Scourge of the Black Baron]] features combat &amp;amp; transport Galaxy 1 missions&lt;br /&gt;
|aut=Rxke&lt;br /&gt;
|con=Kaks, Thargoid&lt;br /&gt;
|date=2010-08-07&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Scout]] is a cheap but good looking ship from Staer9 that shares a lot of technology with the [[Xeikil]]&lt;br /&gt;
|aut=Staer9&lt;br /&gt;
|date=2011-05-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Second Wave OXP|Second Wave]] adds variants of Thargoid Warship, Thargon Robot Fighter and alien ships&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-06-06&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Selezen's S-Ships]] adds [[GalCop SWAT Viper]]s and [[Oresrian Trader]]s&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|date=2007-07-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Sell equipment OXP|Sell Equipment]] allows for small fee, resale of equipment at 60% price at suitable tech level world&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-02-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[[Shady Cobra OXP|Shady Cobra]] adds shader effects to Cobra Mk III&lt;br /&gt;
|aut=Ahruman&lt;br /&gt;
|date=2007-07-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Shady Sungs]] adds replacement textures for all Classic Elite Ships&lt;br /&gt;
|aut=Sung, ADCK&lt;br /&gt;
|date=2010-05-21&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://wiki.alioth.net/index.php/Shield_Equalizer_%26_Capacitors_OXP Shield Equalizer] balances shield energy automatically. [http://wiki.alioth.net/index.php/Shield_Equalizer_%26_Capacitors_OXP Capacitors] store unused shield energy for use later&lt;br /&gt;
|aut=CommonSenseOTB&lt;br /&gt;
|date=2011-05-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Skrounk All-Stars Limited]] adds [[All Stars Large Freighter|Large Freighter]], [[Seymour Class Sled]], [[Starbelly Class Sled]], [[Starhawk]] &amp;amp; [[Starwolf_Mark_I|Starwolf Mk I]]&lt;br /&gt;
|aut=goji62&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Smivs%27_ShipSet|Smiv's Shipset 3.0]] re-textures the standard Oolite ships beautifully with a realistic look &amp;amp; non-shader lighting effects&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2010-12-08&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Snark]] is a powerful fighter/trader, often used by pirates and bounty hunters&lt;br /&gt;
|aut=Flying_Circus&lt;br /&gt;
|date=2006-06-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=10515 Sniper Sight] is equipment to help with long distance targeting.&lt;br /&gt;
|aut=Wildeblood&lt;br /&gt;
|date=2011-07-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=10176 Sniper Scope MilHUD integrated] is an version of MilHUD with integrated Sniper Sight functionality&lt;br /&gt;
|aut=Wildeblood&lt;br /&gt;
|date=2011-06-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Snoopers]] adds the galactic news network channels&lt;br /&gt;
|aut=DaddyHoggy&lt;br /&gt;
|con=Disembodied, Drew, Svengali&lt;br /&gt;
|date=2011-05-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Solid Gold Cobra Mk.3]] is a limited edition Cobra Mk3 to celebrate its 25 years anniversary&lt;br /&gt;
|aut=ADCK&lt;br /&gt;
|date=2010-06-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[http://www.purgatori.net/Sothis.htm Sothis Space Station] is a station from [[Isis Interstellar]] with a compact design of comparable size to a standard Coriolis&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2010-08-08&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Spearhead Interceptor Mk.I]] is a pure fighter, fast &amp;amp; nippy but with weak shields, no cargo bay. Can be twitchy to fly&lt;br /&gt;
|aut=Randell&lt;br /&gt;
|date=2006-07-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[S.I.R.F.|Special Interstellar Repair Facilities]] offer different trading strategies &amp;amp; repair facilities on uncommon trading routes&lt;br /&gt;
|aut=Tinker&lt;br /&gt;
|date=2010-07-02&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.purgatori.net/spectres.htm Spectre] adds [[Isis Interstellar]]'s Vampire Mk V, a secret military vessel fighting Thargoids in witch space&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2011-01-16&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Spy Hunter OXP|Spy Hunter]] is a mission for Galactic Navy for Commander with rating of 'Dangerous' or above&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|date=2009-04-11&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Staer9 Spectre]] is a cheap small fighter with high maneuverability that flopped in the market&lt;br /&gt;
|aut=Staer9&lt;br /&gt;
|date=2011-05-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Star-Jelly]] Beautiful translucent organisms sometimes found in Asteroid fields.&lt;br /&gt;
|aut=Smivs,Staer9&lt;br /&gt;
|date=2011-05-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Star Wars Ships]] adds [[A-Wing]], [[B-Wing]], [[Lambda Shuttle]], [[Tie-Fighter]], [[Tie-Interceptor]], [[X-Wing]], [[Y-Wing]]&lt;br /&gt;
|aut=Azzameen&lt;br /&gt;
|date=2006-05-31&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Status Quo Q-bomb OXP|Status Quo Q-bomb]] changes the behaviour of Q-bombs according to the [[Status Quo]] novel&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-02-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[S.T.E]] is a step up from the Cobra III with improved trading capabilities and increased speed&lt;br /&gt;
|aut=Rustybolts&lt;br /&gt;
|date=2009-07-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Stealth OXP|Stealth]] is a small G3 mission showcasing new scanner capabilities &amp;amp; introducing stealth ships&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-03-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://www.purgatori.net/Steampunk%20HUD.htm Steampunk HUD] adds a steampunk style HUD by [[Isis Interstellar]]&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2010-01-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Stellar Serpents OXP|Stellar Serpents]] adds huge space-born serpent monsters which move from system to system and are good hunting prey&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-07-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[http://sancho.dk/oolite/sunskimmers.zip Sunskimmers] adds ships to the sun/planet corridor&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-08-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[SuperCobra]] is larger, faster with stronger hull than Cobra Mk III&lt;br /&gt;
|aut=8-Bit Apocalypse&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2010-10-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Superhub]] from GASEC is the first station that is capable of transporting itself to its destination&lt;br /&gt;
|aut=P.A. Groove&lt;br /&gt;
|date=2009-11-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Swift]] is a very fast ship often used by pirates or bounty hunters with limited cargo space &amp;amp; nominal shields&lt;br /&gt;
|aut=Charlie&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Switeck's Mod OXP|Switeck's Mod]] rebalances ships &amp;amp; market prices. Adds Medium, Hard, and Harder Jameson saves&lt;br /&gt;
|aut=Switeck&lt;br /&gt;
|date=2011-01-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[System Demux (Oolite)|System Demux]] textures home planet, adds planet/moon combination to systems&lt;br /&gt;
|aut=DrBeeb&lt;br /&gt;
|date=2010-07-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[System Redux (Oolite)|System Redux]] v1.2 textures home planet, adds planet/moon combination to systems&lt;br /&gt;
|aut=CaptKev&lt;br /&gt;
|date=2011-02-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://www.box.net/shared/r05ub873b5 TAF Reset] resets the Time Acceleration Factor (TAF) to 1.0 upon docking&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2009-09-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Taranis OXP|Taranis]] is a mission for law abiding Commanders with rating of Competent+. Adds [[Taranis Corporation HQ (Oolite)|Taranis Corporation HQ]]&lt;br /&gt;
|aut=Roberto&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2009-10-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Target_Autolock_OXP|Target Autolock]] updates [[Scanner Targeting Enhancement]] to auto-lock onto attacking ships&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-02-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Target Range OXP|Target Range]] is found in all rich systems with stable governments&lt;br /&gt;
|aut=Caracal&lt;br /&gt;
|date=2010-07-24&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Target Reticle]] updates [[Scanner Targeting Enhancement]] to turn reticle red when target centred&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2010-05-31&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Taxi Galactica]] adds a Taxi Service and a non player flyable taxi cab ship to systems&lt;br /&gt;
|aut=pleb87&lt;br /&gt;
|date=2008-06-12&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Teretrurus Mk.I]] is a medium fighter/trader somewhat faster &amp;amp; tougher than Cobra Mk III, but with smaller cargo bay&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2008-02-01&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Terrapin|Terrapin Trader]] is a medium fighter/trader. A good upgrade from Cobra Mk III&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2008-02-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Tesoura]] is a slow, but well shielded trade ship&lt;br /&gt;
|aut=Randall, Dr. Nil&lt;br /&gt;
|date=2008-02-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Thargoid Carrier]] arms Thargoids with capital carrier&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|date=2006-06-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Thargorn_Threat_oxp|Thargoid Threat]] adds [[Thargoid Terrorizer Frigate]], [[Thargoid Thargorn Battleship]], [[Thargoid Thorgon Cruiser]]&lt;br /&gt;
|aut=Arexack Heretic&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2011-02-03&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Thargoid Wars]] intensifies war with the Thargoids, featuring new attack and defense missions&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2011-07-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Tianve OXP|Tianve]] adds [[Navy Station]], as well as Visuals, including a pulsar, to the Galaxy 1 system of Tianve&lt;br /&gt;
|aut=Drew&lt;br /&gt;
|date=2009-12-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Tiger Mark I]] is a truly awesome (and very expensive) multi-role craft&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2006-05-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Tionisla Orbital Graveyard]] adds the famed graveyard to Tionisla, G1, as described in “The Dark Wheel” novella&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2011-02-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Tionisla Reporter]] adds a mission for a starting commander&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2011-07-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[TCAT OXP|To Catch a Thargoid]] is a G3 follow-up mission to Thargoid Plans, for Dangerous or Elite rank Commanders&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-12-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Torus station|Torus Station]] adds a vast 2001 style space station to very high tech level systems&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|con=Svengali&lt;br /&gt;
|date=2010-10-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Total patrol OXP|Total Patrol]] makes police ships patrol between planet, witchpoint &amp;amp; sun&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-03-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[ToughGuys|ToughGuys]] Adds 3 levels of increased toughness of 'Baddies', and gives a backdrop for an immersive storyline&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2011-02-16&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Trader Outpost (Oolite)|Trade Outpost]] adds Griff's trade outpost without ads&lt;br /&gt;
|aut=CaptKev, Griff, Ark&lt;br /&gt;
|date=2009-02-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Traffic_Control_OXP|Traffic Control]] personnel gives help with approach to and manual docking at all main stations&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-06-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Transhab station|Transhab Station]] adds a large station with rotating arms to some medium tech level systems&lt;br /&gt;
|aut=Draco_Caeles&lt;br /&gt;
|date=2006-06-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Transports]] adds [[CoachWhip]], [[Coral]], [[Woma]]&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|con=Eric Walch, Kaks&lt;br /&gt;
|date=2010-12-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://wiki.alioth.net/images/d/d9/TrekHud.zip Trek HUD] replaces your HUD with a Star Trek NG LCARS-style HUD&lt;br /&gt;
|aut=barabis&lt;br /&gt;
|date=2008-11-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Trident Down]] contains a series of Galaxy 4 missions investigating a vicious attack on a [[Executive SpaceWays|Trident Shuttle]]&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2010-12-31&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[UPS Courier]] offers Commanders transport of goods/documents &amp;amp; occasional combat missions&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2011-03-29&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Urutu Mark III &amp;amp; Urutu Mark IV]] are medium fighters/traders from Elite-A&lt;br /&gt;
|aut=Milinks&lt;br /&gt;
|date=2006-09-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Vampire]] adds the Purgatori Vampire series of combat ships&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2007-01-29&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Vampire - Diamondback]] adds the Diamondback Vampire series of combat ships&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2010-04-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Vampire - Dominatrix]] adds the Dominatrix Vampire series of combat ships&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2009-12-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Vector OXP|Vector]] is a unusual mission type - fast money, slavers, tricks and GalCop is watching you...&lt;br /&gt;
|aut=Svengali&lt;br /&gt;
|date=2011-02-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Velocity_OXP|Velocity]] is a fast fighter ship&lt;br /&gt;
|aut=Sabre&lt;br /&gt;
|date=2009-09-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.purgatori.net/Venom.oxp.zip Venom] adds [[Venom]]s in normal and renegade versions  from [[Isis Interstellar]]&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2009-12-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Vortex OXP|Vortex]] A new ex-military player ship. Rare, expensive and powerful - kitted out with advanced and unique features&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-03-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.purgatori.net/wasps.htm Wasps] adds formation flying wasps, queen wasps, and wasp nests&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|con=Thargoid, Ahruman, Eric Walch&lt;br /&gt;
|date=2010-08-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/weeviloid2.zip ''Weeviloid''] adds [[Weeviloid Hunter]]s, fearsome multi-gunned war ships and [[Weeviloid Scoutship]]s, light trade ships&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2006-05-11&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Welcome_Mat_OXP|Welcome Mat]] upgrades the comms systems to expand the information that is given on arrival in new system&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-06-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Werewolf]] from [[Isis Interstellar]] has 3 variants:  [[Werewolf|Werewolf ~ Damage Inc.]], [[Werewolf|Werewolf (Civilian)]] &amp;amp; [[Werewolf|Werewolf (Purgatori Model)]]&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2011-02-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Wolf_Mk.2_%28Oolite%29|Wolf Mk II]] adds the powerful Wolf Mk II, as seen in Elite-A&lt;br /&gt;
|aut=Ark&lt;br /&gt;
|date=2009-07-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://wiki.alioth.net/images/0/06/Wolfs_variants.zip Wolfwood's Variants] adds [[Asp_Mk.I|Asp Mk I]], [[Cobra Courier]], [[Cobra Rapier]], [[Drake]], [[Drake Mk II]] &amp;amp; [[Wolf Mk I]]&lt;br /&gt;
|aut=Wolfwood&lt;br /&gt;
|date=2008-02-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Wormhole restoration OXP|Wormhole Restoration]] adds a new way to leave interstellar space without using fuel, expanding on Thargoid backstory&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-05-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Xarik]] is an advanced aircraft, last creation of the late Prof. Eisel Xarik. Used by pirates, traders, and hunters&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2010-02-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Xeikil]] adds a player, a GalCop interceptor, and 24 pirate variants of Staer9 Industries' current top fighter&lt;br /&gt;
|aut=Staer9&lt;br /&gt;
|date=2011-05-16&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Xeikil MK2]] adds a player, a GalCop interceptor, and 24 pirate variants of Staer9 Industries' replacement [[Xeikil]]&lt;br /&gt;
|aut=Staer9&lt;br /&gt;
|date=2011-05-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[YellOo_Cabs]] adds YellOo Cab Co taxis to the Ooniverse. NPC and Buyable&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2011-01-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Your Ad Here!]] adds Convenience Stores [[Pi-42]], [[Tescoo Oxpress]], [[Star]], [[Mall Wart]], [[Sainsboory's]] &amp;amp; [[Security Sidewinder|security sidewinders]]&lt;br /&gt;
|aut=Griff&lt;br /&gt;
|con=DaddyHoggy, Pangloss, Disembodied, Eric Walch&lt;br /&gt;
|date=2011-02-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Z-ships]] adds [[Z-ships_Asp_Explorer|Asp Explorer]], [[Z-ships_Cobra_Commodore|Cobra Commodore]], [[Z-ships_Porcupine|Porcupine]] &amp;amp; [[Z-ships_Python_Courier|Python Courier]]&lt;br /&gt;
|aut=Zieman&lt;br /&gt;
|date=2010-03-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9056 Z-GrOovY Griff's Cobra Mk3 Variety Pack] adds multiple Griff's Cobra Mk3 with alternate hull paintings&lt;br /&gt;
|aut=dertien&lt;br /&gt;
|date=2011-01-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9306 Z-GrOovY System Stations] adds Griff-based Tetrahedron, Octahedron, Coriolis, Dodecahedron, Icosahederon stations&lt;br /&gt;
|aut=dertien&lt;br /&gt;
|date=2011-03-03&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9146 Z-GrOovY Viper Raider] adds a new player ship based on the police Viper&lt;br /&gt;
|aut=dertien&lt;br /&gt;
|date=2011-02-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9056 Z-GrOovY YAH Sidewinder Variety Pack] adds multiple Your Ad Here! Constore defenders with alternate hull paintings&lt;br /&gt;
|aut=dertien&lt;br /&gt;
|date=2011-01-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9056 Z-GrOovY YellOo Cab Variety Pack] adds the Moray Starboat with taxi hull painting&lt;br /&gt;
|aut=dertien&lt;br /&gt;
|date=2011-01-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Work in Progress OXPs  ==&lt;br /&gt;
The following table contains OXPs that either have not yet been released by their authors but are already being discussed on the [http://www.aegidian.org/bb/viewforum.php?f=4 Expansion Pack Forum], or released OXPs that still have WIP status. Links get you either to the respective discussion or the Wiki page if it already exists.&lt;br /&gt;
{{OXPListTableHeader}}&lt;br /&gt;
&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[http://www.box.net/shared/moreq536ht Nexus missile]. Three versions of a multi-warhead missile. Like the anti-thargoid missile but not just for (against) thargoids.&lt;br /&gt;
|aut=UK_Eliter&lt;br /&gt;
|date=2011-07-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?t=8341 Animated Ships] adds animated butterflies flapping their wings as a demo&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-08-06&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9864 Cargo Scanner] scans targeted cargo containers to find out what they contain&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-05-17&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://www.aegidian.org/bb/viewtopic.php?t=8526 Comms Demo] provides a way to communicate with NPC ships&lt;br /&gt;
|aut=Kaks&lt;br /&gt;
|date=2009-10-26&lt;br /&gt;
|work=N}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=6&amp;amp;t=9087 Guerilla War] puts you in a position to lead a fighter squadron&lt;br /&gt;
|aut=Ramirez|date=2011-04-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.box.net/shared/0i2fnrc175t Katipo] adds a very fast, moderate maneuverability, low cargo ship with low thrust&lt;br /&gt;
|aut=Simon B&lt;br /&gt;
|date=2011-03-03&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9441 Miner Pod] breaks up asteroids and collects the splinters&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-03-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?t=8275 Mining] adds mines to protect and provide resources for to get gold&lt;br /&gt;
|aut=docwild&lt;br /&gt;
|date=2010-07-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Nuit Space Station OXP|Nuit Space Station]] is the newest creation of [[Isis Interstellar]]&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2009-11-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mission&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?p=130221#p130221 Oresrati Challenge] adds a fun mission to the loneliest system of the Ooniverse, Oresrati&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-04-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9946 Phantom] is a trader/fighter from [[Isis Interstellar]] with external missiles&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2011-05-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?p=138226#p138226 Shield Cycler] distributes shield energy between fore and aft shields&lt;br /&gt;
|aut=Lone_Wolf&lt;br /&gt;
|date=2011-05-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=5484 Solar System] adds extra planets and jump gates to a system&lt;br /&gt;
|aut=Frame&lt;br /&gt;
|date=2009-01-11&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9472 Sun Skimmer Pod] adds a pod that goes sun skimming and returns full of fuel&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-03-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9488 Target Tracker] aligns your ship on your target&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-03-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9353 Thor Class Supercarrier] adds a Navy Carrier as a replacement pack for the Behemoth and the Galactic Navy&lt;br /&gt;
|aut=dertien&lt;br /&gt;
|date=2011-03-03&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9242 Wormhole Drones] creates a path of worm holes to lead you to your destination system&lt;br /&gt;
|aut=Mauiby de Fug&lt;br /&gt;
|date=2011-02-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[http://www.aegidian.org/bb/viewtopic.php?t=8541 Zygoroids] add new beautifully textured asteroid models to the Ooniverse&lt;br /&gt;
|aut=ZygoUgo&lt;br /&gt;
|date=2010-10-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== OXPs with Problems ==&lt;br /&gt;
The following table contains OXPs that have problems eg. broken download, or have been written for versions of Oolite earlier than the current 1.75.2&lt;br /&gt;
{{OXPListTableHeader}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Amen Bricks Megaships|Amen Brick's Megaships]] adds [[Battleship]]s, [[Biodome]]s, [[Cruiseship]]s, [[Hospitalship]]s, [[Supercargo]]s, [[Superlifter]]s, and [[Yacht - Amen Class|Yacht]]s (This version 1.1 contains a corrupted shipData.plist)&lt;br /&gt;
|aut=Amen Brick&lt;br /&gt;
|date=2008-07-11}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Cataclysm OXP|Cataclysm]] takes up the threads of Constrictor Hunt and Thargoid Plans, and sends you on your biggest Navy mission yet&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2009-01-06&lt;br /&gt;
|work=N}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Kirin#Download|Kirin Sport]] adds a a smaller, faster, more agile - and less well armed - civilian variant of the [[Kirin]]&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2009-07-22&lt;br /&gt;
|work=N}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Localhero_OXP|Localhero]] adds a mission campaign in the first galaxies&lt;br /&gt;
|aut=Svengali&lt;br /&gt;
|date=2008-04-09&lt;br /&gt;
|work=N}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Orb]] adds a new alien race, which might help GalCop in the battle against the Thargoids.&lt;br /&gt;
|aut=Charlie&lt;br /&gt;
|date=2007-02-13&lt;br /&gt;
|work=N}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Personalities OXP|Personalities]] adds a bunch of unique, well-known personalities from the Bulletin Board to the Ooniverse&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2009-11-05&lt;br /&gt;
|work=N}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[[Save Anywhere]] allows you to save your game at any OXP Station&lt;br /&gt;
|aut=Frame&lt;br /&gt;
|date=2008-10-01&lt;br /&gt;
|work=N}}&lt;br /&gt;
|}&lt;br /&gt;
[[Category:Oolite expansion packs]]&lt;br /&gt;
[[Category:OXP Lists]]&lt;br /&gt;
[[Category:Factual]]&lt;/div&gt;</summary>
		<author><name>Mcarans</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.alioth.net/index.php?title=OXP_List&amp;diff=28628</id>
		<title>OXP List</title>
		<link rel="alternate" type="text/html" href="https://wiki.alioth.net/index.php?title=OXP_List&amp;diff=28628"/>
		<updated>2011-07-25T20:08:07Z</updated>

		<summary type="html">&lt;p&gt;Mcarans: /* Sortable Table of OXPs */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
== OXP Categories ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; width=&amp;quot;100%&amp;quot; style=&amp;quot;border-collapse: collapse; border-width: 1px; border-style: solid; border-color: #ffffff; table-layout: fixed; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; width=&amp;quot;70px&amp;quot; style=&amp;quot;margin: 0px; padding: 0px; border-width: 1px; border-style: solid; border-color: #ffffff; background-color: #e7e7ff; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot; |&amp;lt;p style=&amp;quot;font-size: 13px;&amp;quot;&amp;gt;Category&amp;lt;/p&amp;gt;&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;margin: 0px; padding: 0px; border-width: 1px; border-style: solid; border-color: #ffffff; background-color: #e7e7ff; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot; |&amp;lt;p style=&amp;quot;font-size: 13px;&amp;quot;&amp;gt;Description of OXP Category&amp;lt;/p&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Activities_OXPs|Activities]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Allow Commanders to carry out a new activity or task eg. racing, gas giant skimming, taking out loans&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Dockables_OXPs|Dockables]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Add new objects that the player can dock with eg. carriers, space bars, casinos, fuel stations. Also, see [[Oolite Stations]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Ambience_OXPs|Ambience]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Change or add to the scenery, visuals or sound effects eg. planet skins, add new planets/moons to systems, move suns further away, dim nebulae, add monuments&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Equipment_OXPs|Equipment]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Buy upgrades for your ship excluding weapons&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Mechanics_OXPs|Mechanics]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Change the game play in a specific way eg. alter market mechanics, add more pirates&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:HUDs_OXPs|HUDs]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Modifications of your dials, gauges and other read-outs&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Missions_OXPs|Missions]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|New missions for Commanders to undertake. For more information, see [[Oolite Missions]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Retextures_OXPs|Retextures]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Retexture existing objects, either by replacing or adding variations, but without adding objects that did not exist before&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Ships_OXPs|Ships]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|New ships, except dockable ships. Also, see [[Oolite Ships]]&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Systems_OXPs|Systems]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Alter multiple star systems in a number of ways eg. combinations of changing main station and local police ships, adding new stations, ships, activities, missions&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Weapons_OXPs|Weapons]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|Addons for your ship for blowing up the baddies&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;|[[:Category:Misc_OXPs|Misc]]&lt;br /&gt;
|style=&amp;quot;margin: 0px; padding: 0px; border-style: solid; border-width: 1px; border-color: #ffffff; background-color:#f0f0ff; font-size: 12px; vertical-align: top; text-align: left; white-space:normal; word-wrap: break-word;&amp;quot;|OXPs that don't fit into the other categories eg. debug consoles, internationalisations, config mechanisms, demo OXPs&lt;br /&gt;
|}&lt;br /&gt;
OXP authors: if you are unsure how to categorise your OXP or if you wish to update the details of an OXP for an author who has disappeared, please seek advice on the [http://www.aegidian.org/bb/viewforum.php?f=4 Expansion Pack Forum] before proceeding. Please put your OXP in one category only. You can edit the section below to add your OXP.&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Sortable Table of OXPs ==&lt;br /&gt;
The following table is optimized for a horizontal screen resolution of at least 1280px so that all OXP descriptions fit on one line.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; width=&amp;quot;100%&amp;quot; style=&amp;quot;border-collapse: collapse; border-width: 1px; border-style: solid; border-color: #ffffff; table-layout: fixed; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;border-width: 1px; border-style: solid; border-color: #ffffff; background-color: #e7e7ff; vertical-align: top; text-align: left; overflow: hidden; white-space: nowrap;&amp;quot; |The &amp;quot;C&amp;quot; column indicates compatibility with Oolite beta 1.75:&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Y&amp;quot;=compatible, &amp;quot;Y*&amp;quot;=compatible (but the OXP is not in full working order), &amp;quot;N&amp;quot;=incompatible,  blank=unknown/untested.&lt;br /&gt;
|}&lt;br /&gt;
{{OXPListTableHeader}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Accessories OXP|Accessories]] replaces the textures of all Stations and non-ship objects in Oolite with a more detailed and realistic look&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2010-06-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Accipiter]] is the market entry from Xeceesian shipyards, a strong &amp;amp; fast all purpose vessel for experienced commanders&lt;br /&gt;
|aut=CaptSolo&lt;br /&gt;
|con=Staer9, Griff&lt;br /&gt;
|date=2011-05-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Aegidian%27s Specials]] adds the powerful [[Mussurana]], the [[Asp (Oolite)#Notable features|Asp Mark II Special]], and a new cargo canister&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2009-07-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Aegidian%27s X-Ships]] adds [[Python ET Special]]s, [[Cobra Mk.2 (Oolite)|Cobra Mk II]]s, [[Taipan]]s, [[Asp (Oolite)#Notable features|Asp Mark II Special]]s, and [[Sidewinder (Oolite)#Notable features|Sidewinder Special]]s&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2009-04-29&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Pirate Clan Blitzspears|Amen Brick's Pirate Clan One: The Blitzspears]] adds the [[Assassin Blitzspear|Assassin]], the [[Hoodlum]], the [[Scoundrel]], and the [[Spiv]]&lt;br /&gt;
|aut=Amen Brick&lt;br /&gt;
|date=2008-06-30}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Amiga Replacement Sounds]] is based on the sound set used in the Amiga version of the original Elite&lt;br /&gt;
|aut=EAGLE 5&lt;br /&gt;
|date=2006-03-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Systems&lt;br /&gt;
|desc=[[Anarchies OXP|Anarchies]] overhauls legal ratings and spices up anarchies with [[Hacker Outpost]]s, [[Salvage Gang]]s, special stations &amp;amp; ships&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|con=Killer Wolf, Griff, Cdr. Wyvern, Murgh, Aegidian, 8-Bit Apocalypse&lt;br /&gt;
|date=2011-03-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9462 Another HUD] is based on Killer Wolf's Generic HUD&lt;br /&gt;
|aut=NorthenderPNE&lt;br /&gt;
|date=2011-03-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Aphid]] adds the stylish Aphid Escort Service&lt;br /&gt;
|aut=8-Bit Apocalypse&lt;br /&gt;
|date=2005-01-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Aquatics OXP|Aquatics]] adds the Aquarian Shipbuilding Corporation of Aqualina, G3 along with its ships and a mission&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-03-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Armoured Transport Type 1]] adds Gaundlet's [[Gaundlet Armoured Transport Type1|Armoured Transport Type 1]] and [[Gaundlet Armoured Escort Viper|Armoured Escort Viper]] that ferry valuables&lt;br /&gt;
|aut=Arexack Heretic&lt;br /&gt;
|date=2005-12-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Armoury OXP|Armoury]] adds AMS, captured Thargons, drones, probes, a missile rack, some bombs, and the missile machine&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-06-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[The Assassins Guild OXP|Assassins Guild]] adds 21 missions involving murder to order in Galaxy 7&lt;br /&gt;
|aut=Littlebear&lt;br /&gt;
|date=2011-05-03&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Asteroid Storm]] adds different types of asteroids &amp;amp; a mission where a station in G1 is threatened by a large asteroid strike&lt;br /&gt;
|aut=LittleBear, Charlie&lt;br /&gt;
|date=2011-01-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Aurora]] adds huge passenger ships for the wealthiest in society&lt;br /&gt;
|aut=pagroove&lt;br /&gt;
|con=Griff, Thargoid&lt;br /&gt;
|date=2010-11-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://www.mediafire.com/?fnc65em7uh5un1d Auto ECM] fires the ECM once when a missile is fired at the player's ship. See the [http://aegidian.org/bb/viewtopic.php?p=138124#p138124 BB] for more info&lt;br /&gt;
|aut=Switeck&lt;br /&gt;
|date=2011-05-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Auto eject OXP|Auto Eject]] ejects your escape pod automatically when your energy becomes too low&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2010-06-16&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Automatic Chaff System]] provides an enhanced chaff-based missile countermeasure system&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2010-06-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Baakili Far Trader]] adds a dockable alien ship&lt;br /&gt;
|aut=Zieman&lt;br /&gt;
|date=2010-09-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Bandersnatch]] adds a pirate capital vessel armed with 4 x fore lasers&lt;br /&gt;
|aut=Flying_Circus&lt;br /&gt;
|date=2009-11-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Beer Cooler]] allows you to fit your ship with a beer cooler&lt;br /&gt;
|aut=Maik&lt;br /&gt;
|date=2010-08-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Behemoth]] adds a dockable Navy cruiser carrying [[Navy Asp]]s and [[Navy Viper]]s&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2011-01-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[ADCK%27s Behemoths]] adds shadered versions of the [[Behemoth]],  [[Galactic Navy OXP|Galactic Navy]] ships and stations, and then some&lt;br /&gt;
|aut=ADCK&lt;br /&gt;
|con=Aegidian, pagroove, Nemoricus, Selezen, Simon B&lt;br /&gt;
|date=2010-04-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Behemoth Spacewar]] adds intelligence to the Behemoth and brings a combat with Thargoids&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2010-01-09&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[BGS|BGS - Background Set]] framework for images, sounds and ambient music&lt;br /&gt;
|aut=pagroove, Svengali&lt;br /&gt;
|date=2011-03-16&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[BigShips OXP|Big Ships]] ensures that large ships do not dock and controls population of systems with them&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2009-11-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Black Monk Monastery]] offers loans in advanced systems and adds the [[Black Monk Gunship]] to persecute defaulters&lt;br /&gt;
|aut=LittleBear&lt;br /&gt;
|date=2010-06-14&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[BlackjacksBullion OXP|Blackjack's Bullion]] starts in galaxy 2 at Telace as Commander Blackjack arrives via escape pod&lt;br /&gt;
|aut=Rustybolts&lt;br /&gt;
|date=2010-03-08&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[BlOomberg Markets]] varies the in-game economy by generating random events that affect commodity prices&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2011-03-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Boa II Clipper Class]] is a development of the Boa Class Cruiser, adding a third engine at the cost of cargo space&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2011-01-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Boomslang]] adds a mid-range multi-role ship. Used by pirates and traders alike&lt;br /&gt;
|aut=milinks, Jar&lt;br /&gt;
|date=2008-09-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Bounty Scanner]] adds bounty details (if any) to the targeting lock-box display when locked onto other ships&lt;br /&gt;
|aut=Frame&lt;br /&gt;
|date=2010-07-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[BountyStatus OXP|Bounty Status]] displays your current bounty (and your legal status) on the F5 manifest screen&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-05-08&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Breakable_'Standard'_Equipment_OXPs|Breakable 'Standard' Equipment]] makes some standard equipment such as HUD/Scanner damageable in combat&lt;br /&gt;
|aut=Capt. Murphy&lt;br /&gt;
|date=2011-07-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Bulk Haulers]] adds the [[Lynx Bulk Carrier (Oolite)|Lynx Bulk Carrier]], the [[Long Range Cruiser (Oolite)|Long Range Cruiser]], the [[Bulk Hauler]], and the [[Super Bulk Hauler]]&lt;br /&gt;
|aut=ADCK&lt;br /&gt;
|con=Aegidian, pagroove&lt;br /&gt;
|date=2010-04-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[BuoyRepair|Buoy Repair]] adds a [[Buoy Repair Facility]] and related ships to repair defect or destroyed nav-beacons&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|con=Svengali, Murgh, Zieman&lt;br /&gt;
|date=2011-06-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[[Cabal Common Library]] is a collection of snippets and helpers for OXPs&lt;br /&gt;
|aut=Svengali&lt;br /&gt;
|con=Cmd.Cheyd, PhantorGorth&lt;br /&gt;
|date=2011-07-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Caduceus]] adds the very expensive (and deadly) Caduceus&lt;br /&gt;
|aut=ClymAngus&lt;br /&gt;
|con=Cdr. Wyvern, another_commander, Eric Walch, Thargoid&lt;br /&gt;
|date=2010-12-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Capisastra]] adds [[Capisastra Defender]]s, [[Capisastra Hauler]]s, and [[Capisastra Warrior]]s&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|date=2006-01-12}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Captain Berf Engineer]] adds a voice for crew members&lt;br /&gt;
|aut=Captain Berf&lt;br /&gt;
|date=2009-12-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Captain Berf Pilot]] adds a voice for crew members&lt;br /&gt;
|aut=Captain Berf&lt;br /&gt;
|date=2009-12-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Captain Berf Pilot Alien]] adds a voice for crew members&lt;br /&gt;
|aut=Captain Berf&lt;br /&gt;
|date=2009-12-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Captain Berf Tactical Officer]] adds a voice for crew members&lt;br /&gt;
|aut=Captain Berf&lt;br /&gt;
|date=2009-12-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Cargo Shepherd OXP|Cargo Shepherd]] attracts cargo pods and holds them until you can scoop them, also includes a beacon&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-04-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://www.box.net/shared/4lphdkazs5 CB-HUD] features a HUD that changes based on installed equipment. See the [http://aegidian.org/bb/viewtopic.php?p=141035#p141035 BB post] for more information&lt;br /&gt;
|aut=Captain Beatnik&lt;br /&gt;
|date=2011-05-29&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Clear Skies OXP|Clear Skies]] reduces nebula effects and dims stars. Handy if your system is finding it hard to run Oolite&lt;br /&gt;
|aut=johnsmith&lt;br /&gt;
|date=2006-11-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Cobra 3.5|Chopped Cobra]] adds the Cobra Mk 3.5, a slightly faster and tougher variant with a reduced cargo bay&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2006-12-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9157 Cobra AC] is a faithful reproduction of the Cobra on the cover of the Dark Wheel novella with improved specs&lt;br /&gt;
|aut=dertien&lt;br /&gt;
|date=2011-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Cobra Clipper SAR]] adds a custom Cobra Mk III to rescue stranded Commanders&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2010-04-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Cobra III NjX]] adds a faster, tougher variation on the Classic Cobra Mk III&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|date=2006-08-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Cobra Mark III-XT]] Cobra3 with revamped architecture and upgraded systems to boost performance&lt;br /&gt;
|aut=CaptSolo&lt;br /&gt;
|date=2011-07-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.purgatori.net/cobra4.htm Cobra MkIV] is [[Isis Interstellar]]'s successor to the Cobra MkIII, available in trader and fighter variants&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2010-11-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[OosoundsCombined OXP|Combined Murgh, Wiggy &amp;amp; xaotik's sounds]] combines the 3 available packs from Murgh, Wiggy and xaotik&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|con=Murgh, Wiggy, xaotik&lt;br /&gt;
|date=2009-09-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Systems&lt;br /&gt;
|desc=[[Commies]] Adds [[Astro Mines]], [[CZGF|Factories]], [[SLAPU|Production Units]], [[Worker%27s Commuter|Commuters]] &amp;amp; special police ships to Communist systems&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|con=Ramirez, Murgh, johnsmith, HueijRevisited&lt;br /&gt;
|date=2010-05-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[CompactHUD|Compact HUD]] provides an alternative HUD with a clean look&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Condor]] adds a very powerful police and Navy Cruiser&lt;br /&gt;
|aut=Charlie&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2010-10-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Console HUD]] Azure themed semi-transparent HUD with balanced array of indicators&lt;br /&gt;
|aut=CaptSolo&lt;br /&gt;
|date=2011-07-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[http://www.box.net/shared/mq1mzoc79t Constrictor Mission Hints] adds more hints for those doing the native Constrictor Mission&lt;br /&gt;
|aut=Arexack Heretic&lt;br /&gt;
|date=2010-08-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Contractor ZZ1]] Very fast combat 'stealth' ship. Appears in-game as a Bounty-hunter and rarely as Pirate. Buyable&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2011-01-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Copperhead]] Redux of core ship in Archimedes Elite slightly modified. NPC and player buyable&lt;br /&gt;
|aut=CaptSolo&lt;br /&gt;
|date=2011-05-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Croydon Starsoarer]] adds a ship that is similar to the Asp in specification&lt;br /&gt;
|aut=SimonB&lt;br /&gt;
|con=pagroove&lt;br /&gt;
|date=2010-05-08&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[CustomSounds OXP|CustomSounds]] replaces/adds 40+ sounds, featuring music &amp;amp; extensive use of calm female computer voice for warnings&lt;br /&gt;
|aut=milinks&lt;br /&gt;
|date=2006-12-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[DWCobra|Dark Wheel Cobra]] is a custom Cobra Mk III model, as seen on the cover of the Elite Manual&lt;br /&gt;
|aut=ramon&lt;br /&gt;
|date=2006-11-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[[Debug OXP]] is a special OXP that enables JavaScript console support in test releases of Oolite (1.70 and later)&lt;br /&gt;
|aut=Ahruman&lt;br /&gt;
|date=2010-06-19&lt;br /&gt;
|work=N}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[http://deephorizonindustries.com/Gas_Giant_Skimming.html Deep Horizon - Gas Giants Skimming] allows to skim gas giants to refuel a ship or mine them for rare minerals&lt;br /&gt;
|aut=Cdr. Cheyd&lt;br /&gt;
|date=2010-07-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://deephorizonindustries.com/Lights_Down.html Deep Horizon - Lights Down] lowers ambient light within system to give more natural feel to planets and ships&lt;br /&gt;
|aut=Cdr. Cheyd&lt;br /&gt;
|date=2010-07-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://deephorizonindustries.com/Nav_Buoy.html Deep Horizon - Nav Buoy 1.0] replaces Witchpoint, Station, and other Nav Buoys with a new model.&lt;br /&gt;
|aut=Cdr. Cheyd&lt;br /&gt;
|date=2011-07-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[http://deephorizonindustries.com/Pirate_Ambushes.html Deep Horizon - Pirate Ambushes] adds pirates that ambush the player upon exit from witchspace&lt;br /&gt;
|aut=Cdr. Cheyd&lt;br /&gt;
|date=2010-07-06&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://deephorizonindustries.com/DH-Systems.html Deep Horizon - Systems] textures the main planet of a system as well as adding moons and additional planets&lt;br /&gt;
|aut=Cdr. Cheyd&lt;br /&gt;
|date=2010-07-06&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Deep Space Dredger]] adds dockable Space Dredgers, defended by [[Sabre]] fighters, and a missile to salvage derelict ships&lt;br /&gt;
|aut=Sabre&lt;br /&gt;
|date=2011-01-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[DeepSpacePirates|Deep Space Pirates]] adds pirates and asteroids outside the space lanes&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2010-01-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Deepspace Ships#Deepspace HUDs|Deepspace HUD]] is an alternative HUD with two versions&lt;br /&gt;
|aut=DeepSpace&lt;br /&gt;
|date=2010-02-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Deepspace Ships]] replaces the default ships with new textures&lt;br /&gt;
|aut=DeepSpace&lt;br /&gt;
|date=2010-02-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Deposed OXP|Deposed]] is a series of missions set in Galaxy 4 for an experienced Commander&lt;br /&gt;
|aut=Cdr. Wombat&lt;br /&gt;
|con=Commander McLane, Eric Walch&lt;br /&gt;
|date=2009-03-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Systems&lt;br /&gt;
|desc=[[Dictators OXP|Dictators]] adds a range of ships and stations to each dictatorship and offers new trading opportunities to players&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2010-06-19&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Diso OXP|Diso]] adds extra planets and stations to the Diso system in Galaxy 1&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2010-11-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Display reputation OXP|Display Reputation]] lets you know your current reputations in the passenger ferrying and the cargo contract market&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2010-03-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Oolite Docking Clearance Protocol (v1.72 or later)|Docking Clearance]] enables the docking clearance protocol for all stations&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2008-12-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Griff Industries|Dodo Stations]] adds new textures for Dodecahedron stations&lt;br /&gt;
|aut=Griff, CaptKev&lt;br /&gt;
|date=2010-05-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Dr HUD OXP|Dr HUD]] is an alternative HUD&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2006-12-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Dragon|Dragon Assault Craft]] adds a heavy combat ship, and the Military Smart Missile, an improved hard head&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2008-11-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Dragon#Download|Dragon Military Missile]] adds an enhanced hardhead, seeks priority targets when ECM'd&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2008-11-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.mediafire.com/?rllzzcbkwgm Dragonfly/Firefly S.T] adds [[Dragonfly S.T]] &amp;amp; much faster [[Firefly S.T]]. Ideal small fast ships for pirates or bounty hunters&lt;br /&gt;
|aut=Rustybolts&lt;br /&gt;
|date=2009-10-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Eagle Mk II]] adds the cheap Eagle Mk II escort vessel in several different versions, including an enhanced SE&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|date=2006-03-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[ADCK%27s Eagles|Eagles Mk I to IV]] adds four Eagle Long Range Fighters to the game&lt;br /&gt;
|aut=ADCK&lt;br /&gt;
|date=2010-04-07&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Energy Equipment OXP|Energy Equipment]] adds a pylon-mounted automatically triggered top-up for when the juice runs low&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-03-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Escort Contracts OXP|Escort Contracts 1.2]] allows players to enter into short-term escort contracts with NPC lone wolf traders&lt;br /&gt;
|aut=Capt Murphy&lt;br /&gt;
|date=2011-07-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[ETT Homing Beacon]] marks a position in space by deploying a pylon-mounted beacon&lt;br /&gt;
|aut=Twisted&lt;br /&gt;
|con=Lone_Wolf&lt;br /&gt;
|date=2011-04-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Executive SpaceWays]] adds [[Delta Long-Range Escort|Delta]]/[[Gemini Escort|Gemini]] Escorts, [[Starseeker Personal Shuttle|Starseeker]]/[[Trident Executive Shuttle|Trident Exec]] Shuttles, [[Strelka Cruise Liner]]s&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2010-06-19&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.box.net/shared/moreq536ht#/shared/moreq536ht/1/71484311/786362645/1 Extra Thargoids] adds 2 types of Thargoid ships, each of which packs surprises. Replaces the 'Poet' Frigate OXP&lt;br /&gt;
|aut=UK_Eliter&lt;br /&gt;
|date=2011-07-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Systems&lt;br /&gt;
|desc=[[Factions OXP|Factions]] from anarchy, feudal, dictatorship &amp;amp; communist systems meet in multi-government systems and start fighting&lt;br /&gt;
|aut= m4r35n357&lt;br /&gt;
|date=2011-06-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Famous Planets OXP|Famous Planets]] adds unique textures, new descriptions, and theme tunes for many planets in G1 and G2&lt;br /&gt;
|aut=pagroove&lt;br /&gt;
|con=Cdr. Cheyd, Stromboli, Pangloss, CaptKev, Drew Wagar, Thargoid, Svengali, Lestradae, UK Eliter&lt;br /&gt;
|date=2010-09-30&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Famous Planets Liners OXP|Famous Planets Liners]] adds Spaceway Liners on the 4 spaceways from Lave to Zadies&lt;br /&gt;
|aut=pagroove&lt;br /&gt;
|con=Ramirez, Presti70, Thargoid&lt;br /&gt;
|date=2009-03-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Far Arm ships|Far Arm Ships]] adds [[Far Arm Sunracer|Sunracer]]s, [[Far Arm Scow|Scow]]s, [[Far Arm Tanker|Tanker]]s, [[Far Arm Corsair|Corsair]]s, [[Far Arm Dart|Dart]]s, [[Far Arm Hunter|Hunter]]s, [[Far Arm Cruiser|Cruiser]]s, [[Far Arm Titan|Titan]]s, [[Far Arm Manchi Vulture|Vulture]]s, and [[Far Arm Manchi Wasp|Wasp]]s&lt;br /&gt;
|aut=Zieman&lt;br /&gt;
|date=2010-10-02&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Far Star Murderer]] adds a mid-range fighter / trader, with a fair sized cargo bay&lt;br /&gt;
|aut=8-Bit Apocalypse&lt;br /&gt;
|date=2005-01-01&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://www.box.net/shared/d57y0uip74 Far Sun] places suns further away from the planet than standard Oolite&lt;br /&gt;
|aut=Kaks&lt;br /&gt;
|date=2010-05-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.box.net/shared/moreq536ht Fer de Lance 3G] adds player &amp;amp; NPC Fer de Lance versions with custom paint jobs &amp;amp; altered specs. New bug fixes&lt;br /&gt;
|aut=UK_Eliter&lt;br /&gt;
|date=2011-07-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Fer de Lance NG]] adds a more powerful version of the Fer de Lance with several custom paint jobs&lt;br /&gt;
|aut=alien&lt;br /&gt;
|date=2005-03-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Ferdepai]] adds a new fighter / trader to Galaxy 2&lt;br /&gt;
|aut=johnsmith&lt;br /&gt;
|date=2006-12-17&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Systems&lt;br /&gt;
|desc=[[Feudal States]] adds the [[Jäger]], the [[Korvette]], the [[Zerstörer]], a [[Royal Hunting Lodge]] and other elements to feudal systems&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2011-05-30&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Fighter HUD (Oolite)|Fighter HUD]] is an alternative HUD&lt;br /&gt;
|aut=CaptKev&lt;br /&gt;
|date=2008-05-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Firewasp]] adds a fast interceptor&lt;br /&gt;
|aut=Draco_Caeles&lt;br /&gt;
|date=2006-05-10&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Fireworks OXP|Fireworks]] allows you a joyful celebration of whatever it is you want to celebrate&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-05-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Flight Log OXP|Flight Log]] adds a log of the last 10 systems visited&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-01-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Flying Dutchman OXP|Flying Dutchman]] adds the small chance to meet a Ghost Ship in the Ooniverse&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|con=Griff&lt;br /&gt;
|date=2011-04-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[[Freaky Thargoids OXP|Freaky Thargoids]] is a shader demonstration for Oolite&lt;br /&gt;
|aut=Ahruman&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2011-02-03&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Free Trade Zone]] adds an independent trading post of dubious legality to Multi-Government systems&lt;br /&gt;
|aut=Disembodied&lt;br /&gt;
|con=Commander McLane&lt;br /&gt;
|date=2010-10-08&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Frog Space Rickshaw]] adds a chatty space taxi service to the safer systems&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2006-01-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Fuel Collector OXP|Fuel Collector]] scoops fuel from killed ships and collects fuel while cruising, even in witch space&lt;br /&gt;
|aut=Frame&lt;br /&gt;
|con=Commander McLane&lt;br /&gt;
|date=2011-07-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Fuel Station OXP|Fuel Station]] adds fly-thru Fuel Stations and Fuel Satellites near the witchpoint and along route one&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-06-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Fuel Tank]] v2.2 mounts in place of a missile, to top up 3 light years of fuel&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2008-05-31&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Furball OXP|Furball]] adds barroom brawls that've got out of hand. Furious fugitives flee from pissed off police on the station's doorstep&lt;br /&gt;
|aut=Caracal&lt;br /&gt;
|con=m4r35n357&lt;br /&gt;
|date=2011-06-06&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Systems&lt;br /&gt;
|desc=[[Galactic Navy OXP|Galactic Navy]] adds more ships and stations to the arsenal of the Galactic Navy. Allows to join the Navy Reserves&lt;br /&gt;
|aut=Nemoricus&lt;br /&gt;
|date=2010-12-30&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[GalDrivePod]] A portable Galactic Hyperdrive unit, allowing you to complete the &amp;quot;Lost Worlds Grand Tour&amp;quot;&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2011-03-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://www.boxcn.net/shared/5dqx22u06i Galaxy Info] helps you search for systems by criteria you select and will try to locate the nearest one&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-04-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Gates OXP|Gates]] ads short-cut jump gates to suitable systems, speeding journeys between the main station and witchpoint&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-04-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Generation Ships OXP|Generation Ships]] adds encounters with the mythical Generation Ships from time to time&lt;br /&gt;
|aut=Draco_Caeles&lt;br /&gt;
|con=Commander McLane&lt;br /&gt;
|date=2011-04-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Globe station|Globe Station]] is a new type of stations that appears in advanced systems&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|con=Svengali&lt;br /&gt;
|date=2009-10-22&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Greek Ships OXP|Greek Ships]] adds [[Penelope Class Freighter]]s, [[Telemachus Class Escort]]s, and [[Ulysses Class Interceptor]]s&lt;br /&gt;
|aut=8-Bit Apocalypse&lt;br /&gt;
|date=2005-07-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Griff ArcElite|Griff's ArcElite]] adds versions of native Oolite ships textured &amp;amp; shaded to resemble the Acorn Archimedes version of Elite&lt;br /&gt;
|aut=Griff&lt;br /&gt;
|date=2008-09-29&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Griff Boa]] contains the famous Griff Boa&lt;br /&gt;
|aut=Griff&lt;br /&gt;
|date=2010-06-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://www.boxcn.net/shared/k2lvh3enuy Griff's Explosion Debris] adds new alloy &amp;amp; debris models to exploding ships&lt;br /&gt;
|aut=Griff&lt;br /&gt;
|con=Thargoid&lt;br /&gt;
|date=2009-02-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Griff Krait]] adds a heavily modified Krait, similar in design to the Griff Boa&lt;br /&gt;
|aut=Griff&lt;br /&gt;
|date=2010-06-17&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Griff Industries|Griff's Normalmapped Ships]] adds some of the best looking ships, stations, and flotsam available in Oolite&lt;br /&gt;
|aut=Griff&lt;br /&gt;
|date=2011-04-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Griffin Two (Oolite)|Griffin Two]] adds the Griffin Mk II from Frontier&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2005-10-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Gritty Coriolis OXP|Gritty Coriolis]] alternates the Coriolis stations with two elaborate gritty Corioli&lt;br /&gt;
|aut=xaotik&lt;br /&gt;
|date=2006-02-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://wiki.alioth.net/images/2/2d/G-HUD_Mk2.oxp.zip G-HUD Mk2] adds an alternative HUD&lt;br /&gt;
|aut=Gunney Plym&lt;br /&gt;
|date=2008-07-08&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Halsis]] features a female cockpit voice, sometimes called Hal's Hot Sister&lt;br /&gt;
|aut=Ovvldc&lt;br /&gt;
|date=2006-08-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[BoyRacer|Hatchling BoyRacers]] adds the  talkative (and often insulting) [[BoyRacer]]s to more advanced systems&lt;br /&gt;
|date=2006-01-13&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Staer9 haulerp30|Hauler P30]] is a very large cargo ship made by Staer9 Industries&lt;br /&gt;
|date=2011-05-11&lt;br /&gt;
|aut=Staer9&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Hawksound]] features a quality female computer voice, new weapon, damage and some station interface sounds&lt;br /&gt;
|aut=Hawkstrom&lt;br /&gt;
|date=2008-11-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Herald Military Gunboat|Herald]] adds the [[Herald Military Gunboat]], a powerful police and Navy interceptor&lt;br /&gt;
||aut=Flying_Circus&lt;br /&gt;
|date=2005-01-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Hired Guns OXP|Hired Guns]] adds escort ships that can be contracted to accompany you on your next journey&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-02-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Hognose|Hognose Tugships]] adds the [[Hognose]], a chatty tug ship that can be seen towing broken down ships&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|con=Jonnycuba&lt;br /&gt;
|date=2006-03-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[HoOpy Casino]]s appear near the station in advanced systems. You can win or lose credits in games of chance&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2010-06-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Hotrods OXP|Hotrods]] adds custom paint jobs to classic Elite ships, racing vehicles, and a space gang that doesn't like the player&lt;br /&gt;
|aut=Kaks&lt;br /&gt;
|con=Arexack_Heretic, Murgh&lt;br /&gt;
|date=2009-03-16&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[HyperCargo OXP|HyperCargo]] adds an extended and expanded cargo handling system&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-09-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Hyperradio js OXP|Hyperradio]] is an expandable music-player&lt;br /&gt;
|aut=Svengali&lt;br /&gt;
|date=2011-02-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Icarus (Oolite)|Icarus]] adds a small fighter / trader based on blueprints from the lost Solice system&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|date=2007-07-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Illegal_Goods_Tweak_OXP|Illegal Goods Tweak 1.4]] adds interactions with Galcop customs on docking at a main station with Contraband in the hold&lt;br /&gt;
|aut=Capt. Murphy&lt;br /&gt;
|date=2011-06-17&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Illicit Unlock OXP|Illicit Unlock]] allows the player to fly all the classic Elite ships&lt;br /&gt;
|aut=tgape&lt;br /&gt;
|date=2005-10-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Griff_Industries#Related_OXP's_by_Other_Authors|Illicit Unlock - Griff Version]] allows the player to fly [[Griff Industries#Griff's Normalmapped Ships OXP|Griff's]] pirate/viper Ships&lt;br /&gt;
|aut=ADCK&lt;br /&gt;
|con=dertien&lt;br /&gt;
|date=2011-02-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[I_Missile|I_Missile]] Very fast, very destructive weapon at an affordable price.&lt;br /&gt;
|aut=CaptSolo&lt;br /&gt;
|date=2011-07-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Imperial Courier (Oolite)|Imperial Courier]] adds the powerful Imperial Courier from Frontier, constructed by [[Seldar Shipyards]]&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|con=Commander McLane&lt;br /&gt;
|date=2007-06-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Imperial Trader (Oolite)|Imperial Trader]] adds the powerful Imperial Trader from Frontier&lt;br /&gt;
|aut=ADCK&lt;br /&gt;
|date=2010-06-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Interstellar help OXP|Interstellar Help]] allows you to help out traders who got stuck in interstellar space without fuel&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-03-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Ionics OXP|Ionics]] adds a series of missions featuring the Ionics Company of Zaria, the Ramaza Liberation Front and The Link&lt;br /&gt;
|aut=Galileo&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2010-08-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[IronHide OXP|IronHide]] introduces the new range of IronHide ship armour from the Aquarian Shipbuilding Corporation&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-02-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Iron Raven]] is a multi-stage mission to investigate a dangerous conspiracy on behalf of GalCop High Command&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2011-04-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Ixian Ships|Ixian Military Ships]] adds Ixian [[Ixian Battle Cruiser|Battle Cruiser]]s, [[Ixian Bezerka|Bezerka]]s, [[Ixian Gunship|Gunship]]s and [[Ixian No-Ship Mark I|No-Ship]]s from Dune&lt;br /&gt;
|aut=8-Bit Apocalypse&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2009-03-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Ixian Ships#Ixian Freighter|Ixian Freighter]] adds a civilian freighter to the universe&lt;br /&gt;
|aut=8-Bit Apocalypse&lt;br /&gt;
|date=2005-01-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Jabberwocky]] adds the powerful Jabberwocky fighter / trader&lt;br /&gt;
|aut=Flying_Circus&lt;br /&gt;
|date=2006-03-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[JellyBaby Dispenser]] adds a handy Jellybaby Dispenser for your cockpit&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2011-03-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Kestrel &amp;amp; Falcon OXP|Kestrel &amp;amp; Falcon]] adds buyable Star Wars style [[Falcon_%28Oolite%29|Falcon]] for pirates/traders and the [[Kestrel]], a police/navy interceptor&lt;br /&gt;
|aut=Charlie&lt;br /&gt;
|con=Kaks&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Killer_Wolf's_Dynamic_HUD|Killer Wolf's Dynamic HUD]] adds a version of the dynamic HUD first seen in Killer Wolf's Werewolf ships, to all ships&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|con=Thargoid&lt;br /&gt;
|date=2010-07-08&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Killit_OXP|Killit]] adds a bunch of insane super weapons&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-05-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Kirin]] adds a heavy military hauler, CV &amp;amp; XM versions used by both pirates &amp;amp; traders&lt;br /&gt;
|aut=ClymAngus&lt;br /&gt;
|con=Cdr. Wyvern&lt;br /&gt;
|date=2009-09-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Klepto-HUD OXP|Klepto-HUD]] is a different take on a HUD with precise crosshairs&lt;br /&gt;
|aut=Kleptoid&lt;br /&gt;
|date=2006-03-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://sancho.dk/oolite/lane_legal.zip ''Lane Legal Racers''] adds NPC versions of [[Krait]]s, [[Mamba]]s, and [[Sidewinder]]s from different [[Racers#Listing_of_sponsored_teams|racing teams]]&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-09-27&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Lave OXP|Lave]] is a system make-over for Lave, adding all features described in The Dark Wheel novella included with original Elite&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2009-12-31&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Lave Academy OXP|Lave Academy]] adds Lave Academy Station above Lave &amp;amp; other planets, with 3 mini-games to test Commanders' skills&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-06-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[http://www.boxcn.net/shared/9q1cbydgan LinkG7] is a mission in Galaxy 7&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-02-16&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Llama]] adds the Llama fighter / trader. Updated from the version of Oosat1 to fix a small bug&lt;br /&gt;
|aut=Flying_Circus&lt;br /&gt;
|date=2006-02-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://www.boxcn.net/shared/jtpt2vlol5 Long Range Target Scanner] shows all ships currently in your system and allows to target them&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-05-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[LongWay_OXP|Long Way Around]] adds a transport mission well suited to the novice in Galaxy 1&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2009-04-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Longshot]] adds the Longshot fighter / trader, regarded by many as a cheaper alternative to the Cobra Mk III&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Lovecats.oxp|Lovecats]] is a mission about love &amp;amp; betrayal amongst the feline races of Galaxy 4. Fast ship &amp;amp; hard heart required!&lt;br /&gt;
|aut=johnsmith&lt;br /&gt;
|date=2010-01-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Second-hand ships|M-Pack (rusties)]] adds rusty banger versions of all Classic Elite ships in poor condition but still can haul cargo&lt;br /&gt;
|aut=murgh&lt;br /&gt;
|date=2006-01-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Manta]] adds the Manta light escort craft&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Marett Space Corporation OXP|Marett Space Corporation]] releases [[Adder Mk II]], [[Mosquito Trader]], [[Mosquito Sport]], new fighters / medium traders&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://www.crimsonforge.co.uk/cloister/MedusaHud.oxp.zip Medusa HUD] is an alternative HUD&lt;br /&gt;
|aut=ClymAngus&lt;br /&gt;
|date=2009-01-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Mega-Walnut Dashboard OXP|Mega-Walnut Dashboard]] is a generic version of the fabled Fer de Lance HUD&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2005-07-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Merlin_(Oolite)|Merlin]] Ships are interceptors used by the Police &amp;amp; Navy, but also available on the open market&lt;br /&gt;
|aut=Charlie&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[MildAudio]] Sound Set&lt;br /&gt;
|aut=xaotik&lt;br /&gt;
|date=2006-02-15&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Military_Fiasco|Military Fiasco]] adds a navy mission for Commanders with &amp;gt; 1,000 kills. Also equips Navy with powerful cruisers&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2011-01-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Military station|Military Station]] adds well armed Military Stations to the more advanced systems&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Military Stingray Mk. II|Military Stingray]] adds an ex-military ship that may show up in pirate hands or for the player to buy&lt;br /&gt;
|aut=CaptKev&lt;br /&gt;
|date=2007-03-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Milspec HUD|Milspec HUD]] is an alternative HUD with targeting aids and an emphasis on functionality&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2010-07-08&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Misjump_Analyser|Misjump Analyser]] scans witchspace &amp;amp; on detection of disturbances sounds an alarm &amp;amp; logs location of disturbance&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2010-05-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?p=135619#p135619 Misjump Inducer] can turn on/off misjumps on demand&lt;br /&gt;
|aut=Switeck&lt;br /&gt;
|date=2011-04-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Missile_Analyser|Missile Analyser]] scans incoming missiles &amp;amp; sets target to incoming missile when it is no standard missile&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2010-05-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Missiles_and_Bombs|Missiles &amp;amp; Bombs]] adds a wide variety of missiles &amp;amp; bombs that are are available to player &amp;amp; NPCs alike&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2009-12-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Missionaries OXP|Missionaries]] adds clerics of four faiths who spam Commanders with requests to worship their Gods&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Moccasin]] adds light escort craft from Xeceesian Shipyards modeled after ArcElite core ship&lt;br /&gt;
|aut=CaptSolo&lt;br /&gt;
|date=2011-06-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[[Mod-HUD]] is a slight modification / re-organization of the standard Oolite HUD without surround boxes&lt;br /&gt;
|aut=CaptSolo&lt;br /&gt;
|date=2011-05-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/monument.zip Monument] sometimes adds a monument to famous Commanders close to the Sun&lt;br /&gt;
|aut=dajt&lt;br /&gt;
|date=2005-05-28&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Morrigan]] adds a vast trade ship to the Universe&lt;br /&gt;
|aut=Flying_Circus&lt;br /&gt;
|date=2009-12-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Oosounds2_OXP|''Murgh's Replacement Sounds'']] contains 10 new sounds&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2005-08-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Murgh_Xships OXP|Murgh's X-Ships]] adds [[Bandy-Bandy]], [[Chuckwalla]], [[Eel Rapier]], [[Taipan]] (fast courier craft &amp;amp; 2 light escort ships)&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2009-09-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[NavalGrid OXP|Naval Grid]] enhances recharging rates by linking the naval energy unit to military-boosted shields&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-03-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Neolite Ships]] is an Oolite ships replacement set&lt;br /&gt;
|aut=SimonB&lt;br /&gt;
|date=2009-07-11&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/newships.oxp.zip ''New Ships''] adds [[Hamadryad]], [[Josher]], [[Naga]], [[Ringhals]] (mining and trade ships from previous versions of Elite)&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2006-05-15&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/hud_ng.oxp.zip NG HUD] is an alternate HUD. All standard functions, but with a personal view&lt;br /&gt;
|aut=alien&lt;br /&gt;
|date=2005-03-06&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[NPC-shields OXP|NPC-shields]] gives shields to NPCs, together with a nice glow effect&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-04-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://wiki.alioth.net/index.php/Numeric_Style_HUDs Numeric Style HUDs] New invention/numeric gauges.[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9977 Info]&lt;br /&gt;
|aut=CommonSenseOTB&lt;br /&gt;
|date=2011-06-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/nuvipers.zip Nu Vipers] increases the types of Viper patrol ships with [[GalCop Viper Mark II]], [[GalCop Viper Cruiser]]&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Nukes.oxp|Nuclear Torpedos]] adds some powerful, but slow moving, missiles&lt;br /&gt;
|aut=E. Walch, Cdr. Wyvern&lt;br /&gt;
|date=2010-06-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Offender traders OXP|Offender Traders]] makes some traders into offenders/fugitives&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-04-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Old Ships]] adds Elite-A [[Bushmaster Miner]]s, [[Cat (Oolite)|Cat]]s, [[Chameleon (Oolite)|Chameleon]]s, [[Ghavial (Oolite)|Ghavial]]s, [[Iguana (Oolite)|Iguana]]s, [[Monitor (Oolite)|Monitor]]s, [[Ophidian (Oolite)|Ophidian]]s, [[Salamander (Oolite)|Salamander]]s&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2006-08-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Old Ships 2010]] is a retextured version of [[Old Ships]], adding the bonus Monitor 2 ship&lt;br /&gt;
|aut=pagroove&lt;br /&gt;
|con=Murgh, ADCK, Simon B, Lestradae&lt;br /&gt;
|date=2011-02-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Oo-Haul]] adds vast bulk [[L-Crate Hauler]]s to the space lanes and offers missions at [[Your Ad Here!|constores]] to safely escort them&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|con=Eric Walch, Ark&lt;br /&gt;
|date=2009-02-21&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[ooCheat_OXP|ooCheat]] adds a cheat menu to the game&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-02-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[http://www.box.net/shared/rrlm77ztzm Oolite en français] is a French Oolite localization&lt;br /&gt;
|aut=Pierre-Olivier&lt;br /&gt;
|date=2009-07-12}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[http://marc-schaffer.ch/data/OoliteGerman_V0.3.zip Oolite auf Deutsch] is a German Oolite localization&lt;br /&gt;
|aut=SwissMäc&lt;br /&gt;
|date=2009-06-02&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[http://www.box.net/shared/p3engis1ds Oolite Italiano] is an Italian Oolite localization&lt;br /&gt;
|aut=another_commander&lt;br /&gt;
|date=2010-06-15&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=Oolite in Russian: [http://www.roolite.org Roolite.org] provides localizations of Oolite 1.74.2 and some OXPs. Also check [http://www.elite-games.ru/conference/viewtopic.php?t=48476&amp;amp;start=0 Elite Games]&lt;br /&gt;
|aut=Seventh&lt;br /&gt;
|date=2009-03-26&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://www.box.net/shared/x9u5xoulkq Orbits] positions planets on orbits around the sun&lt;br /&gt;
|date=2010-07-01&lt;br /&gt;
|aut=Ebi&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Ore Processor]] extracts valuable materials from asteroid fragments when mounted to a ship's fuel scoop&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|con=Ark, Kaks, Eric Walch&lt;br /&gt;
|date=2011-01-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Orisis]] BigTraders are new passenger liners that ferry passengers around&lt;br /&gt;
|aut=pagroove&lt;br /&gt;
|con=ADCK, Thargoid&lt;br /&gt;
|date=2010-01-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Outrider (Oolite)|Outrider]] is a medium fighter produced by the [[Taranis Corporation HQ (Oolite)|Taranis Corporation]]&lt;br /&gt;
|aut=Roberto&lt;br /&gt;
|date=2006-08-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[[OXPConfig]] provides means to configure supported OXPs, to recognize errors, or to avoid clashes&lt;br /&gt;
|aut=Svengali&lt;br /&gt;
|date=2011-07-16&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[P.A. Groove Stations OXP|P.A. Groove Stations]] adds lots of different types of Coriolis and Dodec Stations&lt;br /&gt;
|aut=pagroove&lt;br /&gt;
|con=Griff, Commander McLane&lt;br /&gt;
|date=2010-04-16&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Pallas]] adds a fast but lightly shielded fighter.&lt;br /&gt;
|aut=Charlie&lt;br /&gt;
|con=Svengali&lt;br /&gt;
|date=2010-12-02&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Pelamis]] adds the Pelamis trade ship&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2006-04-24&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Phoenix]] is a strange ship, built from salvaged parts from various Serpent Class ships&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2007-01-17&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://wiki.alioth.net/index.php/Pie_Chart_Style_HUDs Pie Chart Style HUDs] New invention=&amp;gt;pie gauges.[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9788 Info]&lt;br /&gt;
|aut=CommonSenseOTB&lt;br /&gt;
|date=2011-05-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Pirate Coves OXP|Pirate Coves]] adds rock hermits that have been taken over by pirates in more dangerous systems&lt;br /&gt;
|aut=lazygun&lt;br /&gt;
|date=2011-07-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/piratetraps.oxp.zip Pirate Traps] are dummy traders which transmit details of pirates firing on them to the police&lt;br /&gt;
|aut=popsch&lt;br /&gt;
|date=2006-01-04&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Planetfall_OXP|Planetfall]] allows the player to land on and trade at the planets and moons of each system&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-04-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Pods_OXP|Pods]] adds fuel, missile, bulk &amp;amp; empty cargo pods and pods which jam, explode, have trumbles or take a few scoops&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-03-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Police_IFF_Scanner_Upgrade|Police IFF Scanner Upgrade]] highlights offender and fugitive ships with custom IFF scanner colours&lt;br /&gt;
|aut=Capt. Murphy&lt;br /&gt;
|date=2011-06-19&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Pteradyne Technologies Ships OXP|Pteradyne Technologies Ships]] adds the [[Excalibur]], a buyable combat ship and the [[Paladin]], a military version&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2006-12-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://www.boxcn.net/shared/xccp8ml5cq Pylon Based Equipment Remover] allows to remove a selected piece of equipment from your pylons&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-04-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Python Class Cruiser]] is a large powerful trade ship, which can also hold its own in battle&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2007-07-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/racers.oxp.zip Racers] adds [[Chicaneer Mk II]], [[Chicaneer Mk IV]], [[Dragster Mk I]], and [[Dragster Mk II]] racing ships&lt;br /&gt;
|aut=murgh&lt;br /&gt;
|date=2006-01-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Railgun OXP|Railgun]] introduces a revolutionary new weapons system to the Ooniverse&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-05-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Ramon's Anaconda]] is a fantastic re-imagining of the Anaconda freighter. Check out its special features&lt;br /&gt;
|aut=Ramon&lt;br /&gt;
|con=Griff&lt;br /&gt;
|date=2009-04-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Random_Docking_Music_OXP|Random Docking Music]] plays a random music track from a pre-set list on activating docking computers&lt;br /&gt;
|aut=Frame&lt;br /&gt;
|date=2010-05-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Random Hits OXP|Random Hits]] adds [[Space Bar|seedy space bars]] to anarchy systems that offer large bounties on the galaxy's Most Wanted Criminals&lt;br /&gt;
|aut=LittleBear&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2011-03-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://terrastorage.ath.cx/Marmagka/e8e9ce360da6bb40f5952cbe00f02501/RedSet.zip RedSet] contains red-themed backgrounds for the UI screens&lt;br /&gt;
|aut=another_commander&lt;br /&gt;
|date=2010-06-18&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.purgatori.net/reduxedvamps.htm Reduxed Vampires] adds reworked versions of the Vampire Mk I and Mk II and a Reaper &amp;quot;Gold Edition&amp;quot;&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2010-10-10&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[RegistrationID|Registration ID]] adds ID tags to all Oolite standard ships&lt;br /&gt;
|aut=Frame&lt;br /&gt;
|date=2010-02-28&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Remorse_Of_Conscience_v2|Remorse Of Conscience]] is a trade ship with a large hold, that can hold its own in combat&lt;br /&gt;
|aut=8-bit Apocalypse&lt;br /&gt;
|date=2005-02-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Renegade Pirates OXP|Renegade Pirates]] adds rare, very well-armed, high bounty pirate versions of Classic Elite ships&lt;br /&gt;
|aut=LittleBear&lt;br /&gt;
|con=Aegidian, Griff&lt;br /&gt;
|date=2006-12-03&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/RVandGS.zip Renegade Viper + Grass Snake] adds [[Renegade Viper|stolen Vipers]] which earn large bounties &amp;amp; [[Grass Snake]], a large pirate trade ship&lt;br /&gt;
|aut=8-bit Apocalypse&lt;br /&gt;
|date=2004-11-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Repair_Bots_OXP|Repair 'Bots]] adds a pylon mounted canister of repair nanobots which attempt to fix damaged equipment in mid-flight&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-02-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Ring_Racer_OXP|Ring Racer]] adds the Corporate Systems Ring Racing League to Galaxy 1&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-04-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Rock Hermit Locator]] adds equipment to locate Rock Hermits&lt;br /&gt;
|aut=Frame&lt;br /&gt;
|date=2011-03-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Saleza Aeronautics]] adds [[Bellatrix Cruiser]]s, [[Rigel Bomber|Rigel Tactical Bomber]]s, and [[Saiph Interceptor]]s to high tech corporate systems&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2010-10-24&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Santa]] adds very rare Santa Sledge to space lanes escorted by plasma gun toting reindeer space bikers!&lt;br /&gt;
|aut=Griff&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2010-05-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.purgatori.net/scorpius.htm Scorpius] adds a heavily armoured private trading and transport vessel, protected by Vampire escorts&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|con=Griff&lt;br /&gt;
|date=2011-02-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Scourge of the Black Baron]] features combat &amp;amp; transport Galaxy 1 missions&lt;br /&gt;
|aut=Rxke&lt;br /&gt;
|con=Kaks, Thargoid&lt;br /&gt;
|date=2010-08-07&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Scout]] is a cheap but good looking ship from Staer9 that shares a lot of technology with the [[Xeikil]]&lt;br /&gt;
|aut=Staer9&lt;br /&gt;
|date=2011-05-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Second Wave OXP|Second Wave]] adds variants of Thargoid Warship, Thargon Robot Fighter and alien ships&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-06-06&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Selezen's S-Ships]] adds [[GalCop SWAT Viper]]s and [[Oresrian Trader]]s&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|date=2007-07-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Sell equipment OXP|Sell Equipment]] allows for small fee, resale of equipment at 60% price at suitable tech level world&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-02-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[[Shady Cobra OXP|Shady Cobra]] adds shader effects to Cobra Mk III&lt;br /&gt;
|aut=Ahruman&lt;br /&gt;
|date=2007-07-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Shady Sungs]] adds replacement textures for all Classic Elite Ships&lt;br /&gt;
|aut=Sung, ADCK&lt;br /&gt;
|date=2010-05-21&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://wiki.alioth.net/index.php/Shield_Equalizer_%26_Capacitors_OXP Shield Equalizer] balances shield energy automatically. [http://wiki.alioth.net/index.php/Shield_Equalizer_%26_Capacitors_OXP Capacitors] store unused shield energy for use later&lt;br /&gt;
|aut=CommonSenseOTB&lt;br /&gt;
|date=2011-05-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Skrounk All-Stars Limited]] adds [[All Stars Large Freighter|Large Freighter]], [[Seymour Class Sled]], [[Starbelly Class Sled]], [[Starhawk]] &amp;amp; [[Starwolf_Mark_I|Starwolf Mk I]]&lt;br /&gt;
|aut=goji62&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[[Smivs%27_ShipSet|Smiv's Shipset 3.0]] re-textures the standard Oolite ships beautifully with a realistic look &amp;amp; non-shader lighting effects&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2010-12-08&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Snark]] is a powerful fighter/trader, often used by pirates and bounty hunters&lt;br /&gt;
|aut=Flying_Circus&lt;br /&gt;
|date=2006-06-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=10515 Sniper Sight] is equipment to help with long distance targeting.&lt;br /&gt;
|aut=Wildeblood&lt;br /&gt;
|date=2011-07-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=10176 Sniper Scope MilHUD integrated] is an version of MilHUD with integrated Sniper Sight functionality&lt;br /&gt;
|aut=Wildeblood&lt;br /&gt;
|date=2011-06-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Snoopers]] adds the galactic news network channels&lt;br /&gt;
|aut=DaddyHoggy&lt;br /&gt;
|con=Disembodied, Drew, Svengali&lt;br /&gt;
|date=2011-05-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Solid Gold Cobra Mk.3]] is a limited edition Cobra Mk3 to celebrate its 25 years anniversary&lt;br /&gt;
|aut=ADCK&lt;br /&gt;
|date=2010-06-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[http://www.purgatori.net/Sothis.htm Sothis Space Station] is a station from [[Isis Interstellar]] with a compact design of comparable size to a standard Coriolis&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2010-08-08&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Spearhead Interceptor Mk.I]] is a pure fighter, fast &amp;amp; nippy but with weak shields, no cargo bay. Can be twitchy to fly&lt;br /&gt;
|aut=Randell&lt;br /&gt;
|date=2006-07-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[S.I.R.F.|Special Interstellar Repair Facilities]] offer different trading strategies &amp;amp; repair facilities on uncommon trading routes&lt;br /&gt;
|aut=Tinker&lt;br /&gt;
|date=2010-07-02&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.purgatori.net/spectres.htm Spectre] adds [[Isis Interstellar]]'s Vampire Mk V, a secret military vessel fighting Thargoids in witch space&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2011-01-16&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Spy Hunter OXP|Spy Hunter]] is a mission for Galactic Navy for Commander with rating of 'Dangerous' or above&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|date=2009-04-11&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Staer9 Spectre]] is a cheap small fighter with high maneuverability that flopped in the market&lt;br /&gt;
|aut=Staer9&lt;br /&gt;
|date=2011-05-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Star-Jelly]] Beautiful translucent organisms sometimes found in Asteroid fields.&lt;br /&gt;
|aut=Smivs,Staer9&lt;br /&gt;
|date=2011-05-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Star Wars Ships]] adds [[A-Wing]], [[B-Wing]], [[Lambda Shuttle]], [[Tie-Fighter]], [[Tie-Interceptor]], [[X-Wing]], [[Y-Wing]]&lt;br /&gt;
|aut=Azzameen&lt;br /&gt;
|date=2006-05-31&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[[Status Quo Q-bomb OXP|Status Quo Q-bomb]] changes the behaviour of Q-bombs according to the [[Status Quo]] novel&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-02-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[S.T.E]] is a step up from the Cobra III with improved trading capabilities and increased speed&lt;br /&gt;
|aut=Rustybolts&lt;br /&gt;
|date=2009-07-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Stealth OXP|Stealth]] is a small G3 mission showcasing new scanner capabilities &amp;amp; introducing stealth ships&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-03-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://www.purgatori.net/Steampunk%20HUD.htm Steampunk HUD] adds a steampunk style HUD by [[Isis Interstellar]]&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2010-01-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Stellar Serpents OXP|Stellar Serpents]] adds huge space-born serpent monsters which move from system to system and are good hunting prey&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-07-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[http://sancho.dk/oolite/sunskimmers.zip Sunskimmers] adds ships to the sun/planet corridor&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2007-08-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[SuperCobra]] is larger, faster with stronger hull than Cobra Mk III&lt;br /&gt;
|aut=8-Bit Apocalypse&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2010-10-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Superhub]] from GASEC is the first station that is capable of transporting itself to its destination&lt;br /&gt;
|aut=P.A. Groove&lt;br /&gt;
|date=2009-11-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Swift]] is a very fast ship often used by pirates or bounty hunters with limited cargo space &amp;amp; nominal shields&lt;br /&gt;
|aut=Charlie&lt;br /&gt;
|date=2007-02-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Switeck's Mod OXP|Switeck's Mod]] rebalances ships &amp;amp; market prices. Adds Medium, Hard, and Harder Jameson saves&lt;br /&gt;
|aut=Switeck&lt;br /&gt;
|date=2011-01-09&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[System Demux (Oolite)|System Demux]] textures home planet, adds planet/moon combination to systems&lt;br /&gt;
|aut=DrBeeb&lt;br /&gt;
|date=2010-07-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[System Redux (Oolite)|System Redux]] v1.2 textures home planet, adds planet/moon combination to systems&lt;br /&gt;
|aut=CaptKev&lt;br /&gt;
|date=2011-02-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://www.box.net/shared/r05ub873b5 TAF Reset] resets the Time Acceleration Factor (TAF) to 1.0 upon docking&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2009-09-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Taranis OXP|Taranis]] is a mission for law abiding Commanders with rating of Competent+. Adds [[Taranis Corporation HQ (Oolite)|Taranis Corporation HQ]]&lt;br /&gt;
|aut=Roberto&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2009-10-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Target_Autolock_OXP|Target Autolock]] updates [[Scanner Targeting Enhancement]] to auto-lock onto attacking ships&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-02-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[[Target Range OXP|Target Range]] is found in all rich systems with stable governments&lt;br /&gt;
|aut=Caracal&lt;br /&gt;
|date=2010-07-24&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Target Reticle]] updates [[Scanner Targeting Enhancement]] to turn reticle red when target centred&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2010-05-31&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Taxi Galactica]] adds a Taxi Service and a non player flyable taxi cab ship to systems&lt;br /&gt;
|aut=pleb87&lt;br /&gt;
|date=2008-06-12&lt;br /&gt;
|work=Y*}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Teretrurus Mk.I]] is a medium fighter/trader somewhat faster &amp;amp; tougher than Cobra Mk III, but with smaller cargo bay&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2008-02-01&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Terrapin|Terrapin Trader]] is a medium fighter/trader. A good upgrade from Cobra Mk III&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2008-02-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Tesoura]] is a slow, but well shielded trade ship&lt;br /&gt;
|aut=Randall, Dr. Nil&lt;br /&gt;
|date=2008-02-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Thargoid Carrier]] arms Thargoids with capital carrier&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|date=2006-06-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Thargorn_Threat_oxp|Thargoid Threat]] adds [[Thargoid Terrorizer Frigate]], [[Thargoid Thargorn Battleship]], [[Thargoid Thorgon Cruiser]]&lt;br /&gt;
|aut=Arexack Heretic&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2011-02-03&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Thargoid Wars]] intensifies war with the Thargoids, featuring new attack and defense missions&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|date=2011-07-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Tianve OXP|Tianve]] adds [[Navy Station]], as well as Visuals, including a pulsar, to the Galaxy 1 system of Tianve&lt;br /&gt;
|aut=Drew&lt;br /&gt;
|date=2009-12-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Tiger Mark I]] is a truly awesome (and very expensive) multi-role craft&lt;br /&gt;
|aut=Dr. Nil&lt;br /&gt;
|date=2006-05-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Tionisla Orbital Graveyard]] adds the famed graveyard to Tionisla, G1, as described in “The Dark Wheel” novella&lt;br /&gt;
|aut=Selezen&lt;br /&gt;
|con=Eric Walch&lt;br /&gt;
|date=2011-02-14&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Tionisla Reporter]] adds a mission for a starting commander&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2011-07-24&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[TCAT OXP|To Catch a Thargoid]] is a G3 follow-up mission to Thargoid Plans, for Dangerous or Elite rank Commanders&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-12-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Torus station|Torus Station]] adds a vast 2001 style space station to very high tech level systems&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|con=Svengali&lt;br /&gt;
|date=2010-10-15&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Total patrol OXP|Total Patrol]] makes police ships patrol between planet, witchpoint &amp;amp; sun&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-03-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[ToughGuys|ToughGuys]] Adds 3 levels of increased toughness of 'Baddies', and gives a backdrop for an immersive storyline&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2011-02-16&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Trader Outpost (Oolite)|Trade Outpost]] adds Griff's trade outpost without ads&lt;br /&gt;
|aut=CaptKev, Griff, Ark&lt;br /&gt;
|date=2009-02-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Traffic_Control_OXP|Traffic Control]] personnel gives help with approach to and manual docking at all main stations&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-06-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Transhab station|Transhab Station]] adds a large station with rotating arms to some medium tech level systems&lt;br /&gt;
|aut=Draco_Caeles&lt;br /&gt;
|date=2006-06-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Transports]] adds [[CoachWhip]], [[Coral]], [[Woma]]&lt;br /&gt;
|aut=Murgh&lt;br /&gt;
|con=Eric Walch, Kaks&lt;br /&gt;
|date=2010-12-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=HUDs&lt;br /&gt;
|desc=[http://wiki.alioth.net/images/d/d9/TrekHud.zip Trek HUD] replaces your HUD with a Star Trek NG LCARS-style HUD&lt;br /&gt;
|aut=barabis&lt;br /&gt;
|date=2008-11-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Trident Down]] contains a series of Galaxy 4 missions investigating a vicious attack on a [[Executive SpaceWays|Trident Shuttle]]&lt;br /&gt;
|aut=Ramirez&lt;br /&gt;
|date=2010-12-31&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[UPS Courier]] offers Commanders transport of goods/documents &amp;amp; occasional combat missions&lt;br /&gt;
|aut=Eric Walch&lt;br /&gt;
|date=2011-03-29&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Urutu Mark III &amp;amp; Urutu Mark IV]] are medium fighters/traders from Elite-A&lt;br /&gt;
|aut=Milinks&lt;br /&gt;
|date=2006-09-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Vampire]] adds the Purgatori Vampire series of combat ships&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2007-01-29&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Vampire - Diamondback]] adds the Diamondback Vampire series of combat ships&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2010-04-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Vampire - Dominatrix]] adds the Dominatrix Vampire series of combat ships&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2009-12-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Vector OXP|Vector]] is a unusual mission type - fast money, slavers, tricks and GalCop is watching you...&lt;br /&gt;
|aut=Svengali&lt;br /&gt;
|date=2011-02-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Velocity_OXP|Velocity]] is a fast fighter ship&lt;br /&gt;
|aut=Sabre&lt;br /&gt;
|date=2009-09-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.purgatori.net/Venom.oxp.zip Venom] adds [[Venom]]s in normal and renegade versions  from [[Isis Interstellar]]&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2009-12-25&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Vortex OXP|Vortex]] A new ex-military player ship. Rare, expensive and powerful - kitted out with advanced and unique features&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2011-03-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.purgatori.net/wasps.htm Wasps] adds formation flying wasps, queen wasps, and wasp nests&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|con=Thargoid, Ahruman, Eric Walch&lt;br /&gt;
|date=2010-08-04&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://capnhack.com/hosting/oolite/Oolite/OXPs/weeviloid2.zip ''Weeviloid''] adds [[Weeviloid Hunter]]s, fearsome multi-gunned war ships and [[Weeviloid Scoutship]]s, light trade ships&lt;br /&gt;
|aut=Aegidian&lt;br /&gt;
|date=2006-05-11&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[[Welcome_Mat_OXP|Welcome Mat]] upgrades the comms systems to expand the information that is given on arrival in new system&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-06-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Werewolf]] from [[Isis Interstellar]] has 3 variants:  [[Werewolf|Werewolf ~ Damage Inc.]], [[Werewolf|Werewolf (Civilian)]] &amp;amp; [[Werewolf|Werewolf (Purgatori Model)]]&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2011-02-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Wolf_Mk.2_%28Oolite%29|Wolf Mk II]] adds the powerful Wolf Mk II, as seen in Elite-A&lt;br /&gt;
|aut=Ark&lt;br /&gt;
|date=2009-07-07&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://wiki.alioth.net/images/0/06/Wolfs_variants.zip Wolfwood's Variants] adds [[Asp_Mk.I|Asp Mk I]], [[Cobra Courier]], [[Cobra Rapier]], [[Drake]], [[Drake Mk II]] &amp;amp; [[Wolf Mk I]]&lt;br /&gt;
|aut=Wolfwood&lt;br /&gt;
|date=2008-02-02&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[[Wormhole restoration OXP|Wormhole Restoration]] adds a new way to leave interstellar space without using fuel, expanding on Thargoid backstory&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2011-05-12&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Xarik]] is an advanced aircraft, last creation of the late Prof. Eisel Xarik. Used by pirates, traders, and hunters&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2010-02-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Xeikil]] adds a player, a GalCop interceptor, and 24 pirate variants of Staer9 Industries' current top fighter&lt;br /&gt;
|aut=Staer9&lt;br /&gt;
|date=2011-05-16&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Xeikil MK2]] adds a player, a GalCop interceptor, and 24 pirate variants of Staer9 Industries' replacement [[Xeikil]]&lt;br /&gt;
|aut=Staer9&lt;br /&gt;
|date=2011-05-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[YellOo_Cabs]] adds YellOo Cab Co taxis to the Ooniverse. NPC and Buyable&lt;br /&gt;
|aut=Smivs&lt;br /&gt;
|date=2011-01-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Your Ad Here!]] adds Convenience Stores [[Pi-42]], [[Tescoo Oxpress]], [[Star]], [[Mall Wart]], [[Sainsboory's]] &amp;amp; [[Security Sidewinder|security sidewinders]]&lt;br /&gt;
|aut=Griff&lt;br /&gt;
|con=DaddyHoggy, Pangloss, Disembodied, Eric Walch&lt;br /&gt;
|date=2011-02-20&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Z-ships]] adds [[Z-ships_Asp_Explorer|Asp Explorer]], [[Z-ships_Cobra_Commodore|Cobra Commodore]], [[Z-ships_Porcupine|Porcupine]] &amp;amp; [[Z-ships_Python_Courier|Python Courier]]&lt;br /&gt;
|aut=Zieman&lt;br /&gt;
|date=2010-03-01&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9056 Z-GrOovY Griff's Cobra Mk3 Variety Pack] adds multiple Griff's Cobra Mk3 with alternate hull paintings&lt;br /&gt;
|aut=dertien&lt;br /&gt;
|date=2011-01-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9306 Z-GrOovY System Stations] adds Griff-based Tetrahedron, Octahedron, Coriolis, Dodecahedron, Icosahederon stations&lt;br /&gt;
|aut=dertien&lt;br /&gt;
|date=2011-03-03&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9146 Z-GrOovY Viper Raider] adds a new player ship based on the police Viper&lt;br /&gt;
|aut=dertien&lt;br /&gt;
|date=2011-02-13&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9056 Z-GrOovY YAH Sidewinder Variety Pack] adds multiple Your Ad Here! Constore defenders with alternate hull paintings&lt;br /&gt;
|aut=dertien&lt;br /&gt;
|date=2011-01-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9056 Z-GrOovY YellOo Cab Variety Pack] adds the Moray Starboat with taxi hull painting&lt;br /&gt;
|aut=dertien&lt;br /&gt;
|date=2011-01-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Work in Progress OXPs  ==&lt;br /&gt;
The following table contains OXPs that either have not yet been released by their authors but are already being discussed on the [http://www.aegidian.org/bb/viewforum.php?f=4 Expansion Pack Forum], or released OXPs that still have WIP status. Links get you either to the respective discussion or the Wiki page if it already exists.&lt;br /&gt;
{{OXPListTableHeader}}&lt;br /&gt;
&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Weapons&lt;br /&gt;
|desc=[http://www.box.net/shared/moreq536ht Nexus missile]. Three versions of a multi-warhead missile. Like the anti-thargoid missile but not just for (against) thargoids.&lt;br /&gt;
|aut=UK_Eliter&lt;br /&gt;
|date=2011-07-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?t=8341 Animated Ships] adds animated butterflies flapping their wings as a demo&lt;br /&gt;
|aut=Thargoid&lt;br /&gt;
|date=2010-08-06&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9864 Cargo Scanner] scans targeted cargo containers to find out what they contain&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-05-17&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[http://www.aegidian.org/bb/viewtopic.php?t=8526 Comms Demo] provides a way to communicate with NPC ships&lt;br /&gt;
|aut=Kaks&lt;br /&gt;
|date=2009-10-26&lt;br /&gt;
|work=N}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mechanics&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=6&amp;amp;t=9087 Guerilla War] puts you in a position to lead a fighter squadron&lt;br /&gt;
|aut=Ramirez|date=2011-04-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://www.box.net/shared/0i2fnrc175t Katipo] adds a very fast, moderate maneuverability, low cargo ship with low thrust&lt;br /&gt;
|aut=Simon B&lt;br /&gt;
|date=2011-03-03&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9441 Miner Pod] breaks up asteroids and collects the splinters&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-03-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?t=8275 Mining] adds mines to protect and provide resources for to get gold&lt;br /&gt;
|aut=docwild&lt;br /&gt;
|date=2010-07-28&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Dockables&lt;br /&gt;
|desc=[[Nuit Space Station OXP|Nuit Space Station]] is the newest creation of [[Isis Interstellar]]&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2009-11-11&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Mission&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?p=130221#p130221 Oresrati Challenge] adds a fun mission to the loneliest system of the Ooniverse, Oresrati&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-04-26&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9946 Phantom] is a trader/fighter from [[Isis Interstellar]] with external missiles&lt;br /&gt;
|aut=Killer Wolf&lt;br /&gt;
|date=2011-05-27&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?p=138226#p138226 Shield Cycler] distributes shield energy between fore and aft shields&lt;br /&gt;
|aut=Lone_Wolf&lt;br /&gt;
|date=2011-05-18&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Activities&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=5484 Solar System] adds extra planets and jump gates to a system&lt;br /&gt;
|aut=Frame&lt;br /&gt;
|date=2009-01-11&lt;br /&gt;
|work=}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9472 Sun Skimmer Pod] adds a pod that goes sun skimming and returns full of fuel&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-03-21&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9488 Target Tracker] aligns your ship on your target&lt;br /&gt;
|aut=Okti&lt;br /&gt;
|date=2011-03-23&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9353 Thor Class Supercarrier] adds a Navy Carrier as a replacement pack for the Behemoth and the Galactic Navy&lt;br /&gt;
|aut=dertien&lt;br /&gt;
|date=2011-03-03&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Equipment&lt;br /&gt;
|desc=[http://aegidian.org/bb/viewtopic.php?f=4&amp;amp;t=9242 Wormhole Drones] creates a path of worm holes to lead you to your destination system&lt;br /&gt;
|aut=Mauiby de Fug&lt;br /&gt;
|date=2011-02-22&lt;br /&gt;
|work=Y}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Retextures&lt;br /&gt;
|desc=[http://www.aegidian.org/bb/viewtopic.php?t=8541 Zygoroids] add new beautifully textured asteroid models to the Ooniverse&lt;br /&gt;
|aut=ZygoUgo&lt;br /&gt;
|date=2010-10-05&lt;br /&gt;
|work=Y}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== OXPs with Problems ==&lt;br /&gt;
The following table contains OXPs that have problems eg. broken download, or have been written for versions of Oolite earlier than the current 1.75.2&lt;br /&gt;
{{OXPListTableHeader}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Amen Bricks Megaships|Amen Brick's Megaships]] adds [[Battleship]]s, [[Biodome]]s, [[Cruiseship]]s, [[Hospitalship]]s, [[Supercargo]]s, [[Superlifter]]s, and [[Yacht - Amen Class|Yacht]]s (This version 1.1 contains a corrupted shipData.plist)&lt;br /&gt;
|aut=Amen Brick&lt;br /&gt;
|date=2008-07-11}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Cataclysm OXP|Cataclysm]] takes up the threads of Constrictor Hunt and Thargoid Plans, and sends you on your biggest Navy mission yet&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2009-01-06&lt;br /&gt;
|work=N}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Kirin#Download|Kirin Sport]] adds a a smaller, faster, more agile - and less well armed - civilian variant of the [[Kirin]]&lt;br /&gt;
|aut=Cdr. Wyvern&lt;br /&gt;
|date=2009-07-22&lt;br /&gt;
|work=N}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Missions&lt;br /&gt;
|desc=[[Localhero_OXP|Localhero]] adds a mission campaign in the first galaxies&lt;br /&gt;
|aut=Svengali&lt;br /&gt;
|date=2008-04-09&lt;br /&gt;
|work=N}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ships&lt;br /&gt;
|desc=[[Orb]] adds a new alien race, which might help GalCop in the battle against the Thargoids.&lt;br /&gt;
|aut=Charlie&lt;br /&gt;
|date=2007-02-13&lt;br /&gt;
|work=N}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Ambience&lt;br /&gt;
|desc=[[Personalities OXP|Personalities]] adds a bunch of unique, well-known personalities from the Bulletin Board to the Ooniverse&lt;br /&gt;
|aut=Commander McLane&lt;br /&gt;
|date=2009-11-05&lt;br /&gt;
|work=N}}&lt;br /&gt;
{{OXPSortableTableRow&lt;br /&gt;
|cat=Misc&lt;br /&gt;
|desc=[[Save Anywhere]] allows you to save your game at any OXP Station&lt;br /&gt;
|aut=Frame&lt;br /&gt;
|date=2008-10-01&lt;br /&gt;
|work=N}}&lt;br /&gt;
|}&lt;br /&gt;
[[Category:Oolite expansion packs]]&lt;br /&gt;
[[Category:OXP Lists]]&lt;br /&gt;
[[Category:Factual]]&lt;/div&gt;</summary>
		<author><name>Mcarans</name></author>
		
	</entry>
</feed>