# Create Dialog Item (Label)

Grammar — Create a label for dialog dialog with the dimensions (width, height) anchored to anchor with an offset of (offsetX, offsetY) with the text text color set to color text writeout set to textWriteout with a writeout duration of textWriteoutDuration
FlagsAction

Creates a label dialog item, using parameters to set up the essential properties for the label. If text writeout is set to true, the text that appears within the label will animate as if being written out a single character at a time. Text writeout duration will only work if text writeout is set to true.

# Arguments

  • int<dialog> — Dialog
  • int — Width
  • int — Height
  • int<preset::Anchor> — Anchor
  • int — Offset X
  • int — Offset Y
  • text — Text
  • color — Color
  • bool — Text Writeout
  • fixed — Text Writeout Duration

Returns — int<control>

int libNtve_gf_CreateDialogItemLabel(
	int lp_dialog,
	int lp_width,
	int lp_height,
	int lp_anchor,
	int lp_offsetX,
	int lp_offsetY,
	text lp_text,
	color lp_color,
	bool lp_textWriteout,
	fixed lp_textWriteoutDuration,
);

Category: Dialog / Create Specific Dialog Item Actions

# Examples

campaigns/liberty.sc2campaignbase.sc2maps/maps/campaign/thorner05s.sc2map/MapScript.galaxy:3039

    libNtve_gf_DisplayScreenButton(gv_computer01SecurityCam, StringExternal("Param/Value/5C7FD2E2"), gv_buttonSizeWidth, gv_buttonSizeHeight, c_anchorRight, 0, -400, gt_Computer01CameraActivated);
    gv_buttonComputer01SecurityCam = libNtve_gf_ScreenButtonDialog(gv_computer01SecurityCam);
    libNtve_gf_CreateDialogItemLabel(gv_buttonComputer01SecurityCam, gv_labelDimensionWidth, gv_labelDimensionHeight, c_anchorTopLeft, gv_labelOffsetWidth, gv_labelOffsetHeight, StringExternal("Param/Value/DCBED363"), Color(100,100,100), false, 2.0);
    DialogSetVisible(gv_buttonComputer01SecurityCam, PlayerGroupAll(), true);
    libNtve_gf_FlashScreenButton(gv_computer01SecurityCam, 2.0, ColorWithAlpha(0.00, 0.00, 100.00, 0.00), ColorWithAlpha(0.00, 0.00, 0.00, 0.00));

campaigns/liberty.sc2campaignbase.sc2maps/maps/campaign/thorner05s.sc2map/MapScript.galaxy:3159

    libNtve_gf_DisplayScreenButton(gv_computer01DeactivateLeftFloorGuns, StringExternal("Param/Value/F81CFBC7"), gv_buttonSizeWidth, gv_buttonSizeHeight, c_anchorRight, 0, -350, gt_Computer01CameraGunsLeftDisabled);
    gv_buttonComputer01DeactivateLeftFloorGuns = libNtve_gf_ScreenButtonDialog(gv_computer01DeactivateLeftFloorGuns);
    libNtve_gf_CreateDialogItemLabel(gv_buttonComputer01DeactivateLeftFloorGuns, gv_labelDimensionWidth, gv_labelDimensionHeight, c_anchorTopLeft, gv_labelOffsetWidth, gv_labelOffsetHeight, StringExternal("Param/Value/9E1B7C4C"), Color(100,100,100), false, 2.0);
    DialogSetVisible(gv_buttonComputer01DeactivateLeftFloorGuns, PlayerGroupAll(), true);
    libNtve_gf_FlashScreenButton(gv_computer01DeactivateLeftFloorGuns, 2.0, ColorWithAlpha(0.00, 0.00, 100.00, 0.00), ColorWithAlpha(0.00, 0.00, 0.00, 0.00));

campaigns/liberty.sc2campaignbase.sc2maps/maps/campaign/thorner05s.sc2map/MapScript.galaxy:3164

    libNtve_gf_DisplayScreenButton(gv_computer01DeactivateRightFloorGuns, StringExternal("Param/Value/CC9ADFD9"), gv_buttonSizeWidth, gv_buttonSizeHeight, c_anchorRight, 0, -250, gt_Computer01CameraGunsRightDisabled);
    gv_buttonComputer01DeactivateRightFloorGuns = libNtve_gf_ScreenButtonDialog(gv_computer01DeactivateRightFloorGuns);
    libNtve_gf_CreateDialogItemLabel(gv_buttonComputer01DeactivateRightFloorGuns, gv_labelDimensionWidth, gv_labelDimensionHeight, c_anchorTopLeft, gv_labelOffsetWidth, gv_labelOffsetHeight, StringExternal("Param/Value/9C1BA11F"), Color(100,100,100), false, 2.0);
    DialogSetVisible(gv_buttonComputer01DeactivateRightFloorGuns, PlayerGroupAll(), true);
    libNtve_gf_FlashScreenButton(gv_computer01DeactivateRightFloorGuns, 2.0, ColorWithAlpha(0.00, 0.00, 100.00, 0.00), ColorWithAlpha(0.00, 0.00, 0.00, 0.00));

campaigns/liberty.sc2campaignbase.sc2maps/maps/campaign/thorner05s.sc2map/MapScript.galaxy:4028


    gv_buttonComputer02ReleaseZealots = libNtve_gf_ScreenButtonDialog(gv_computer02ReleaseZealots);
    libNtve_gf_CreateDialogItemLabel(gv_buttonComputer02ReleaseZealots, gv_labelDimensionWidth, gv_labelDimensionHeight, c_anchorTopLeft, gv_labelOffsetWidth, gv_labelOffsetHeight, StringExternal("Param/Value/31FE07F1"), Color(100,100,100), false, 2.0);
    DialogSetVisible(DialogLastCreated(), PlayerGroupAll(), true);
    libNtve_gf_FlashScreenButton(gv_computer02ReleaseZealots, 2.0, ColorWithAlpha(0.00, 0.00, 100.00, 0.00), ColorWithAlpha(0.00, 0.00, 0.00, 0.00));

campaigns/liberty.sc2campaignbase.sc2maps/maps/campaign/thorner05s.sc2map/MapScript.galaxy:4048


    gv_buttonComputer02ReleaseZerg = libNtve_gf_ScreenButtonDialog(gv_computer02ReleaseZerg);
    libNtve_gf_CreateDialogItemLabel(gv_buttonComputer02ReleaseZerg, gv_labelDimensionWidth, gv_labelDimensionHeight, c_anchorTopLeft, gv_labelOffsetWidth, gv_labelOffsetHeight, StringExternal("Param/Value/0E6B1062"), Color(100,100,100), false, 2.0);
    DialogSetVisible(DialogLastCreated(), PlayerGroupAll(), true);
    libNtve_gf_FlashScreenButton(gv_computer02ReleaseZerg, 2.0, ColorWithAlpha(0.00, 0.00, 100.00, 0.00), ColorWithAlpha(0.00, 0.00, 0.00, 0.00));

campaigns/liberty.sc2campaignbase.sc2maps/maps/campaign/thorner05s.sc2map/MapScript.galaxy:4068


    gv_buttonComputer02Ultras = libNtve_gf_ScreenButtonDialog(gv_computer02ReleaseUltras);
    libNtve_gf_CreateDialogItemLabel(gv_buttonComputer02Ultras, gv_labelDimensionWidth, gv_labelOffsetHeight, c_anchorTopLeft, gv_labelOffsetWidth, gv_labelOffsetHeight, StringExternal("Param/Value/CC5D376D"), Color(100,100,100), false, 2.0);
    DialogSetVisible(DialogLastCreated(), PlayerGroupAll(), true);
    libNtve_gf_FlashScreenButton(gv_computer02ReleaseUltras, 2.0, ColorWithAlpha(0.00, 0.00, 100.00, 0.00), ColorWithAlpha(0.00, 0.00, 0.00, 0.00));

campaigns/liberty.sc2campaignbase.sc2maps/maps/campaign/thorner05s.sc2map/MapScript.galaxy:4835

    libNtve_gf_DisplayScreenButton(gv_computer04AddMissile, StringExternal("Param/Value/0CA5CD4B"), gv_buttonSizeWidth, gv_buttonSizeHeight, c_anchorRight, 0, gv_button1stPositionHeight, gt_Computer04AddMissile);
    gv_buttonComputer04Missile = libNtve_gf_ScreenButtonDialog(gv_computer04AddMissile);
    libNtve_gf_CreateDialogItemLabel(gv_buttonComputer04Missile, gv_labelDimensionWidth, gv_labelDimensionHeight, c_anchorTopLeft, gv_labelOffsetWidth, gv_labelOffsetHeight, StringExternal("Param/Value/48B84FF9"), Color(100,100,100), false, 2.0);
    DialogSetVisible(DialogLastCreated(), PlayerGroupAll(), true);
    libNtve_gf_FlashScreenButton(gv_computer04AddMissile, 2.0, ColorWithAlpha(0.00, 0.00, 100.00, 0.00), ColorWithAlpha(0.00, 0.00, 0.00, 0.00));

campaigns/liberty.sc2campaignbase.sc2maps/maps/campaign/thorner05s.sc2map/MapScript.galaxy:4840

    libNtve_gf_DisplayScreenButton(gv_computer04AddNapalm, StringExternal("Param/Value/E59B7255"), gv_buttonSizeWidth, gv_buttonSizeHeight, c_anchorRight, 0, gv_button2ndPositionHeight, gt_Computer04AddNapalm);
    gv_buttonComputer04Napalm = libNtve_gf_ScreenButtonDialog(gv_computer04AddNapalm);
    libNtve_gf_CreateDialogItemLabel(gv_buttonComputer04Napalm, gv_labelDimensionWidth, gv_labelOffsetHeight, c_anchorTopLeft, gv_labelOffsetWidth, gv_labelOffsetHeight, StringExternal("Param/Value/E94F8409"), Color(100,100,100), false, 2.0);
    DialogSetVisible(DialogLastCreated(), PlayerGroupAll(), true);
    libNtve_gf_FlashScreenButton(gv_computer04AddNapalm, 2.0, ColorWithAlpha(0.00, 0.00, 100.00, 0.00), ColorWithAlpha(0.00, 0.00, 0.00, 0.00));

campaigns/liberty.sc2campaignbase.sc2maps/maps/campaign/thorner05s.sc2map/MapScript.galaxy:4845

    libNtve_gf_DisplayScreenButton(gv_computer04AddGatlingGun, StringExternal("Param/Value/68B52C1E"), gv_buttonSizeWidth, gv_buttonSizeHeight, c_anchorRight, 0, gv_button3rdPositionHeight, gt_Computer04AddCannons);
    gv_buttonComputer04GatlingGun = libNtve_gf_ScreenButtonDialog(gv_computer04AddGatlingGun);
    libNtve_gf_CreateDialogItemLabel(gv_buttonComputer04GatlingGun, gv_labelDimensionWidth, gv_labelOffsetHeight, c_anchorTopLeft, gv_labelOffsetWidth, gv_labelOffsetHeight, StringExternal("Param/Value/141ECFDD"), Color(100,100,100), false, 2.0);
    DialogSetVisible(DialogLastCreated(), PlayerGroupAll(), true);
    libNtve_gf_FlashScreenButton(gv_computer04AddGatlingGun, 2.0, ColorWithAlpha(0.00, 0.00, 100.00, 0.00), ColorWithAlpha(0.00, 0.00, 0.00, 0.00));

