falene hawks @falene

France Offline

chiante


Liked posts

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
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

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

CyberGlo CyberStar: Wow! So beautiful! I love the art and design. :) 14 hours 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 8 hours 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!

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 ... 2 days ago

----- NEW -----


Alchy: Well worth the visit, thank you. 2 days 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!!! 2 days 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 première de 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 ! 2 days ago

Life Guard

For whatever reason, this great resource for builders and creators often shows offline at the Beacon.

Always try, even if it says offline :)

Every now and then it gets a restart, but it is usually up and running.

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.
Two great trips this week for the Safari
Thank you so much to Trouble Ahead and all the Catronians, and to Kitely owner Ilan Tochner for our great visit to Kitely
Thanks to Andron Rae and the glamorous Chilli Bean for letting us come to Sharingiscaring to see Brigadoon
If you'd like to see what happens when 20 people go hypergridding...
https://hgsafari.blogspot.com/2024/05/trouble-for-safari.h...
and https://hgsafari.blogspot.com/2024/05/andron-raes-brigadoo...
plus the vid by the ever brilliant lifted pixel
https://www.youtube.com/watch?v=-4w6TM6x_JM

Thirza Ember: For the record, Jup, that wasn't barf. 2 days ago
Freitag 31.5.2024
Rock-House
mit DJ Anachron

Beginn 19:00 Uhr

Triples
Fortsetzung*
*Weil der letzte Freitag mit "Fortsetzung folgt" von BAP endete ...

Ende wie immer um Mitternacht.
Hypergrid : dorenas-world.de:8002:Nihilon

Arielle: Is that a picture of a couple dancing or fighting? It's hard to tell! 2 days ago
Feeling like you are on a Lonely Island? Hop on a boat!

https://www.youtube.com/watch?v=avaSdC0QOUM

Music can heal us. Music can bring us together. Remember to have smiles and laughs, and enjoy your life...rl and/or virtual worlds!

RemmyRavenhurst: Suddenly feels sea sick! :) 3 days ago

Area Added for useful textures, Ai curated textures collections for builders.


KaydiRose: Thankyou for stopping by! 2 days ago

This one may be a better pic! ENJOY! ;)


Xenon Darrow: such a beautiful place. I love being a part of it. 3 days ago

This is what is happening today with DJ Gio rockin' the Wolf Pack! 17 people today! WOOT! ;)

ONLY at Star Jinn Palisade Mall - Star Ravenhurst Designs! Beautiful builds, outstanding store, and all new landscaping items by Star Ravenhurst who is one creative and talented builder and designer. Stop in and see her designs found only in the Star Jinn Palisade Mall. Just come to our mall region, Masala Al Kohav and on the Mall Shops Teleport System, select "Star Ravenhurst Designs" and peruse the many beautiful things she's created. And while you're there visit the many other shops and departments that we have such as Ares Gizmos, Stuff N Things, Indigo's Market and Boutique and Cosplay Corner and don't miss our full selection of Selea Core! Blessings and much love, Lavia.

LeonitasLionheart: while there might be many other reasons to do so, i am giving this post a Like straightaway simply for the snake on the arch ;) 3 days ago
Updated and ready to go, this beautiful palace is on display here at Star Jinn Palisade Mall and it's full perm, free and waiting just for you. Done in a fashion reminiscent of ancient Persian architecture, it has a light, airy feel and a roof top pool. This enchanting palace is a must see and maybe even a must have for your region! Stop in and see it for yourself. Blessings and much love, Lavia

RemmyRavenhurst: Leo and i bought this build and that blue room is quiet stunning. 3 days ago
Forgiveness
After the injuries of the last few days, some people have called for forgiveness of every injury for the sake of peace. I find it very difficult at the moment, although forgiveness can take a burden off you. How do you feel about it? It would be nice if the answers were expressed honestly and peacefully, there is no need for another fire. Also, by the way, I also find it sad when posts are simply deleted.

Nico Kalani: Forgiveness is warranted if the person can sincerely and honestly admit to their bad behavior toward me, and if I care enough about having a relationship with them instead of indifference. Usually, th... 2 days ago
*** UPDATED RELEASE MAY 29th 2024 ***
OPENSIM FIREWORKS V9 (VERSION 9) - All in mesh fireworks (*) with lower complexity- V9 now is even better than previous version - it summons flashing lights on different colors and has more sounds, all to make the effect even more real! Available for FREE and FULLPERM at PARTY BOX.
Here is an example how it looks like now: https://gyazo.com/8aa8c5a4202fb6f40330ca75ec487a74
Enjoy :)

(*) An old particles firework available as well inside the box!

Safinemahoe2: These fireworks are fantastic! They look amazing but do not cause lag. I put about 20 of these on a one sim island as a test. OMG that was pretty.....but no lag! These are the best fire... 2 days ago

Cozy little coves at Catena di Isole. Everyone is welcome here three.hills.grid.outworldz.net:8002:Catena di Isole


Lillysparks: that is adorbs I gotta come check it out tomorrow=) 4 days ago

Serenity Cabins Events:
Dj KrisTina
Starting Now Till 8pm Grid-Time
Classic Rock night
Taxi: hop://hg.osgrid.org:80/Serenity%20Cabins/132/133/23

