Rakis Heron @Rakis

Opensim Hyper Grid Offline

Give and take is opensim.


Fairy Stars div colours

// Fairy Stars div colours<br />
// Download script and items here:<br />
https://www.rakisworld.ch/downloads/FairyStars.zip&lt;br />
<br />
<br />
// Script name: Fairy Stars div colours.lsl<br />
<br />
// Rakis World, Rakis Heron @ yeali.outworldz.net:8002<br />
//<br />
// Script by RAKis - Rakis Heron<br />
// Particle Script 0.5<br />
// SL - 17-6-2004 <br />
<br />
integer on;<br />
<br />
particles(string texture)<br />
{<br />
// mask flags - set to TRUE (or 1) to enable<br />
integer bounce = 0; // Make particles bounce on Z plane of object<br />
integer glow = 1; // Make the particles glow<br />
integer interpColor = 0; // Go from start to end color<br />
integer interpSize = 1; // Go from start to end size<br />
integer followSource = 0; // Particles follow the source<br />
integer followVel = 1; // Particles turn to velocity direction<br />
integer wind = 0; // Particles affected by wind<br />
<br />
//pattern:<br />
//integer pattern = PSYS_SRC_PATTERN_ANGLE;<br />
//integer pattern = PSYS_SRC_PATTERN_ANGLE_CONE_EMPTY;<br />
//integer pattern = PSYS_SRC_PATTERN_ANGLE_CONE;<br />
//integer pattern = PSYS_SRC_PATTERN_DROP;<br />
integer pattern = PSYS_SRC_PATTERN_EXPLODE;<br />
<br />
// Select a target for particles to go towards<br />
// "" for no target, "owner" will follow object owner<br />
// and "self" will target this object<br />
// or put the key of an object for particles to go to<br />
//key target = "";<br />
key target = "";<br />
//key target = "owner";<br />
<br />
// particle parameters<br />
float age = 5; // Life of each particle<br />
<br />
float maxSpeed = .1; // Max speed each particle is spit out at<br />
float minSpeed = .01; // Min speed each particle is spit out at<br />
<br />
<br />
float startAlpha = 1; // Start alpha (transparency) value<br />
float endAlpha = 1; // End alpha (transparency) value (if interpColor = TRUE)<br />
<br />
vector startColor = <1,1,1>; // Start color of particles <R,G,B><br />
vector endColor = <1,0,0>; // End color of particles <R,G,B> (if interpColor = TRUE)<br />
<br />
vector startSize = <.3,.3,0>; // Start size of particles <x,y><br />
vector endSize = <.1,.1,0>; // End size of particles (if interpSize == TRUE)<br />
<br />
vector push = <0,0,-.1>; // Force pushed on particles<br />
<br />
// system parameters<br />
float life = 0; // Life in seconds for the system to make particles<br />
integer count = 4; // How many particles to emit per BURST<br />
float rate = .1; // How fast (rate) to emit particles<br />
float radius = .5; // Radius to emit particles for BURST pattern<br />
float outerAngle = 1.54; // Outer angle for all ANGLE patterns<br />
float innerAngle = 1.55; // Inner angle for all ANGLE patterns<br />
vector omega = <0,0,0>; // Rotation of ANGLE patterns around the source<br />
<br />
integer flags = 0;<br />
<br />
if (target == "owner") target = llGetOwner();<br />
if (target == "self") target = llGetKey();<br />
if (glow) flags = flags | PSYS_PART_EMISSIVE_MASK;<br />
if (bounce) flags = flags | PSYS_PART_BOUNCE_MASK;<br />
if (interpColor) flags = flags | PSYS_PART_INTERP_COLOR_MASK;<br />
if (interpSize) flags = flags | PSYS_PART_INTERP_SCALE_MASK;<br />
if (wind) flags = flags | PSYS_PART_WIND_MASK;<br />
if (followSource) flags = flags | PSYS_PART_FOLLOW_SRC_MASK;<br />
if (followVel) flags = flags | PSYS_PART_FOLLOW_VELOCITY_MASK;<br />
if (target != "") flags = flags | PSYS_PART_TARGET_POS_MASK;<br />
llParticleSystem([ PSYS_PART_MAX_AGE,age,<br />
PSYS_PART_FLAGS,flags,<br />
PSYS_PART_START_COLOR, startColor,<br />
PSYS_PART_END_COLOR, endColor,<br />
PSYS_PART_START_SCALE,startSize,<br />
PSYS_PART_END_SCALE,endSize,<br />
PSYS_SRC_PATTERN, pattern,<br />
PSYS_SRC_BURST_RATE,rate,<br />
PSYS_SRC_ACCEL, push,<br />
PSYS_SRC_BURST_PART_COUNT,count,<br />
PSYS_SRC_BURST_RADIUS,radius,<br />
PSYS_SRC_BURST_SPEED_MIN,minSpeed,<br />
PSYS_SRC_BURST_SPEED_MAX,maxSpeed,<br />
PSYS_SRC_TARGET_KEY,target,<br />
PSYS_SRC_INNERANGLE,innerAngle,<br />
PSYS_SRC_OUTERANGLE,outerAngle,<br />
PSYS_SRC_OMEGA, omega,<br />
PSYS_SRC_MAX_AGE, life,<br />
PSYS_SRC_TEXTURE, texture,<br />
PSYS_PART_START_ALPHA, startAlpha,<br />
PSYS_PART_END_ALPHA, endAlpha<br />
]);<br />
}<br />
<br />
default<br />
{<br />
state_entry()<br />
{<br />
<br />
llSetTimerEvent(1);<br />
}<br />
<br />
timer(){<br />
particles(llGetInventoryName(INVENTORY_TEXTURE,(integer)llFrand(llGetInventoryNumber(INVENTORY_TEXTURE))));<br />
llSetTimerEvent( ((integer)llFrand(2)+1));<br />
}<br />
<br />
link_message(integer sender_num, integer num, string str, key id){<br />
<br />
if(str == "off") {<br />
llSetTimerEvent(0);<br />
llParticleSystem([]); <br />
}else {<br />
if(str == "on") {<br />
llSetTimerEvent(1);<br />
}<br />
}<br />
<br />
} <br />
<br />
}