campaigns/liberty.sc2campaignbase.sc2maps/maps/campaign/thorner05s.sc2map/MapScript.galaxy:5273

    libNtve_gf_DisplayScreenButton(gv_computer05MarineButton, StringExternal("Param/Value/C0D11339"), gv_buttonSizeWidth, gv_buttonSizeHeight, c_anchorRight, 0, gv_button1stPositionHeight, gt_Computer05Marines);
    gv_buttonComputer05Marine = libNtve_gf_ScreenButtonDialog(gv_computer05MarineButton);
    libNtve_gf_CreateDialogItemLabel(gv_buttonComputer05Marine, gv_labelDimensionWidth, gv_labelOffsetHeight, c_anchorTopLeft, gv_labelOffsetWidth, gv_labelOffsetHeight, StringExternal("Param/Value/B8A55D31"), Color(100,100,100), false, 2.0);
    DialogSetVisible(DialogLastCreated(), PlayerGroupAll(), true);
    libNtve_gf_FlashScreenButton(gv_computer05MarineButton, 2.0, ColorWithAlpha(0.00, 0.00, 100.00, 0.00), ColorWithAlpha(0.00, 0.00, 0.00, 0.00));

campaigns/liberty.sc2campaignbase.sc2maps/maps/campaign/ttutorial01.sc2map/MapScript.galaxy:1276

    PortraitSetModel(gv_cinematicWindow, "AdjutantPortrait_L", false);
    PortraitSetVisible(gv_cinematicWindow, PlayerGroupAll(), true, false);
    libNtve_gf_CreateDialogItemLabel(gv_mainDialog, lv_itemWidth, lv_itemHeight, c_anchorTop, 88, 165, TextCase(StringExternal("Param/Value/E60F4B90"), true), Color(100,100,100), false, 2.0);
    gv_mainLabel = DialogControlLastCreated();
    libNtve_gf_SetDialogItemStyle(DialogControlLastCreated(), "TutorialMenuTitle", PlayerGroupAll());

campaigns/liberty.sc2campaign/base.sc2maps/maps/campaign/thorner05s.sc2mapMapScript.galaxy:3039

    libNtve_gf_DisplayScreenButton(gv_computer01SecurityCam, StringExternal("Param/Value/5C7FD2E2"), gv_buttonSizeWidth, gv_buttonSizeHeight, c_anchorRight, 0, -400, gt_Computer01CameraActivated);
    gv_buttonComputer01SecurityCam = libNtve_gf_ScreenButtonDialog(gv_computer01SecurityCam);
    libNtve_gf_CreateDialogItemLabel(gv_buttonComputer01SecurityCam, gv_labelDimensionWidth, gv_labelDimensionHeight, c_anchorTopLeft, gv_labelOffsetWidth, gv_labelOffsetHeight, StringExternal("Param/Value/DCBED363"), Color(100,100,100), false, 2.0);
    DialogSetVisible(gv_buttonComputer01SecurityCam, PlayerGroupAll(), true);
    libNtve_gf_FlashScreenButton(gv_computer01SecurityCam, 2.0, ColorWithAlpha(0.00, 0.00, 100.00, 0.00), ColorWithAlpha(0.00, 0.00, 0.00, 0.00));

campaigns/liberty.sc2campaign/base.sc2maps/maps/campaign/thorner05s.sc2mapMapScript.galaxy:3159

    libNtve_gf_DisplayScreenButton(gv_computer01DeactivateLeftFloorGuns, StringExternal("Param/Value/F81CFBC7"), gv_buttonSizeWidth, gv_buttonSizeHeight, c_anchorRight, 0, -350, gt_Computer01CameraGunsLeftDisabled);
    gv_buttonComputer01DeactivateLeftFloorGuns = libNtve_gf_ScreenButtonDialog(gv_computer01DeactivateLeftFloorGuns);
    libNtve_gf_CreateDialogItemLabel(gv_buttonComputer01DeactivateLeftFloorGuns, gv_labelDimensionWidth, gv_labelDimensionHeight, c_anchorTopLeft, gv_labelOffsetWidth, gv_labelOffsetHeight, StringExternal("Param/Value/9E1B7C4C"), Color(100,100,100), false, 2.0);
    DialogSetVisible(gv_buttonComputer01DeactivateLeftFloorGuns, PlayerGroupAll(), true);
    libNtve_gf_FlashScreenButton(gv_computer01DeactivateLeftFloorGuns, 2.0, ColorWithAlpha(0.00, 0.00, 100.00, 0.00), ColorWithAlpha(0.00, 0.00, 0.00, 0.00));

campaigns/liberty.sc2campaign/base.sc2maps/maps/campaign/thorner05s.sc2mapMapScript.galaxy:3164

    libNtve_gf_DisplayScreenButton(gv_computer01DeactivateRightFloorGuns, StringExternal("Param/Value/CC9ADFD9"), gv_buttonSizeWidth, gv_buttonSizeHeight, c_anchorRight, 0, -250, gt_Computer01CameraGunsRightDisabled);
    gv_buttonComputer01DeactivateRightFloorGuns = libNtve_gf_ScreenButtonDialog(gv_computer01DeactivateRightFloorGuns);
    libNtve_gf_CreateDialogItemLabel(gv_buttonComputer01DeactivateRightFloorGuns, gv_labelDimensionWidth, gv_labelDimensionHeight, c_anchorTopLeft, gv_labelOffsetWidth, gv_labelOffsetHeight, StringExternal("Param/Value/9C1BA11F"), Color(100,100,100), false, 2.0);
    DialogSetVisible(gv_buttonComputer01DeactivateRightFloorGuns, PlayerGroupAll(), true);
    libNtve_gf_FlashScreenButton(gv_computer01DeactivateRightFloorGuns, 2.0, ColorWithAlpha(0.00, 0.00, 100.00, 0.00), ColorWithAlpha(0.00, 0.00, 0.00, 0.00));

campaigns/liberty.sc2campaign/base.sc2maps/maps/campaign/thorner05s.sc2mapMapScript.galaxy:4028


    gv_buttonComputer02ReleaseZealots = libNtve_gf_ScreenButtonDialog(gv_computer02ReleaseZealots);
    libNtve_gf_CreateDialogItemLabel(gv_buttonComputer02ReleaseZealots, gv_labelDimensionWidth, gv_labelDimensionHeight, c_anchorTopLeft, gv_labelOffsetWidth, gv_labelOffsetHeight, StringExternal("Param/Value/31FE07F1"), Color(100,100,100), false, 2.0);
    DialogSetVisible(DialogLastCreated(), PlayerGroupAll(), true);
    libNtve_gf_FlashScreenButton(gv_computer02ReleaseZealots, 2.0, ColorWithAlpha(0.00, 0.00, 100.00, 0.00), ColorWithAlpha(0.00, 0.00, 0.00, 0.00));

campaigns/liberty.sc2campaign/base.sc2maps/maps/campaign/thorner05s.sc2mapMapScript.galaxy:4048


    gv_buttonComputer02ReleaseZerg = libNtve_gf_ScreenButtonDialog(gv_computer02ReleaseZerg);
    libNtve_gf_CreateDialogItemLabel(gv_buttonComputer02ReleaseZerg, gv_labelDimensionWidth, gv_labelDimensionHeight, c_anchorTopLeft, gv_labelOffsetWidth, gv_labelOffsetHeight, StringExternal("Param/Value/0E6B1062"), Color(100,100,100), false, 2.0);
    DialogSetVisible(DialogLastCreated(), PlayerGroupAll(), true);
    libNtve_gf_FlashScreenButton(gv_computer02ReleaseZerg, 2.0, ColorWithAlpha(0.00, 0.00, 100.00, 0.00), ColorWithAlpha(0.00, 0.00, 0.00, 0.00));

campaigns/liberty.sc2campaign/base.sc2maps/maps/campaign/thorner05s.sc2mapMapScript.galaxy:4068


    gv_buttonComputer02Ultras = libNtve_gf_ScreenButtonDialog(gv_computer02ReleaseUltras);
    libNtve_gf_CreateDialogItemLabel(gv_buttonComputer02Ultras, gv_labelDimensionWidth, gv_labelOffsetHeight, c_anchorTopLeft, gv_labelOffsetWidth, gv_labelOffsetHeight, StringExternal("Param/Value/CC5D376D"), Color(100,100,100), false, 2.0);
    DialogSetVisible(DialogLastCreated(), PlayerGroupAll(), true);
    libNtve_gf_FlashScreenButton(gv_computer02ReleaseUltras, 2.0, ColorWithAlpha(0.00, 0.00, 100.00, 0.00), ColorWithAlpha(0.00, 0.00, 0.00, 0.00));

campaigns/liberty.sc2campaign/base.sc2maps/maps/campaign/thorner05s.sc2mapMapScript.galaxy:4835

    libNtve_gf_DisplayScreenButton(gv_computer04AddMissile, StringExternal("Param/Value/0CA5CD4B"), gv_buttonSizeWidth, gv_buttonSizeHeight, c_anchorRight, 0, gv_button1stPositionHeight, gt_Computer04AddMissile);
    gv_buttonComputer04Missile = libNtve_gf_ScreenButtonDialog(gv_computer04AddMissile);
    libNtve_gf_CreateDialogItemLabel(gv_buttonComputer04Missile, gv_labelDimensionWidth, gv_labelDimensionHeight, c_anchorTopLeft, gv_labelOffsetWidth, gv_labelOffsetHeight, StringExternal("Param/Value/48B84FF9"), Color(100,100,100), false, 2.0);
    DialogSetVisible(DialogLastCreated(), PlayerGroupAll(), true);
    libNtve_gf_FlashScreenButton(gv_computer04AddMissile, 2.0, ColorWithAlpha(0.00, 0.00, 100.00, 0.00), ColorWithAlpha(0.00, 0.00, 0.00, 0.00));

campaigns/liberty.sc2campaign/base.sc2maps/maps/campaign/thorner05s.sc2mapMapScript.galaxy:4840

    libNtve_gf_DisplayScreenButton(gv_computer04AddNapalm, StringExternal("Param/Value/E59B7255"), gv_buttonSizeWidth, gv_buttonSizeHeight, c_anchorRight, 0, gv_button2ndPositionHeight, gt_Computer04AddNapalm);
    gv_buttonComputer04Napalm = libNtve_gf_ScreenButtonDialog(gv_computer04AddNapalm);
    libNtve_gf_CreateDialogItemLabel(gv_buttonComputer04Napalm, gv_labelDimensionWidth, gv_labelOffsetHeight, c_anchorTopLeft, gv_labelOffsetWidth, gv_labelOffsetHeight, StringExternal("Param/Value/E94F8409"), Color(100,100,100), false, 2.0);
    DialogSetVisible(DialogLastCreated(), PlayerGroupAll(), true);
    libNtve_gf_FlashScreenButton(gv_computer04AddNapalm, 2.0, ColorWithAlpha(0.00, 0.00, 100.00, 0.00), ColorWithAlpha(0.00, 0.00, 0.00, 0.00));

campaigns/liberty.sc2campaign/base.sc2maps/maps/campaign/thorner05s.sc2mapMapScript.galaxy:4845

    libNtve_gf_DisplayScreenButton(gv_computer04AddGatlingGun, StringExternal("Param/Value/68B52C1E"), gv_buttonSizeWidth, gv_buttonSizeHeight, c_anchorRight, 0, gv_button3rdPositionHeight, gt_Computer04AddCannons);
    gv_buttonComputer04GatlingGun = libNtve_gf_ScreenButtonDialog(gv_computer04AddGatlingGun);
    libNtve_gf_CreateDialogItemLabel(gv_buttonComputer04GatlingGun, gv_labelDimensionWidth, gv_labelOffsetHeight, c_anchorTopLeft, gv_labelOffsetWidth, gv_labelOffsetHeight, StringExternal("Param/Value/141ECFDD"), Color(100,100,100), false, 2.0);
    DialogSetVisible(DialogLastCreated(), PlayerGroupAll(), true);
    libNtve_gf_FlashScreenButton(gv_computer04AddGatlingGun, 2.0, ColorWithAlpha(0.00, 0.00, 100.00, 0.00), ColorWithAlpha(0.00, 0.00, 0.00, 0.00));

