guys tell me how to make a menu crafting opaque or alter it to the old on the sphere or POL shards , someone else has a solution
[ServUO.com]-leatherarmorgump.jpg

that this was not transparent
tailor-menu.jpg
 
Add an Alpha region to it in the CS, like this:
Code:
AddAlphaRegion( 10, 10, 530, 567 );

So where the gump is built, you're going to add the above in the same area.

Code:
			AddPage( 0 );

			AddBackground( 0, 0, 550, 587, 5054 );
			AddImageTiled( 10, 10, 530, 22, 2624 );		//Section for Gump Heading
			AddImageTiled( 10, 375, 132, 45, 2624 );	//Section for Notices
			AddImageTiled( 146, 375, 395, 45, 2624 );	//Section across from Notices
			AddImageTiled( 10, 422, 530, 155, 2624 );	//Section where Exit is
			AddImageTiled( 10, 37, 200, 335, 2624 );	//Section for Categories
            AddImageTiled( 215, 37, 325, 335, 2624 );	//Section for Sublisted Items
			AddAlphaRegion( 10, 10, 530, 567 );
 
I think he wants to remove the Alpha regions :p

In which case, do what tass23 said, but in reverse lol (Remove the AddAlphaRegion calls)
 
I can not figure out how to replace the grid (the color yellow) on a fully such as the background (the red mark)
56.jpg 57.jpg
 
Last edited:
Back