Does anyone know of a way to allow a supergump to be opened in multiple instances at once. For example opening different books that all use the same base supergump to display the content at the same time.
 
In the constructor of your SuperGump, set the AllowMultiple property to true;
Code:
public MyGump( Mobile user )
	: base( user )
{
	AllowMultiple = true;
}

You can also set the property on any SuperGump prior to sending it;
Code:
SuperGump gump = new MyGump( user );

gump.AllowMultiple = true;

gump.Send( );
 
Back