campaigns/liberty.sc2campaign/base.sc2maps/maps/campaign/thorner05s.sc2mapMapScript.galaxy:5273

    libNtve_gf_DisplayScreenButton(gv_computer05MarineButton, StringExternal("Param/Value/C0D11339"), gv_buttonSizeWidth, gv_buttonSizeHeight, c_anchorRight, 0, gv_button1stPositionHeight, gt_Computer05Marines);
    gv_buttonComputer05Marine = libNtve_gf_ScreenButtonDialog(gv_computer05MarineButton);
    libNtve_gf_CreateDialogItemLabel(gv_buttonComputer05Marine, gv_labelDimensionWidth, gv_labelOffsetHeight, c_anchorTopLeft, gv_labelOffsetWidth, gv_labelOffsetHeight, StringExternal("Param/Value/B8A55D31"), Color(100,100,100), false, 2.0);
    DialogSetVisible(DialogLastCreated(), PlayerGroupAll(), true);
    libNtve_gf_FlashScreenButton(gv_computer05MarineButton, 2.0, ColorWithAlpha(0.00, 0.00, 100.00, 0.00), ColorWithAlpha(0.00, 0.00, 0.00, 0.00));

campaigns/liberty.sc2campaign/base.sc2maps/maps/campaign/ttutorial01.sc2mapMapScript.galaxy:1276

    PortraitSetModel(gv_cinematicWindow, "AdjutantPortrait_L", false);
    PortraitSetVisible(gv_cinematicWindow, PlayerGroupAll(), true, false);
    libNtve_gf_CreateDialogItemLabel(gv_mainDialog, lv_itemWidth, lv_itemHeight, c_anchorTop, 88, 165, TextCase(StringExternal("Param/Value/E60F4B90"), true), Color(100,100,100), false, 2.0);
    gv_mainLabel = DialogControlLastCreated();
    libNtve_gf_SetDialogItemStyle(DialogControlLastCreated(), "TutorialMenuTitle", PlayerGroupAll());

campaigns/libertystory.sc2campaignbase.sc2data/TriggerLibs/CampaignLib.galaxy:10962

    }
    lv_missionCount = lv_index;
    libNtve_gf_CreateDialogItemLabel(DialogLastCreated(), 400, 50, c_anchorTopLeft, 50, 50, StringExternal("Param/Value/lib_Camp_116FA9E9"), Color(100,100,100), false, 2.0);
    auto837EA1E9_ae = lv_missionCount;
    lv_index = 1;

campaigns/swarm.sc2campaignbase.sc2maps/maps/campaign/swarm/zstoryspace.sc2map/MapScript.galaxy:726

    DialogControlCreateFromTemplate(DialogLastCreated(), c_triggerControlTypeImage, "HotS_FullscreenImage/FullscreenImageTemplate");
    libNtve_gf_SetDialogItemImage(DialogControlLastCreated(), "Assets\\Textures\\ui_hots_loading_missionselect_zspace02.dds", PlayerGroupAll());
    libNtve_gf_CreateDialogItemLabel(DialogLastCreated(), 600, 50, c_anchorBottom, 0, 200, StringExternal("Param/Value/83CF7AAA"), Color(100,100,100), false, 2.0);
    libNtve_gf_SetDialogItemStyle(DialogControlLastCreated(), "LoadingScreenTitle", PlayerGroupAll());
    DialogSetVisible(gv_cutsceneLoadingDialog, PlayerGroupAll(), true);

campaigns/swarm.sc2campaignbase.sc2maps/maps/campaign/voidprologue/voidprologue03.sc2map/MapScript.galaxy:5068

    gv_s3EscapeDialog = DialogLastCreated();
    DialogSetImageVisible(gv_s3EscapeDialog, false);
    libNtve_gf_CreateDialogItemLabel(gv_s3EscapeDialog, 500, 50, c_anchorTop, 0, 0, StringExternal("Param/Value/4EFBCEEE"), ColorWithAlpha(0,0,0,0), false, 2.0);
    gv_s3EscapeDialogTitle = DialogControlLastCreated();
    libNtve_gf_SetDialogItemStyle(gv_s3EscapeDialogTitle, "AmonShadowTextTitle", PlayerGroupAll());

campaigns/swarm.sc2campaignbase.sc2maps/maps/campaign/voidprologue/voidprologue03.sc2map/MapScript.galaxy:5072

    libNtve_gf_SetDialogItemStyle(gv_s3EscapeDialogTitle, "AmonShadowTextTitle", PlayerGroupAll());
    DialogControlSetVisible(gv_s3EscapeDialogTitle, PlayerGroupAll(), true);
    libNtve_gf_CreateDialogItemLabel(gv_s3EscapeDialog, 500, 50, c_anchorTop, 0, 50, TextTimeFormat(StringToText("<mintotal/>:<sec2/>"), FixedToInt(TimerGetRemaining(gv_s3EscapeTimer))), ColorWithAlpha(0,0,0,0), false, 2.0);
    gv_s3EscapeDialogTimeRemaining = DialogControlLastCreated();
    libNtve_gf_SetDialogItemStyle(gv_s3EscapeDialogTimeRemaining, "AmonShadowTextScore", PlayerGroupAll());

campaigns/swarm.sc2campaign/base.sc2maps/maps/campaign/swarm/zstoryspace.sc2mapMapScript.galaxy:726

    DialogControlCreateFromTemplate(DialogLastCreated(), c_triggerControlTypeImage, "HotS_FullscreenImage/FullscreenImageTemplate");
    libNtve_gf_SetDialogItemImage(DialogControlLastCreated(), "Assets\\Textures\\ui_hots_loading_missionselect_zspace02.dds", PlayerGroupAll());
    libNtve_gf_CreateDialogItemLabel(DialogLastCreated(), 600, 50, c_anchorBottom, 0, 200, StringExternal("Param/Value/83CF7AAA"), Color(100,100,100), false, 2.0);
    libNtve_gf_SetDialogItemStyle(DialogControlLastCreated(), "LoadingScreenTitle", PlayerGroupAll());
    DialogSetVisible(gv_cutsceneLoadingDialog, PlayerGroupAll(), true);

campaigns/swarm.sc2campaign/base.sc2maps/maps/campaign/voidprologue/voidprologue03.sc2mapMapScript.galaxy:5068

    gv_s3EscapeDialog = DialogLastCreated();
    DialogSetImageVisible(gv_s3EscapeDialog, false);
    libNtve_gf_CreateDialogItemLabel(gv_s3EscapeDialog, 500, 50, c_anchorTop, 0, 0, StringExternal("Param/Value/4EFBCEEE"), ColorWithAlpha(0,0,0,0), false, 2.0);
    gv_s3EscapeDialogTitle = DialogControlLastCreated();
    libNtve_gf_SetDialogItemStyle(gv_s3EscapeDialogTitle, "AmonShadowTextTitle", PlayerGroupAll());

campaigns/swarm.sc2campaign/base.sc2maps/maps/campaign/voidprologue/voidprologue03.sc2mapMapScript.galaxy:5072

    libNtve_gf_SetDialogItemStyle(gv_s3EscapeDialogTitle, "AmonShadowTextTitle", PlayerGroupAll());
    DialogControlSetVisible(gv_s3EscapeDialogTitle, PlayerGroupAll(), true);
    libNtve_gf_CreateDialogItemLabel(gv_s3EscapeDialog, 500, 50, c_anchorTop, 0, 50, TextTimeFormat(StringToText("<mintotal/>:<sec2/>"), FixedToInt(TimerGetRemaining(gv_s3EscapeTimer))), ColorWithAlpha(0,0,0,0), false, 2.0);
    gv_s3EscapeDialogTimeRemaining = DialogControlLastCreated();
    libNtve_gf_SetDialogItemStyle(gv_s3EscapeDialogTimeRemaining, "AmonShadowTextScore", PlayerGroupAll());

