Strife Onizuka
Moonchild
Join date: 3 Mar 2004
Posts: 5,887
|
03-24-2004 01:34
Someone unknown meliciously modified a candle/fires script so instead of blowing out dies. Please check your candles/fires. The flame prim is named Hearth. unlink your flames and edit each of the 2 prims. Replace "Candle Script.lsl" with this script if it contains in it "llDie();" default { state_entry() { llSetStatus(STATUS_PHANTOM, TRUE); llSetTexture("lit_texture", ALL_SIDES); llListen(0,"","","blow"); llListen(0,"","","light"); }
touch_start(integer number) { llSetTexture("lit_texture",ALL_SIDES); }
listen(integer number, string name, key id, string message) { if(message=="blow") llSetTexture("alpha", ALL_SIDES); else llSetTexture("lit_texture", ALL_SIDES); } }
_____________________
Truth is a river that is always splitting up into arms that reunite. Islanded between the arms, the inhabitants argue for a lifetime as to which is the main river. - Cyril Connolly
Without the political will to find common ground, the continual friction of tactic and counter tactic, only creates suspicion and hatred and vengeance, and perpetuates the cycle of violence. - James Nachtwey
|