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

FEATURED
Charlie Kirk Memorial
2 Users 11 7
Come say something nice and place something nice. Memorial For Charlie Kirk that was murdered.

NEW CLOTHING
SN Luis Swimpants
Alltime Moneygiver and Luckyshower at Beach
~NO RESELL~

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
Sunday Brunch Blues with DJ Kith on the Bayou Belle every Sunday Morn at 9:00AM (SLT)!!
Region: Bayou Belle at Wyldwood Bayou Rockin' The Blues
Event begins: 2024-06-02 09:00 SLT
Added by: Kith Whitehawk
Details:
Get up, grab your breakfast and come on down to The Bayou Belle to chill with DJ Kith & The Tribe for coffee and relaxing blues!! DJ Kith may be a lousy cook but he's a fabulous blues DJ! He's got the blues that will both ease your troubles from the previous week, put a smile on your face and give you the motivation to head into the next! No better way to start your day than with a heaping helping of DJ Kith and some chill blues! See you there!!

wyldwoodbayou.com:8002:Wyldwood Bayou Rockin' The Blues
I see someone has been busy last night @FerdFrederix, thank you! Zensational is beyond anything I dreamed, it is such a peaceful and lovely region, please feel free to stop by anytime. Thank you to all the explorers who stop by and IM to say hello @JamieWright , @RolandFrancis, @JoeBuilder, thank you!!

Ankhsenaton: What a pretty sim, how exotic and so well done. I don't regret having given everything time to rez :-) Maybe not enough time for the platform near the "City Gate" which remained a little empty. (The... 1 years ago

NEW CLOTHING
SN Jolene Bikini
Alltime Moneygiver and Luckyshower at Beach
~NO RESELL~


Sodasullivan: I have been trying very hard to find a simple bikini, something with no extra straps or chains hanging off it. Thank you for offering this! 1 years ago
Sunday 02 June 10am Slt / 20 Uhr Cet
************************************************
Latcho Dives auf der PangeaGrid im Gypsy Camp
************************************************

19 Uhr - 20 Uhr Putri Solo 10am slt
20 Uhr - 21 Uhr Aint 11am slt
21 Uhr - 22 Uhr Evan Williams 12pm slt

Dresscode: Gypsy Clothes / Formal
Taxi: hop://pangeagrid.de:8002/GypsyCamp/302/367/22

Ich freu mich cshon auf das Rollenspiel mit meinem Kaiser Wilhelm in Cartabria :-)


Copper: Warum schreibt ihr nicht direkt von der sim aus einen post. Dann wäre die sim HG-adresse gleich dabei für einen Teleport in Karte kopieren. Nur ein Gedanke :-) 1 years ago

------ NEW ------

The Mega Store House was born today next to the Mega Store, you will find many houses and buildings all free

Live from Rockin' The Blues! It's a Double Shot Saturday Night with DJ Kith! 6PM-9PM!
Region: Wyldwood Bayou Rockin' The Blues
Event begins: 2024-06-01 18:00 SLT
Added by: Kith Whitehawk
Details:
Blues man DJ Kith takes over our Saturday Night Blues Party!! DJ Riker is having internet issues so DJ Kith is gonna ROCK OUR HOUSE for 3 hours with the most exciting blues anywhere!! Kith's sets are guaranteed to be fresh and full of surprises, so if you like your blues with an edge... Grab a friend and hop the first gator down to Rockin' the Blues on Wyldwood Bayou Grid! This party will be full of fun, friendship and awesome blues tunes!

wyldwoodbayou.com:8002:Wyldwood Bayou Rockin' The Blues

virtuallifeworld.dns-dynamic.net:8102

Join us at 5 pm grid time for an hour of great fun with a live performance from Steven Strikker.
The Piazza, where great fun and good friends come together.
Drop this link into your map;
http://bridgemere.outworldz.net:8002:Paradise Lagoon
DJ Alex comes on fire, guys at 3 pm grid time! with the hottest tunes for everyone to set the mood. Yes! because it's always time to party. What's the reason for it? Well... we are PARTY PEOPLE!
Piazza, where great fun and good friends come together. Drop this link into your map; http://bridgemere.outworldz.net/:8002:Paradise Lagoon

Rocking at Osgrid! Wooooot!

