It is. It's in the Gui window which is showing up.
Called from onCreated()
PHP Code:
function CreateMapGUI() {
new GuiControl("MapControl") {
useownprofile = true;
profile.border = 0;
x = screenwidth - (MapControl.width);
y = -10;
width = 145;
height = 160;
new GuiShowImgCtrl("Map_bgimg") {
image = thiso.mapbgimg;
width = getimgwidth(thiso.mapbgimg);
height = getimgheight(thiso.mapbgimg);
horizsizing = "right";
vertsizing = "top";
layer = 4;
x = y = 0;
}
new GuiScrollCtrl("Map_scroll") {
profile = GuiBlueScrollProfile;
useOwnProfile = true;
profile.border = 1;
profile.borderthickness = 1;
hScrollBar = vScrollBar = "alwaysOff";
horizsizing = "right";
vertsizing = "top";
width = 118;
height = 117;
x = 6;
y = 24;
new GuiShowImgCtrl("Map_levelimg") {
image = thiso.mapimg;
width = getimgwidth(thiso.mapimg);
height = getimgheight(thiso.mapimg);
red = blue = green = 0.95;
layer = 5;
x = y = 0;
}
}
}
}