campaigns/swarmstory.sc2campaignbase.sc2data/TriggerLibs/SwarmCampaignLib.galaxy:4436

    DialogControlHookup(lv_panel, c_triggerControlTypeLabel, "PointsLabel");
    libNtve_gf_SetDialogItemText(DialogControlLastCreated(), StringToText(CatalogFieldValueGet(c_gameCatalogAchievement, lp_achievement, "Points", 1)), PlayerGroupAll());
    libNtve_gf_CreateDialogItemLabel(lv_achievementDialog, 200, 50, c_anchorTop, 0, 100, StringExternal("Param/Value/lib_SwaC_D4EA7C13"), Color(100.00, 0.00, 0.00), false, 2.0);
    DialogControlFadeTransparency(DialogControlLastCreated(), PlayerGroupAll(), 0.0, 60.0);
    while (true) {

campaigns/swarmstory.sc2campaignbase.sc2data/TriggerLibs/SwarmCampaignLib.galaxy:9688

                DialogControlSetPositionRelative(DialogControlLastCreated(), PlayerGroupAll(), c_anchorLeft, lv_border, c_anchorLeft, (((lv_upgradeIndex - 1) * 225) + 12), 0);
                TextExpressionSetToken("Param/Expression/lib_SwaC_CE6787DB", "A", libSwaC_gf_ZS_StoryArmyUpgradeName(lv_indexUpgrade));
                libNtve_gf_CreateDialogItemLabel(DialogLastCreated(), 182, 80, c_anchorLeft, 50, 50, TextExpressionAssemble("Param/Expression/lib_SwaC_CE6787DB"), Color(100,100,100), false, 2.0);
                libSwaC_gv_zS_ArmyCustomArchivesUpgradeLabel[lv_categoryIndex][lv_upgradeIndex] = DialogControlLastCreated();
                DialogControlSetPositionRelative(DialogControlLastCreated(), PlayerGroupAll(), c_anchorLeft, libSwaC_gv_zS_ArmyCustomArchivesUpgradeCheck[lv_categoryIndex][lv_upgradeIndex], c_anchorRight, 3, 0);

campaigns/swarmstory.sc2campaignbase.sc2data/TriggerLibs/SwarmCampaignLib.galaxy:9707

                libSwaC_gv_zS_ArmyCustomArchivesEvolutionCheck[lv_categoryIndex][lv_evoIndex] = DialogControlLastCreated();
                DialogControlSetPositionRelative(DialogControlLastCreated(), PlayerGroupAll(), c_anchorLeft, lv_border, c_anchorLeft, (((lv_evoIndex - 1) * 190) + 12), 0);
                libNtve_gf_CreateDialogItemLabel(DialogLastCreated(), 150, 80, c_anchorLeft, 50, 50, libSwaC_gf_StoryArmyUnitName(lv_indexEvo), Color(100,100,100), false, 2.0);
                libSwaC_gv_zS_ArmyCustomArchivesEvolutionLabel[lv_categoryIndex][lv_evoIndex] = DialogControlLastCreated();
                DialogControlSetPositionRelative(DialogControlLastCreated(), PlayerGroupAll(), c_anchorLeft, libSwaC_gv_zS_ArmyCustomArchivesEvolutionCheck[lv_categoryIndex][lv_evoIndex], c_anchorRight, 0, 0);

campaigns/swarmstory.sc2campaignbase.sc2data/TriggerLibs/SwarmCampaignLib.galaxy:14673

    libNtve_gf_SetDialogItemHandle(DialogControlLastCreated(), "HotS_DebugProgress_ResetButton", PlayerGroupAll());
    libSwaC_gv_zS_DebugProgressButtonReset = DialogControlLastCreated();
    libNtve_gf_CreateDialogItemLabel(DialogLastCreated(), 600, 400, c_anchorTopLeft, 50, 50, StringToText(""), Color(100,100,100), false, 2.0);
    libSwaC_gv_zS_DebugProgressLabelInfo = DialogControlLastCreated();
    libNtve_gf_SetDialogItemStyle(DialogControlLastCreated(), "DebugProgressPanelCampaignProgress", PlayerGroupAll());

campaigns/swarmstory.sc2campaignbase.sc2data/TriggerLibs/SwarmCampaignLib.galaxy:14680

    lv_offsetX = 5;
    lv_offsetY = 0;
    libNtve_gf_CreateDialogItemLabel(DialogLastCreated(), lv_width, lv_height, c_anchorTopLeft, 0, 0, StringExternal("Param/Value/lib_SwaC_56D7111D"), Color(100,100,100), false, 2.0);
    libNtve_gf_SetDialogItemStyle(DialogControlLastCreated(), "DebugProgressPanelLabelRequirement", PlayerGroupAll());
    lv_relativeButton = libNtve_gf_ValueFromDataTableDialogItem(true, libSwaC_gf_ZS_DebugProgressDataTableID("Button", ("ZExpedition1")));

campaigns/swarmstory.sc2campaignbase.sc2data/TriggerLibs/SwarmCampaignLib.galaxy:14696

    libNtve_gf_SaveDataTableValueDialogItem(true, libSwaC_gf_ZS_DebugProgressDataTableID("PlanetImage", ("Expedition")), DialogControlLastCreated());
    DialogControlSetPositionRelative(DialogControlLastCreated(), PlayerGroupAll(), c_anchorCenter, lv_travelButton, c_anchorCenter, 0, 0);
    libNtve_gf_CreateDialogItemLabel(DialogLastCreated(), lv_width, lv_height, c_anchorTopLeft, 0, 0, StringExternal("Param/Value/lib_SwaC_F303130C"), Color(100,100,100), false, 2.0);
    libNtve_gf_SetDialogItemStyle(DialogControlLastCreated(), "DebugProgressPanelLabelRequirement", PlayerGroupAll());
    lv_relativeButton = libNtve_gf_ValueFromDataTableDialogItem(true, libSwaC_gf_ZS_DebugProgressDataTableID("Button", ("ZChar1")));

campaigns/swarmstory.sc2campaignbase.sc2data/TriggerLibs/SwarmCampaignLib.galaxy:14712

    libNtve_gf_SaveDataTableValueDialogItem(true, libSwaC_gf_ZS_DebugProgressDataTableID("PlanetImage", ("Char")), DialogControlLastCreated());
    DialogControlSetPositionRelative(DialogControlLastCreated(), PlayerGroupAll(), c_anchorCenter, lv_travelButton, c_anchorCenter, 0, 0);
    libNtve_gf_CreateDialogItemLabel(DialogLastCreated(), lv_width, lv_height, c_anchorTopLeft, 0, 0, StringExternal("Param/Value/lib_SwaC_865850D5"), Color(100,100,100), false, 2.0);
    libNtve_gf_SetDialogItemStyle(DialogControlLastCreated(), "DebugProgressPanelLabelRequirement", PlayerGroupAll());
    lv_relativeButton = libNtve_gf_ValueFromDataTableDialogItem(true, libSwaC_gf_ZS_DebugProgressDataTableID("Button", ("ZZerus1")));

campaigns/swarmstory.sc2campaignbase.sc2data/TriggerLibs/SwarmCampaignLib.galaxy:14728

    libNtve_gf_SaveDataTableValueDialogItem(true, libSwaC_gf_ZS_DebugProgressDataTableID("PlanetImage", ("Zerus")), DialogControlLastCreated());
    DialogControlSetPositionRelative(DialogControlLastCreated(), PlayerGroupAll(), c_anchorCenter, lv_travelButton, c_anchorCenter, 0, 0);
    libNtve_gf_CreateDialogItemLabel(DialogLastCreated(), lv_width, lv_height, c_anchorTopLeft, 0, 0, StringExternal("Param/Value/lib_SwaC_60EDF0B7"), Color(100,100,100), false, 2.0);
    libNtve_gf_SetDialogItemStyle(DialogControlLastCreated(), "DebugProgressPanelLabelRequirement", PlayerGroupAll());
    lv_relativeButton = libNtve_gf_ValueFromDataTableDialogItem(true, libSwaC_gf_ZS_DebugProgressDataTableID("Button", ("ZHybrid1")));

campaigns/swarmstory.sc2campaignbase.sc2data/TriggerLibs/SwarmCampaignLib.galaxy:14744

    libNtve_gf_SaveDataTableValueDialogItem(true, libSwaC_gf_ZS_DebugProgressDataTableID("PlanetImage", ("Hybrid")), DialogControlLastCreated());
    DialogControlSetPositionRelative(DialogControlLastCreated(), PlayerGroupAll(), c_anchorCenter, lv_travelButton, c_anchorCenter, 0, 0);
    libNtve_gf_CreateDialogItemLabel(DialogLastCreated(), lv_width, lv_height, c_anchorTopLeft, 0, 0, StringExternal("Param/Value/lib_SwaC_63754777"), Color(100,100,100), false, 2.0);
    libNtve_gf_SetDialogItemStyle(DialogControlLastCreated(), "DebugProgressPanelLabelRequirement", PlayerGroupAll());
    lv_relativeButton = libNtve_gf_ValueFromDataTableDialogItem(true, libSwaC_gf_ZS_DebugProgressDataTableID("Button", ("ZSpace1")));

campaigns/swarmstory.sc2campaignbase.sc2data/TriggerLibs/SwarmCampaignLib.galaxy:14760

    libNtve_gf_SaveDataTableValueDialogItem(true, libSwaC_gf_ZS_DebugProgressDataTableID("PlanetImage", ("ZSpace1")), DialogControlLastCreated());
    DialogControlSetPositionRelative(DialogControlLastCreated(), PlayerGroupAll(), c_anchorCenter, lv_travelButton, c_anchorCenter, 0, 0);
    libNtve_gf_CreateDialogItemLabel(DialogLastCreated(), lv_width, 120, c_anchorTopLeft, 0, 0, StringExternal("Param/Value/lib_SwaC_17002842"), Color(100,100,100), false, 2.0);
    libNtve_gf_SetDialogItemStyle(DialogControlLastCreated(), "DebugProgressPanelLabelRequirement", PlayerGroupAll());
    lv_relativeButton = libNtve_gf_ValueFromDataTableDialogItem(true, libSwaC_gf_ZS_DebugProgressDataTableID("Button", ("ZKorhal1")));

campaigns/swarmstoryutil.sc2modbase.sc2data/Lib281DEC45.galaxy:817

    DialogSetFullscreen(lib281DEC45_gv_zSS_UIArchivesLoadingDialog, true);
    DialogSetImageVisible(lib281DEC45_gv_zSS_UIArchivesLoadingDialog, false);
    libNtve_gf_CreateDialogItemLabel(lib281DEC45_gv_zSS_UIArchivesLoadingDialog, 200, 50, c_anchorBottomLeft, 0, 0, StringExternal("Param/Value/lib_281DEC45_05ECE39E"), Color(254*100/255,138*100/255,14*100/255), false, 2.0);
    lib281DEC45_gv_zSS_UIArchivesLoadingLabel = DialogControlLastCreated();
    DialogControlSetPositionRelative(lib281DEC45_gv_zSS_UIArchivesLoadingLabel, PlayerGroupAll(), c_anchorTopRight, lib281DEC45_gv_zSS_UIArchivesMissionPanel, c_anchorBottomRight, 0, 0);

campaigns/swarmstoryutil.sc2modbase.sc2data/Lib281DEC45.galaxy:2387

    lib281DEC45_gv_zSS_DebugStoryInteractiveInstance[lib281DEC45_gv_zSS_DebugStoryInteractiveCount] = lp_userInstance;
    lib281DEC45_gv_zSS_DebugStoryInteractiveType[lib281DEC45_gv_zSS_DebugStoryInteractiveCount] = lp_userType;
    libNtve_gf_CreateDialogItemLabel(lib281DEC45_gv_zSS_DebugStoryDialog, lib281DEC45_gv_zSSC_DebugStoryNameWidth, 50, c_anchorTopLeft, 50, 50, lv_name, Color(100,100,100), false, 2.0);
    lib281DEC45_gv_zSS_DebugStoryInteractiveLabel[lib281DEC45_gv_zSS_DebugStoryInteractiveCount] = DialogControlLastCreated();
    libNtve_gf_SetDialogItemStyle(DialogControlLastCreated(), "ModCenterSize20", PlayerGroupAll());

campaigns/swarmstoryutil.sc2modbase.sc2data/Lib281DEC45.galaxy:7755

    libNtve_gf_CreateDialogItemButton(lib281DEC45_gv_zSS_DebugStoryDialog, 200, 50, c_anchorBottomLeft, 50, 50, StringToText(""), StringExternal("Param/Value/lib_281DEC45_9185878E"), "");
    lib281DEC45_gv_zSS_DebugStoryLoadButton = DialogControlLastCreated();
    libNtve_gf_CreateDialogItemLabel(lib281DEC45_gv_zSS_DebugStoryDialog, 200, 50, c_anchorTopLeft, 50, 50, StringExternal("Param/Value/lib_281DEC45_EBC1823B"), Color(100,100,100), false, 2.0);
    lib281DEC45_gv_zSS_DebugStoryKerriganTypeLabel = DialogControlLastCreated();
    DialogControlSetPositionRelative(lib281DEC45_gv_zSS_DebugStoryKerriganTypeLabel, PlayerGroupAll(), c_anchorLeft, lib281DEC45_gv_zSS_DebugStoryPlayButton, c_anchorRight, 20, 15);

campaigns/swarmstoryutil.sc2modbase.sc2data/Lib281DEC45.galaxy:7781

    DialogControlSetSize(lib281DEC45_gv_zSS_DebugStoryStateEditBox, PlayerGroupAll(), 100, 50);
    DialogControlSetPositionRelative(lib281DEC45_gv_zSS_DebugStoryStateEditBox, PlayerGroupAll(), c_anchorTopLeft, lib281DEC45_gv_zSS_DebugStoryStateList, c_anchorTopRight, 50, 0);
    libNtve_gf_CreateDialogItemLabel(lib281DEC45_gv_zSS_DebugStoryDialog, lv_titleWidth, 50, c_anchorTopLeft, 50, 50, StringExternal("Param/Value/lib_281DEC45_393257D8"), Color(100,100,100), false, 2.0);
    libNtve_gf_SetDialogItemStyle(DialogControlLastCreated(), "ModCenterSize20Bold", PlayerGroupAll());
    lib281DEC45_gv_zSS_DebugStoryEnabledLabel = DialogControlLastCreated();

campaigns/swarmstoryutil.sc2modbase.sc2data/Lib281DEC45.galaxy:7785

    lib281DEC45_gv_zSS_DebugStoryEnabledLabel = DialogControlLastCreated();
    DialogControlSetPositionRelative(lib281DEC45_gv_zSS_DebugStoryEnabledLabel, PlayerGroupAll(), c_anchorBottomLeft, lib281DEC45_gv_zSS_DebugStoryStateEditBox, c_anchorTopRight, (lib281DEC45_gv_zSSC_DebugStoryNameWidth+(lib281DEC45_gv_zSSC_DebugStoryMargin*2)), 0);
    libNtve_gf_CreateDialogItemLabel(lib281DEC45_gv_zSS_DebugStoryDialog, 150, 50, c_anchorTopLeft, 50, 50, StringExternal("Param/Value/lib_281DEC45_140E5644"), Color(100,100,100), false, 2.0);
    libNtve_gf_SetDialogItemStyle(DialogControlLastCreated(), "ModCenterSize20Bold", PlayerGroupAll());
    lib281DEC45_gv_zSS_DebugStoryAmbientLabel = DialogControlLastCreated();

campaigns/void.sc2campaignbase.sc2maps/maps/campaign/void/pshakuras02.sc2map/MapScript.galaxy:1407

    DialogControlSetFullDialog(DialogControlLastCreated(), PlayerGroupAll(), true);
    DialogSetVisible(gv_zergCounterDialog, PlayerGroupAll(), true);
    libNtve_gf_CreateDialogItemLabel(gv_zergCounterDialog, 500, 30, c_anchorTop, 0, 10, StringExternal("Param/Value/ED270442"), Color(100,100,100), false, 2.0);
    libNtve_gf_SetDialogItemStyle(DialogControlLastCreated(), "TimerTitleTop", PlayerGroupAll());
    DialogControlSetVisible(DialogControlLastCreated(), PlayerGroupAll(), true);

campaigns/void.sc2campaignbase.sc2maps/maps/campaign/void/pshakuras02.sc2map/MapScript.galaxy:1412

    TextExpressionSetToken("Param/Expression/861D5D81", "HUNDREDMILLIONS", FixedToText((gv_zergOnShakuras / 100.0), 3));
    TextExpressionSetToken("Param/Expression/861D5D81", "BILLIONS", FixedToText(gv_zergOnShakuras, 1));
    libNtve_gf_CreateDialogItemLabel(gv_zergCounterDialog, 500, 25, c_anchorBottom, 0, 10, TextExpressionAssemble("Param/Expression/861D5D81"), Color(100,100,100), false, 2.0);
    gv_zergCounterLabel = DialogControlLastCreated();
    libNtve_gf_SetDialogItemStyle(gv_zergCounterLabel, "TimerTextBottom", PlayerGroupAll());

campaigns/void.sc2campaign/base.sc2maps/maps/campaign/void/pshakuras02.sc2mapMapScript.galaxy:1407

    DialogControlSetFullDialog(DialogControlLastCreated(), PlayerGroupAll(), true);
    DialogSetVisible(gv_zergCounterDialog, PlayerGroupAll(), true);
    libNtve_gf_CreateDialogItemLabel(gv_zergCounterDialog, 500, 30, c_anchorTop, 0, 10, StringExternal("Param/Value/ED270442"), Color(100,100,100), false, 2.0);
    libNtve_gf_SetDialogItemStyle(DialogControlLastCreated(), "TimerTitleTop", PlayerGroupAll());
    DialogControlSetVisible(DialogControlLastCreated(), PlayerGroupAll(), true);

campaigns/void.sc2campaign/base.sc2maps/maps/campaign/void/pshakuras02.sc2mapMapScript.galaxy:1412

    TextExpressionSetToken("Param/Expression/861D5D81", "HUNDREDMILLIONS", FixedToText((gv_zergOnShakuras / 100.0), 3));
    TextExpressionSetToken("Param/Expression/861D5D81", "BILLIONS", FixedToText(gv_zergOnShakuras, 1));
    libNtve_gf_CreateDialogItemLabel(gv_zergCounterDialog, 500, 25, c_anchorBottom, 0, 10, TextExpressionAssemble("Param/Expression/861D5D81"), Color(100,100,100), false, 2.0);
    gv_zergCounterLabel = DialogControlLastCreated();
    libNtve_gf_SetDialogItemStyle(gv_zergCounterLabel, "TimerTextBottom", PlayerGroupAll());

campaigns/voidstory.sc2campaignbase.sc2data/TriggerLibs/VoidCampaignLib.galaxy:145

    DialogControlFadeTransparency(DialogControlLastCreated(), PlayerGroupAll(), 0.0, 20.0);
    lv_y = 50;
    libNtve_gf_CreateDialogItemLabel(DialogLastCreated(), 1000, 50, c_anchorTopLeft, 50, lv_y, StringExternal("Param/Value/lib_VoiC_1E7C2401"), Color(100.00, 50.20, 25.10), false, 2.0);
    libNtve_gf_SetDialogItemStyle(DialogControlLastCreated(), "ModLeftSize32Bold", PlayerGroupAll());
    lv_y += 50;

campaigns/voidstory.sc2campaignbase.sc2data/TriggerLibs/VoidCampaignLib.galaxy:166

                libNtve_gf_CreateDialogItemImage(DialogLastCreated(), 500, 100, c_anchorTopLeft, lv_x, lv_y, StringToText(""), "Assets\\Textures\\ui_research_frame_tooltip_protoss.dds", c_triggerImageTypeHorizontalBorder, true, Color(100,100,100), c_triggerBlendModeNormal);
                lv_frame = DialogControlLastCreated();
                libNtve_gf_CreateDialogItemLabel(DialogLastCreated(), 150, 60, c_anchorTopLeft, lv_x, lv_y, libVoiC_gf_PC_ArmyCategoryName(lv_indexArmyCategory), Color(100.00, 100.00, 100.00), false, 2.0);
                libNtve_gf_SetDialogItemStyle(DialogControlLastCreated(), "ModCenterSize16", PlayerGroupAll());
                TextExpressionSetToken("Param/Expression/lib_VoiC_9214BE9C", "B", StringToText((libVoiC_gf_PC_ArmyCategoryUnitType(lv_indexArmyCategory))));

campaigns/voidstory.sc2campaignbase.sc2data/TriggerLibs/VoidCampaignLib.galaxy:182

                while (autoAC56682B_ai <= autoAC56682B_ae) {
                    lv_indexArmyUnit = CatalogFieldValueGet(c_gameCatalogArmyCategory, lv_indexArmyCategory, "ArmyUnitArray["+IntToString(autoAC56682B_ai-1)+"]", 1);
                    libNtve_gf_CreateDialogItemLabel(DialogLastCreated(), 150, 60, c_anchorTopLeft, lv_x, lv_y, libVoiC_gf_StoryArmyUnitName(lv_indexArmyUnit), Color(100.00, 100.00, 100.00), false, 2.0);
                    libNtve_gf_SetDialogItemStyle(DialogControlLastCreated(), "ModCenterSize16", PlayerGroupAll());
                    TextExpressionSetToken("Param/Expression/lib_VoiC_C4273795", "A", libVoiC_gf_PC_ArmyUnitDescription(lv_indexArmyUnit));

campaigns/voidstory.sc2campaignbase.sc2data/TriggerLibs/VoidCampaignLib.galaxy:255

    libVoiC_gv_pC_DebugCampaignTechSoADialog = DialogLastCreated();
    lv_y = 50;
    libNtve_gf_CreateDialogItemLabel(DialogLastCreated(), 600, 50, c_anchorTopLeft, 50, lv_y, StringExternal("Param/Value/lib_VoiC_55299EE6"), Color(100.00, 100.00, 100.00), false, 2.0);
    libNtve_gf_SetDialogItemStyle(DialogControlLastCreated(), "ModLeftSize24", PlayerGroupAll());
    lv_y += 50;

campaigns/voidstory.sc2campaignbase.sc2data/TriggerLibs/VoidCampaignLib.galaxy:267

        libVoiC_gv_pC_DebugCampaignTechSoAPowerType[libVoiC_gv_pC_DebugCampaignTechSoATypeCount] = lv_indexPowerType;
        lv_x = 50;
        libNtve_gf_CreateDialogItemLabel(DialogLastCreated(), 500, 60, c_anchorTopLeft, lv_x, lv_y, libVoiC_gf_PC_PerkGroupName(lv_indexPowerType), Color(94.90, 94.90, 0.00), false, 2.0);
        libNtve_gf_SetDialogItemStyle(DialogControlLastCreated(), "ModLeftSize20", PlayerGroupAll());
        lv_y += 40;

campaigns/voidstory.sc2campaignbase.sc2data/TriggerLibs/VoidCampaignLib.galaxy:283

                }

                libNtve_gf_CreateDialogItemLabel(DialogLastCreated(), 220, 60, c_anchorTopLeft, lv_x, lv_y, libVoiC_gf_PC_PerkName(lv_indexPower), Color(100.00, 100.00, 100.00), false, 2.0);
                libNtve_gf_SetDialogItemStyle(DialogControlLastCreated(), "ModCenterSize16", PlayerGroupAll());
                libNtve_gf_SetDialogItemTooltip(DialogControlLastCreated(), libVCUI_gf_PU_SoAPerkTooltip(lv_indexPower), PlayerGroupAll());

campaigns/voidstory.sc2campaignbase.sc2data/TriggerLibs/VoidCampaignLib.galaxy:989

    }
    else {
        libNtve_gf_CreateDialogItemLabel(DialogLastCreated(), 450, 50, c_anchorTopLeft, 50, 130, StringExternal("Param/Value/lib_VoiC_A88CC51D"), ColorWithAlpha(0,0,0,0), false, 0.0);
        libNtve_gf_SetDialogItemStyle(DialogControlLastCreated(), "ModLeftSize24", PlayerGroupAll());
        libNtve_gf_CreateDialogItemButton(DialogLastCreated(), 150, 50, c_anchorTopLeft, 50, 170, StringToText(""), StringExternal("Param/Value/lib_VoiC_7E2017AF"), "");

campaigns/voidstory.sc2campaignbase.sc2data/TriggerLibs/VoidCampaignLib.galaxy:1001

        libVoiC_gv_pC_DebugProgressButtonAllObjectives = DialogControlLastCreated();
    }
    libNtve_gf_CreateDialogItemLabel(DialogLastCreated(), 600, 400, c_anchorTopLeft, 50, 50, StringToText(""), ColorWithAlpha(0,0,0,0), false, 2.0);
    libVoiC_gv_pC_DebugProgressLabelInfo = DialogControlLastCreated();
    libNtve_gf_SetDialogItemStyle(DialogControlLastCreated(), "DebugProgressPanelCampaignProgress", PlayerGroupAll());