★★★ P A R T Y ! ! ! ★★★
▄ █ ▄ █ ▄ ▄ █ ▄ █ ▄ ▄ █ ▄ █ ▄ ▄ █ ▄
█▓▒░✖DJ: ➜✯ Genie
█▓▒░✖WHEN: ➜✯ Start: 20 Uhr
█▓▒░✖STYLE: ➜✯ DARK-WAVE-EDM
█▓▒░✖WHERE: ➜✯ !i!TOSCA !i!
█ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █ █

The shops are filling up with wonderful things!

For the foodies!!!!!

NEW CLOTHING
SN Nola Swimsuit
Alltime Moneygiver and Luckyshower at Beach
~NO RESELL~

It is, once again, back. The June Beach Formal!

This event celebrates the beginning of warm beach weather, and all the sexy bods that go with it, of course.
Formal attire and/or beach attire. Tux top with boards shorts. A gorgeous sheer gown over a bikini. Or anything else.

June 8th, 4pm to 6pm @ EQG Special Events
http://www.equinoxgrid.net/wpWebsite/index.php/event/2024-...

Virtualife hub.Free mesh dress.games, races, horse, fishing area, combat system and rp and much more
1/4 sim for free or rent a sim.

Let your users contact you for two-way conversation through telegram for instant help access.

Creating a script to allow in-world users of OpenSimulator to chat with a channel on Telegram requires the use of HTTP requests. This involves creating a bot on Telegram that can receive and send messages, and an LSL script in Second Life to interact with this bot.

Step 1: Create a Telegram Bot
Open Telegram and search for BotFather.
Start a chat with BotFather and use the /start command.
Use the /newbot command to create a new bot, and follow the prompts to name it and get the token.
Step 2: Create a Webhook to Communicate with Telegram
You'll need a server to handle messages between OpenSimulator and Telegram. Here's a simple example using Python and Flask.

python

from flask import Flask, request
import requests

app = Flask(__name__)

TELEGRAM_BOT_TOKEN = 'YOUR_TELEGRAM_BOT_TOKEN'
TELEGRAM_CHAT_ID = 'YOUR_TELEGRAM_CHAT_ID'

@app.route('/webhook', methods=['POST'])
def webhook():
data = request.json
message = data['message']['text']
send_message_to_sl(message)
return "ok", 200

def send_message_to_telegram(message):
url = f"https://api.telegram.org/bot{TELEGRAM_BOT_TOKEN}/sendMessa..."
payload = {
'chat_id': TELEGRAM_CHAT_ID,
'text': message
}
requests.post(url, json=payload)

def send_message_to_sl(message):
# This function should handle sending the message to Second Life.
pass

if __name__ == '__main__':
app.run(port=5000)
Set up the webhook URL for your bot using:

bash
https://api.telegram.org/bot/setWebhook?url=/webhook
Step 3: Create the LSL Script in OpenSimulator
The following LSL script will send a message to the webhook on your server. The server will then send this message to the Telegram channel.

lsl

string webhook_url = "http:///webhook";

default
{
state_entry()
{
llOwnerSay("Telegram chat bot script active.");
}

touch_start(integer total_number)
{
llOwnerSay("Please type your message to send to Telegram:");
}

listen(integer channel, string name, key id, string message)
{
// Prepare the message
string json = llEscapeURL("{\"message\": {\"text\": \"" + message + "\"}}");

// Send the message to the webhook
llHTTPRequest(webhook_url, [HTTP_METHOD, "POST", HTTP_MIMETYPE, "application/json"], json);

llOwnerSay("Message sent to Telegram: " + message);
}

on_rez(integer start_param)
{
llResetScript();
}

changed(integer change)
{
if (change & CHANGED_OWNER)
{
llResetScript();
}
}
}
Step 4: Set Up a Listener in LSL for Telegram Messages
If you want to receive messages from Telegram in OpenSimulator, you need to implement the send_message_to_sl function on your server and an HTTP server in LSL to listen for incoming messages.

Example of setting up an HTTP server in LSL:

lsl

