Spax Orion @SpaxOrion

Offline

Ozone MiniVerse - XoAoX.de:7000


Load URL dialog when clicked

Send your visitors to a web page when an item is touched on your grid.

👍 like

Milestones

Hide Feed  
I promised a longer time ago to create more characters out of Froggy Ponds costumes. The first 3 new ones are ready! Voila may I introduce you to Gary Goatee, Larry Lobster and Lucky Ducky? If you are interested you can grab them on Lionbeach,next to the landing point.. Happy weekend all!!!
Half time with Dj DWayne At Club Paradise
✽✽✽✽(。☯‿☯。)✽✽✽✽
✽✽✽✽·CLUB PARADISE ✽✽✽✽
✽WHO: DJ DWayne✽
✽ WHAT: MIXED AND YOUR REQUEST✽
✽WHEN: 3-5 pm AMV✽
✽ WHERE: CLUB PARADISE✽
✽ COME DANCE WITH US!!!✽
✽ BRING YOUR FRIENDS AND SONG REQUESTS✽
✽Clothing Optional Beach Club ✽
✽✽✽✽(。☯‿☯。)✽✽✽✽
alternatemetaverse.com:8002:Club Paradise
Dj DWayne At Club Paradise
✽✽✽✽(。☯‿☯。)✽✽✽✽
✽✽✽✽·CLUB PARADISE ✽✽✽✽
✽WHO: DJ DWayne✽
✽ WHAT: MIXED AND YOUR REQUEST✽
✽WHEN: 3-5 pm AMV✽
✽ WHERE: CLUB PARADISE✽
✽ COME DANCE WITH US!!!✽
✽ BRING YOUR FRIENDS AND SONG REQUESTS✽
✽Clothing Optional Beach Club ✽
✽✽✽✽(。☯‿☯。)✽✽✽✽
alternatemetaverse.com:8002:Club Paradise

-Zoree Jupiter Live
-2:00-3:00pm a
-Osgrid Events Plaza
-Casual Fun! Friendly atmosphere! Come Join us!
-Music Variety
♥𝕋𝕒𝕩𝕚↘
hg.osgrid.org:80:Event Plaza

virtuallifeworld.dns-dynamic.net:8002

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~

DJ SISSI INAUGURATION OF NEW SHOPPING CENTER

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-...
Welcome to our New home for new member at Gentle Fire Grid / Join the Grid Just sign-up move in get your new tag at the orientation centers for your new home. It's just beginning there 5 to 7 days a week plenty of shopping area new shops opening clothing free avatars free maintenance twice a month where at gentle fire grid orientation center joins us and have a blast.

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.

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: Cogita / Ankhasenaton, I can actually see everything you're saying ;-) But seeing as you're a liar, cheating on your husband and were quite rude to people on our region, I've chosen to ignore you. B... 46 minutes ago
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 3 hours ago

DJ SISSI INAUGURATION OF NEW SHOPPING CENTER

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! 9 hours ago

Looking for scripts for clocks, clock hands and clock sounds.

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.

Sodasullivan: This pretty much sums up how I feel about flying in general. 3 hours ago

dj james is spinning some wild tunessssssssssssssssssssssss

where can i find a golf cart? anyone ever seen one on opensim? geesh lol please let me know!!!???

DJ Mike has turned his stream on and cranked up the music! Everyone is welcome so come on over and party away the night with us! Don't forget, free gift not in stores at half time!

Zoey ♥

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
OMG!! Is it against the law to get pregnant on opensim ffs geesh like what is wrong with opensim this exsist in RL just like having sex those too and everything else i mean we can play house and cook and rp but we cant rp kids babays that are robots almost they are not avi kids geesh it makes me run back to SL because i have my kids there and living the life i want to enjoy i like where i am in opensim yes things are free but i also see the other side where you pay for the things you like and the way you want to live your VIRTUAL LIFE WHO IS ANY0NE TO RESTRICT THAT!! ANY BABAIES that are not animesh and these animesh babays are not to good looking we can look realistic but the babies we have cant omg i miss RP!!
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
I am Looking for a nice iron Gate with posts or no posts so i can build a florida estate drive way or drive up to our home anyone know where i can find this!! and ty so much in advance if i don't answer immediately!!
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

DJ SISSI INAUGURATION OF NEW SHOPPING CENTER

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

La discoteca di Angeli&Demoni.


Comments

No comments yet