Jump to content

Search the Community

Showing results for tags 'rain'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Important News
    • Announcements
  • People Forum
    • Your Avatar
    • Make Friends
    • Lifestyles and Relationships
    • Role Play
    • General Discussion Forum
    • Forums Feedback
    • Second Life Education and Nonprofits
  • Places and Events Forum
    • Favorite Destinations
    • Upcoming Events and Activities
    • Games in Second Life
  • Official Contests, Events & Challenges
    • Challenges
    • Contests
  • Creation Forum
    • Fashion
    • Art, Music and Photography
    • Animation Forum
    • Bakes on Mesh
    • Environmental Enhancement Project
    • Machinima Forum
    • Building and Texturing Forum
    • Mesh
    • LSL Scripting
    • Experience Tools Forum
  • Technology Forum
    • Second Life Server
    • Second Life Viewer
    • Second Life Web
    • General Second Life Tech Discussion
    • Mobile
  • Commerce Forum
    • Merchants
    • Inworld Employment
    • Wanted
  • Land Forum
    • General Discussion
    • Mainland
    • Linden Homes
    • Wanted
    • Regions for Sale
    • Regions for Rent
  • International Forum
    • Deutsches Forum
    • Foro en español
    • Forum in italiano
    • Forum français
    • 日本語フォーラム
    • 한국어 포럼
    • Fórum em português
    • Forum polskie
    • المنتدى العربي
    • Türkçe Forum
    • Форум по-русски
  • Answers
    • Abuse and Griefing
    • Account
    • Avatar
    • Creation
    • Inventory
    • Getting Started
    • Controls
    • Land
    • Linden Dollars (L$)
    • Shopping
    • Technical
    • Viewers
    • Everything Else
    • International Answers

Blogs

  • Commerce
  • Featured News
  • Inworld
  • Tools and Technology
  • Tips and Tricks
  • Land
  • Community News

Categories

  • English
  • Deutsch
  • Français
  • Español
  • Português
  • 日本語
  • Italiano
  • Pусский
  • Türkçe

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Member Title