👍 2 like

Milestones

Hide Feed  

Come and discover my Naples, "The Naples Underground" - "The Catacombs of San Gennaro" and more. I'm waiting for you
hop://astralia.eu:8002/Clerville/119/183/23

copy and paste into the map on the Viewer
hop://astralia.eu:8002/Clerville/183/228/22

I apologize for my previous endorsements of the Alife Virtual grid.... https://youtu.be/xq6YayhAwLk

Save your time, efforts, and money. Alife Virtual is not an "Investment" opportunity.

You are only investing in the virtual land that will be taken the moment you have a disagreement with the grid owner, no matter what you have paid for.
https://youtu.be/xq6YayhAwLk


DJSPhenix: Think its "free land"?, Guess again and get ready to pucker up! 17 days ago
The ALife Virtual Grid owner can not be trusted. The Crypto is not backed so good luck!

https://youtu.be/xq6YayhAwLk
Fraudulent activities on the ALife Virtual Grid


Mariakristen: When it comes to comfortable, stylish, and practical footwear, UGG has solidified its place as a favorite across the globe. The brand's extensive collection of slippers, sliders, and boots caters to a... 15 days ago
EVERYONE should know about the Alife Virtual Grid....

This is the most horribly fraudulent experience I've ever encountered and the most horrible treatment from a grid owner. Please watch the following message.
https://youtu.be/xq6YayhAwLk

Efficient booking of real estate in Antalya
Turkey is an excellent choice for immigrants and international investors looking to buy real estate. Its strategic location and popularity as a tourist destination attract people worldwide. However, choosing the right location and assessing investment potential can be challenging. Even if you're buying for personal use, consider liquidity and rental income potential to minimize risks. https://turk.estate/en can assist with these concerns, offering expertise in legal matters and foreign property acquisition. Their connections to real estate investors can help reduce costs. By working with Turk.Estate, you not only gain access to quality properties but also the opportunity for citizenship or residency permits, making your home-buying journey smoother.

The Sanctuary at The Cathedral.

Beautiful Cathedral, set on an oceanic outcropping.

