This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """ | |
| ## ## ### ######## ## ####### ## ## ######## | |
| ### ## ## ## ## ## ## ## ## ## ## ## | |
| #### ## ## ## ## ## ## ## ## ## ## | |
| ## ## ## ## ## ###### ## ####### ### ## ## | |
| ## #### ######### ## ## ## ## ## ## ## | |
| ## ### ## ## ## ## ## ## ## ## ## | |
| ## ## ## ## ######## ######## ######### ## ## ######## | |
| Required Libraries: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """ | |
| Converts FNF's Psych Engine JSON to TJA (Taiko no Tatsujin's Chart) | |
| Doesn't require any pip modules, you can launch it like normal! | |
| """ | |
| import json | |
| from tkinter import filedialog | |
| file = json.load(open(filedialog.askopenfilename(filetypes=[("Psych Engine Chart Compatible JSON", "*.json")]), "r")) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """ | |
| Python script that makes both bf and dad's section be in duet/dual mode!! | |
| Does NOT require any library and you can launch it and it'll do the work. | |
| Tested with a 1.5mb JSON, works fine. | |
| """ | |
| import json | |
| import os.path as path | |
| from tkinter import filedialog |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include "sound.h" | |
| #include <tremor/ivorbisfile.h> | |
| #include <string.h> | |
| #include <stdio.h> | |
| #define MAX_CHANNELS 24 // Maximum NDSP channels | |
| #define MAX_SOUNDS 24 // Maximum number of pre-cached sounds | |
| #define THREAD_STACK_SZ (32 * 1024) | |
| #define THREAD_AFFINITY -1 | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <3ds.h> | |
| #include <citro2d.h> | |
| // Prework those things. | |
| // Text Functions | |
| C2D_Text renderText; | |
| C2D_Font defaultFont; | |
| C2D_TextBuf g_staticBuf; | |
| u32 borderColor; | |
| u32 textColor; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <citro2d.h> | |
| #include <math.h> | |
| #include <3ds.h> | |
| // Prework those things. | |
| C2D_Text renderText; | |
| C2D_Font defaultFont; | |
| C2D_TextBuf g_staticBuf; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --[[ | |
| A Psych Engine Script that acts like you are streaming but in real time it's actually virtual. | |
| The users and messages you are seeing are from text files, specifically messages.txt and users.txt | |
| users.txt is where the users will act like, a lone viewer. | |
| messages.txt is where you can type your whole message and then place in there like it's a Twitch live stream. | |
| MAKE SURE BOTH FILES THAT ENDS WITH .TXT MUST BE IN scripts/ OR ELSE YOU'LL GET A SCRIPT ERROR. | |
| ]] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """ | |
| Randomly Generates a MIDI for you and you can set it up! | |
| It's very simple and easy to do! | |
| REQUIRES TQDM AND PRETTY_MIDI: pip install tqdm, pretty_midi | |
| """ | |
| from pretty_midi import PrettyMIDI, Instrument, Note | |
| from random import randint | |
| from tqdm import tqdm |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """ | |
| Converts a single midi to a fnf chart for psych engine <0.7.3 | |
| Odd Instruments are DAD section and Even Instruments are BF notes. | |
| REQUIRES pretty_midi and tqdm: pip install pretty_midi, tqdm | |
| You need "import.mid" next to the py file or else you'll get an error! | |
| """ | |
| import pretty_midi |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package; | |
| /* | |
| FNF CHART TO AYS CONVERTER! | |
| If you need the executable then link is in below. | |
| https://drive.google.com/file/d/1CjXfIDQ0OF_f2TNKPokAsa57Vwc2kVcj/view?usp=sharing | |
| */ | |
| import flixel.util.FlxSort; |
NewerOlder