<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="http://opensimulator.org/skins/common/feed.css?303"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://opensimulator.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Ocsean</id>
		<title>OpenSimulator - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="http://opensimulator.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Ocsean"/>
		<link rel="alternate" type="text/html" href="http://opensimulator.org/wiki/Special:Contributions/Ocsean"/>
		<updated>2026-05-11T20:52:25Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.19.9</generator>

	<entry>
		<id>http://opensimulator.org/wiki/Automating_Tasks</id>
		<title>Automating Tasks</title>
		<link rel="alternate" type="text/html" href="http://opensimulator.org/wiki/Automating_Tasks"/>
				<updated>2010-02-01T15:54:56Z</updated>
		
		<summary type="html">&lt;p&gt;Ocsean: /* Linux (CentOS-5) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
{{Template:Quicklinks}}&lt;br /&gt;
&lt;br /&gt;
==Automate Grid Startup==&lt;br /&gt;
===Windows===&lt;br /&gt;
Create a batch file to start up your grid, e.g. startGrid.bat ;&lt;br /&gt;
&lt;br /&gt;
  @Echo OFF&lt;br /&gt;
 &lt;br /&gt;
 For /F &amp;quot;Usebackq&amp;quot; %%i In (`Tasklist ^| Find /C &amp;quot;OpenSim&amp;quot;`) Do If /I %%i GTR 0 Echo There are %%i OpenSimulator processes running already. I quit! &amp;amp; Goto END&lt;br /&gt;
 &lt;br /&gt;
 :: %PROGRAMFILES% expands to your normal application path&lt;br /&gt;
 :: On an English system this is normally C:\Program Files&lt;br /&gt;
 :: If you run a 64-bit Windows, with OpenSim as a 32-bit&lt;br /&gt;
 :: application, substitute with %PROGRAMFILES(X86)%&lt;br /&gt;
 &lt;br /&gt;
 Echo Starting User Server...&lt;br /&gt;
 start &amp;quot;UserServer&amp;quot; /MIN /D &amp;quot;%PROGRAMFILES%\OpenSim&amp;quot; OpenSim.Grid.UserServer.exe&lt;br /&gt;
 sleep 5&lt;br /&gt;
 Echo Starting Grid Server...&lt;br /&gt;
 start &amp;quot;GridServer&amp;quot; /MIN /D &amp;quot;%PROGRAMFILES%\OpenSim&amp;quot; OpenSim.Grid.GridServer.exe&lt;br /&gt;
 sleep 5&lt;br /&gt;
 Echo Starting Asset Server...&lt;br /&gt;
 start &amp;quot;AssetServer&amp;quot; /MIN /D &amp;quot;%PROGRAMFILES%\OpenSim&amp;quot; OpenSim.Grid.AssetServer.exe&lt;br /&gt;
 sleep 5&lt;br /&gt;
 Echo Starting Inventory Server...&lt;br /&gt;
 start &amp;quot;InventoryServer&amp;quot; /MIN /D &amp;quot;%PROGRAMFILES%\OpenSim&amp;quot; OpenSim.Grid.InventoryServer.exe&lt;br /&gt;
 sleep 5&lt;br /&gt;
 Echo Starting Messaging Server...&lt;br /&gt;
 start &amp;quot;MessagingServer&amp;quot; /MIN /D &amp;quot;%PROGRAMFILES%\OpenSim&amp;quot; OpenSim.Grid.MessagingServer.exe&lt;br /&gt;
 sleep 5&lt;br /&gt;
 Echo Starting Region Server...&lt;br /&gt;
 start &amp;quot;RegionServer&amp;quot; /MIN /D &amp;quot;%PROGRAMFILES%\OpenSim&amp;quot; OpenSim.exe -gridmode=true&lt;br /&gt;
 &lt;br /&gt;
 :END&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
PS! Check that you have sleep command installed, I'm unsure if all Windows versions have that.&amp;lt;br&amp;gt;&lt;br /&gt;
If sleep is not installed one can use a localhost ping instead to replace &amp;quot;sleep 3&amp;quot;.&lt;br /&gt;
 PING -n 4 127.0.0.1&amp;gt;nul&lt;br /&gt;
This knowledgebase article describes how to add a batch file to startup of Windows (before logon).&amp;lt;br&amp;gt;&lt;br /&gt;
[http://support.microsoft.com/kb/q243486/ http://support.microsoft.com/kb/q243486/]&amp;lt;br&amp;gt;&lt;br /&gt;
Note that you have to start all applications and answer the configuration questions once before adding it to any startup.&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
If you start the server before logon then there will be no window to close if you want to shut down the server, so you can create a &amp;quot;StopGrid.BAT&amp;quot; with:&lt;br /&gt;
 taskkill /FI &amp;quot;IMAGENAME eq OpenSim.*&amp;quot;&lt;br /&gt;
 sleep 3&lt;br /&gt;
 taskkill /FI &amp;quot;IMAGENAME eq OpenSim.*&amp;quot;&lt;br /&gt;
 sleep 3&lt;br /&gt;
 taskkill /F /FI &amp;quot;IMAGENAME eq OpenSim.*&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Or a more advanced batch that shut server processes down in the opposite order as recommended in the manual.&lt;br /&gt;
 @Echo OFF&lt;br /&gt;
 &lt;br /&gt;
 For /F &amp;quot;Usebackq&amp;quot; %%i In (`Tasklist ^| Find /C &amp;quot;OpenSim&amp;quot;`) Do If /I %%i EQU 0 Echo There are no OpenSimulator processes running. Nothing to stop.. &amp;amp; Goto END&lt;br /&gt;
 &lt;br /&gt;
 &lt;br /&gt;
 Echo Stopping Region Server...&lt;br /&gt;
 taskkill /T /IM OpenSim.exe &amp;gt; NUL 2&amp;gt;&amp;amp;1&lt;br /&gt;
 If ERRORLEVEL 128 Echo Region Server was not running! &amp;amp; Echo. &amp;amp; Goto n1&lt;br /&gt;
 :r1&lt;br /&gt;
 If ERRORLEVEL 1 taskkill /T /F /IM OpenSim.exe &amp;gt; NUL 2&amp;gt;&amp;amp;1&lt;br /&gt;
 If ERRORLEVEL 0 Echo Region Server stopped. &amp;amp; Echo. &amp;amp; Goto n1&lt;br /&gt;
 Goto r1&lt;br /&gt;
 &lt;br /&gt;
 :n1&lt;br /&gt;
 Echo Stopping Messaging Server...&lt;br /&gt;
 taskkill /T /IM OpenSim.Grid.MessagingServer.exe &amp;gt; NUL 2&amp;gt;&amp;amp;1&lt;br /&gt;
 If ERRORLEVEL 128 Echo Inventory Server was not running! &amp;amp; Echo. &amp;amp; Goto n2&lt;br /&gt;
 :r2&lt;br /&gt;
 If ERRORLEVEL 1 taskkill /T /F /IM OpenSim.Grid.MessagingServer.exe &amp;gt; NUL 2&amp;gt;&amp;amp;1&lt;br /&gt;
 If ERRORLEVEL 0 Echo IMessaging Server stopped. &amp;amp; Echo. &amp;amp; Goto n2&lt;br /&gt;
 Goto r2&lt;br /&gt;
 &lt;br /&gt;
 :n2&lt;br /&gt;
 Echo Stopping Inventory Server...&lt;br /&gt;
 taskkill /T /IM OpenSim.Grid.InventoryServer.exe &amp;gt; NUL 2&amp;gt;&amp;amp;1&lt;br /&gt;
 If ERRORLEVEL 128 Echo Inventory Server was not running! &amp;amp; Echo. &amp;amp; Goto n3&lt;br /&gt;
 :r3&lt;br /&gt;
 If ERRORLEVEL 1 taskkill /T /F /IM OpenSim.Grid.InventoryServer.exe &amp;gt; NUL 2&amp;gt;&amp;amp;1&lt;br /&gt;
 If ERRORLEVEL 0 Echo Inventory Server stopped. &amp;amp; Echo. &amp;amp; Goto n3&lt;br /&gt;
 Goto r3&lt;br /&gt;
 &lt;br /&gt;
 :n3&lt;br /&gt;
 Echo Stopping Asset Server...&lt;br /&gt;
 taskkill /T /IM OpenSim.Grid.AssetServer.exe &amp;gt; NUL 2&amp;gt;&amp;amp;1&lt;br /&gt;
 If ERRORLEVEL 128 Echo Asset Server was not running! &amp;amp; Echo. &amp;amp; Goto n4&lt;br /&gt;
 :r4&lt;br /&gt;
 If ERRORLEVEL 1 taskkill /T /F /IM OpenSim.Grid.AssetServer.exe &amp;gt; NUL 2&amp;gt;&amp;amp;1&lt;br /&gt;
 If ERRORLEVEL 0 Echo Asset Server stopped. &amp;amp; Echo. &amp;amp; Goto n4&lt;br /&gt;
 Goto r4&lt;br /&gt;
 &lt;br /&gt;
 :n4&lt;br /&gt;
 Echo Stopping Grid Server...&lt;br /&gt;
 taskkill /T /IM OpenSim.Grid.GridServer.exe &amp;gt; NUL 2&amp;gt;&amp;amp;1&lt;br /&gt;
 If ERRORLEVEL 128 Echo Grid Server was not running! &amp;amp; Echo. &amp;amp; Goto n5&lt;br /&gt;
 :r5&lt;br /&gt;
 If ERRORLEVEL 1 taskkill /T /F /IM OpenSim.Grid.GridServer.exe &amp;gt; NUL 2&amp;gt;&amp;amp;1&lt;br /&gt;
 If ERRORLEVEL 0 Echo Grid Server stopped. &amp;amp; Echo. &amp;amp; Goto n5&lt;br /&gt;
 Goto r5&lt;br /&gt;
 &lt;br /&gt;
 :n5&lt;br /&gt;
 Echo Stopping User Server...&lt;br /&gt;
 taskkill /T /IM OpenSim.Grid.UserServer.exe &amp;gt; NUL 2&amp;gt;&amp;amp;1&lt;br /&gt;
 If ERRORLEVEL 128 Echo User Server was not running! &amp;amp; Echo. &amp;amp; Goto END&lt;br /&gt;
 :r6&lt;br /&gt;
 If ERRORLEVEL 1 taskkill /T /F /IM OpenSim.Grid.UserServer.exe &amp;gt; NUL 2&amp;gt;&amp;amp;1&lt;br /&gt;
 If ERRORLEVEL 0 Echo User Server stopped. &amp;amp; Echo. &amp;amp; Goto END&lt;br /&gt;
 Goto r6&lt;br /&gt;
 &lt;br /&gt;
 :END&lt;br /&gt;
(Batch edits, [[User:Suz|Suz]] 04:46, 27 May 2008 (PDT))&lt;br /&gt;
&lt;br /&gt;
=== Linux/Mac OS X  ===&lt;br /&gt;
&lt;br /&gt;
You can use this [[Startup script linux|startup script]] &lt;br /&gt;
&lt;br /&gt;
You can use [[Linux Service|this]] setup on Linux to run your grid as a dedicated user. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*Use Screen Command&lt;br /&gt;
&lt;br /&gt;
Use the screen command to automate startup &lt;br /&gt;
&lt;br /&gt;
*Setup screen command and setup shell file&lt;br /&gt;
&lt;br /&gt;
Linux install: &lt;br /&gt;
&lt;br /&gt;
 apt-get install screen (ubuntu)&lt;br /&gt;
 pacman -S screen (archlinux)&lt;br /&gt;
&lt;br /&gt;
Mac OS X: Download either MacPorts, http://www.macports.org/, or Fink, http://www.finkproject.org/ to download *nix packages MacPorts &lt;br /&gt;
&lt;br /&gt;
 sudo port install screen&lt;br /&gt;
&lt;br /&gt;
Fink &lt;br /&gt;
&lt;br /&gt;
 Need command line for Fink.&lt;br /&gt;
&lt;br /&gt;
*Create file runsim.sh&lt;br /&gt;
&lt;br /&gt;
 #!/bin/sh&lt;br /&gt;
 cd opensim/bin&lt;br /&gt;
 sleep 3&lt;br /&gt;
 screen -S UserServer -d -m  mono OpenSim.Grid.UserServer.exe&lt;br /&gt;
 sleep 3&lt;br /&gt;
 screen -S GridServer -d -m mono OpenSim.Grid.GridServer.exe&lt;br /&gt;
 sleep 3&lt;br /&gt;
 screen -S AssetServer -d -m mono OpenSim.Grid.AssetServer.exe&lt;br /&gt;
 sleep 3&lt;br /&gt;
 screen -S InventoryServer -d -m mono OpenSim.Grid.InventoryServer.exe&lt;br /&gt;
 sleep 3&lt;br /&gt;
 screen -S OpenSim -d -m mono OpenSim.exe -gridmode=true&lt;br /&gt;
&lt;br /&gt;
===Startup and access servers===&lt;br /&gt;
 ./runsim.sh&lt;br /&gt;
&lt;br /&gt;
If you have permission issues &lt;br /&gt;
 chmod 755 runsim.sh&lt;br /&gt;
&lt;br /&gt;
To see a list of the servers in screen:&lt;br /&gt;
 screen -ls or screen -list&lt;br /&gt;
&lt;br /&gt;
Output will look like the following:&lt;br /&gt;
 There are screens on:&lt;br /&gt;
      8419.OpenSim  (Detached)&lt;br /&gt;
      8403.InventoryServer  (Detached)&lt;br /&gt;
      8378.AssetServer  (Detached)&lt;br /&gt;
      8360.GridServer  (Detached)&lt;br /&gt;
      8347.UserServer  (Detached)&lt;br /&gt;
&lt;br /&gt;
To access server&lt;br /&gt;
 screen -r 8419.OpenSim&lt;br /&gt;
 screen -r 8403.InventoryServer&lt;br /&gt;
 etc.&lt;br /&gt;
&lt;br /&gt;
To exit screen, leaving server running, and to return to shell&lt;br /&gt;
 ctrl-a d&lt;br /&gt;
&lt;br /&gt;
===Shutdown Servers===&lt;br /&gt;
Either manually access each sceen&lt;br /&gt;
 screen -r 8419.OpenSim&lt;br /&gt;
 shutdown&lt;br /&gt;
&lt;br /&gt;
Or use&lt;br /&gt;
 killall mono&lt;br /&gt;
Or&lt;br /&gt;
 for i in `ps afxu | grep -i &amp;quot;mono.*OpenSim&amp;quot; | grep -v grep | awk {'print $2'}`; do kill $i; done&lt;br /&gt;
&lt;br /&gt;
Or to shut down each session clean, make a stop script, stopgrid.sh&lt;br /&gt;
 #!/bin/bash&lt;br /&gt;
 screen -S InventoryServer -X eval &amp;quot;stuff shutdown^M&amp;quot;&lt;br /&gt;
 sleep 5&lt;br /&gt;
 screen -S AssetServer -X eval &amp;quot;stuff shutdown^M&amp;quot;&lt;br /&gt;
 sleep 5&lt;br /&gt;
 screen -S GridServer -X eval &amp;quot;stuff shutdown^M&amp;quot;&lt;br /&gt;
 sleep 5&lt;br /&gt;
 screen -S UserServer -X eval &amp;quot;stuff shutdown^M&amp;quot;&lt;br /&gt;
This depends on the screen NAME to be the same as in the startup script described above!&lt;br /&gt;
--[[User:Suz|Suz]] 01:42, 18 May 2008 (PDT)&lt;br /&gt;
&lt;br /&gt;
==Simulator Watchdog==&lt;br /&gt;
Watches the simulator process under Linux&lt;br /&gt;
&lt;br /&gt;
Adding an entry to call a simple script to check the process table can restart regions that crash to the command line. Here [[User_talk:BlueWall]] is a script to accomplish this with a sample cron entry for one minute intervals. While it will not fix 100% of the crashes, it will get most cases, and help keep the grid healthy. If you have questions, you can usually find me on irc.freenode.net #opensim or #osgrid&lt;br /&gt;
&lt;br /&gt;
--[[User:BlueWall|BlueWall]] 15:53, 19 June 2008 (PDT)&lt;br /&gt;
&lt;br /&gt;
==Automate Updates==&lt;br /&gt;
===Linux (CentOS-5)===&lt;br /&gt;
This script will save your settings, grab the latest release of OpenSim, build OpenSim, and restore your settings to the new release. It creates the new release in a new directory allowing you to revert to the previous release by just changing the 'current' link to point to whichever release you want to run.&lt;br /&gt;
&lt;br /&gt;
'''Note:'''&lt;br /&gt;
''This may not work well if updating from versions that are quite far apart. Minor updates should work well. Sometimes you have to clear out the SAVEDIR to prevent very old files from messing up a new update.''&lt;br /&gt;
&lt;br /&gt;
This script assumes you are using the SVN release number as the OpenSim directory with a link called 'current' pointing to it. So, you might, for example, have a directory called '/home/opensim/7577' and a link 'current -&amp;gt; 7577'. This script also uses a save folder for moving settings from the old release to the new.&lt;br /&gt;
&lt;br /&gt;
You will also want to compare the 'OpenSim.ini' and the 'OpenSim.ini.example' by hand after running this update script. There are often changes in this file needed for the new release. The 'diff -bB' command helps a lot in this comparison.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#!/bin/bash -x&lt;br /&gt;
&lt;br /&gt;
CWD=`pwd`&lt;br /&gt;
MWD=&amp;quot;/home/opensim&amp;quot;  # Main Working Directory&lt;br /&gt;
SAVEDIR=&amp;quot;$MWD/save&amp;quot;  # Save Directory&lt;br /&gt;
&lt;br /&gt;
if [ ! -d $SAVEDIR ]; then mkdir $SAVEDIR; fi&lt;br /&gt;
if [ ! -d $SAVEDIR/Regions ]; then mkdir $SAVEDIR/Regions; fi&lt;br /&gt;
if [ ! -d $SAVEDIR/DataSnapshot ]; then mkdir $SAVEDIR/DataSnapshot; fi&lt;br /&gt;
if [ ! -d $SAVEDIR/config-include ]; then mkdir $SAVEDIR/config-include; fi&lt;br /&gt;
&lt;br /&gt;
cd $MWD&lt;br /&gt;
&lt;br /&gt;
# save current settings&lt;br /&gt;
cp current/bin/*.xml $SAVEDIR&lt;br /&gt;
cp current/bin/*.db $SAVEDIR&lt;br /&gt;
cp current/bin/*.ini $SAVEDIR&lt;br /&gt;
cp current/bin/config-include/*.ini $SAVEDIR/config-include/&lt;br /&gt;
cp current/bin/Regions/*xml $SAVEDIR/Regions/&lt;br /&gt;
cp current/bin/DataSnapshot/*xml $SAVEDIR/DataSnapshot/&lt;br /&gt;
&lt;br /&gt;
# Get fresh copy of OpenSim&lt;br /&gt;
REV=`svn info http://opensimulator.org/svn/opensim/trunk | fgrep Revision | awk '{print $2}'`&lt;br /&gt;
svn -r $REV co http://opensimulator.org/svn/opensim/trunk $REV&lt;br /&gt;
rm current&lt;br /&gt;
ln -s $REV current&lt;br /&gt;
cd current&lt;br /&gt;
./runprebuild.sh&lt;br /&gt;
nant&lt;br /&gt;
cd bin&lt;br /&gt;
# restore settings&lt;br /&gt;
if [ ! -d ./DataSnapshot ]; then mkdir ./DataSnapshot; fi&lt;br /&gt;
cp $SAVEDIR/*.xml .&lt;br /&gt;
cp $SAVEDIR/*.db .&lt;br /&gt;
cp $SAVEDIR/*.ini .&lt;br /&gt;
cp $SAVEDIR/config-include/* config-include/&lt;br /&gt;
cp $SAVEDIR/Regions/* Regions/&lt;br /&gt;
cp $SAVEDIR/DataSnapshot/* DataSnapshot/&lt;br /&gt;
cd $MWD&lt;br /&gt;
cd current&lt;br /&gt;
#&lt;br /&gt;
cd $CWD&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Alternative methods==&lt;br /&gt;
&lt;br /&gt;
Start/stop/restart OpenSim on Linux with [[Autorestart_With_Upstart|upstart]]&lt;/div&gt;</summary>
		<author><name>Ocsean</name></author>	</entry>

	<entry>
		<id>http://opensimulator.org/wiki/Free_Assets</id>
		<title>Free Assets</title>
		<link rel="alternate" type="text/html" href="http://opensimulator.org/wiki/Free_Assets"/>
				<updated>2009-12-09T16:05:28Z</updated>
		
		<summary type="html">&lt;p&gt;Ocsean: /* Skin PSD's */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Users]]&lt;br /&gt;
