spawn a certain number

hey guys, I have a background set up to spawn an actor when I click, but I want it to spawn 3 or 4 or 5 actors each time I click depending on the level the player is on. anyone have any suggestions on the best way to do that? I am stumped, thanks.
SM
SM
Comments
When Level attribute = 1
Spawn Actor
When Level attribute = 2
Spawn Actor
Spawn Actor
Etc.
Can't think of an easier way to spawn mulitple actors in one stroke; maybe someone else can suggest.
Or take advantage of this and have them spawn half a second apart for instance, with a popping noise as they appear on screen... just a thought! :-)
Create an integer attribute called Level (0)
Create an integer attribute called Spawned (0)
Whatever your doing to change level or go to the next round... Change attribute Level to Level+1
Timer every 0 seconds, Rule: (If mouse is downOPTIONAL), level doesn't = spawned, spawn actor & change Spawned to Spawned + 1.
Enjoy,
Matt
SM