Joined 10 years ago

About Myself

-

My Regions

Anatobotanica
17 1 pangeagrid.de:8002:Anatobotanica 0 Users
AnatoBotanica is the name of the current sculpture collection I am doing IRL under MVN name, my initials. Inspired by the connection (and the lack of connection) of human being in its environment, the nature. Made of organic shapes, hybrid creatures comes to life with the use of moss and a lo...
more info
Jukebox
11 2 hg.osgrid.org:80:Jukebox 0 Users
Welcome to JukeBox. Musical Landscapes... with several old installations reworked When landing in the region, if you see a black box,please enable Advanced Lighting Model in preferences. Use Shared Environement. Turn on sounds to max too. When ready, click on the jukebox and select a song. ...
more info
CyberPunk
13 4 hg.osgrid.org:80:CyberPunk 0 Users
Dystopian cyberpunk city. Never ending construction, maybe one day I will finish it! Be patient, the region is heavy and laggy!
more info
Sakura
21 7 hg.osgrid.org:80:Sakura 0 Users
Just a peaceful asian / japanese photogenic landscape used as home. Not my original creations, assemblage.
more info
Cherry Freebies
77 29 hg.osgrid.org:80:Cherry Freebies 0 Users
*CM* Freebies Original art content Animesh, Avatars, Accessories, EEP, Sculptures Surreal Cyberpunk
more info
Ciliegia
39 7 craft-world.org:8002:Ciliegia 1 Users
Sakura blossoms on a photogenic region. Many thanks to Craft. Items are free to copy.
more info
Alice
24 3 hg.francogrid.org:80:Alice 0 Users
Down the rabbit hole.....
more info

Activity

Change EEP on touch or collision
Hello,
I am trying to make (a touchable or walkable) prim that will change the EEP for the agent interacting with it.
I tried this script but it does simply nothing.
Does anyone has a working script or a suggestion, please?

string daycycle_a = "3545d068-b539-4f55-9687-2d33e1762eb4";
string daycycle_b = "19d7a2a7-e10a-451f-9064-0e2f426f21f1";
integer transition = 1;
integer switch;

default
{
state_entry()
{
llSay(PUBLIC_CHANNEL, "Touch to see osReplaceAgentEnvironment usage.");
llSay(PUBLIC_CHANNEL, "Transition: " + (string)transition + " second(s).");
}

touch_start(integer number)
{
key agentKey = llDetectedKey(0);

if (llGetAgentSize(agentKey) != ZERO_VECTOR)
{
integer result;

if (switch = !switch)
{
result = osReplaceAgentEnvironment(agentKey, transition, daycycle_a);
llRegionSayTo(agentKey, PUBLIC_CHANNEL, "daycycle_a: " + daycycle_a);
}

else
{
result = osReplaceAgentEnvironment(agentKey, transition, daycycle_b);
llRegionSayTo(agentKey, PUBLIC_CHANNEL, "daycycle_b: " + daycycle_b);
}

if (daycycle_a == "" || daycycle_a == NULL_KEY || daycycle_b == "" || daycycle_b == "")
{
llRegionSayTo(agentKey, PUBLIC_CHANNEL, "The normal environment for the parcel or region has been selected.");
}

if (result > 0)
{
llRegionSayTo(agentKey, PUBLIC_CHANNEL, "Agent environment replaced with success!");
}

else if (result < 0)
{
llRegionSayTo(agentKey, PUBLIC_CHANNEL, "Agent environment replaced without success!");
}
}

else
{
llInstantMessage(agentKey, "You need to be in the same region to use this function ...");
}
}
}

Kelso.Uxlay: Hello Cherry - The script works for me, but the viewer needs to be set to shared environmental settings. The script does nothing when the agent is using a viewer local environment. 1 month ago
Hello,
I am trying to make (a touchable or walkable) prim that will change the EEP for the agent interacting with it.
I tried this script but it does simply nothing.
Does anyone has a working script or a suggestion, please?

string daycycle_a = "3545d068-b539-4f55-9687-2d33e1762eb4";
string daycycle_b = "19d7a2a7-e10a-451f-9064-0e2f426f21f1";
integer transition = 1;
integer switch;

default
{
state_entry()
{
llSay(PUBLIC_CHANNEL, "Touch to see osReplaceAgentEnvironment usage.");
llSay(PUBLIC_CHANNEL, "Transition: " + (string)transition + " second(s).");
}

touch_start(integer number)
{
key agentKey = llDetectedKey(0);

if (llGetAgentSize(agentKey) != ZERO_VECTOR)
{
integer result;

if (switch = !switch)
{
result = osReplaceAgentEnvironment(agentKey, transition, daycycle_a);
llRegionSayTo(agentKey, PUBLIC_CHANNEL, "daycycle_a: " + daycycle_a);
}

else
{
result = osReplaceAgentEnvironment(agentKey, transition, daycycle_b);
llRegionSayTo(agentKey, PUBLIC_CHANNEL, "daycycle_b: " + daycycle_b);
}

if (daycycle_a == "" || daycycle_a == NULL_KEY || daycycle_b == "" || daycycle_b == "")
{
llRegionSayTo(agentKey, PUBLIC_CHANNEL, "The normal environment for the parcel or region has been selected.");
}

if (result > 0)
{
llRegionSayTo(agentKey, PUBLIC_CHANNEL, "Agent environment replaced with success!");
}

else if (result < 0)
{
llRegionSayTo(agentKey, PUBLIC_CHANNEL, "Agent environment replaced without success!");
}
}

else
{
llInstantMessage(agentKey, "You need to be in the same region to use this function ...");
}
}
}