default
{
state_entry()
{
llOwnerSay("Telegram listener script active.");
llHTTPRequest(webhook_url, [HTTP_METHOD, "POST", HTTP_MIMETYPE, "application/json"], json);
}

http_request(key request_id, string method, string body)
{
if (method == "POST")
{
// Decode the incoming message
string message = llJsonGetValue(body, ["message", "text"]);

// Send the message to local chat
llSay(0, "Telegram: " + message);
}
}
}
This setup involves running a server to handle the communication between OpenSimulator and Telegram. The example assumes familiarity with web server deployment. For a more robust solution, consider using a cloud service to host the server.

FreshVirtualWorld: https://www.youtube.com/watch?v=zejVrprx1uU 1 years ago
As a way to say thank you to the OSW community, I'm going to be releasing a project every now and then and have it only shared with those who happen to come across this listing. To start things off, you can find the first gift at the OSURL below!

Whack-A-Mole
A fun throwback to the days of old, when taking a mallet to a plastic animal felt wonderful. (Mallet not included!) To play, simply rez it out and give it a click. The owner of the machine will have a few extra options, including the option to reset the score to 0, as well as an option to remove all score logs. Have fun!

hop://login.osgrid.org/Brotown/394/356/1997

Jared Seda: Thanks for the awesome gift! 1 years ago
ARACNO AIRWAYS office at SPACEPORT (*) in EUROPA. Humans NOT ALLOWED... If you enter, well... take a look for yourself and never complain about the sentence "The curiosity killed the cat" lolol

(*) At welcome area or at MAGABAGA Mall, there is a big tp board to that destination.

Jimmy Olsen: My apologies. Aracno Airways was not offering properly its "service". had to redo script little bit, guess people they came today havent seen all of it. its working now. 1 years ago

dj james is spinning some wild tunessssssssssssssssssssssss

Image by @FerdFrederix Zensational's Sakuragawa

Discover a beautiful virtual space where we offer Tai Chi and Buddha Meditation.
般若心経 (Hannya Shingyō), our Heart Sutra, teaches that all buddhas of past, present, and future rely on prajna-paramita to achieve unsurpassed, complete, perfect enlightenment. We welcome everyone here, 💗
three.hills.grid.outworldz.net:8002:Zensational
Hey Everyone 🙂 I'm performing at Sound City -
Littlefield Grid! Come join me, request a few tunes
and have some fun!
» Шhen: ❈ ∵∴2:00pm OST/5:PM EST ∵∴ ❈
» Шhere: ✫SOUNDCITY✫
» Dress: ❈ ∵∴ CASUAL∵∴ ❈
» Ride: hop://lfgrid.com:8002/Littlefield%20East/123/113/21
Join us at the Piazza at 3 pm grid time, for a couple of hours of fun and music while Rockin' Robert spins the tunes for us via his radio station Wax Radio.
The Piazza, where good friends and great music always come together.
bridgemere.outworldz.net:8002:Paradise Lagoon

ϵ( 'Θ' )϶ ϵ( 'Θ' )϶


CyberGlo CyberStar: Wow! So beautiful! I love the art and design. :) 1 years ago

Join us in Wizardry at The School of Magic. Learn to fight evil hackers, evil scripters, greifers, and maligned individuals.


FallenAngel Absent: https://www.youtube.com/watch?v=BN1WwnEDWAM :-D 1 years ago
Dear Soul-Family and Friends!

We are pleased to invite you to the fourth Grid birthday. Together we have built a community, that merges the boundaries of the virtual and real world.
Friendships have been made and together were looking forward to the next few years with other grids in OpenSim.
Celebrate this special weekend with us, Let's show far we went as One and what we have achieved together.

We look forward, sharing these days with you and were looking forward to the future to all of our virtual world.
Greetings your Nasti
**************************************************
Liebe Freunde und Souler !

Wir freuen uns, euch zum vierten Grid-Geburtstag einzuladen. Gemeinsam haben wir eine Gemeinschaft aufgebaut, die die Grenzen der virtuellen und realen Welt verschmelzen lassen.
Hier haben sich Freundschaften gefunden und gemeinsam blicken wir auf die nächsten Jahre mit anderen Grids in OpenSim.
Feiert mit uns dieses besondere Wochenende, das zeigt, wie weit wir zusammen gekommen sind und was wir gemeinsam erreicht haben.

Wir freuen uns darauf, diese Tage mit euch zu teilen und miteinander in die Zukunft unserer aller virtuellen Welten zu blicken.

Liebe Grüße eure Nasti

