OpenSimWorld is the directory of 3D Virtual Worlds based on OpenSimulator and connected through the HyperGrid. Learn More

💬 Chat





All New stuff going out at the mall. Things I made in Meshy so you won't find them anywhere else. Stop by and see! There are Monsters for your Halloween decor, there are carved caves, mysterious portals, beautiful arches, and some absolutely adorable little critters that make the cutest little nick knacks. There is a nice statue of a swordsman and a "Sleeping Beauty" scene. And there will be more coming!! This stuff is all free and full perm except for re-texturing as these textures were applied in Meshy and cannot be changed. Blessings and much love, Lavia.

NEWS!!! TDV Halloween wine hop://alternatemetaverse.com:8002/Tierra%20De%20Volcanes/4... (TP--------> FEEDME)

Miss Munk will be spinning her wheels of steel at 1 pm grid time, at The Piazza!
Bring your headphones and get on down here and listen to nonstop beat matching and full spectrum sound!
Plug the link into your map and we'll see you there.
http://bridgemere.outworldz.net:8002:Paradise Lagoon

lousy weather

Heute:
Herbst goes Tropicana – Die Nacht gehört uns (und unseren Hüften)! 🕺💃

Wer sagt, dass der Sommer vorbei ist? Wir sagen: Noch nicht mit uns! Also Sonnenbrille auf, Flip-Flops an und ab an den virtuellen Strand – denn wir feiern, als wären wir 25 (oder zumindest so beweglich wie unsere Avatare).

🌴 Palmen wackeln im Takt, die DJanes drehen auf, und die Cocktails sind garantiert kalorienfrei. 💃 Ob Tanzbar-Veteran oder digitaler Beachboy – hier kommt jeder ins Schwitzen (zur Not mit dem Ventilator).
Alina Custom Vehicles.
Now at AMV a new store with easy access around the region bringing unusual and unseen vehicles in Opensim.
Classic vehicles, Nascar race cars, Huge Hotrod range, Monster Trucks, Heavy Commercial Vehicles, Agriculture Vehicles, Dinkie Vehicle section , Pick up trucks, just about something for everyone..
In region teleporter to make it easier to get around..
New Vehicles added
All new Vendors for an easy experience
Complete sim full of vehicles, almost 250 different vehicles.
All vehicles can be altered or modified should you need, adjustments or additions happily done on request..
Hope to see you soon.
hop://alternatemetaverse.com:8002/luna/126/128/22
Alina
DJane Dragon at the Coffin Club
8 to 10 AM Gridtime (AMV) TODAY 5th Oct 2025
playing you gothic industrial and EBM.

The Coffin Club is a gothic club in a church surrounded by a cemetry, furnished with coffins, music is gothic, rock, metal, EBM and Industrial.

Take your friends and come over.
Waiting for you
Dragon

Listen: http://dragon.radioamv.com
hop://alternatemetaverse.com:8002/AMV%20Special%20Events/3...
Join us on AMV: https://alternatemetaverse.com/
Position Opening: Greeter for Gentle Fire Grid

We are currently seeking a warm, creative, and professional Greeter to join the Gentle Fire Grid team. This role involves welcoming guests at our Orientation Center and designated mall locations, ensuring each interaction reflects our values of hospitality, clarity, and emotional resonance.

Key Requirements:

Must demonstrate a clear understanding of Gentle Fire Grid’s rules and policies, and consistently abide by them.

Must bring creativity and warmth to all guest interactions, setting the tone for a positive and engaging experience.

This position is exclusive to members of the Gentle Fire Grid. Applicants affiliated with other grids are not eligible to apply.