campaigns/voidstory.sc2campaignbase.sc2data/TriggerLibs/VoidCampaignLib.galaxy:1008

    lv_offsetX = 5;
    lv_offsetY = 0;
    libNtve_gf_CreateDialogItemLabel(DialogLastCreated(), lv_width, lv_height, c_anchorTopLeft, 0, 0, StringExternal("Param/Value/lib_VoiC_D79468A7"), Color(100,100,100), false, 2.0);
    libNtve_gf_SetDialogItemStyle(DialogControlLastCreated(), "DebugProgressPanelLabelRequirement", PlayerGroupAll());
    lv_relativeButton = libNtve_gf_ValueFromDataTableDialogItem(true, libVoiC_gf_PC_DebugProgressDataTableID("Button", ("PKorhal01")));

campaigns/voidstory.sc2campaignbase.sc2data/TriggerLibs/VoidCampaignLib.galaxy:1013

    DialogControlSetPositionRelative(DialogControlLastCreated(), PlayerGroupAll(), c_anchorBottomLeft, lv_relativeButton, c_anchorTopLeft, lv_offsetX, lv_offsetY);
    libVoiC_gv_pC_DebugProgressLabelExpeditionReq = DialogControlLastCreated();
    libNtve_gf_CreateDialogItemLabel(DialogLastCreated(), lv_width, lv_height, c_anchorTopLeft, 0, 0, StringExternal("Param/Value/lib_VoiC_8E3EF1E5"), Color(100,100,100), false, 2.0);
    libNtve_gf_SetDialogItemStyle(DialogControlLastCreated(), "DebugProgressPanelLabelRequirement", PlayerGroupAll());
    lv_relativeButton = libNtve_gf_ValueFromDataTableDialogItem(true, libVoiC_gf_PC_DebugProgressDataTableID("Button", ("PShakuras01")));

campaigns/voidstory.sc2campaignbase.sc2data/TriggerLibs/VoidCampaignMissionLib.galaxy:6157

            }
            libNtve_gf_SetDialogItemTooltip(DialogControlLastCreated(), lv_label, PlayerGroupAll());
            libNtve_gf_CreateDialogItemLabel(libVCMI_gv_pM_GameCheat_Dialog, 200, 25, c_anchorTopLeft, 80, ((libVCMI_gv_pM_GameCheat_ArrayIndex * 50) + 55), lv_label, Color(100,100,100), false, 2.0);
        }

