how-to-make-true-slaves/data/Script/00_0500.txt

85 lines
1.2 KiB
Text
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

[OPスキップ]00_0500
//-------------------------------------------------------------
//
// 開始処理
//
//-------------------------------------------------------------
// r, g, b, a, frame
#FADE, 255,255,255,255, 0
#WAIT, 60,
#FADE, 255,255,255, 0, 60
// BGnum frame
#BGSET, 65, 0
#BGMPLAY, 300,
#MSGWINDOW_ON,
#MSG,
 Would you like to skip the opening event? (The
 game will start from the stage of territorial
 expansion and facility construction after the
#MSG,
 basic tutorial is completed. Loot and resources
 obtained from tutorial battles and events will be
 artificially compensated.)
// 選択肢
#SELECT,2
Watch the opening 0
Skip the opening 1
//--------------------------------------------
// オープニングを見る
//--------------------------------------------
#FLAGCHECK, 0, =, 1, 4,
{
#MSGWINDOW_OFF,
#MSGCLEAR,
#WAIT, 30
#FADE, 255,255,255,255, 60,
#WAIT, 60,
#LABELJUMP, 0, 0,
}
//--------------------------------------------
// オープニングをスキップする
//--------------------------------------------
#FLAGCHECK, 1, =, 1, 4,
{
#MSGWINDOW_OFF,
#MSGCLEAR,
#WAIT, 30
#FADE, 0, 0, 0, 0, 0,
#FADE, 0, 0, 0, 255, 60,
#WAIT, 60,
#TUTORIALSKIP,
#EVENTEND,
}
// 終了処理
#WAIT, 60,
#END,