//Sets the background sprites for this message board.
//argument0 - Background string

if(nullcheck(argument0)) argument0 = "BG1";

//Default
if(argument0 == "BG1")
{
global.mbc_general = c_navy;
global.mbc_header = c_black;
global.mbc_highlight = c_blue;
global.mbc_option = c_white;
}
//Database
else if(argument0 == "BG2")
{
global.mbc_general = c_black;
global.mbc_header = c_white;
global.mbc_highlight = c_aqua;
global.mbc_option = c_blue;
}
//Prairie Flats
else if(argument0 == "BG3")
{
global.mbc_general = c_yellow;
global.mbc_header = c_white;
global.mbc_highlight = c_red;
global.mbc_option = c_maroon;
}