Random character locations
When a character is destroyed in my game, MMF2 creates another instance of it. Is it possible to have the object (character) created and placed in a random location along the X axis but above a certain Y axis value?
In other words, I want the character to be created anywhere as long as it is above the top edge of the playing field.
Any help would be appreciated.
Thanks,
Adrian
Re: Random character locations
-Create Object Player at (-100, -100)
-Set Position of Player to (Random(Frame Width), Random(Frame Height))
Copy paste that and it should work fine ;)
Re: Random character locations
Excellent! Thank you.
Adrian