If you embody grace, professionalism, and a passion for welcoming others, we invite you to express interest.
Please contact the H-Adim Emily , Adore , Pete Mint
Organization of the Simulator Folders (Version française en bas !)
Along with my PHP region management page ( https://i.gyazo.com/7173759f56b7dbe31f5c9a63022b2363.png https://i.gyazo.com/618efad4a65c887910cb10b0e6a6849d.png ), I've redesigned the entire organization of the simulator folders.
Instead of having a folder with all the bin files for each simulator launched with one or more region.ini files in their Regions folder, with the logs in bin/onpensim.log, I wanted to have a single bin folder and move the region-specific files (opensim.ini, snapshoot, region.ini, and opensim.log) into their own folder (a bit like DreamGrid does).
The advantage is that it saves a bit of space, but more importantly, to update OpenSim, you only have to update one folder. In addition, the assets_cache folder is shared across all regions. I think, from what I understand, that this could be an advantage; perhaps it prevents duplication...?
So, to move the logs (otherwise everything is mixed together in a single bin/opensim.log), everything is here: http://opensimulator.org/wiki/Logging
Basically, you modify bin/OpenSim.exe.config a little, and you just have to give the correct value to this LOGFILEPATH variable before launching OpenSim for a region. Then it's in the opensim.ini files, where you need to adapt the lines
*ConsoleHistoryFile="... (I didn't move this, so the command history remains common to all regions)
*PIDFile="... (I don't use it yet, but I probably will for some sort of monitoring)
*snapshot_cache_directory="
*but above all, regionload_regionsdir= where we'll put the regions.ini files

I also made a small modification by adding this because I switched regions to plain SQLite.
[DatabaseService]
StorageProvider = "OpenSim.Data.SQLite.dll"
ConnectionString = "URI=file:/home/osuser/osg/bin/Regions/${Const|RegionFolderName}/OpenSim.db,version=3"
commenting out ;Include-Storage = "config-include/storage/SQLiteStandalone.ini";
in bin/config-include/GridCommon.ini

And you can launch a region with something like this:
/usr/bin/screen -dmS OSG_Sandbox sh -c 'cd /home/osuser/osg/bin/; ulimit -u 15518; ulimit -s 131072; /usr/bin/dotnet OpenSim.dll -inifile=/home/osuser/osg/bin/Regions/Sandbox/OSG_Sandbox.ini'

By the way, since I launch my regions with my PHP page, I've separated the Apache launch so that restarting Apache doesn't stop all the regions running. I now use this:
sudo systemctl start opensim@OSG_Sandbox.service
Of course, the corresponding files are created by my PHP in /etc/systemd/system/ it also allows you to stop regions with a stop:
[Unit]
Description=OpenSim Instance OSG_Sandbox

[Service]
Type=forking
User=osuser
WorkingDirectory=/home/osuser/osg/bin/
Environment=LOGFILEPATH=/home/osuser/osg/bin/Regions/Sandbox/
LimitNPROC=15518
ExecStart=/usr/bin/screen -dmS OSG_Sandbox sh -c 'cd /home/osuser/osg/bin/; ulimit -u 15518; ulimit -s 131072; /usr/bin/dotnet OpenSim.dll -inifile=/home/osuser/osg/bin/Regions/Sandbox/OSG_Sandbox.ini'
ExecStop=/usr/bin/screen -S OSG_Sandbox -X stuff "q\n"
Restart=no
KillMode=none
TimeoutStopSec=300
StandardOutput=journal
StandardError=journal

[Install]
WantedBy=multi-user.target

Obviously, I received a lot of help from various AIs, but you have to get used to them... between the ones that quickly forget what you're talking about and the one that gives 20 pages for a single line of PHP, and all the rest... it takes patience. But I'm pretty proud of all that.

There you go, you should have all the information, as I've already done with some. I don't plan on spending months explaining things; I did it by searching on my own! But if I missed something or if there are any "shadows," you can always ask me...
*********************************************************************
En parallele à ma page php de gestion de mes régions ( https://i.gyazo.com/7173759f56b7dbe31f5c9a63022b2363.png https://i.gyazo.com/618efad4a65c887910cb10b0e6a6849d.png ) j'ai revu toute l'organisation des dossiers des simulateurs.
Au lieu d'avoir un dossier avec tous les fichiers bin pour chaque simulateur lancé avec une ou plusieurs régions.ini dans leur dossier Regions avec les log dans bin/onpensim.log, j'ai voulu avoir un seul dossier bin et déplacer les fichiers propres à chaque région (opensim.ini, snapshoot, region.ini et opensim.log) dans leur propre dossier ("un peu" comme le fait DreamGrid).
L'avantage est qu'on gagne un peu de place mais surtout que pour mettre à jour opensim on n'a plus qu'un seul dossier à mettre à jour. En plus le dossier assets_cache est commun a toutes les régions, je pense, d'après ce que j'ai compris, que ça peut etre un avantage, ça empeche peut etre des duplications ... ?
Donc, pour déplacer les logs (autrement tout est mélangé dans un seul bin/opensim.log) tout est là http://opensimulator.org/wiki/Logging
En gros on modifie un peu bin/OpenSim.exe.config et il faut seulement donner la bonne valeur à cette variable LOGFILEPATH avant de lancer opensim pour une région.
Ensuite ça se passe dans les fichiers opensim.ini ou il faut adapter les lignes
*ConsoleHistoryFile="... (moi je n'ai pas déplacé ça , l'historique des commandes reste donc comun a toutes les régions)
*PIDFile="... (je ne m'en sert pas encore mais je vais surement le faire pour une sorte de surveillance)
*snapshot_cache_directory="
*mais surtout regionload_regionsdir= ou on va mettre les regions.ini

J'ai aussi fait une petite modif en ajoutant ça car j'ai passé des régions en SQLite tout bete
[DatabaseService]
StorageProvider = "OpenSim.Data.SQLite.dll"
ConnectionString = "URI=file:/home/osuser/osg/bin/Regions/${Const|RegionFolderName}/OpenSim.db,version=3"
en commentant ;Include-Storage = "config-include/storage/SQLiteStandalone.ini";
dans bin/config-include/GridCommon.ini

et on peut lancer une région avec un truc de ce genre:
/usr/bin/screen -dmS OSG_Sandbox sh -c 'cd /home/osuser/osg/bin/; ulimit -u 15518; ulimit -s 131072; /usr/bin/dotnet OpenSim.dll -inifile=/home/osuser/osg/bin/Regions/Sandbox/OSG_Sandbox.ini'

D'ailleurs, comme je lance mes région avec ma page php j'ai dissocié le lancement de apache pour qu'un redémarrage de apache n'arrette pas toutes les régions qui tournent, je passe maintenant par ça
sudo systemctl start opensim@OSG_Sandbox.service
Bien sur les fichiers correspondant sont créés par mon php dans /etc/systemd/system/ il permettent aussi de stopper les regions avec un stop :
[Unit]
Description=OpenSim Instance OSG_Sandbox

[Service]
Type=forking
User=osuser
WorkingDirectory=/home/osuser/osg/bin/
Environment=LOGFILEPATH=/home/osuser/osg/bin/Regions/Sandbox/
LimitNPROC=15518
ExecStart=/usr/bin/screen -dmS OSG_Sandbox sh -c 'cd /home/osuser/osg/bin/; ulimit -u 15518; ulimit -s 131072; /usr/bin/dotnet OpenSim.dll -inifile=/home/osuser/osg/bin/Regions/Sandbox/OSG_Sandbox.ini'
ExecStop=/usr/bin/screen -S OSG_Sandbox -X stuff "q\n"
Restart=no
KillMode=none
TimeoutStopSec=300
StandardOutput=journal
StandardError=journal

[Install]
WantedBy=multi-user.target

Evidemment j'ai été beaucoup aidée par différentes IA mais il faut se les faire ... entre celles qui oublie vite de quoi on parle et celle qui donne 20 pages pour une seule ligne de php et tout le reste... il faut de la patience. Mais je suis assez fière de tout ça.

Voila, normalement vous avez toutes les infos, comme je l'ai déjà fait avec certaines, je ne prévois pas de passer des mois a expliquer, moi je l'ai fait en cherchant par moi même ! Mais si j'ai raté quelques chose ou si ya des "ombres" vous pouvez toujours me demander ...

Eva Nowicka: great solution, Ankhsenaton 6 hours ago

Neu in der MiraclesWelt auf der little City: Haut Honny ist da!


CleaPerido: dankeschön 5 hours ago

From all of us at Gentle fire Grid we're wishing you an upcoming happy harvest

***Happy Sunday***

Here's something very special for all kings and vampires.

I put this throne in my Halloween corner.

You may have to change the sitting animations, as I only included standard animations.

Have pimp my Second Lifer Avatar a little bit :D


Rulus_Kaliopov: Sorry yes has nothing to do with OpenSim but was so satisfied with the result 9 hours ago

I'm sorry to anyone who couldn't get in... I didn't realize that it wasn't open until now. It's open!!!!

🎃 Halloween Land is Now Open! 🎃
👉 https://arkhamgrid.org

🎥 Watch the trailer

📸 Sneak peek preview

Step into the eerie magic of Halloween Land, now open on the Arkham Grid!

This immersive experience is back with brand-new surprises, hauntingly detailed scenes, and exclusive Halloween-themed content you won’t find anywhere else.

Explore a stunning virtual world filled with spooky adventures, chilling vibes, and festive fun. Whether you're a thrill-seeker, a collector, or simply love the Halloween spirit — there's something waiting for you here.

👻 Halloween Land is bigger, scarier, and more magical than ever — and it’s open now!
💀 Available only on Arkham Grid.

ChiChi Cutey: wonderful Work Felix and this video is great ...good Job !!!! 10 hours ago

Welcome to Skull town where the dead comes to life!

Hommage à Claudius Utopy 🙌
Dans l’univers , Claudius Utopy a été un véritable pilier pour la communauté francophone. Grâce à son aide précieuse, de nombreuses personnes ont pu créer leur propre grille, explorer, bâtir et rêver. Toujours disponible, toujours bienveillant, il a laissé une empreinte durable dans nos mondes virtuels. Merci Claudius

Undersea dance this saturday 12 grid time to whatever BEST djs around....theme this month is UNDER THE SEA. hop://maze.bz:7002/Maze%20Grid%20Home/134/109/2 djNOVA

Servuss alle :)

This is your personal invite to the October Beer fest 2025 :)