Wedding Chapel, Sanctuary, place of Spiritual connection. Visit our calm and peaceful Cathedral where you may cross yourself at our inner sanctum (just click on the Altar in the middle, AO's off). The pews allow for sitting or kneeling at prayer. This Cathedral has many secret and hidden places on the lavish grounds, spots for restful meditation outside and secluded areas within.

Perfect for your Weddings ... bring your own ceremony.

See what all you can find!
Dj dave At Club Paradise Rocking it Come hang out

CLUB PARADISE
WHO: DJ Dave
WHAT: MIXED AND YOUR REQUEST
WHEN: now to when ever
WHERE: CLUB PARADISE
COME DANCE WITH US!!!
BRING YOUR FRIENDS AND SONG REQUESTS
Clothing Optional Beach Club

Im so sorry Nakkie is down for the evening Due to a Internet outage in the area that houses our region. Please accept my humble apologies if this issue caused bumps on the roads you travel

For all of you interested in animesh: I made a new animated free roaming dragon thats now available for testing peer review. Pick up a copy in my shoppie, read the notecard and knock yourself out!
Lemme know if the notecard was clear enough...its a bit tricky with this roaming script....
Have fun!

Caribia: oh that looks cool :D 16 days ago
OK, you no longer need to 'bribe' someone to grab the Firestorm viewer beta download links for Open Simulator. You still need a burner SL account to join the Preview group for support.

https://www.firestormviewer.org/early-access-beta-download...
Neverworld Continues to break ground offering the cheapest and most stable regions n the metaverse. Grab this special now for full rights regions for less than a cup of coffee a month!
others have tried and failed to offer what NEVERWORLD gives ALL Residents.
Free LAND
Free Content
NO DRAMA!
Order here https://neverworldgrid.com/index.php/metaverse-land/land-o...

Govega: thank you try this https://neverworldgrid.com/index.php/metaverse-land/land-options 17 days ago
Neverworld Continues to break ground offering the cheapest and most stable regions n the metaverse. Grab this special now for full rights regions for less than a cup of coffee a month!
others have tried and failed to offer what NEVERWORLD gives ALL Residents.
Free LAND
Free Content
NO DRAMA!
Order here https://neverworldgrid.com/.../metaverse-land/land-options

Aurora Starchild: SOO GORGEOUS 17 days ago
Visit the Sunvibes workshop to get this colorful effect using a "mandala flower" texture.

Use the "Particle Corner" option on the TP pad menu - if you have probs finding it - let me know :) The box includes a typer, and rezzable effects that you can attach to your avatar too. All full perm - edit as needed.
๐Ÿ“Œ ๐—ง๐—ข๐——๐—”๐—ฌ - ๐—›๐—˜๐—จ๐—ง๐—˜ ๐Ÿ’•
๐——๐—๐—ฎ๐—ป๐—ฒ ๐—˜๐—บ๐—บ๐—ฎ ๐—ฝ๐—ฟ๐—ฒ๐˜€๐—ฒ๐—ป๐˜๐˜€ ๐—ช๐—ฒ๐—ฑ๐—ป๐—ฒ๐˜€๐—ฑ๐—ฎ๐˜† ๐—ก๐—ถ๐—ด๐—ต๐˜ ๐—ฃ๐—ฎ๐—ฟ๐˜๐˜† - ๐—ฐ๐—ผ๐—บ๐—ฒ ๐—ท๐—ผ๐—ถ๐—ป ๐—บ๐˜† ๐—ฝ๐—ฎ๐—ฟ๐˜๐˜† ๐Ÿ˜Ž
โญ๏ธโญ๏ธโญ๏ธโญ๏ธโญ๏ธโญ๏ธโญ๏ธโญ๏ธโญ๏ธโญ๏ธโญ๏ธโญ๏ธโญ๏ธ
Wednesday Night Party with DJane Emma Florido! You're warmly invited to our casual Wednesday Night Party filled with good vibes and good company. Musical preferences: Partymix, 80er & 90er, Charts & Mainstream. Don't miss it, we look forward to seeing you! We start at 11 am Opensim Time
Taxi: virtualvistametaverse.com:8002:discofux
=================
Virtual Vista Metaverse โ€“ prรคsentiert unsere Mittwochabend-Party mit DJane Emma Florido! Wir laden euch herzlich zu unserer lockeren Mittwochabendparty voller guter Stimmung und guter Gesellschaft ein. Musikalische Richtung: Partymix, 80er & 90er, Charts & Mainstream. Verpassen Sie es nicht, wir freuen uns auf euch! Wir beginnen um 20 Uhr
This is so cool. I have not been on in a few weeks, but finally I have carved out my schedule to be in OS more often. Yay.
In my absence it seems 94 different people came to Grid Tumbler to visit. That is awesome. Where are you all when I am online?
Come play with meeeeeeeeee.

LeonitasLionheart: *squishes* i am around. say hi sometime if ya like. 17 days ago
UPDATED: ALL Arizona rentals currently taken at the present!


Last two Arizona/Sedona themed parcels!


10,000 prims.

Come get them before they are gone. Don't forget the Residents Group tag!
6 new Xara/LaraX outfits.
tops pants Skirts and Gown
come check it out.