campaigns/voidstory.sc2campaignbase.sc2data/TriggerLibs/VoidCampaignStoryLib.galaxy:4742

    libNtve_gf_CreateDialogItemButton(libVCST_gv_pS_DebugStoryDialog, 200, 50, c_anchorBottomRight, 50, 50, StringToText(""), StringExternal("Param/Value/lib_VCST_3D85F733"), "");
    libVCST_gv_pS_DebugStoryCloseButton = DialogControlLastCreated();
    libNtve_gf_CreateDialogItemLabel(libVCST_gv_pS_DebugStoryDialog, 60, 50, c_anchorTopLeft, 50, 50, StringExternal("Param/Value/lib_VCST_C5DC5309"), Color(100,100,100), false, 2.0);
    libVCST_gv_pS_DebugStoryFilterLabel = DialogControlLastCreated();
    DialogControlSetPositionRelative(libVCST_gv_pS_DebugStoryFilterLabel, PlayerGroupAll(), c_anchorTopLeft, libVCST_gv_pS_DebugStorySceneList, c_anchorBottomLeft, 0, 20);

campaigns/voidstory.sc2campaignbase.sc2data/TriggerLibs/VoidCampaignStoryLib.galaxy:4749

    DialogControlSetSize(DialogControlLastCreated(), PlayerGroupAll(), 200, 50);
    DialogControlSetPositionRelative(libVCST_gv_pS_DebugStoryFilterEditBox, PlayerGroupAll(), c_anchorLeft, libVCST_gv_pS_DebugStoryFilterLabel, c_anchorRight, 0, -15);
    libNtve_gf_CreateDialogItemLabel(libVCST_gv_pS_DebugStoryDialog, 150, 50, c_anchorTopLeft, 50, 50, StringExternal("Param/Value/lib_VCST_0FA8FF05"), Color(100,100,100), false, 2.0);
    libVCST_gv_pS_DebugStoryConvoTypeLabel = DialogControlLastCreated();
    DialogControlSetPositionRelative(libVCST_gv_pS_DebugStoryConvoTypeLabel, PlayerGroupAll(), c_anchorLeft, libVCST_gv_pS_DebugStoryFilterEditBox, c_anchorRight, 15, 15);

campaigns/voidstory.sc2campaignbase.sc2data/TriggerLibs/VoidCampaignStoryLib.galaxy:4756

    libNtve_gf_SetDialogItemChecked(DialogControlLastCreated(), true, PlayerGroupAll());
    DialogControlSetPositionRelative(libVCST_gv_pS_DebugStoryConvoTypeCheckbox, PlayerGroupAll(), c_anchorLeft, libVCST_gv_pS_DebugStoryConvoTypeLabel, c_anchorRight, 0, -15);
    libNtve_gf_CreateDialogItemLabel(libVCST_gv_pS_DebugStoryDialog, 80, 50, c_anchorTopLeft, 50, 50, StringExternal("Param/Value/lib_VCST_1F9F798F"), Color(100,100,100), false, 2.0);
    libVCST_gv_pS_DebugStorySceneTypeLabel = DialogControlLastCreated();
    DialogControlSetPositionRelative(libVCST_gv_pS_DebugStorySceneTypeLabel, PlayerGroupAll(), c_anchorLeft, libVCST_gv_pS_DebugStoryConvoTypeCheckbox, c_anchorRight, 15, 15);

campaigns/voidstory.sc2campaignbase.sc2data/TriggerLibs/VoidCampaignUILib.galaxy:1391

    DialogSetFullscreen(libVCUI_gv_pU_ArchivesLoadingDialog, true);
    DialogSetImageVisible(libVCUI_gv_pU_ArchivesLoadingDialog, false);
    libNtve_gf_CreateDialogItemLabel(libVCUI_gv_pU_ArchivesLoadingDialog, 200, 50, c_anchorBottomLeft, 0, 0, StringExternal("Param/Value/lib_VCUI_8DFE4298"), Color(254*100/255,138*100/255,14*100/255), false, 2.0);
    libVCUI_gv_pU_ArchivesLoadingLabel = DialogControlLastCreated();
    DialogControlSetPositionRelative(libVCUI_gv_pU_ArchivesLoadingLabel, PlayerGroupAll(), c_anchorTopRight, libVCUI_gv_pU_ArchivesMissionPanel, c_anchorBottomRight, 0, 0);

mods/frontiers.sc2modbase.sc2data/Lib6CB3363F.galaxy:384

    lib6CB3363F_gv_fT_DialogSelection = DialogLastCreated();
    DialogSetImageVisible(DialogLastCreated(), false);
    libNtve_gf_CreateDialogItemLabel(DialogLastCreated(), 400, 50, c_anchorTop, 0, 50, StringExternal("Param/Value/lib_6CB3363F_3D61D249"), ColorWithAlpha(0,0,0,0), false, 0.0);
    libNtve_gf_CreateDialogItemButton(DialogLastCreated(), 200, 200, c_anchorCenter, -400, 0, StringToText(""), StringExternal("Param/Value/lib_6CB3363F_5F8BEABA"), "");
    lib6CB3363F_gv_fT_DialogSelectionButton[1] = DialogControlLastCreated();

mods/frontiers.sc2modbase.sc2data/Lib6CB3363F.galaxy:406

    lv_i = 1;
    for ( ; ( (autoDBE70D02_ai >= 0 && lv_i <= autoDBE70D02_ae) || (autoDBE70D02_ai <= 0 && lv_i >= autoDBE70D02_ae) ) ; lv_i += autoDBE70D02_ai ) {
        libNtve_gf_CreateDialogItemLabel(lib6CB3363F_gv_fT_DialogPlayerInfo, 200, 100, c_anchorTopLeft, 0, 0, StringExternal("Param/Value/lib_6CB3363F_BA3C546A"), ColorWithAlpha(0,0,0,0), false, 0.0);
        lib6CB3363F_gv_fT_DialogPlayerInfoLabel[lv_i] = DialogControlLastCreated();
    }

mods/frontiers.sc2modbase.sc2data/Lib6CB3363F.galaxy:428

    lib6CB3363F_gv_fT_DialogAmmo = DialogLastCreated();
    DialogSetImageVisible(lib6CB3363F_gv_fT_DialogAmmo, false);
    libNtve_gf_CreateDialogItemLabel(lib6CB3363F_gv_fT_DialogAmmo, 100, 100, c_anchorTopLeft, 0, 0, StringExternal("Param/Value/lib_6CB3363F_F99898F8"), ColorWithAlpha(0,0,0,0), false, 0.0);
    lib6CB3363F_gv_fT_DialogAmmoLabel = DialogControlLastCreated();
    autoE6299152_ae = 4;

mods/frontiers.sc2modbase.sc2data/Lib6CB3363F.galaxy:436

        libNtve_gf_CreateDialogItemImage(lib6CB3363F_gv_fT_DialogAmmo, 72, 72, c_anchorTopLeft, (lv_i * 100), 0, StringToText(""), "Assets\\Textures\\blank.dds", c_triggerImageTypeNormal, true, Color(100,100,100), c_triggerBlendModeNormal);
        lib6CB3363F_gv_fT_DialogEquipImage[lv_i] = DialogControlLastCreated();
        libNtve_gf_CreateDialogItemLabel(lib6CB3363F_gv_fT_DialogAmmo, 100, 100, c_anchorTopLeft, (lv_i * 100), 10, StringExternal("Param/Value/lib_6CB3363F_0EE54434"), ColorWithAlpha(0,0,0,0), false, 0.0);
        lib6CB3363F_gv_fT_DialogEquipLabel[lv_i] = DialogControlLastCreated();
    }

mods/heroesdata.stormmodbase.stormdata/TriggerLibs/MapMechanicsLib.galaxy:2435

    }
    SoundPlay(SoundLink("UI_CampaignHintNotify", -1), lp_players, 100.0, 0.0);
    libNtve_gf_CreateDialogItemLabel(DialogLastCreated(), 200, 50, c_anchorCenter, 0, 0, lv_msg, ColorWithAlpha(0,0,0,0), lp_writeOut, lp_writeOutDuration);
    DialogControlSetFullDialog(DialogControlLastCreated(), lp_players, true);
    libNtve_gf_SetDialogItemStyle(DialogControlLastCreated(), "Storm_Map_Announcement", lp_players);

mods/heroesdata.stormmodbase.stormdata/TriggerLibs/MapMechanicsLib.galaxy:2487

    SoundPlay(SoundLink("UI_CampaignHintNotify", -1), lp_players, 100.0, 0.0);
    TextExpressionSetToken("Param/Expression/lib_MapM_3319AAA3", "A", lp_announcement);
    libNtve_gf_CreateDialogItemLabel(DialogLastCreated(), 200, 50, c_anchorCenter, 0, 0, TextExpressionAssemble("Param/Expression/lib_MapM_3319AAA3"), ColorWithAlpha(0,0,0,0), lp_writeOut, lp_writeOutDuration);
    DialogControlSetFullDialog(DialogControlLastCreated(), lp_players, true);
    libNtve_gf_SetDialogItemStyle(DialogControlLastCreated(), "Storm_Map_Announcement", lp_players);

mods/heroesdata.stormmodbase.stormdata/TriggerLibs/MapMechanicsLib.galaxy:2642

        lv_style = "Storm_Map_Announcement";
    }
    libNtve_gf_CreateDialogItemLabel(DialogLastCreated(), 200, 50, c_anchorCenter, 0, 0, lp_announcement, ColorWithAlpha(0,0,0,0), lp_writeOut, lp_writeOutDuration);
    DialogControlSetFullDialog(DialogControlLastCreated(), libCore_gv_playerGroupFromPlayer[lp_player], true);
    libNtve_gf_SetDialogItemStyle(DialogControlLastCreated(), lv_style, libCore_gv_playerGroupFromPlayer[lp_player]);

mods/heroesdata.stormmodbase.stormdata/TriggerLibs/StartingExperienceLib.galaxy:1426

    DialogSetImageVisible(DialogLastCreated(), false);
    TextExpressionSetToken("Param/Expression/lib_StEx_9B5ACB60", "A", libStEx_gv_sE_TrainingModeTips[(lp_tip)].lv_description);
    libNtve_gf_CreateDialogItemLabel(DialogLastCreated(), 200, 50, c_anchorCenter, 50, 50, TextExpressionAssemble("Param/Expression/lib_StEx_9B5ACB60"), ColorWithAlpha(0,0,0,0), false, 2.0);
    DialogControlSetFullDialog(DialogControlLastCreated(), libCore_gv_playerGroupFromPlayer[libStEx_gv_sE_Player], true);
    DialogSetVisible(DialogLastCreated(), libCore_gv_playerGroupFromPlayer[libStEx_gv_sE_Player], true);

mods/heroesdata.stormmodbase.stormdata/TriggerLibs/StartingExperienceLib.galaxy:2036

        DialogSetFullscreen(DialogLastCreated(), true);
        DialogSetImageVisible(DialogLastCreated(), false);
        libNtve_gf_CreateDialogItemLabel(DialogLastCreated(), 1000, 50, c_anchorTop, 0, 400, StringExternal("Param/Value/lib_StEx_31549B6D"), ColorWithAlpha(0,0,0,0), false, 2.0);
        lv_label = DialogControlLastCreated();
        libNtve_gf_SetDialogItemStyle(DialogControlLastCreated(), "Storm_Map_Large_Bold_Centered", PlayerGroupAll());

mods/heroesdata.stormmodbase.stormdata/TriggerLibs/SupportLib.galaxy:783

    libSprt_gv_qACheatsControlsPanel.lv_mainDialog = DialogLastCreated();
    DialogSetImage(libSprt_gv_qACheatsControlsPanel.lv_mainDialog, "Assets\\Textures\\storm_ui_store_gradientbackground_new.dds");
    libNtve_gf_CreateDialogItemLabel(DialogLastCreated(), 175, 25, c_anchorTop, 50, 0, StringExternal("Param/Value/lib_Sprt_3EA40164"), Color(100,100,100), false, 2.0);
    libNtve_gf_CreateDialogItemButton(DialogLastCreated(), 35, 35, c_anchorTopRight, 5, 5, StringToText(""), StringExternal("Param/Value/lib_Sprt_4377DBE5"), "");
    libSprt_gv_qACheatsControlsPanel.lv_closeButton = DialogControlLastCreated();