==Textures==&lt;br /&gt;
* [http://texturebarn.headfirstdm.com/ The Texture Barn]&lt;br /&gt;
* [http://www.tellim.com/texture_cd/ The Blender Texture Disc]&lt;br /&gt;
* [http://textures.z7server.com/save_all_textures.php z7Server texture packages]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery widths=&amp;quot;128px&amp;quot; heights=&amp;quot;128px&amp;quot; perrow=&amp;quot;6&amp;quot;&amp;gt;&lt;br /&gt;
Image:Smoke.png | Smoke&lt;br /&gt;
Image:Brown_Eye.png | A Brown Eye&lt;br /&gt;
Image:Picketfence.png | A Picket fence.&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Nebadon's Bush Texture : [http://www.nebadonizumi.com/bushes01.tga Bushes]&lt;br /&gt;
&lt;br /&gt;
Vint Falken's Free Valentine Eyes:&lt;br /&gt;
[http://www.flickr.com/photos/vintfalken/2258351122/ 1]&lt;br /&gt;
[http://www.flickr.com/photos/vintfalken/2258351306/ 2]&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
http://www.vintfalken.com/free-full-perm-female-skins-sezmras-splendor/&amp;lt;br&amp;gt;&lt;br /&gt;
http://www.vintfalken.com/free-full-perm-female-skin-textures/&amp;lt;br&amp;gt;&lt;br /&gt;
http://torley.com/torley-textures-available-for-download-in-a-single-zip-pack&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Heightmaps==&lt;br /&gt;
&amp;lt;gallery caption=&amp;quot;A Simple Square Island&amp;quot; widths=&amp;quot;100px&amp;quot; heights=&amp;quot;100px&amp;quot; perrow=&amp;quot;6&amp;quot;&amp;gt;&lt;br /&gt;
Image:Square_island_1x1.png | 1x1 region&lt;br /&gt;
Image:Square_island_2x2.png | 2x2 regions&lt;br /&gt;
Image:Square_island_4x4.png | 4x4 regions&lt;br /&gt;
&amp;lt;/gallery&amp;gt;http://guide.opendns.com/?url=www.nextlife.ca%2Fnuathens.zip&amp;amp;servfail&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery caption=&amp;quot;A Complicated Maze&amp;quot; widths=&amp;quot;100px&amp;quot; heights=&amp;quot;100px&amp;quot; perrow=&amp;quot;6&amp;quot;&amp;gt;&lt;br /&gt;
Image:Maze.png | 1x1 region&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Buildings==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery caption=&amp;quot;Free OpenSim Buildings&amp;quot; widths=&amp;quot;250px&amp;quot; heights=&amp;quot;188px&amp;quot; perrow=&amp;quot;6&amp;quot;&amp;gt;&lt;br /&gt;
Image:Free_OpenSim_Assets_Modern_Building.jpg | [http://integratedtechnologies.eu/sites/default/files/modern_building_oar_tar.gz Download]&lt;br /&gt;
Image:Free_OpenSim_Assets_Cottage.jpg | [http://integratedtechnologies.eu/sites/default/files/09_11_08_house_oar.tar.gz Download]&lt;br /&gt;
Image:Free_OpenSim_Assets_Office.jpg | [http://integratedtechnologies.eu/sites/default/files/09_11_08_office_oar.tar.gz Download]&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery caption=&amp;quot;Free OpenSim Buildings&amp;quot; widths=&amp;quot;250px&amp;quot; heights=&amp;quot;188px&amp;quot; perrow=&amp;quot;6&amp;quot;&amp;gt;&lt;br /&gt;
Image:Free_OpenSim_Assets_Small_Store.jpg | [http://integratedtechnologies.eu/sites/default/files/09_11_08_small_store_oar.tar.gz Download]&lt;br /&gt;
Image:Free_OpenSim_Assets_Medium_Store.jpg | [http://integratedtechnologies.eu/sites/default/files/09_11_08_medium_store_oar.tar.gz Download]&lt;br /&gt;
Image:Free_OpenSim_Assets_Large_Store.jpg | [http://integratedtechnologies.eu/sites/default/files/09_11_08_large_store_oar.tar.gz Download]&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery caption=&amp;quot;Free OpenSim Buildings&amp;quot; widths=&amp;quot;250px&amp;quot; heights=&amp;quot;188px&amp;quot; perrow=&amp;quot;6&amp;quot;&amp;gt;&lt;br /&gt;
Image:Free_OpenSim_Assets_Fireplace.jpg | [http://integratedtechnologies.eu/sites/default/files/09_11_08_fireplace_oar.tar.gz Download]&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Full Sims==&lt;br /&gt;
'''Nu Athens'''&lt;br /&gt;
&lt;br /&gt;
4 Full Sims with Faux City which was made by Lordfly Digeridoo for a roleplay experiment.&lt;br /&gt;
[http://www.sluniverse.com/php/vb/project-development/16014-nu-athens-interactive-story-opensim-2.html SL Universe posting on Nu Athens]&lt;br /&gt;
&lt;br /&gt;
[http://techwizworld.net/Opensim/nuathens/ Download Nu Athens oar files]&lt;br /&gt;
&lt;br /&gt;
== Opensim Archives - OAR Files ==&lt;br /&gt;
&lt;br /&gt;
===How to load OAR files===&lt;br /&gt;
[[OpenSim Archives|How to load OAR files]]&lt;br /&gt;
&lt;br /&gt;
===OpenVCE 3D Assets OAR===&lt;br /&gt;
&lt;br /&gt;
The [http://openvce.net OpenVCE.net] virtual worlds assets described at http://openvce.net/vwassets provided by Clever Zebra and the OpenVCE.net team at AIAI in the University of Edinburgh are available as an OAR (Opensim Archive) file.&lt;br /&gt;
&lt;br /&gt;
 http://openvce.net/resources/downloads/&lt;br /&gt;
&lt;br /&gt;
Get file &amp;quot;opensim-openvce.oar&amp;quot; from there (right click on the file in the above directory in your browser, and select download is the easiest way to obtain the materials). A &amp;quot;full&amp;quot; set of the buildings with a large 400 seat amphitheatre intended to be placed on the corner of 4 sims is also available via &amp;quot;opensim-openvce-full.oar&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Images of the buildings in place in Opensim are at:&lt;br /&gt;
[http://openvce.net/resources/downloads/opensim-openvce-1.jpg Image 1],&lt;br /&gt;
[http://openvce.net/resources/downloads/opensim-openvce-2.jpg Image 2]&lt;br /&gt;
&lt;br /&gt;
==Skin PSD's==&lt;br /&gt;
&amp;lt;gallery caption=&amp;quot;Free Skin PSD files&amp;quot; widths=&amp;quot;250px&amp;quot; heights=&amp;quot;188px&amp;quot; perrow=&amp;quot;6&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Image:Skins.jpg | [http://sites.google.com/site/another/resources Download Page]&lt;br /&gt;
Image:Skin2.jpg | [http://sites.google.com/site/another/resources Download Page]&lt;br /&gt;
Image:Skin3.jpg | [http://sites.google.com/site/another/resources Download Page]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;/div&gt;</summary>
		<author><name>Ocsean</name></author>	</entry>

	</feed>