////Copy this particle system create code and paste in an
////objects' create event. Be sure that it is called before other
////particle functions. Use the variable as an indicator of the
////system.

Sname = part_system_create()



////This is the emitter code in case you have not exported it. If
////you want to change it, you can put it in the another event:

part_emitter_region(Sname,Ename,x,x,y,y,ps_shape_ellipse,ps_distr_guassian)



////If you want the emitter to burst instead of stream, then 
////replace the function with the following(You can place these
////functions in other events. Stream can be stopped by streaming 0 
////particles.):

part_emitter_burst(Sname,Ename,Pname,10)

////////NOTE!
////Sname, Ename, and Pname are sample variables. You may change 
////them, but then you MUST change the variables in the other 
////fuctions that call for that variable. You must change the 
////variable when you have more than one particle! Enjoy!

