# Create Tutorial

Grammar — Create a tutorial tip with title title, description description, icon icon, and movie __movie|Movie __for players and set its flashing state to flashing
FlagsNative | Action

Creates a tutorial that will display above the command card, and also adds the tutorial to the help panel.

# Arguments

  • playergroup — Players
  • text — Title
  • text — Description
  • string [ filepath ] — Icon
  • string [ filepath ] — Movie
  • bool — Flashing

Returns — void

native void HelpPanelAddTutorial(
	playergroup players,
	text titleText,
	text descriptionText,
	string iconPath,
	string moviePath,
	bool flashing,
);

Category: UI / Help Panel

# Examples

# campaigns/libertystory.sc2campaign

CampaignLib.galaxy

// L9869
HelpPanelAddTutorial(PlayerGroupAll(), lp_title, lp_description, lp_icon, lp_movie, true)
// L9963
HelpPanelAddTutorial(PlayerGroupAll(), libCamp_gv_tSX_Tutorial_HistoryTitle[lv_index], libCamp_gv_tSX_Tutorial_HistoryDescription[lv_index], libCamp_gv_tSX_Tutorial_HistoryIcon[lv_index], libCamp_gv_tSX_Tutorial_HistoryMovie[lv_index], false)