Welcome to the Second Life Forums Archive

These forums are CLOSED. Please visit the new forums HERE

Smoke

Brendan Ludd
Second Life Junkie
Join date: 1 Jul 2005
Posts: 36
11-20-2005 10:55
Does anyone know of a script for making smoke? I need a script for a fireplace, which I think I can find, but I would like to have smoke coming out of my chimney, so I wanted to add a smoke script to the top of the chimney by itself. Any ideas?

Brendan Ludd
Saul Lament
Mean & Evil
Join date: 24 May 2004
Posts: 163
11-20-2005 18:05
At our Gestalt's This 'n That Market we have available for free the Linden animated flames, smoke particals and crackling fire sounds. They are setup beside the logs and smoke/smudge texture we sell, but you don't have to purchase anything! All the parts are copy/mod/trans so you should be able to use just the smoke part in a small prim at the top of your chimney. :D
Brendan Ludd
Second Life Junkie
Join date: 1 Jul 2005
Posts: 36
11-21-2005 11:33
Wow, thank you. I will check it out today after work. Thanks again!!!


Brendan Ludd
Brendan Ludd
Second Life Junkie
Join date: 1 Jul 2005
Posts: 36
11-22-2005 08:42
Saul, your the man! Excatly what I needed! Ripped apart the fire for the smoke script and tweaked it abit. Looks great on my chimney top now. Thanks again!!!!


Brendan
FxyLdy Moonlight
Registered User
Join date: 2 Sep 2005
Posts: 12
Need smoke script
12-17-2005 07:22
Hi, I went to the link above. I got the free fire and smoke mentioned. However, I do not possess the skills neccessary to tear apart the animation that apparently are needed to access the smoke script.

I would like to know if anyone has a stand alone smoke script that I could use for my chimney in my house.

I appreciate any and all help with this. I have been looking all over SL and have found nothing so far.

Help!

Fxy
Lord Wishbringer
Registered User
Join date: 3 Dec 2004
Posts: 209
12-17-2005 08:13
I just dropped a smoke emitting sphere into your inventory FxyLdy Moonlight,so when you log on you can see if this is what you want. Just place it at the top of your chimney,and change the texture to alpha/clear and done!

-LW
FxyLdy Moonlight
Registered User
Join date: 2 Sep 2005
Posts: 12
Thanks so so much!
12-17-2005 09:32
As I told you, I just installed it. It is perfect!! Thanks for your quick response. Have a great Holiday season. You made my day!

Thanks again,
Fxy
desmond Cinquetti
Registered User
Join date: 26 Jul 2005
Posts: 4
12-26-2005 15:09
I'm also looking for the smoking effect. I've made a dual ak 47 model and would like for it to have smoking barrels as if just being fired. If anyone can drop it on me id very much appreciate it.
Gabriel Tackleberry
Registered User
Join date: 22 Feb 2006
Posts: 23
03-10-2006 21:30
From: Saul Lament
At our Gestalt's This 'n That Market we have available for free the Linden animated flames, smoke particals and crackling fire sounds. They are setup beside the logs and smoke/smudge texture we sell, but you don't have to purchase anything! All the parts are copy/mod/trans so you should be able to use just the smoke part in a small prim at the top of your chimney. :D


I went there and all fires are no copy/ no modify.
Logan Bauer
Inept Adept
Join date: 13 Jun 2004
Posts: 2,237
03-10-2006 22:00
Here's a free smoke effect for anyone who wants and hasn't found one yet.

If you don't know anything about scripts, just go into the contents of your object and click the "new script" button, delete all of the default script text, and paste everything in the window below (but NOT the "Php Code:" text before the window) into your empty script window back in Secondlife. Click the "save" button and you should be set.

CODE

default
{
state_entry()
{
llParticleSystem([ PSYS_PART_MAX_AGE,2.5,
PSYS_PART_FLAGS, PSYS_PART_EMISSIVE_MASK | PSYS_PART_INTERP_COLOR_MASK | PSYS_PART_INTERP_SCALE_MASK | PSYS_PART_WIND_MASK | PSYS_PART_FOLLOW_VELOCITY_MASK,
PSYS_PART_START_COLOR, <0.4,0.4,0.4>,
PSYS_PART_END_COLOR, <0.4,0.4,0.4>,
PSYS_PART_START_SCALE,<.1,.1,.05>,
PSYS_PART_END_SCALE,<1,1,1>,
PSYS_SRC_PATTERN, PSYS_SRC_PATTERN_EXPLODE,
PSYS_SRC_BURST_RATE,0.01,
PSYS_SRC_ACCEL, <0,0,1.6>,
PSYS_SRC_BURST_PART_COUNT,4,
PSYS_SRC_BURST_RADIUS,0.0,
PSYS_SRC_BURST_SPEED_MIN,0.02,
PSYS_SRC_BURST_SPEED_MAX,0.2,
PSYS_SRC_OMEGA, <1,1,4>,
PSYS_SRC_MAX_AGE, 0.0,
PSYS_SRC_TEXTURE, "df7d957f-a5f8-0190-23af-b17e31456638",
PSYS_PART_START_ALPHA, 0.23,
PSYS_PART_END_ALPHA, 0.23
]);
}

}