
Board: M.U.G.E.N Development Help
(btw, how do I add images here so there is AN IMAGE, not just link.?.)
You need to copy the image url (not the page, the image url usually ends with .jpg, .png, .gif...), you do that by right clicking the image and selecting "Copy image link" or "Copy image url". Then you put it between the [img] *image url* [/img] tags.
[img]https://i.imgur.com/4OSSRwH.png[/img] results in:
Now for your problem, are the numbers a single helper? Or an explod? If so, you can use this when spawning the helper/explod:
facing = ifelse(facing = 1, 1, -1)
I use this to avoid mirrored sprites. Hope it helps!
Hi, thank you for replying. It worked, but both of them were mirrored, so I change it to this:
facing = ifelse(facing = -1, 1, -1)
Basically, played with it a little till it worked out.
Now it's perfection, 'cause before it was super confusing. Have a good one!
