Ok, I was thinking of making a script that removed the restrictions from minigame creation.
What this will do is temporarily give you admin, and then take it away.
I just need to know all the arguments for the CreateMinigame command.
This is what I'm thinking of so far.
package MNR
{
	function serverCmdCreateMinigame(%cl,%name)
	{
		if(!%cl.isAdmin)
		{
			%cl.isAdmin = 1;
			Parent::serverCmdCreateMinigame(%cl,%name);
			%cl.isAdmin = 0;
		}
		else
		{
			Parent::serverCmdCreateMinigame(%cl,%name);
		}
	}
};
activatePackage(MNR);