YesNoOk
avatar

Infinite stream helpers?  (Read 1600 times)

Started by Tyrannosaurus rex, May 11, 2017, 02:24:38 am
Share this topic:
Infinite stream helpers?
New #1  May 11, 2017, 02:24:38 am
  • **
  • I'm a llama!
Hey everyone. I just wanted to ask, how I can set it so that the character fires a stream of helpers that move across the screen like a stream of projectiles forming a beam for as long as either the a button is held or the animation ends?

Thank you
Last Edit: June 08, 2017, 05:55:03 am by Noctis
Re: Infinite stream helpers?
#2  May 11, 2017, 09:33:59 am
  • ******
  • Legendary XIII
  • I am the eye of the storm to come!
    • New Zealand
    • network.mugenguild.com/cyanide/
You are limited by the number of helpers the engine can actually handle but this is still just basic triggering

trigger1 = command = "holda"

Assuming you have holda as a command, that will do anything you like, every tick, until holda is no longer true. You can use persistent to make the gaps between whatever you're doing increase or leave it off and have them spawn every tick.

I wouldn't suggest using helpers if you can manage it though, they tend to be limited for most installs and will simply stop appearing if there are too many on screen.


In M.U.G.E.N there is no magic button

They say a little knowledge is a dangerous thing, but it's not one half so bad as a lot of ignorance.
Re: Infinite stream helpers?
#3  May 13, 2017, 08:59:01 pm
  • **
  • I'm a llama!
Thank you Cyanide. Sorry for the late response btw.