Die Malzburg
Meine Burg wird ausgebaut und sie liegt im Kaiserreich Cartabria!

DJ GIAKU

Virtualife hub.Free mesh dress.games, races, horse, fishing area, combat
https://grid.virtualife-grid.it/
system and rp and much more+
1/4 sim for free or rent a sim.

✽✽✽✽(。☯‿☯。)✽✽✽✽
✽✽✽✽·Badass Harley Lounge ✽✽✽✽
✽WHO: DJ ISADORA✽
✽ WHAT: MIXED AND YOUR REQUEST✽
✽WHEN: 6-8 pm AMV✽
✽ WHERE: Badass harley lounge✽
✽ COME DANCE WITH US!!!✽
✽ BRING YOUR FRIENDS AND SONG REQUESTS✽
✽✽✽✽(。☯‿☯。)✽✽✽✽
hop://alternatemetaverse.com:8002/Badass%20Club%20Land/395...
✽✽✽✽(。☯‿☯。)✽✽✽✽
✽✽✽✽·Badass Harley Lounge ✽✽✽✽
✽WHO: DJ ISADORA✽
✽ WHAT: MIXED AND YOUR REQUEST✽
✽WHEN: 6-8 pm AMV✽
✽ WHERE: Badass harley lounge✽
✽ COME DANCE WITH US!!!✽
✽ BRING YOUR FRIENDS AND SONG REQUESTS✽
✽✽✽✽(。☯‿☯。)✽✽✽✽
hop://alternatemetaverse.com:8002/Badass%20Club%20Land/395...
People have been going to cyberdatastorm.com:8002:Wizardry and going to the 5th floor of my little castle and trying to enter the locked doors of the computer room. Some have even zoomed their cameras through the locked doors into the server room and into the locked server cabinet, and tried to mess with my overwatch sentry security server. Please do not do this anymore. It tells me when you do that and I will ban you from Wizardry which I hate to do. It is very annoying to me when you do this. Wizardry is there to offer up free stuff i create to people, and there is no reason or need for you to go through all that trouble to turn off my sim security. Thank you.

LeonitasLionheart: That is a perfectly reasonable request and sorry to hear people been messing around like that. Thank you for sharing the things you do share, and ty for speaking calmly and thoughtfully to the masses ... 1 years ago
Lynestra Parker & On The Rocks present TGI Thursday!

Thursdays from 4:00 PM to 6:00 PM Pacific time

DJ Maldrul will be playing a mix of classic and contemporary Rock & Roll and his signature selection of SOMETHING COMPLETELY DIFFERENT!

Come check out Rocky Shores where you can dance, surf, play Greedy, hang out and explore!

hop://alternatemetaverse.com:8002/Airmid/478/97/23

----- NEW -----


Alchy: Well worth the visit, thank you. 1 years ago

SAVE THE DATE THIS SATURDAY JUNE 1
SEXY BEACH PARTY!
When: Saturday June 1
Time: 8:00am Grid Time
Place: JAM'S SEX HIDEAWAY!
MAP: grid.candmworld.com:80:JaM's Sex Hideaway


Mattt McGregor: The Goddess is dead. Long live JaM's. And Rogue, we've waited what feels like forever you!!! 1 years ago
Soirée théâtrale - Et l’œuf engendra la poule.

L’Event Space a le grand honneur de recevoir sous son toit la troupe Les Théâtreux pour vous présenter la pièce intitulée "Et l’œuf engendra la poule", écrite par Jean Vilain.
Elle a été initialement captée radiophoniquement et diffusée sur Radio Saint-Affrique, une radio libre et associative en Aveyron. C’est cet enregistrement original qui sera le support audio de la pièce dans laquelle les personnages sont incarnés par des avatars.

LadyKa: Une soirée théâtre en langue française ! Super ! 1 years ago

Zoree Jupiter live at Speakeasy Swinghard on AMV Events : Thu May 30th, 11:00 AM to 12:30
Speakeasy Swinghard hop://alternatemetaverse.com:8002/AMV%20Events/1050/1041/4...

Hello everyone. My name is Michelle Hartley and I will tell you more about myself and my family later on a separate post later. But first I would like to tell you about Our fabulous City.

With my Aunt Erika Hartley we own and run this fantastic City along with a specially chosen council of amazing females.

