Difference between revisions of "Monster Maker"

From The Game-Maker Archive
Jump to navigationJump to search
Line 18: Line 18:
 
* Often monsters do not die exactly on cue, so when plotting a timed monster death try extending the duration of the final animation frame a few ticks beyond the monster's calculated lifespan. Otherwise, before death the monster might wrap back around to the first frame for a tick or two.
 
* Often monsters do not die exactly on cue, so when plotting a timed monster death try extending the duration of the final animation frame a few ticks beyond the monster's calculated lifespan. Otherwise, before death the monster might wrap back around to the first frame for a tick or two.
 
* There is an as-yet unresolved bug when using a monster who dies after the end of its path. If the monster also changes into another monster upon death, then the new monster seems to be affected by the course of the previous monster's path, almost as if it has a momentum flag. The only known workaround is to avoid combining these features, and instead to set up a chain where at the end of its path the first monster kills a camouflaged static monster, which in turn births the intended child monster.
 
* There is an as-yet unresolved bug when using a monster who dies after the end of its path. If the monster also changes into another monster upon death, then the new monster seems to be affected by the course of the previous monster's path, almost as if it has a momentum flag. The only known workaround is to avoid combining these features, and instead to set up a chain where at the end of its path the first monster kills a camouflaged static monster, which in turn births the intended child monster.
 +
* Each monster can have up to 16 frames of animation.
 +
* Another bug: when a monster is birthed from a newly deceased monster, the first frame of the new monster's animation sequence will tend to only last a single frame, no matter how long of a duration you may specify. Workaround: simply add a second frame, identical to the first, which lasts your intended length, minus one.
  
 
== Links ==  
 
== Links ==  

Revision as of 17:48, 6 May 2014

Monster Maker
Monmaker.png

Release type: Retail (Game-Maker suite)
Release date: 1991 (original release)
Author: Recreational Software Designs
Related tools: Palette Designer, Block Designer, Character Maker, Map Maker, Integrator, Xferplay

.Produces and edits .MON format files. Programmed by Oliver Stone.

Version history

1994 - Version 3.00

Tips

  • When plotting monster movement, every click of the line represents one block of distance. So if your path goes three clicks left then three right, it will move three blocks to the left then return to its starting position.
  • Often monsters do not die exactly on cue, so when plotting a timed monster death try extending the duration of the final animation frame a few ticks beyond the monster's calculated lifespan. Otherwise, before death the monster might wrap back around to the first frame for a tick or two.
  • There is an as-yet unresolved bug when using a monster who dies after the end of its path. If the monster also changes into another monster upon death, then the new monster seems to be affected by the course of the previous monster's path, almost as if it has a momentum flag. The only known workaround is to avoid combining these features, and instead to set up a chain where at the end of its path the first monster kills a camouflaged static monster, which in turn births the intended child monster.
  • Each monster can have up to 16 frames of animation.
  • Another bug: when a monster is birthed from a newly deceased monster, the first frame of the new monster's animation sequence will tend to only last a single frame, no matter how long of a duration you may specify. Workaround: simply add a second frame, identical to the first, which lasts your intended length, minus one.

Links