When :
Saturday 4th of Oct 2024 from 4 till 6 pm

What :
2 hours of fun music with DJ Xazha

Who :
All are invited and some free fitting "Tracht" clothing will be available and many more gifts :)

Where :

At Loose Cannon Ship yard ,

hop://utopiaskyegrid.com:8002/Loose Cannon/420/1111/23

Prosit and we are looking forward to your visit :)


Modee Parlez

Xazha Halsey
Die Feier der Tag-Nacht-Gleiche
Man konnte es förmlich spüren und auch erkennen, die Schamanin war sehr gut vorbereitet auf ihre Zeremonie. Die Stimmung des Lichtes, der Zauber des Fackelscheins alles passte genau, so als wäre es in Verbindung mit den höheren Mächten abgesprochen und arrangiert worden.
https://lennardmonday.blogspot.com/2025/10/die-feier-der-t...

Undersea dance this saturday 12 grid time to whatever BEST djs around....theme this month is UNDER THE SEA. hop://maze.bz:7002/Maze%20Grid%20Home/134/109/2 all are welcome djnet starts first!

Zoree Jupiter Performing Live at Osgrid Event Plaza
2:00-3:00pm
Attire is Casual
Hope you'll come by!
hop://hg.osgrid.org:80/Event%20Plaza/436/247/4001

