One question, how do you skip the week selection menu in psych? Like they did in Mistful Crimson Morning, example below
(before and after i clicked the play button)
Website Created by fabr with logo by Logined Guest and inspired by Requiem and Psych News. Support Friday Night Funkin' on Newgrounds and Itch.io All characters and original Friday Night Funkin' game material belong to The Funkin Crew
if its freeplay than do this
PlayState.SONG = Song.loadFromJson("songname", "songname"); PlayState.isStoryMode = false; PlayState.storyDifficulty = 1; LoadingState.loadAndSwitchState(new PlayState());
for story mode do this
PlayState.storyPlaylist = ["first song", "second song", "third song"]; PlayState.isStoryMode = true; PlayState.storyDifficulty = 1; PlayState.SONG = Song.loadFromJson(PlayState.storyPlaylist[0].toLowerCase(), PlayState.storyPlaylist[0].toLowerCase()); PlayState.campaignScore = 0; LoadingState.loadAndSwitchState(new PlayState(), true); FreeplayState.destroyFreeplayVocals();