If you havent already picked up your Xara Body, why not? its the fastest growing size body in Opensim. Our body has a great hud that has many perks, such as Auto Alpha, BOM, Working neck Fix so it will fit any head you put on it with little work. We designed a flat nipple so your nipples will not stick through your clothes., and much more.
Hurry Down !!
Hello, it was brought to my attention today. I was loading information in the wrong place to see where the items were. I am sorry for that and will not set them on Dallas but on to Dallas Mall. Because here gives you the address to get the items. So anything you have seen comes from Dallas; this is where the address is. Happy Shopping Please remember the new items are on the circles for the moment.

Meowwww

Zoree Jupiter Live
2-3:00pm
Club Fire
Gentle Fire Grid
Semi Casual attire
hop://gentlefire.opensim.fun:8002/gentlefire.opensim.fun%3...

=OUT NOW: Serpent Candles=
Out now at the Odds&Decor store, this gorgeous serpent/snek candle holder:
- Two versions: hanging and standing
- 6 different snakes for each model
- Material layers
- Texture HUD to change textures of candles, metal, and snek-tongue.
- Particles light scripted to individually turn on/off on click

Uber: hop://playground.darkheartsos.com:8002/Boutiques%20NE/379/...

LeonitasLionheart: Awessssssome share! Thanks. :) P.S. plz note that in-store artwork for this is currently showing llewellyn pg chairs and ottoman set, not the snake candles. ;) 18 days ago

Every Tuesday we stir up some dust in Wild Kingdom in Neverworld featuring Sasha King LIVE

Opensim - there is so much out there to see ! Here are a few recent posts about a few of the interesting and fun people and places you can experience.
The new Safari season continues tomorrow at 12.00
Recent news from the OSWF:
https://hgsafari.blogspot.com/2024/09/fair-dos.html
Find out more about Genie Fegte:
https://hgsafari.blogspot.com/2024/09/on-offworld.html
Safari season starts on a fantasy sim in Pangea
https://hgsafari.blogspot.com/2024/09/safari-fall.html
The wonderful Marpil Grafenwalder shows us around her home
https://hgsafari.blogspot.com/2024/09/tierra-de-marpil.htm...
A new project for bringing the French community closer together
https://hgsafari.blogspot.com/2024/09/call-it-communaute.h...

"Drama is like dog crap. The more you stir it, the more it stinks."



Littlefield Grid's Annual 9-11 memorial service will be Wednesday 09/11/2024 at 9-11 Memorial Region starting at 5:46AM Pacific Time.

Hey Everyone ๐Ÿ™‚ I'm performing at Stark Islands at 11:AM
Come join me, request a few tunes and have some fun!
BEST IN SEXY - 1000g's to the top winner!
What's YOUR sexy?
Time: 11:00am Grid Time (2pmEST) (1pm Central)
Place: Stark Islands Sextra Discotheque
Dress: CASUAL/SWIMWEAR/NAKIE
MAP: hop://login.zetaworlds.com/Stark/478/94/23

niki stuart: looking forward to it rogue !!!! woot woot 18 days ago
The Bush Zone personal grooming razor. You can also trim your friend, just use silk scarves (not included) to tie their wrists and ankles to the chair. Free Gift at Hypnotic Euphoria in Magenta while supplies last!

Suzi_Avonside: Let it grow, let it grow, let it grow! A natural bush is so much healthier! 18 days ago

Arcfury: This will be a fun show. 17 days ago
It's a brand new addition but this fast has become my favourite:

The AMAZING fun Medusa, on the Promenade.

My only complaint is that its all over too soon, as with many good things. Choose a seat and sit, 'Take a Ride' AND be sure to click Medusa to start her!

We hope you enjoy :)
Come ride the beautiful old timey Carousel on the Promenade at Funland, new addition!

Just click on the Carousel and it will begin to spin slowly, then choose your ride and sit.

We hope you enjoy!

NOTE: There are a lot of rides here - what I do when I go is do an area search and just let them be listed and choose. Wandering for hours here is possible, of course :)
Hier ein paar Partyfotos vom Blue Monday aus der Zappelbude โ€“
Es war wieder, wie immer, echt lustig und schรถn mit Euch, Dangรถ โ€ฆ


Klicke hier um zu den Fotos zu gelangen ... https://bit.ly/3ZgRIck

The Mountains of Wolf Territories Grid


Jimmy Olsen: The only reason Furball is not howling because there is no moon on that EEP Sky llol 18 days ago

Comments

No comments yet