mods/missionpacks/campaigncommon.sc2modbase.sc2data/LibComC.galaxy:117

    DialogControlHookup(lv_panel, c_triggerControlTypeLabel, "PointsLabel");
    libNtve_gf_SetDialogItemText(DialogControlLastCreated(), StringToText(CatalogFieldValueGet(c_gameCatalogAchievement, lp_achievement, "Points", 1)), PlayerGroupAll());
    libNtve_gf_CreateDialogItemLabel(lv_achievementDialog, 200, 50, c_anchorTop, 0, 100, StringExternal("Param/Value/lib_ComC_1E62A3BC"), Color(100.00, 0.00, 0.00), false, 2.0);
    DialogControlFadeTransparency(DialogControlLastCreated(), PlayerGroupAll(), 0.0, 60.0);
    while (true) {

mods/missionpacks/novacampaign.sc2modbase.sc2data/LibNCMI.galaxy:5097

            }
            libNtve_gf_SetDialogItemTooltip(DialogControlLastCreated(), lv_label, PlayerGroupAll());
            libNtve_gf_CreateDialogItemLabel(libNCMI_gv_NM_GameCheat_Dialog, 200, 25, c_anchorTopLeft, 80, ((libNCMI_gv_NM_GameCheat_ArrayIndex * 50) + 55), lv_label, Color(100,100,100), false, 2.0);
        }

mods/missionpacks/novacampaign.sc2modbase.sc2data/LibNCST.galaxy:4116

    libNtve_gf_CreateDialogItemButton(libNCST_gv_nS_DebugStoryDialog, 200, 50, c_anchorBottomRight, 50, 50, StringToText(""), StringExternal("Param/Value/lib_NCST_3D85F733"), "");
    libNCST_gv_nS_DebugStoryCloseButton = DialogControlLastCreated();
    libNtve_gf_CreateDialogItemLabel(libNCST_gv_nS_DebugStoryDialog, 60, 50, c_anchorTopLeft, 50, 50, StringExternal("Param/Value/lib_NCST_C5DC5309"), Color(100,100,100), false, 2.0);
    libNCST_gv_nS_DebugStoryFilterLabel = DialogControlLastCreated();
    DialogControlSetPositionRelative(libNCST_gv_nS_DebugStoryFilterLabel, PlayerGroupAll(), c_anchorTopLeft, libNCST_gv_nS_DebugStorySceneList, c_anchorBottomLeft, 0, 20);

mods/missionpacks/novacampaign.sc2modbase.sc2data/LibNCST.galaxy:4123

    DialogControlSetSize(DialogControlLastCreated(), PlayerGroupAll(), 200, 50);
    DialogControlSetPositionRelative(libNCST_gv_nS_DebugStoryFilterEditBox, PlayerGroupAll(), c_anchorLeft, libNCST_gv_nS_DebugStoryFilterLabel, c_anchorRight, 0, -15);
    libNtve_gf_CreateDialogItemLabel(libNCST_gv_nS_DebugStoryDialog, 150, 50, c_anchorTopLeft, 50, 50, StringExternal("Param/Value/lib_NCST_0FA8FF05"), Color(100,100,100), false, 2.0);
    libNCST_gv_nS_DebugStoryConvoTypeLabel = DialogControlLastCreated();
    DialogControlSetPositionRelative(libNCST_gv_nS_DebugStoryConvoTypeLabel, PlayerGroupAll(), c_anchorLeft, libNCST_gv_nS_DebugStoryFilterEditBox, c_anchorRight, 15, 15);

mods/missionpacks/novacampaign.sc2modbase.sc2data/LibNCST.galaxy:4130

    libNtve_gf_SetDialogItemChecked(DialogControlLastCreated(), true, PlayerGroupAll());
    DialogControlSetPositionRelative(libNCST_gv_nS_DebugStoryConvoTypeCheckbox, PlayerGroupAll(), c_anchorLeft, libNCST_gv_nS_DebugStoryConvoTypeLabel, c_anchorRight, 0, -15);
    libNtve_gf_CreateDialogItemLabel(libNCST_gv_nS_DebugStoryDialog, 80, 50, c_anchorTopLeft, 50, 50, StringExternal("Param/Value/lib_NCST_1F9F798F"), Color(100,100,100), false, 2.0);
    libNCST_gv_nS_DebugStorySceneTypeLabel = DialogControlLastCreated();
    DialogControlSetPositionRelative(libNCST_gv_nS_DebugStorySceneTypeLabel, PlayerGroupAll(), c_anchorLeft, libNCST_gv_nS_DebugStoryConvoTypeCheckbox, c_anchorRight, 15, 15);

mods/missionpacks/novacampaign.sc2modbase.sc2data/LibNCUI.galaxy:520

    DialogSetFullscreen(libNCUI_gv_nU_ArchivesLoadingDialog, true);
    DialogSetImageVisible(libNCUI_gv_nU_ArchivesLoadingDialog, false);
    libNtve_gf_CreateDialogItemLabel(libNCUI_gv_nU_ArchivesLoadingDialog, 200, 50, c_anchorBottomLeft, 0, 0, StringExternal("Param/Value/lib_NCUI_8DFE4298"), Color(254*100/255,138*100/255,14*100/255), false, 2.0);
    libNCUI_gv_nU_ArchivesLoadingLabel = DialogControlLastCreated();
    DialogControlSetPositionRelative(libNCUI_gv_nU_ArchivesLoadingLabel, PlayerGroupAll(), c_anchorTopRight, libNCUI_gv_nU_ArchivesMissionPanel, c_anchorBottomRight, 0, 0);

mods/missionpacks/novacampaign.sc2modbase.sc2data/LibNovC.galaxy:250

    DialogControlFadeTransparency(DialogControlLastCreated(), PlayerGroupAll(), 0.0, 20.0);
    lv_y = 50;
    libNtve_gf_CreateDialogItemLabel(DialogLastCreated(), 1200, 50, c_anchorTopLeft, 50, lv_y, StringExternal("Param/Value/lib_NovC_2AB08BE5"), Color(0.00, 100.00, 25.10), false, 2.0);
    libNtve_gf_SetDialogItemStyle(DialogControlLastCreated(), "ModLeftSize32Bold", PlayerGroupAll());
    lv_techItemIndex = 0;