Heute Eröffnung unserer Erweiterung Planet Sirius -SCI FI - CYBER- auf Flores Sea, ab 20:00 Uhr / 11:00 OS, hierzu laden wir alle recht herzlich ein, für die passende Musik zum Ambiente ist gesorgt, zum Teleport bitte den Teleporter vom Flores Sea Vibes - Welcome Center benutzen. Der Flores Sea Ocean ist heute von 16:00 Uhr EU bis 24:00 Uhr für Public geöffnet. Besucht auch unser Wildlife Wildreservat, Geko Island, Naturist Beach resort mit griechischer Unterwasser Tauchszene, Surfer Beach, Römisch Griechische Themenabschnitte mit Badhäusern, Freudenhaus u.a., besucht mit dem Boot unser magische Höhle mit Unterwasserwelt, asiatischen Themenabschnitt, Wolf Insel, Pleasure Island und viele anderen Inseln zu entdecken auf einer Fläche von 100 Sims.

Today the opening of our expansion Planet Sirius -SCI FI - CYBER- on Flores Sea, from 8:00 p.m. / 11:00 a.m. OS, we cordially invite everyone to this, the right music for the ambience is provided, to teleport please use the teleporter from Landing Flores Sea Vibes - Welcome Center. The Flores Sea Ocean is open to the public today from 4:00 p.m. EU to midnight. Also visit our wildlife reserve, Geko Island, Naturist Beach resort with greek sunken world dive area, Surfer Beach, Roman Greek themed sections with bath houses, pleasure Brothel house, visit by boat our magical cave with underwater world, Asian themed section, Wolf Island, Pleasure Island and many other islands to discover in one Area of 100 Sims.

Emma Florido: Its a absolutely stunning place with amazing colorfull areas. Wonderful work 4 days ago

Maintenance on E Grid today.

Should be back up tonight.


This 1 is for you and me, living out our dreams!
And We are All right where we should be!
With our arms out wide, I Open my Eyes...
and now all I want to see...
Is a sky full of Lighters!

By the time you hear this I will have already spiraled up
I would never do nothing to let you cowards fuck my world up
If I was you I would duck, or get struck, like lightning,
Fighters keep fighting, put your lighters up, point 'em skyward uh
Had a dream, I was king, I woke up, still king.

'Til nobody else even fucking feels me, 'til it kills me

Feel free, but from now on I'm refusing to ever give up
Only thing I ever gave up's using no more excuses
Excuse me if my head is too big for this building

I love it when I tell 'em shove it
'Cause it wasn't that, long ago when Leo sat, flustered lacked luster
'Cause he couldn't cut mustard, muster up, nothing
Brain fuzzy, 'cause he's buzzin', woke up from that buzzin'
Now you wonder why he does it, how he does it
Wasn't 'cause he had buzzards circlin' around his head
Waiting for him to drop dead, was it?
Or was it 'cause them bitches wrote him off
Little hussy ass, scuzzes, fuck it, guess it doesn't matter now, does it
What difference it make?
What it take to get it through your thick skulls
That this ain't some bullshit
People don't usually come back this way
From a place that was dark as I was in
Just to get to this place
Now let these words be like a switch blade to a hater's ribcage
And let it be known that from this day forward
I wanna just say thanks 'cause your hate is what gave me the strength
So let 'em Bics raise 'cause I came with 5'9" but I feel like I'm 6'8″!

I cried plenty tears, my daddy got a bad back
So it's only right that I write 'til he can march right into that post office and tell 'em to hang it up

I'll stop when I'm at the very top
You shitted on me on your way up
It's 'bout to be a scary drop

Every hour, happy hour now
Life is wacky now

Now I'm just the cat's meow, ow
Classic cow, always down for the catchweight like Pacquiao
Ya'll are doomed
I remember when T-Pain ain't wanna work with me
My car starts itself, parks itself and autotunes
'Cause now I'm in the Aston
I went from having my city locked up
To getting treated like Kwame Kilpatrick
And now I'm fantastic
Compared to a weed high

Y'all bugging out like Wendy Williams staring at a beehive
And how real is that
I remember signing my first deal and now I'm the second best, I can deal with that
Now Bruno can show his ass, without the MTV awards gag...

You and I know what it's like to be kicked down
Forced to fight
But tonight, we're alright
So hold up your lights
Let it shine
'Cause, this one's for you and me, living out our dreams
We're all right where we should be
With my arms out wide, I open my eyes
And now all I wanna see
Is a sky full of lighters
A sky full of lighters

This post is dedicated to those who refuse to stand idle and take everyone's shit. Those who fight for what is right and what they believe in. Those who do their best to enact positive change and enlightenment in the face of adversity. Yes i posted lyrics from a song...a very inspirational song with a positive message. Now all i want to see...is a sky full of Lighters!

Lillysparks: That face looks so much like your avi is that you? Pretty cool. Cheers. 4 days ago

come visit my new medieval sim and club

Kind regards from faraway Germany.^^


Xenon Darrow: Lovely! 😍 3 days ago
Jewelry is a reflection of your personality, and many of the designs have been inspired by your suggestions. I've received touching requests for Journal Lockets, Grandmother's rings, and rings that evoke memories of "Mom." Thank you for these heartfelt ideas. When time allows, I love the challenge of creating something new. Thank you for the inspiration and continued support. 💕

Arielle: Wouldn't a mood ring that reflects the RL mood be great? :) 5 days ago
Wanted to make an alt girl.

So, you have a messy shorter rigged hair style with the usual hud (thanks, Suzi Von Otto!). I have a bento mesh head I made with it. I put a halloween skin I did with it, halloween lips I made with it. Eyeliner is probably dodgy, everything else is legal with the ruth2 body that works best with "athena" /legal maitreya outfits included in package. Have fun, don't put on SL/sell the hairs and head for money/ tell people you made the hairs and mesh head.
hop://hg.osgrid.org:80/Mythos/486/171/27
Loading...