Found 4 results

  1. Pictured: Nederlandse Bergen Spring is here! Take a moment to stop and smell the virtual flowers at these picturesque nature-themed destinations. 🌸 Nederlandse Bergen Nederlanse Bergee is a beautiful island, ideal to get away from everything. It's a place to explore, discover, enjoy, relax, and spend a romantic time with your loved one. It is owned by Aloriana Shadowstar and landscaped by Marie Nova. More Info Teleport Don't forget to check our Recently Added category to see all the latest additions to the Second Life Destination Guide! Got a spot that you’d like listed in the Destination Guide? Make sure to drop us a note at editor@lindenlab.com or submit your spot via web form. Learn more about the Destination Guide criteria for Editors’ Picks or the Destinations Floater in the viewer, and increase your chances of being featured in those coveted spots!
  2. Can anyone recommend me some good sims to sit in for a while and chill while I write? I like eerie sims, foggy sims, and rainy sims most. I'm really just looking for a quiet place to relax. For some examples, I like [Sommergewitter], and [Rainy Alley]. I also really liked Deepmarsh by the Sea and [this post apocalypse type of sim].
  3. Hi! I want to share some particle systems: FIRE //* script_starts_here: FIRE SCRIPT ON/OFF TOUCH PUBLIC // integer run; default { touch_start(integer total_number) { if(run) { run = FALSE; llParticleSystem([]); } else { run = TRUE; llParticleSystem([PSYS_PART_MAX_AGE,2.50, PSYS_PART_FLAGS, 259, PSYS_PART_START_COLOR, <0.18, 0.16, 0.13>, PSYS_PART_END_COLOR, <0.59, 0.65, 0.62>, PSYS_PART_START_SCALE,<0.15, 0.15, 0.00>, PSYS_PART_END_SCALE,<0.77, 1.21, 0.00>, PSYS_SRC_PATTERN, 2, PSYS_SRC_BURST_RATE,0.00, PSYS_SRC_BURST_PART_COUNT,4, PSYS_SRC_BURST_RADIUS,0.00, PSYS_SRC_BURST_SPEED_MIN,0.07, PSYS_SRC_BURST_SPEED_MAX,0.35, PSYS_SRC_ANGLE_BEGIN, 1.65, PSYS_SRC_ANGLE_END, 0.00, PSYS_SRC_MAX_AGE, 0.0, PSYS_SRC_TEXTURE, "006d9758-81da-38a9-9be3-b6c941cae931", PSYS_PART_START_ALPHA, 0.40, PSYS_PART_END_ALPHA, 0.00, PSYS_SRC_ACCEL, <0.00, 0.00, 1.14>]); } } } //* script_ends_here SMOKE //* script_starts_here: SMOKE // default { state_entry() { llParticleSystem([PSYS_PART_MAX_AGE,2.50, PSYS_PART_FLAGS, 259, PSYS_PART_START_COLOR, <0.18079, 0.16000, 0.13761>, PSYS_PART_END_COLOR, <0.59811, 0.65541, 0.62564>, PSYS_PART_START_SCALE,<0.15062, 0.15062, 0.00000>, PSYS_PART_END_SCALE,<0.77423, 1.21800, 0.00000>, PSYS_SRC_PATTERN, 2, PSYS_SRC_BURST_RATE,0.00, PSYS_SRC_BURST_PART_COUNT,4, PSYS_SRC_BURST_RADIUS,0.00, PSYS_SRC_BURST_SPEED_MIN,0.07, PSYS_SRC_BURST_SPEED_MAX,0.35, PSYS_SRC_ANGLE_BEGIN, 1.65, PSYS_SRC_ANGLE_END, 0.00, PSYS_SRC_MAX_AGE, 0.0, PSYS_SRC_TEXTURE, "006d9758-81da-38a9-9be3-b6c941cae931", PSYS_PART_START_ALPHA, 0.40, PSYS_PART_END_ALPHA, 0.00, PSYS_SRC_ACCEL, <0.00, 0.00, 1.14>]); } } //* script_ends_here RAIN //* script_starts_here: RAIN / ON/OFF CHAT COMMAND Say : /10 start / stop // default { state_entry() { llListen(10,"","",""); } listen(integer chan, string name, key id, string msg) { if(msg=="stop") { llParticleSystem([]); } else if(msg=="start") { llParticleSystem([PSYS_PART_MAX_AGE,1.20, PSYS_PART_FLAGS, 259, PSYS_PART_START_COLOR, <0.73, 0.84, 0.79>, PSYS_PART_END_COLOR, <0.61, 0.76, 0.82>, PSYS_PART_START_SCALE,<0.10, 0.00, 0.00>, PSYS_PART_END_SCALE,<0.10, 3.69, 0.00>, PSYS_SRC_PATTERN, 8, PSYS_SRC_BURST_RATE,0.10, PSYS_SRC_BURST_PART_COUNT,25, PSYS_SRC_BURST_RADIUS,5.57, PSYS_SRC_BURST_SPEED_MIN,0.11, PSYS_SRC_BURST_SPEED_MAX,0.64, PSYS_SRC_ANGLE_BEGIN, 0.00, PSYS_SRC_ANGLE_END, 0.78, PSYS_SRC_MAX_AGE, 0.0, PSYS_SRC_TEXTURE, "06675bc5-e9b9-0557-7179-fbf7779faed8", PSYS_PART_START_ALPHA, 0.20, PSYS_PART_END_ALPHA, 0.75, PSYS_SRC_ACCEL, <-0.37, 0.45, -12.00>]); } } } //* script_ends_here Have fun!
  4. Not sure where to put this however anyone know any decent wet rainy sims? I know was One Caress however that sim has been revamped and changed so no longer rains.
×
×
  • Create New...
  翻译: