├── .gitattributes ├── .gitignore ├── .idea ├── .gitignore ├── Guitar-Hero-III-Tools.iml ├── aws.xml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── CRC.py ├── GH Toolkit.py ├── LICENSE ├── README.md ├── __init__.py ├── anim_loops.txt ├── compile-folder.bat ├── compile-onefile.bat ├── conversion_files ├── PS3 Assets │ ├── GH3 │ │ ├── ICON0.PNG │ │ ├── PARAM.SFO │ │ └── PS3LOGO.DAT │ ├── GHWoR │ │ ├── ICON0.PNG │ │ ├── PARAM.SFO │ │ └── PS3LOGO.DAT │ └── VRAM.PAK.PS3 ├── basic_loops.txt ├── gh3_scripts.qb.xen ├── ghm_guitar_animation_data.txt ├── ghsh_guitar_animation_data.txt ├── ghvh_guitar_animation_data.txt ├── ghwt_guitar_animation_data.txt ├── qs_e.txt ├── thumbnail_gh3.png ├── thumbnail_wor.png └── wor_anim_sets.txt ├── convert_5_to_wt.py ├── create_audio ├── LookupTable.py ├── __init__.py ├── audio_functions.py ├── combine_fsb.bat ├── crypt_keys.py ├── default_audio │ └── blank.mp3 └── strip_mp3_padding.py ├── dbg.py ├── debug.txt ├── debug_qs.py ├── gh_sections.py ├── ghtoolkit.py ├── gui ├── __init__.py ├── full_package.py ├── gui_init │ └── __init__.py ├── gui_initialize.py ├── gui_test.py ├── main_window.py ├── main_window2 │ ├── __init__.py │ ├── mainwindow.ui │ └── mainwindow.ui.autosave ├── make_gh_mid.py ├── pak_edit │ ├── __init__.py │ └── pak_manipulation.py ├── project_files │ ├── __init__.py │ ├── compile_package.py │ ├── compile_package.ui │ ├── mainwindow.ui │ ├── mainwindow_ui.py │ ├── pak_extract.ui │ ├── pak_extract_ui.py │ └── remake_gui.bat ├── song_compile.py ├── toolkit_gui.py └── toolkit_gui.ui ├── midqb_gen ├── CreatePAK.py ├── MidQbGen.py ├── Reaper MIDI Templates │ ├── GH3 Venue.txt │ └── example.mid ├── Sections.py ├── __init__.py ├── midqb_classes.py ├── midqb_definitions.py ├── midqb_functions.py └── setup.py ├── pak_extract ├── PAKExtract.py ├── QB2Text.py ├── Text2QB - GH5.bat ├── Text2QB - WT.bat ├── Text2QB.py ├── __init__.py ├── change_song_ids.py ├── lzss_comp_test.py ├── pak_classes.py ├── pak_definitions.py ├── pak_functions.py ├── qb2text2qb_tester.py ├── re-animate_songs.py └── setup.py ├── requirements ├── install_requirements.bat └── requirements.txt ├── ska_converter ├── README.md ├── __init__.py ├── copy_to_mods.bat ├── read_ska.py ├── ska_classes.py ├── ska_definitions.py ├── ska_functions.py ├── ska_switch.py ├── ska_to_text.py └── test.txt ├── toolkit_functions.py ├── toolkit_gui_pak.py └── toolkit_variables.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/Guitar-Hero-III-Tools.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/.idea/Guitar-Hero-III-Tools.iml -------------------------------------------------------------------------------- /.idea/aws.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/.idea/aws.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /CRC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/CRC.py -------------------------------------------------------------------------------- /GH Toolkit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/GH Toolkit.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /anim_loops.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/anim_loops.txt -------------------------------------------------------------------------------- /compile-folder.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/compile-folder.bat -------------------------------------------------------------------------------- /compile-onefile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/compile-onefile.bat -------------------------------------------------------------------------------- /conversion_files/PS3 Assets/GH3/ICON0.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/conversion_files/PS3 Assets/GH3/ICON0.PNG -------------------------------------------------------------------------------- /conversion_files/PS3 Assets/GH3/PARAM.SFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/conversion_files/PS3 Assets/GH3/PARAM.SFO -------------------------------------------------------------------------------- /conversion_files/PS3 Assets/GH3/PS3LOGO.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/conversion_files/PS3 Assets/GH3/PS3LOGO.DAT -------------------------------------------------------------------------------- /conversion_files/PS3 Assets/GHWoR/ICON0.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/conversion_files/PS3 Assets/GHWoR/ICON0.PNG -------------------------------------------------------------------------------- /conversion_files/PS3 Assets/GHWoR/PARAM.SFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/conversion_files/PS3 Assets/GHWoR/PARAM.SFO -------------------------------------------------------------------------------- /conversion_files/PS3 Assets/GHWoR/PS3LOGO.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/conversion_files/PS3 Assets/GHWoR/PS3LOGO.DAT -------------------------------------------------------------------------------- /conversion_files/PS3 Assets/VRAM.PAK.PS3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/conversion_files/PS3 Assets/VRAM.PAK.PS3 -------------------------------------------------------------------------------- /conversion_files/basic_loops.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/conversion_files/basic_loops.txt -------------------------------------------------------------------------------- /conversion_files/gh3_scripts.qb.xen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/conversion_files/gh3_scripts.qb.xen -------------------------------------------------------------------------------- /conversion_files/ghm_guitar_animation_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/conversion_files/ghm_guitar_animation_data.txt -------------------------------------------------------------------------------- /conversion_files/ghsh_guitar_animation_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/conversion_files/ghsh_guitar_animation_data.txt -------------------------------------------------------------------------------- /conversion_files/ghvh_guitar_animation_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/conversion_files/ghvh_guitar_animation_data.txt -------------------------------------------------------------------------------- /conversion_files/ghwt_guitar_animation_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/conversion_files/ghwt_guitar_animation_data.txt -------------------------------------------------------------------------------- /conversion_files/qs_e.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/conversion_files/qs_e.txt -------------------------------------------------------------------------------- /conversion_files/thumbnail_gh3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/conversion_files/thumbnail_gh3.png -------------------------------------------------------------------------------- /conversion_files/thumbnail_wor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/conversion_files/thumbnail_wor.png -------------------------------------------------------------------------------- /conversion_files/wor_anim_sets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/conversion_files/wor_anim_sets.txt -------------------------------------------------------------------------------- /convert_5_to_wt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/convert_5_to_wt.py -------------------------------------------------------------------------------- /create_audio/LookupTable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/create_audio/LookupTable.py -------------------------------------------------------------------------------- /create_audio/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /create_audio/audio_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/create_audio/audio_functions.py -------------------------------------------------------------------------------- /create_audio/combine_fsb.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | audio_functions.py combine -------------------------------------------------------------------------------- /create_audio/crypt_keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/create_audio/crypt_keys.py -------------------------------------------------------------------------------- /create_audio/default_audio/blank.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/create_audio/default_audio/blank.mp3 -------------------------------------------------------------------------------- /create_audio/strip_mp3_padding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/create_audio/strip_mp3_padding.py -------------------------------------------------------------------------------- /dbg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/dbg.py -------------------------------------------------------------------------------- /debug.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/debug.txt -------------------------------------------------------------------------------- /debug_qs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/debug_qs.py -------------------------------------------------------------------------------- /gh_sections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/gh_sections.py -------------------------------------------------------------------------------- /ghtoolkit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/ghtoolkit.py -------------------------------------------------------------------------------- /gui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gui/full_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/gui/full_package.py -------------------------------------------------------------------------------- /gui/gui_init/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gui/gui_initialize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/gui/gui_initialize.py -------------------------------------------------------------------------------- /gui/gui_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/gui/gui_test.py -------------------------------------------------------------------------------- /gui/main_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/gui/main_window.py -------------------------------------------------------------------------------- /gui/main_window2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gui/main_window2/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/gui/main_window2/mainwindow.ui -------------------------------------------------------------------------------- /gui/main_window2/mainwindow.ui.autosave: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/gui/main_window2/mainwindow.ui.autosave -------------------------------------------------------------------------------- /gui/make_gh_mid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/gui/make_gh_mid.py -------------------------------------------------------------------------------- /gui/pak_edit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gui/pak_edit/pak_manipulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/gui/pak_edit/pak_manipulation.py -------------------------------------------------------------------------------- /gui/project_files/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gui/project_files/compile_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/gui/project_files/compile_package.py -------------------------------------------------------------------------------- /gui/project_files/compile_package.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/gui/project_files/compile_package.ui -------------------------------------------------------------------------------- /gui/project_files/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/gui/project_files/mainwindow.ui -------------------------------------------------------------------------------- /gui/project_files/mainwindow_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/gui/project_files/mainwindow_ui.py -------------------------------------------------------------------------------- /gui/project_files/pak_extract.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/gui/project_files/pak_extract.ui -------------------------------------------------------------------------------- /gui/project_files/pak_extract_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/gui/project_files/pak_extract_ui.py -------------------------------------------------------------------------------- /gui/project_files/remake_gui.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/gui/project_files/remake_gui.bat -------------------------------------------------------------------------------- /gui/song_compile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/gui/song_compile.py -------------------------------------------------------------------------------- /gui/toolkit_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/gui/toolkit_gui.py -------------------------------------------------------------------------------- /gui/toolkit_gui.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/gui/toolkit_gui.ui -------------------------------------------------------------------------------- /midqb_gen/CreatePAK.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/midqb_gen/CreatePAK.py -------------------------------------------------------------------------------- /midqb_gen/MidQbGen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/midqb_gen/MidQbGen.py -------------------------------------------------------------------------------- /midqb_gen/Reaper MIDI Templates/GH3 Venue.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/midqb_gen/Reaper MIDI Templates/GH3 Venue.txt -------------------------------------------------------------------------------- /midqb_gen/Reaper MIDI Templates/example.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/midqb_gen/Reaper MIDI Templates/example.mid -------------------------------------------------------------------------------- /midqb_gen/Sections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/midqb_gen/Sections.py -------------------------------------------------------------------------------- /midqb_gen/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /midqb_gen/midqb_classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/midqb_gen/midqb_classes.py -------------------------------------------------------------------------------- /midqb_gen/midqb_definitions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/midqb_gen/midqb_definitions.py -------------------------------------------------------------------------------- /midqb_gen/midqb_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/midqb_gen/midqb_functions.py -------------------------------------------------------------------------------- /midqb_gen/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/midqb_gen/setup.py -------------------------------------------------------------------------------- /pak_extract/PAKExtract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/pak_extract/PAKExtract.py -------------------------------------------------------------------------------- /pak_extract/QB2Text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/pak_extract/QB2Text.py -------------------------------------------------------------------------------- /pak_extract/Text2QB - GH5.bat: -------------------------------------------------------------------------------- 1 | Text2QB.py -game GH5 -------------------------------------------------------------------------------- /pak_extract/Text2QB - WT.bat: -------------------------------------------------------------------------------- 1 | Text2QB.py -game GHWT -------------------------------------------------------------------------------- /pak_extract/Text2QB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/pak_extract/Text2QB.py -------------------------------------------------------------------------------- /pak_extract/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pak_extract/change_song_ids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/pak_extract/change_song_ids.py -------------------------------------------------------------------------------- /pak_extract/lzss_comp_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/pak_extract/lzss_comp_test.py -------------------------------------------------------------------------------- /pak_extract/pak_classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/pak_extract/pak_classes.py -------------------------------------------------------------------------------- /pak_extract/pak_definitions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/pak_extract/pak_definitions.py -------------------------------------------------------------------------------- /pak_extract/pak_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/pak_extract/pak_functions.py -------------------------------------------------------------------------------- /pak_extract/qb2text2qb_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/pak_extract/qb2text2qb_tester.py -------------------------------------------------------------------------------- /pak_extract/re-animate_songs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/pak_extract/re-animate_songs.py -------------------------------------------------------------------------------- /pak_extract/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/pak_extract/setup.py -------------------------------------------------------------------------------- /requirements/install_requirements.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | python -m pip install -r requirements.txt 4 | 5 | pause -------------------------------------------------------------------------------- /requirements/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/requirements/requirements.txt -------------------------------------------------------------------------------- /ska_converter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/ska_converter/README.md -------------------------------------------------------------------------------- /ska_converter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ska_converter/copy_to_mods.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/ska_converter/copy_to_mods.bat -------------------------------------------------------------------------------- /ska_converter/read_ska.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/ska_converter/read_ska.py -------------------------------------------------------------------------------- /ska_converter/ska_classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/ska_converter/ska_classes.py -------------------------------------------------------------------------------- /ska_converter/ska_definitions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/ska_converter/ska_definitions.py -------------------------------------------------------------------------------- /ska_converter/ska_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/ska_converter/ska_functions.py -------------------------------------------------------------------------------- /ska_converter/ska_switch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/ska_converter/ska_switch.py -------------------------------------------------------------------------------- /ska_converter/ska_to_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/ska_converter/ska_to_text.py -------------------------------------------------------------------------------- /ska_converter/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/ska_converter/test.txt -------------------------------------------------------------------------------- /toolkit_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/toolkit_functions.py -------------------------------------------------------------------------------- /toolkit_gui_pak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/toolkit_gui_pak.py -------------------------------------------------------------------------------- /toolkit_variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/Addys-Guitar-Hero-Toolkit/HEAD/toolkit_variables.py --------------------------------------------------------------------------------