#TouhouDanmakufu[Stage] #Title[PokeDigiDanmaku Full Game Normal] #Text[PokéDigiDanmaku Made by Sparen.] #PlayLevel[Normal] #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 PDDNormal; } task PDDNormal { currentStage = 1; wait(1); Stage1N; currentStage = 2; wait(30); Stage2N; /*currentStage = 3; wait(30); Stage3N; currentStage = 4; wait(30); Stage4N; currentStage = 5; wait(30); Stage5N; currentStage = 6; wait(30); Stage6N;*/ 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{ } }