Yes - using the particles themselves.
Use the particles collision to cause the emission. Make container around the areas of collision.
Using a collision event, use the particle to emit fluid -density.
Use the voxelMaster script that is here, or if you know how to build an expression:
sudo code:
if collision occurs
get particle position
emit fluid from particle
search in the docs for "Event Procedure" or "work+with+collisions".
[codebox]
//simplified code that might work
if(event == 1){
vector $p = position;
vector $v = fluidVoxelInfo -voxel $p.x $p.y $p.z fluid1
;
setFluidAttr -at "density" -fv $curDensity[0] -xi $v.x -yi $v.y -zi $v.z fluid1;
}
[/codebox]
POOF! You might have to actually separate out the $p and $v vectors into floats.
Have fun.
Chris