Undersea dance this saturday 12 grid time to whatever BEST djs around....theme this month is UNDER THE SEA. hop://maze.bz:7002/Maze%20Grid%20Home/134/109/2 all are welcome djnet starts first!

DJ Eagle, 11 AM to 1 pm Grid Time AT Wild West
COME JOIN US FOR THE FUN We R Having Halloween Country Music
WITH - Halloween Country Music♫♫
Host - Honey
Who - DJ Eagle
When - 11 am to 1 pm Grid Time
Where-hop://gentlefire.opensim.fun:8002/Nevada/199/126/22

Undersea dance this saturday 12 grid time to whatever BEST djs around....theme this month is UNDER THE SEA. hop://maze.bz:7002/Maze%20Grid%20Home/134/109/2 all are welcome djnet starts first!

Undersea dance this saturday 12 grid time to whatever BEST djs around....theme this month is UNDER THE SEA. hop://maze.bz:7002/Maze%20Grid%20Home/134/109/2 all are welcome djnet starts first!

The Haunted Halloween Isles are a series of islands created by Zuzu Bahro, Queila Hendel, Even Dymas and Safine Mahoe for your Halloween fun! If you do not like Horror, visit the Pumpkin Patch for Autumn colors and endless fun!

As you set foot onto the Haunted Halloween Isles, an unnatural chill coils around your spine like a ghostly serpent. The wind is sharp, laced with whispers—fragments of forgotten souls murmuring secrets from beyond the grave. Fog crawls low across the ground, wrapping around your ankles like clawed fingers. Somewhere in the distance, a bell tolls once... then falls silent. Your journey begins at the desolate ruins of the Zombie Hunt.
Once a forgotten outpost, now a cursed graveyard of civilization, this skeletal city groans with the echoes of dark resurrection. The dead have returned—but not as the mindless, staggering husks you remember. These zombies remember.
Eyes flicker with recognition. They watch. They wait. They plan. Gone are the days of blind hunger. These reanimated horrors stalk the living like predators, their movements calculated, deliberate—a mockery of life, with the cunning of the grave.
Ash clings to the air, thick and acrid, as if the world itself were still smoldering from an ancient fire. The ground beneath your boots crunches—not with leaves, but with the brittle remains of the fallen. Bones. Skulls. Forgotten toys.
Every shadow is a potential grave. Every whisper might be your name.
This year, the hunters have become the hunted.
The ruins stretch before you, a labyrinth of sorrow and silence, the moon casting broken reflections in shards of shattered glass. Crumbling walls are streaked with old blood, faded handprints clawing at stone in desperate, silent screams. Doors hang loose on rusted hinges, and alleys seem to breathe when you're not looking.
Then—a low growl, guttural and close.
You turn.
Too late.
Something moves in the darkness, and your pulse spikes like a scream you can't let out. The game has begun.
Here, strength alone won't save you. You'll need cunning. You'll need silence. You'll need the will to outlast what hunts you. Every step must be calculated. Every breath—measured.
Because the dead are watching. And they remember your name.
Will you escape the maze of the dead…
Or join their ranks forever?

