Easiest way would probably be to edit cis_intro_part2 and swap out the cc_intro_startermonsterselect / nickname logic; rather than making a monster choice menu and wait for your input, the startermonsterselect script would instead fill your party with the monsters you want:
var amp = amp_get_new_party_id(); amp_generate_monster(amp,monster_id,level)
First get the ID of the first empty slot in the party, then generate a monster there using its species and level, repeat as many times as you want. There's matching get-first-free-slot functions for the boxes and the temporary enemy slots, too.
To go through every monster like this, rather than hardcoding the monster_id you could loop from 0 to MONSTER_MAX.
Also note that if you really want the player to have every monster in the party, you probably want to increase PARTYSIZE_ACTIVE from 6.
Amazing!!! i love this engine so much. Also i tried to add a Monster. I tried to just input the code in init_monsters but do i need to also add the the "monster_WRAITHMANITA" somewhere else? What is the best way to add a monster. if you put this tutorial somewhere let me know thank you for your quick response and everything!