Jimmy Olsen: Another suggestion, I have on my SIM LIght and Sound Museum, on EEP sector, the EEP HUD where one can change EEP by touch (HUD).. guess it could be used to what u need.. Take a look script inside and ... 1 month ago

Re-thinking the region, adding new things, removing others...
To be PBR or not to be PBR, that's the question!
(well, to me no doubt PBR rocks ♥)

Synchronize two scripts
Aloha :)
I am working on a visual show, and I'd love to have help to synchronize the two scripts used for it.
The first one is a rezzer by timer, which is used to rez the different scenes.
Second is to animate the audience, I use Paramour Line Dancing Floor by Aine Caoime.
What I would want is, that when I start the rezzer, the line dance starts at 1rst animation, for the whole to be synchronized.
I think it is possible to add some command in the script for one object to listen the other and "reset or restart" at beginning.
I am not a scripter at all, so if someone could help me, it would be fantastic. I am asking here, but I bet it would be easier inworld.
The visual show is for HIE.

Pagane: look this: https://wiki.secondlife.com/wiki/LlMessageLinked 1 years ago
Animesh glitch
https://gyazo.com/6a4b2790356cc86006364ae3e0b73cb3
Hello,
It's not the first time I can see such a weird behaviour on a large animesh, is there any size(or else) limitation to a rig that may cause this?
AnatoBotanica is the name of the current sculpture collection I am doing IRL under MVN name, my initials.


Inspired by the connection (and the lack of connection) of human being in its environment, the nature.
Made of organic shapes, hybrid creatures comes to life with the use of moss and a lot of gold paint on PLA which is a bioplastic, sometimes clay and paper are added for the finest parts.

To introduce this new art form I am experiencing in opensim, I chose to show a glitched version of the real space I work from, my home.

My home is my shelter, but also my workshop.
The stones of the walls, the plants and animals living in the garden, are themselves an inspiration. Observing birds, bees and butterfly, listening to their songs, watching these creatures feeding from flowers, those simple « little things of life » are deeply touching my soul and question my own place in this world.

Luna Lunaria: I love your work Cherry, so unique and beautiful :-) 1 years ago
The region hg.osgrid.org:80:Cherry Freebies is totally redone, my own original art freebies are displayed in different rooms : VOID, PLANT, BRUSH, RED, CUBE.
Some accessories I made, EEP, at SOUP.
All Fest'Avi avatars at FESTAVI.

Just select a room from the teleporter. Please remind that for a best experience, enable EEP and advanced lighting model.
There's no stream but scripted sounds (not everywhere yet) all from Morlitam.

photo displaying VOID room

FinjaFlux: An inspiration! Your art is like fireworks and animates new ideas! Another wonderful work from you!!! Thank you!!!! 2 years ago

Cooking new rooms, coming soon
https://i.gyazo.com/d53e0498c72e2f43a5fdd30b0136f3de.mp4


CyberGlo CyberStar: Very innovative design! Very artistic and highly interpretive works of art cover the surrealistic landscape. An amazing vision of the artists incredible perspective of the combination of the abstrac... 2 years ago

Playing with EEP again


Luna Lunaria: I love playing with eeps 2 years ago

360 snap test


Luna Lunaria: Lovely work Cherry 🥰 2 years ago

Majo no mori

FR:
Suite à une panne des serveurs FrancoGrid hébergés chez Scaleway Online , et l'absence de volonté de la part de l’hébergeur de trouver une solution viable, nous sommes en incapacité de remonter la grille.
L'association perdure, et reste en veille.
Les assets sont perdus après 2020, les assets datant d'avant 2020 sont saufs. Notre admin technique réfléchit à une solution pour fournir des .iar aux personnes le souhaitant, pour toute information, veuillez contacter ssm par mail : contact@francogrid.org
Pour toute information concernant la trésorerie, ou pour un hébergement (payant) sur un serveur pour monter des simulateurs sur la grille de votre choix, veuillez contacter Nino par mail : fgagod@gmail.com
EN:
Following a breakdown of the FrancoGrid servers hosted at Scaleway Online, and the lack of will on the part of the host to find a viable solution, we are unable to rebuild the grid.
The association continues, and remains on standby.
Assets are lost after 2020, assets from before 2020 are safe. Our technical admin is thinking about a solution to provide .iar to people who want it, for any information, please contact ssm by email: contact@francogrid.org
For any information regarding cash, or for hosting (paid) on a server to mount simulators on the grid of your choice, please contact Nino by email: fgagod@gmail.com