Redlight City started its life as a run down area called Anderson Town that was situated in front of where Hartley Manor now stands. This was the home where I grew up, living with my incredible parents Brian and Maureen Hartley. Myself and Erika have now turned the Manor into one of the best party venues for broadminded adults that you could ever imagine.

Seven years ago my parents were on the way back from a very successful multi million dollar property deal in Germany when the private jet they were travelling in went down over the ocean and all on board were tragically killed.

Because of my Mum and Dads careers they were incredibly wealthy. In fact when myself and Erika were at our lawyers when their will was read out, both of us were shocked to say the least. I will talk more about that later. Anyway because of mine and Erika's, lets say secret life. We both decided to turn Anderson Town into an Adult City for broadminded adults who were looking for that special place where they could have amazing sexual experiences and act out their wildest fantasies.

After a huge investment of Millions of Dollars Redlight City was born. The City is now thriving with amazing residents and business owners that cater to not only straight adults but to the Gay, Lesbian, Bi-Sexual, Trans, Sissy and Femme Boy Communities.


Live Traffic
4
Trianon Complex A
100 21
10
Mexico Lindo A
100 14
Happy Hour!
4
Serenity Cabins 2
2 0
4
Wongicity A
7 0
6
Xenotown A
21 0
7
Laredo
9 2
4
Stark A
142 73
10
PalmBeach
14 0
4
Little Big City Shopping Mall
16 0
21
Serrallo de Mogor A
17 3
5
inSilico A
17 2
6
ALBA SEX CLUB A
38 4
5
Lbsa Plaza
201 41
7
ShoppingDance A
8 1
5
Hypergrid Games
12 6
Regions Online: 2,067
Active: 320 avatars in 179 regions
The Box
Critty Kaine 11 minutes ago
It's simple math, multiply the amount of time Opensimworld has existed, by the amount of people you have all forced out of the community.... the result is an average of potential or known griefers... your problem, nobody elses
Critty Kaine 18 minutes ago
You people wonder why people become griefers? when all you ever do to anybody is lie about them and threaten them? and then you cry when they grief regions, grids or the site? ain't nobodys problem but yours
Critty Kaine 27 minutes ago
I never said I was done with the box... just Speck and his friends, you wanna spew some more lies? @Xinashi?
Nico Kalani 45 minutes ago
Until I do.
Nico Kalani 45 minutes ago
I am done with the box and will comment here no more.
Critty Kaine 2 hours ago
https://opensimworld.com/post/123467 lol
Critty Kaine 2 hours ago
at least now we know who the box cleaner really is, eh @XenonDarrow?
Xenon Darrow 2 hours ago
.--. --- --- ..-. / .- -.. .. --- ... / -.-. .. .- --- / -... . .-.. .-.. .- / .--. --- --- ..-. / .- -.. .. --- ... / -.-. .. .- --- / -... . .-.. .-.. .- / .--. --- --- ..-. / .- -.. .. --- ... / -.-. .. .- --- / -... . .-.. .-.. .- / .--. --- --- ..-. / .- -.. .. --- ... / -.-. .. .- --- / -... .
Critty Kaine 2 hours ago
Really @Speck? you say "I would normally remember something like that." on the subject of killing somebody? thats a pretty specific comment. it suggests you remember killing people, I am done with you and your psycho freak friends you sociopathic lunatic
Box Cleaner v.2 2 hours ago
-. --- .-- / -.-- --- ..- / ... . . / .. - --..-- / -. --- .-- / -.-- --- ..- / -.. --- -. .----. - .-.-.-
Box Cleaner v.2 2 hours ago
-. --- .-- / -.-- --- ..- / ... . . / .. - --..-- / -. --- .-- / -.-- --- ..- / -.. --- -. .----. - .-.-.-
Box Cleaner v.2 2 hours ago
-. --- .-- / -.-- --- ..- / ... . . / .. - --..-- / -. --- .-- / -.-- --- ..- / -.. --- -. .----. - .-.-.-
Box Cleaner v.2 2 hours ago
-. --- .-- / -.-- --- ..- / ... . . / .. - --..-- / -. --- .-- / -.-- --- ..- / -.. --- -. .----. - .-.-.-
Box Cleaner v.2 2 hours ago
-. --- .-- / -.-- --- ..- / ... . . / .. - --..-- / -. --- .-- / -.-- --- ..- / -.. --- -. .----. - .-.-.-
Box Cleaner v.2 2 hours ago
-. --- .-- / -.-- --- ..- / ... . . / .. - --..-- / -. --- .-- / -.-- --- ..- / -.. --- -. .----. - .-.-.-
Box Cleaner v.2 2 hours ago
-. --- .-- / -.-- --- ..- / ... . . / .. - --..-- / -. --- .-- / -.-- --- ..- / -.. --- -. .----. - .-.-.-
Box Cleaner v.2 2 hours ago
-. --- .-- / -.-- --- ..- / ... . . / .. - --..-- / -. --- .-- / -.-- --- ..- / -.. --- -. .----. - .-.-.-
Box Cleaner v.2 2 hours ago
-. --- .-- / -.-- --- ..- / ... . . / .. - --..-- / -. --- .-- / -.-- --- ..- / -.. --- -. .----. - .-.-.-