Hello! Looking for a very pale/white female skin . A vampire-ish look.


Jupiter Rowland: Technically speaking, I have a nearly white skin in a few variants. But it's based on 2009 open-source content, it doesn't officially support any SL bodies, and it's mapped for SLUV and not for EvoX. ... 47 minutes ago
Schluss mit dem Einerlei. Setze ein Statement, ohne ein Wort zu sagen.

Die Männermode 2025 feiert den mühelosen Stil: Komfort trifft auf Klasse. Unsere neue Kollektion vereint die wichtigsten Trends – von entspannten Silhouetten bis zum zeitlosen "Old Money"-Look.
Schluss mit dem Einerlei. Setze ein Statement, ohne ein Wort zu sagen.

Die Männermode 2025 feiert den mühelosen Stil: Komfort trifft auf Klasse. Unsere neue Kollektion vereint die wichtigsten Trends – von entspannten Silhouetten bis zum zeitlosen "Old Money"-Look.
Servuss alle :)

This is your personal invite to the October Beer fest 2025 :)

When :
Saturday 4th of Oct 2024 from 4 till 6 pm

What :
2 hours of fun music with DJ Xazha

Who :
All are invited and some free fitting "Tracht" clothing will be available and many more gifts :)

Where :

At Loose Cannon Ship yard ,

hop://utopiaskyegrid.com:8002/Loose Cannon/420/1111/23

Prosit and we are looking forward to your visit :)


Modee Parlez

Xazha Halsey
Loading...