Kashi Takeshi: Big loss... wandered a lot at FG. Let me know if I can help Cherry. 3 years ago
FR:
Suite à une panne des serveurs FrancoGrid hébergés chez Scaleway Online , et l'absence de volonté de la part de l’hébergeur de trouver une solution viable, nous sommes en incapacité de remonter la grille.
L'association perdure, et reste en veille.
Les assets sont perdus après 2020, les assets datant d'avant 2020 sont saufs. Notre admin technique réfléchit à une solution pour fournir des .iar aux personnes le souhaitant, pour toute information, veuillez contacter ssm par mail : contact@francogrid.org
Pour toute information concernant la trésorerie, ou pour un hébergement (payant) sur un serveur pour monter des simulateurs sur la grille de votre choix, veuillez contacter Nino par mail : fgagod@gmail.com
EN:
Following a breakdown of the FrancoGrid servers hosted at Scaleway Online, and the lack of will on the part of the host to find a viable solution, we are unable to rebuild the grid.
The association continues, and remains on standby.
Assets are lost after 2020, assets from before 2020 are safe. Our technical admin is thinking about a solution to provide .iar to people who want it, for any information, please contact ssm by email: contact@francogrid.org
For any information regarding cash, or for hosting (paid) on a server to mount simulators on the grid of your choice, please contact Nino by email: fgagod@gmail.com

Khaos reworked

Old installation reworked

old installtions reworked

JukeBox opening with HG Safari
Where: Jukebox
When: 3 years ago [2 Mar 2022 12:00 SLT]

HG Safari 2022 week 08 - 21h00 european time

Get ready to be syncopated!
DESTINATION 1 Jukebox by Cherry Manga This brand new build is an exploration of classic Manga builds reimagined with a unique musical soundtrack. Make sure you have Advanced Lighting turned on or you will just ... feel very sad. Hint - the Jukebox is the teleporter.
grid.copykat.ovh:12000:Jukebox
DESTINATION 2 Coopersville by Koshari Mahana. This is an Edwardian themed build with lots of fun activities from the era. read more here https://coopersville.mystrikingly.com/
grid.kitely.com:8002:Coopersville

Welcome to JukeBox. Musical Landscapes...

When landing in the region, if you see a black box,please enable Advanced Lighting Model in preferences.
Use Shared Environement.
Turn on sounds to max too.

When ready, click on the jukebox and select a song.

Be curious, walk, touch...your avatar will trigger things ,and be animated automatically, if you’re stuck in a pose press Alt+Shift+A

New freebies
No!
collection for 2Lei violence against women added

Yesterday, Dotty, a true cutie came to CyberPunk, a street drone couldn't resist to snap us


Oni Kiri: Super Photo !!! 3 years ago

Marianna : Stunning image, I have been working this morning on rigging a kimono, worked great except for the sleeves. I still have a ways to go to perfect it. Beautiful Cherry! 3 years ago

Kelso.Uxlay: Misère! encore une autre grille qui plante 3 years ago

...Mood...


Jerralyn Franzic: Another sim I must visit soon... :) 3 years ago
Cherry Manga -opensim November 2021
https://youtu.be/hH9pHqMLVOE

Locations:
craft-world.org:8002:2Lei in Virtual Worlds - Io Ti Nego, 2Lei in Virtual Worlds, Elimination of Violence Against Women
hg.osgrid.org:80:interstellART_exhibitions - My Protective Sanctuary
grid.copykat.ovh:12000:COSMOS - cosmic freebies
hg.osgrid.org:80:Cherry Freebies - art freebies

Après plus d'une décennie à ériger des châteaux de pixels éphémères au gré des marées numériques.
Modeler la matière organiquement, comme un appel primitif à célébrer le vivant.

After a bit more than a year back in the evil grid, looking for emulation....
I'm back in the bright side.
Time is time, and even here in OS, things changed.
I still have hope in some border line community, willing to share knowledge, hacking a sick system.
(photo, WIP for Asmita's "my protective shelter")

Mood...

Mood....

New:
The things we hide + Endometriosis

messing , rolling and scratching


comments 89 post likes 865
No upcoming events

My Reviews

HG Safari

HG Safari is the best place to learn about hypergrid, and to discover fabulous places to visit

SolarPunk

Tina's creativity is very sensitive and thought provoking ♥

Yin Yang Town

Beautiful ♥

Wasteland

excellent work

Palast der Winde

Beautiful region

Our World 2022

Great artistic dystopia ♥

Antartida

Tina's work is sensitive, emotional and pertinent. Thank you Tina for showing intelligent art ♥

Playground

Spooky-cute ♥

FLORA

Great resources, thank you

AlphaBase

Welcome Back dear =^_^=

Profile Comments

hey love your sims, i was wondering where you got your scripted oriental dragon prim from, id love one for my sim
like(0)
Loading...