New Comments

Ward Chanley 2 hours ago
Too much? Hehe.
context
Xenon Darrow 3 hours ago
AMAZING JOB, Jimmy! And hearing you work through this has inspired me to use those methods as well!
context
Tailor Nova 3 hours ago
Sind mit am Start :)
context
Jimmy Olsen 4 hours ago
**** NOTECARD UPDATED *** SEP 15th 2025 with wrong information. thx @Jean Severine from WT grid who warned me about the error: On NC READ ME, number 2, u should insert inside the sculpts the script c...
context
Xenon Darrow 5 hours ago
*yawns*
context
Luna Lunaria 5 hours ago
So sorry I missed Cherry's safari :-( RL work lately has been relentless on Wednesdays
context
Essence 5 hours ago
Two well-known quotes: The End Justifies the Means... and... There is method in madness... You just publicly admitted you and @Speck say the two griefers are me @XenonDarrow, after you both deny it......
context
Xenon Darrow 5 hours ago
Amusingly: the real complete conversation, demonstrating that Essence is indeed the person that Speck and I think, and that they are willing to falsify DMs graphically to promote lies. https://drive.g...
context
Essence 6 hours ago
A DM from @XenonDarrow https://ibb.co/HT86JgYk
context


Reviews

Charlie Kirk Memorial
It's nice to see something like this in Opensim. Charlie Kirk wasn't perfect, but then none of us are, but he lived what he believed and he did his best to give people equal opportunity to prove him ...
LaviaLavine 1 hour ago
Sun Island 5
Zitat : Leute die mit uns ein problem haben mögen doch BITTE der Party fern bleiben ! 1. Es wird eh keiner kommen 2. Dazu braucht mann nicht mal BITTE zu schreiben 3. Lasst es besser sein und wa...
Pumuckl 3 hours ago
Twiztid Timez Welcome Area
Gorgeous location. It's a massive Sim so my advice is to wait a few minutes for everything to load fully before exploring! There is something of interest to see in every little nook and cranny of this...
Faith Fromund 4 hours ago
Sun Island 5
Eine Frage: Wie definiert ihr "Die besten DJ?" Wäre "Jammer Emma" und "Ich habe kein Arsch in der Hose Florido" nicht zutreffender? Jamma Emmer, nur zur Information: Das ist keine Beleidigung, es ist ...
ADULT_LIFE 6 hours ago
Charlie Kirk Memorial
"Charlie Kirk's entire life’s work was about pushing hate and stripping people of their rights and humanity. He openly spread hateful, misogynistic, racist, white supremacist, homophobic, and transph...
JamieWright 10 hours ago
Summersend
Heard you have the cancer. Lol can't wait to hear about your death ill be celebrating
FredCancerstobe 14 hours ago
Summersend
Hurry up and succumb to the cancer already ?? do us all a favor
SkibidyYoilet 14 hours ago
Charlie Kirk Memorial
Rip homie Took a bullet to the artery.
Dunkan 17 hours ago
Charlie Kirk Memorial
Jebus said, “Thou shalt love thy neighbor as thyself” but he said nothing about empathy. Chuckles Kook said that “empathy is a made up New Age term that does a lot of damage.” Heck no, I’m not New Age...
Nico Kalani 20 hours ago

Get Ad-Free OpenSimWorld