default
{
state_entry()
{
llSay(0, "Hello, DAF!");
}
touch_start(integer total_number)
{
// This will make an explosion of red particles, which follow the wind and glow
llParticleSystem([PSYS_PART_FLAGS, PSYS_PART_WIND_MASK | PSYS_PART_EMISSIVE_MASK,
PSYS_SRC_PATTERN, PSYS_SRC_PATTERN_EXPLODE,
PSYS_PART_START_COLOR, <2,2,0>]);
}
}
///////////////////////////////////////////////////
PSYS_PART_START_COLOR, <2,2,2>]); //// white
//////////////////////////////////////////