mods/missionpacks/novacampaign.sc2modbase.sc2data/LibNovC.galaxy:269

        libNovC_gv_nC_DebugCampaignTechUpgradesItemList[lv_techItemIndex] = lv_indexTechItem;
        libNovC_gv_nC_DebugCampaignTechUpgradesAssignedUnitList[lv_techItemIndex] = libNovC_gf_NC_ArmyTechItemAssignedUnit(lv_indexTechItem);
        libNtve_gf_CreateDialogItemLabel(DialogLastCreated(), 180, 60, c_anchorTopLeft, (lv_x + 30), (lv_y + 80), StringExternal("Param/Value/lib_NovC_A7BC7D6A"), Color(100.00, 100.00, 50.20), false, 0.0);
        libNovC_gv_nC_DebugCampaignTechUpgradesAssignedUnitLabelList[lv_techItemIndex] = DialogControlLastCreated();
        if ((libNovC_gv_nC_DebugCampaignTechUpgradesAssignedUnitList[lv_techItemIndex] != null)) {

mods/missionpacks/novacampaign.sc2modbase.sc2data/LibNovC.galaxy:280

    lv_x = 160;
    lv_y += 180;
    libNtve_gf_CreateDialogItemLabel(DialogLastCreated(), 500, 60, c_anchorTopLeft, lv_x, lv_y, StringExternal("Param/Value/lib_NovC_7D0D617A"), Color(0.00, 100.00, 25.10), false, 0.0);
    lv_y += 20;
    libNtve_gf_CreateDialogItemImage(DialogLastCreated(), 1000, 100, c_anchorTopLeft, lv_x, lv_y, StringToText(""), "Assets\\Textures\\ui_research_frame_tooltip_protoss.dds", c_triggerImageTypeHorizontalBorder, true, Color(100,100,100), c_triggerBlendModeNormal);

mods/missionpacks/novacampaign.sc2modbase.sc2data/LibNovC.galaxy:287

    lv_armyUnitIndex = 1;
    for ( ; ( (auto8AFA6E82_ai >= 0 && lv_armyUnitIndex <= auto8AFA6E82_ae) || (auto8AFA6E82_ai <= 0 && lv_armyUnitIndex >= auto8AFA6E82_ae) ) ; lv_armyUnitIndex += auto8AFA6E82_ai ) {
        libNtve_gf_CreateDialogItemLabel(DialogLastCreated(), 220, 60, c_anchorTopLeft, lv_x, lv_y, StringExternal("Param/Value/lib_NovC_198090FF"), Color(100.00, 100.00, 100.00), false, 2.0);
        libNtve_gf_SetDialogItemStyle(DialogControlLastCreated(), "ModCenterSize16", PlayerGroupAll());
        libNovC_gv_nC_DebugCampaignTechUpgradesCheckBoxName[lv_armyUnitIndex] = DialogControlLastCreated();

mods/missionpacks/novacampaign.sc2modbase.sc2data/LibNovC.galaxy:509

    DialogControlFadeTransparency(DialogControlLastCreated(), PlayerGroupAll(), 0.0, 20.0);
    lv_y = 50;
    libNtve_gf_CreateDialogItemLabel(DialogLastCreated(), 1000, 50, c_anchorTopLeft, 50, lv_y, StringExternal("Param/Value/lib_NovC_4D23591E"), Color(100.00, 50.20, 25.10), false, 2.0);
    libNtve_gf_SetDialogItemStyle(DialogControlLastCreated(), "ModLeftSize32Bold", PlayerGroupAll());
    lv_y += 50;

mods/missionpacks/novacampaign.sc2modbase.sc2data/LibNovC.galaxy:520

        lv_equipmentGroupIndex += 1;
        lv_x = 50;
        libNtve_gf_CreateDialogItemLabel(DialogLastCreated(), 500, 60, c_anchorTopLeft, lv_x, lv_y, libComC_gf_CC_PerkGroupName(lv_indexEquipmentGroup), Color(100.00, 50.20, 25.10), false, 0.0);
        libNtve_gf_SetDialogItemStyle(DialogControlLastCreated(), "ModLeftSize20", PlayerGroupAll());
        lv_y += 40;

mods/missionpacks/novacampaign.sc2modbase.sc2data/LibNovC.galaxy:532

            autoCCC6D65B_ai = autoCCC6D65B_ai+1;
            if( libComC_gf_CC_PerkGroupOfPerk(lv_indexEquipment) == lv_indexEquipmentGroup ) {
                libNtve_gf_CreateDialogItemLabel(DialogLastCreated(), 220, 60, c_anchorTopLeft, lv_x, lv_y, libComC_gf_CC_PerkName(lv_indexEquipment), Color(100.00, 100.00, 100.00), false, 2.0);
                libNtve_gf_SetDialogItemStyle(DialogControlLastCreated(), "ModCenterSize16", PlayerGroupAll());
                libNtve_gf_SetDialogItemTooltip(DialogControlLastCreated(), libComC_gf_CC_PerkDescription(lv_indexEquipment), PlayerGroupAll());

mods/missionpacks/novacampaign.sc2modbase.sc2data/LibNovC.galaxy:888

    }
    else {
        libNtve_gf_CreateDialogItemLabel(DialogLastCreated(), 450, 50, c_anchorTopLeft, 50, 130, StringExternal("Param/Value/lib_NovC_A88CC51D"), ColorWithAlpha(0,0,0,0), false, 0.0);
        libNtve_gf_SetDialogItemStyle(DialogControlLastCreated(), "ModLeftSize24", PlayerGroupAll());
        libNtve_gf_CreateDialogItemButton(DialogLastCreated(), 150, 50, c_anchorTopLeft, 50, 170, StringToText(""), StringExternal("Param/Value/lib_NovC_7E2017AF"), "");

mods/missionpacks/novacampaign.sc2modbase.sc2data/LibNovC.galaxy:897

        libNovC_gv_NC_DebugProgressButtonAllObjectives = DialogControlLastCreated();
    }
    libNtve_gf_CreateDialogItemLabel(DialogLastCreated(), 600, 400, c_anchorTopLeft, 50, 50, StringToText(""), ColorWithAlpha(0,0,0,0), false, 2.0);
    libNovC_gv_NC_DebugProgressLabelInfo = DialogControlLastCreated();
    libNtve_gf_SetDialogItemStyle(DialogControlLastCreated(), "DebugProgressPanelCampaignProgress", PlayerGroupAll());

mods/novastoryassets.sc2modbase.sc2maps/maps/campaign/nova/nova01.sc2map/MapScript.galaxy:7438

    DialogControlSetFullDialog(DialogControlLastCreated(), PlayerGroupAll(), true);
    DialogSetVisible(gv_vultureDistanceDialog, PlayerGroupAll(), true);
    libNtve_gf_CreateDialogItemLabel(gv_vultureDistanceDialog, 260, 45, c_anchorTop, 0, 10, StringExternal("Param/Value/5B8ECC81"), Color(100,100,100), false, 2.0);
    libNtve_gf_SetDialogItemStyle(DialogControlLastCreated(), "Nova01DistanceMeterTitle", PlayerGroupAll());
    DialogControlSetVisible(DialogControlLastCreated(), PlayerGroupAll(), true);

mods/novastoryassets.sc2modbase.sc2maps/maps/campaign/nova/nova01.sc2map/MapScript.galaxy:7442

    DialogControlSetVisible(DialogControlLastCreated(), PlayerGroupAll(), true);
    TextExpressionSetToken("Param/Expression/C759D4AC", "A", FixedToText(gv_vultureStageDistance, 0));
    libNtve_gf_CreateDialogItemLabel(gv_vultureDistanceDialog, 500, 25, c_anchorBottom, 0, 10, TextExpressionAssemble("Param/Expression/C759D4AC"), Color(100,100,100), false, 2.0);
    gv_vultureDistanceLabel = DialogControlLastCreated();
    libNtve_gf_SetDialogItemStyle(gv_vultureDistanceLabel, "TimerTextBottom", PlayerGroupAll());

mods/novastoryassets.sc2modbase3.sc2maps/maps/campaign/nova/nova08.sc2map/MapScript.galaxy:1402

    libNtve_gf_SetDialogItemImageType(gv_gorgonDialog.lv_button3, c_triggerImageTypeNormal, PlayerGroupAll());
    DialogControlSetEnabled(gv_gorgonDialog.lv_button3, PlayerGroupAll(), true);
    libNtve_gf_CreateDialogItemLabel(gv_gorgonDialog.lv_dialog, 68, 68, c_anchorLeft, 35, 2, FixedToText(libNtve_gf_DifficultyValueFixed(180.0, 180.0, 240.0, 300.0), c_fixedPrecisionAny), ColorWithAlpha(0,0,0,0), false, 2.0);
    gv_gorgonDialog.lv_timeLabel1 = DialogControlLastCreated();
    libNtve_gf_SetDialogItemStyle(gv_gorgonDialog.lv_timeLabel1, "GorgonTimerText", PlayerGroupAll());

mods/novastoryassets.sc2modbase3.sc2maps/maps/campaign/nova/nova08.sc2map/MapScript.galaxy:1406

    libNtve_gf_SetDialogItemStyle(gv_gorgonDialog.lv_timeLabel1, "GorgonTimerText", PlayerGroupAll());
    DialogControlSetVisible(gv_gorgonDialog.lv_timeLabel1, PlayerGroupAll(), false);
    libNtve_gf_CreateDialogItemLabel(gv_gorgonDialog.lv_dialog, 68, 68, c_anchorLeft, 115, 2, FixedToText(libNtve_gf_DifficultyValueFixed(180.0, 180.0, 240.0, 300.0), c_fixedPrecisionAny), ColorWithAlpha(0,0,0,0), false, 2.0);
    gv_gorgonDialog.lv_timeLabel2 = DialogControlLastCreated();
    libNtve_gf_SetDialogItemStyle(gv_gorgonDialog.lv_timeLabel2, "GorgonTimerText", PlayerGroupAll());

mods/novastoryassets.sc2modbase3.sc2maps/maps/campaign/nova/nova08.sc2map/MapScript.galaxy:1410

    libNtve_gf_SetDialogItemStyle(gv_gorgonDialog.lv_timeLabel2, "GorgonTimerText", PlayerGroupAll());
    DialogControlSetVisible(gv_gorgonDialog.lv_timeLabel2, PlayerGroupAll(), false);
    libNtve_gf_CreateDialogItemLabel(gv_gorgonDialog.lv_dialog, 68, 68, c_anchorLeft, 195, 2, FixedToText(libNtve_gf_DifficultyValueFixed(180.0, 180.0, 240.0, 300.0), c_fixedPrecisionAny), ColorWithAlpha(0,0,0,0), false, 2.0);
    gv_gorgonDialog.lv_timeLabel3 = DialogControlLastCreated();
    libNtve_gf_SetDialogItemStyle(gv_gorgonDialog.lv_timeLabel3, "GorgonTimerText", PlayerGroupAll());

mods/novastoryassets.sc2mod/base.sc2maps/maps/campaign/nova/nova01.sc2mapMapScript.galaxy:7438

    DialogControlSetFullDialog(DialogControlLastCreated(), PlayerGroupAll(), true);
    DialogSetVisible(gv_vultureDistanceDialog, PlayerGroupAll(), true);
    libNtve_gf_CreateDialogItemLabel(gv_vultureDistanceDialog, 260, 45, c_anchorTop, 0, 10, StringExternal("Param/Value/5B8ECC81"), Color(100,100,100), false, 2.0);
    libNtve_gf_SetDialogItemStyle(DialogControlLastCreated(), "Nova01DistanceMeterTitle", PlayerGroupAll());
    DialogControlSetVisible(DialogControlLastCreated(), PlayerGroupAll(), true);

mods/novastoryassets.sc2mod/base.sc2maps/maps/campaign/nova/nova01.sc2mapMapScript.galaxy:7442

    DialogControlSetVisible(DialogControlLastCreated(), PlayerGroupAll(), true);
    TextExpressionSetToken("Param/Expression/C759D4AC", "A", FixedToText(gv_vultureStageDistance, 0));
    libNtve_gf_CreateDialogItemLabel(gv_vultureDistanceDialog, 500, 25, c_anchorBottom, 0, 10, TextExpressionAssemble("Param/Expression/C759D4AC"), Color(100,100,100), false, 2.0);
    gv_vultureDistanceLabel = DialogControlLastCreated();
    libNtve_gf_SetDialogItemStyle(gv_vultureDistanceLabel, "TimerTextBottom", PlayerGroupAll());

mods/novastoryassets.sc2mod/base3.sc2maps/maps/campaign/nova/nova08.sc2mapMapScript.galaxy:1402

    libNtve_gf_SetDialogItemImageType(gv_gorgonDialog.lv_button3, c_triggerImageTypeNormal, PlayerGroupAll());
    DialogControlSetEnabled(gv_gorgonDialog.lv_button3, PlayerGroupAll(), true);
    libNtve_gf_CreateDialogItemLabel(gv_gorgonDialog.lv_dialog, 68, 68, c_anchorLeft, 35, 2, FixedToText(libNtve_gf_DifficultyValueFixed(180.0, 180.0, 240.0, 300.0), c_fixedPrecisionAny), ColorWithAlpha(0,0,0,0), false, 2.0);
    gv_gorgonDialog.lv_timeLabel1 = DialogControlLastCreated();
    libNtve_gf_SetDialogItemStyle(gv_gorgonDialog.lv_timeLabel1, "GorgonTimerText", PlayerGroupAll());

mods/novastoryassets.sc2mod/base3.sc2maps/maps/campaign/nova/nova08.sc2mapMapScript.galaxy:1406

    libNtve_gf_SetDialogItemStyle(gv_gorgonDialog.lv_timeLabel1, "GorgonTimerText", PlayerGroupAll());
    DialogControlSetVisible(gv_gorgonDialog.lv_timeLabel1, PlayerGroupAll(), false);
    libNtve_gf_CreateDialogItemLabel(gv_gorgonDialog.lv_dialog, 68, 68, c_anchorLeft, 115, 2, FixedToText(libNtve_gf_DifficultyValueFixed(180.0, 180.0, 240.0, 300.0), c_fixedPrecisionAny), ColorWithAlpha(0,0,0,0), false, 2.0);
    gv_gorgonDialog.lv_timeLabel2 = DialogControlLastCreated();
    libNtve_gf_SetDialogItemStyle(gv_gorgonDialog.lv_timeLabel2, "GorgonTimerText", PlayerGroupAll());

mods/novastoryassets.sc2mod/base3.sc2maps/maps/campaign/nova/nova08.sc2mapMapScript.galaxy:1410

    libNtve_gf_SetDialogItemStyle(gv_gorgonDialog.lv_timeLabel2, "GorgonTimerText", PlayerGroupAll());
    DialogControlSetVisible(gv_gorgonDialog.lv_timeLabel2, PlayerGroupAll(), false);
    libNtve_gf_CreateDialogItemLabel(gv_gorgonDialog.lv_dialog, 68, 68, c_anchorLeft, 195, 2, FixedToText(libNtve_gf_DifficultyValueFixed(180.0, 180.0, 240.0, 300.0), c_fixedPrecisionAny), ColorWithAlpha(0,0,0,0), false, 2.0);
    gv_gorgonDialog.lv_timeLabel3 = DialogControlLastCreated();
    libNtve_gf_SetDialogItemStyle(gv_gorgonDialog.lv_timeLabel3, "GorgonTimerText", PlayerGroupAll());

mods/starcoop/starcoop.sc2modbase.sc2data/LibCOMU.galaxy:7695

    DialogSetImageVisible(DialogLastCreated(), false);
    DialogSetVisible(DialogLastCreated(), PlayerGroupAll(), true);
    libNtve_gf_CreateDialogItemLabel(DialogLastCreated(), 1000, 50, c_anchorCenter, 0, 100, StringExternal("Param/Value/lib_COMU_6FE6FC64"), Color(100.00, 0.00, 0.00), false, 2.0);
    libNtve_gf_SetDialogItemStyle(DialogControlLastCreated(), "ModCenterSize32Bold", PlayerGroupAll());
    DialogControlSetVisible(DialogControlLastCreated(), PlayerGroupAll(), false);

mods/starcoop/starcoop.sc2modbase.sc2data/LibCOMU.galaxy:7699

    DialogControlSetVisible(DialogControlLastCreated(), PlayerGroupAll(), false);
    libCOMU_gv_cT_FoodHuntWarningLabel = DialogControlLastCreated();
    libNtve_gf_CreateDialogItemLabel(DialogLastCreated(), 1000, 50, c_anchorCenter, 0, 50, StringExternal("Param/Value/lib_COMU_12147283"), Color(100.00, 0.00, 0.00), false, 2.0);
    libNtve_gf_SetDialogItemStyle(DialogControlLastCreated(), "ModCenterSize32Bold", PlayerGroupAll());
    DialogControlSetVisible(DialogControlLastCreated(), PlayerGroupAll(), false);