#TouhouDanmakufu[Stage] #Title[PokeDigiDanmaku Full Game Hard] #Text[PokéDigiDanmaku Made by Sparen.] #PlayLevel[Hard] #Player[.\..\PDDVee\veemon.dnh] #ScriptVersion[2] script_stage_main{ #include_function ".\FxnList.txt" #include_function ".\variables.txt" #include_function ".\Stage1tasks.txt" #include_function ".\Stage2tasks.txt" let currentStage = 0; @Initialize{ ExpertEx(true, 3, 3); //Debug controls IUH allowed?, Times to continue, Player's lives PDDHard; } task PDDHard { currentStage = 1; wait(1); Stage1H; currentStage = 2; wait(30); Stage2H; /*currentStage = 3; wait(30); Stage3H; currentStage = 4; wait(30); Stage4H; currentStage = 5; wait(30); Stage5H; currentStage = 6; wait(30); Stage6H;*/ ClearStage; } @MainLoop{ yield; } @BackGround{ if(currentStage == 1){DrawStage1;} if(currentStage == 2){DrawStage2;} if(currentStage == 3){DrawStage3;} /*if(currentStage == 4){DrawStage4;} if(currentStage == 5){DrawStage5;} if(currentStage == 6){DrawStage6;}*/ } @Finalize{ } }