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  
Tempo Isle Presents..
The Vocal Stylings of EVEE BLACKSTAR!
Come join us for some great tunes and a fun afternoon!
❈ ════ ❈ LIVE at 2:PM OST
❈ ════ ❈ TEMPO ISLE
❈ ════ ❈ RIDE: grid.wolfterritories.org:8002:Tempo Isle
❈ ════ ❈ HOP: hop://grid.wolfterritories.org:8002/Tempo%20Isle/442/813/2...
TEMPO ISLE Presents..
EVANEA FAE LIVE! Come join us for
this very talented Performer! Singing your Favorites!
❈ ════ ❈ LIVE at 1:PM OST
❈ ════ ❈ TEMPO ISLE RESORT
❈ ════ ❈ RIDE: grid.wolfterritories.org:8002:Tempo Isle
❈ ════ ❈ HOP: hop://grid.wolfterritories.org:8002/Tempo%20Isle/442/813/2...

NEW CLOTHING
SN Abby Outfit
Alltime Moneygiver and Luckyshower at Beach
~NO RESELL~

No events this week...

I am so excited to announce the new welcome region is almost done, there is only one more thing to add. Thank you for Lilly and Darci for helping me with this project. I also want to thank Catuelala for the ziplines she installed. Karaoke will eventually move to this region and we will have a grand opening. Stay tuned for more info.

I am also looking for some custom Virtual beach attire, message me if interested.

Milly Money: Looks amazing!! Congratulations Mistress!! :) 3 months ago
Clothing creations by Artman Xue, Ive been creating clothes since 2006. I got my start in Second Life grid and now I'm in Digiworldz and The Tenth Dimension grids. Come see me! Over 300+ Costumes and clothing outfits for your avatar.
Cannabis Information Center, an oasis of knowledge and natural beauty nestled in a serene outdoor setting. This unique center, established in collaboration with Leafly, the renowned cannabis resource, offers a comprehensive exploration of cannabis, its benefits, uses, and the latest research findings.

three.hills.grid.outworldz.net:8002:PacificNorthwest
Cosplay Universe Region Now Open!
Hello folk's I've been working had to get my Region on the Tenth Dimension Grid up and running. Well that day has arrived and the hop slurl is hop://grid.tenthdimension.org:26002/Cosplay%20Universe/127...
I have a few buildings available that are perfect for your Industrial part of town. They are Full Perm, so if you want to change the signs to your own, just edit and change the texture. If you need help, I will happily do so. I hope your day is awesome and filled with joy!
Another sleepless night produced this beautiful pyramid with a reflecting pool and Sphynx (which isn't my build but it worked perfectly). Inside there is a huge room and a kind of a mini palace compete with statues, floor lamp torches, pillars and thrones. It turned out better than I had hoped it would and I hope you will enjoy it and use it for your "ancient" or "Egyptian" build. It comes complete with trees and statues and is the perfect addition or center piece for any ancient or even sci fi fantasy build. You can find it here at the mall in our "Ancient Builds" department. Blessings and much love, Lavia

Ankhsenaton: Thanks for your sphinx and your Pyramid!! :-) I like the Maya too, it's nice to see some originality! 3 months ago
The shop is coming along with many of the items set up for sale for $0 and I am steadily working to get it all set up for you. If you see something you want but it isn't set up for sale yet, let me know and I will get it to you.
This beautiful bar is now available for your pleasure and you can get it for next to nothing! You have to admit, $0 is a pretty good deal!
All of my content is created by me, so if you are looking for original creations, none of the items in my shop are copybotted. Maybe you will find something you like or something you didn't know you needed. Welcome friends!
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: woot yea rogue can't wait!!!!!! 3 months ago
Wednesday Night Party with Emma Florido
⭐️⭐️⭐️⭐️⭐️⭐️⭐️⭐️⭐️⭐️⭐️⭐️⭐️
Virtual Vista Metaverse - presents our Wednesday Night Party! Emma Florido invites you to 80s, 90s, hits, pop & rock music. Don't miss it, we look forward to seeing you! We start at 10 am CET

Taxi: virtualvistametaverse.com:8002:discofux
=================
Virtual Vista Metaverse – präsentiert unsere Mittwochabend-Party! Emma Florido lädt ein zu 80er, 90er, Schlager, Pop & Rock musik. Wir starten um 19 Uhr Lasst es euch nicht entgehen, wir freuen uns auf euch!

***news at Camballa***
Alegra
Jacket and Skirt
in Reborn and Athena
Have a nice time and enjoy my creations
Yours Karin Becker

NEW Outfits and some Fatpacks in the Store --for Athena/Petite & Legacy/Perky


Jared Seda: Visited today and holy smokes its gorgeous. You did a wonderful job its so peaceful. 3 months ago
DJ Rosie spins Grooves in Motion at Hot Daddy's tonight 6-8PM
Region: Wyldwood Bayou Hot Daddys
Event begins: 2024-07-08 18:05 SLT
Added by: Kith Whitehawk✦
Details:
Get your groove on as DJ Rosie spins music about Movement. If you are “Running on Empty” you will get your fill of great tunes. It will “Spin you Right Round and even make you “Jump” or “Move Like Jagger”. Join us for a great night of music that will keep you in motion dancing with the Tribe.

wyldwoodbayou.com:8002: Wyldwood Bayou Hot Daddys

just up to more crazy shit


Jared Seda: Stunning fireworks 3 months ago
Immerse yourself in lush, bioluminescent forests, soaring floating mountains, and serene waterfalls that create a haven of tranquility and wonder. Iknimaya a Pandoran Paradise...


three.hills.grid.outworldz.net:8002:iknimaya

NEW version includes Belleza (Ares) Jake hop://astralia.eu:8002/TierraDeVolcanes/30/269/3226


Aurora Starchild: Eso eso, más ropitas pa los nenes, que siempre se nos quejan de que no hay! :D 3 months ago
After spending most of the day working with it, we won't be doing the Dreamgrid Smart Start after all.

After crashing repeatedly with three different versions of Firestorm, and finding with no Smart Start the crashes ended - as well as the very large and heavy regions we have not loading as they need to -- it's just not working for us. It's a great concept, however. With a pretty powerful dedicated 64 gig Server we should be okay.

I think this works well for some grids and not for others, depending on what has to be loaded in etc etc.

Many thanks to Mistress Delgado for all her advice and help trying this out! :)


Mistressdalgato: what we did was split them up, some on smart suspend and some on smart boot. you could have another issue causing it, wish i could have been more help. your welcome nonetheless 3 months ago

Town Hall teleportation room

western old creations

shower, tubs, bath, pool tables, babyfoot, bench, ....

gadgets and body pieces level

Adult XL shop

AO collections

Heads, heads shapes...

BOM collections and more

Old simple animation balls

animations, dance and more

animals, animesh and more

MESH for builders

Landscapes and textures

a few new arrivals at Vesti, 3 new outfits in the Everyday InsTYle Store and one in the Lingerie Shop


Essensual: forgot the Hop for you with out Vesti Landmarks hg.trianon-world.com:18002:Vesti 3 months ago

Avatars, heads AO... new shop_ Churchtown River.png

new shop


Comments

No comments yet