├── .github └── workflows │ └── build.yml ├── .gitignore ├── README.md ├── _qb ├── dx │ ├── dx_fc_hud.q │ ├── dx_macros.q │ ├── dx_random_song_scripts.q │ ├── dx_startup.q │ ├── engine │ │ └── dx_tod_profiles.q │ └── menu │ │ ├── deluxe_menu.q │ │ ├── deluxe_menu_flow.q │ │ ├── manage_gig_menu.q │ │ └── modifiers_menu.q ├── game │ └── net │ │ └── menu_net_signin.q ├── guitar │ ├── guitar.q │ ├── guitar_band_profile.q │ ├── guitar_cameras.q │ ├── guitar_character.q │ ├── guitar_difficulty.q │ ├── guitar_events.q │ ├── guitar_gems.q │ ├── guitar_globaltags.q │ ├── guitar_highway.q │ ├── guitar_input.q │ ├── guitar_intro.q │ ├── guitar_memcard.q │ ├── guitar_menu.q │ ├── guitar_progression.q │ ├── guitar_score.q │ ├── guitar_starpower.q │ ├── guitar_transitions.q │ ├── highway_2d.q │ └── menu │ │ ├── bootup_menu_flow.q │ │ ├── menu_cheats.q │ │ ├── menu_press_any_button.q │ │ ├── menu_setlist.q │ │ ├── practice_menu_flow.q │ │ └── quickplay_menu_flow.q └── menu │ └── pause_menu_flow.q ├── dependencies ├── art │ └── gh3dx.ico ├── features.md ├── header.png ├── linux │ └── Honeycomb-CLI │ │ ├── Audio │ │ └── Blank Audio │ │ │ ├── 48k128kbps.mp3 │ │ │ └── blankWav.wav │ │ ├── FFMpegCore.pdb │ │ ├── GH-Toolkit-Core.pdb │ │ ├── Honeycomb │ │ ├── Honeycomb.pdb │ │ ├── MIDI │ │ └── Sections.txt │ │ ├── Melanchall_DryWetMidi_Native32.dll │ │ ├── Melanchall_DryWetMidi_Native64.dll │ │ ├── Melanchall_DryWetMidi_Native64.dylib │ │ ├── Other │ │ ├── animskas.txt │ │ └── cameraskas.txt │ │ ├── QBDebug │ │ ├── PS2Pak.dbg │ │ └── keys.dbg │ │ ├── Resources │ │ ├── GH3 │ │ │ ├── blank_songlist.q │ │ │ ├── blank_songlist_f.q │ │ │ ├── blank_songlist_g.q │ │ │ ├── blank_songlist_i.q │ │ │ ├── blank_songlist_s.q │ │ │ └── script_override.q │ │ ├── GHA │ │ │ ├── blank_songlist.q │ │ │ ├── blank_songlist_f.q │ │ │ ├── blank_songlist_g.q │ │ │ ├── blank_songlist_i.q │ │ │ └── blank_songlist_s.q │ │ ├── GHWoR │ │ │ ├── blank_qs.qs │ │ │ ├── blank_scripts.qb │ │ │ └── blank_songlist.q │ │ ├── Onyx │ │ │ ├── gh3-thumbnail.png │ │ │ ├── gh5-thumbnail.png │ │ │ ├── gha-thumbnail.png │ │ │ ├── ghwor-thumbnail.png │ │ │ ├── ghwt-thumbnail.png │ │ │ └── repack-stfs.yaml │ │ └── PS3 │ │ │ ├── GH3 │ │ │ ├── ICON0.PNG │ │ │ ├── PARAM.SFO │ │ │ └── PS3LOGO.DAT │ │ │ ├── GHWoR │ │ │ ├── ICON0.PNG │ │ │ ├── PARAM.SFO │ │ │ └── PS3LOGO.DAT │ │ │ ├── VRAM_GH3 │ │ │ └── VRAM_GHWOR │ │ ├── Tools │ │ └── RemoveReadOnly │ │ │ ├── RemoveReadOnly.deps.json │ │ │ ├── RemoveReadOnly.exe │ │ │ ├── RemoveReadOnly.pdb │ │ │ └── RemoveReadOnly.runtimeconfig.json │ │ ├── libmp3lame.32.dll │ │ └── libmp3lame.64.dll ├── loadpak_patches │ ├── PS3 │ │ └── scripts │ │ │ └── guitar │ │ │ └── guitar.q │ ├── pc │ │ └── scripts │ │ │ └── guitar │ │ │ └── guitar.q │ ├── ps2 │ │ └── scripts │ │ │ └── guitar │ │ │ └── guitar.qb.q │ ├── wii │ │ └── scripts │ │ │ └── guitar │ │ │ └── guitar.q │ └── xbox │ │ └── scripts │ │ └── guitar │ │ └── guitar.q ├── python │ ├── configure_build.py │ └── gen_version.py ├── syntax │ └── Q-Script.sublime-syntax └── windows │ └── Honeycomb-CLI │ ├── Audio │ └── Blank Audio │ │ ├── 48k128kbps.mp3 │ │ └── blankWav.wav │ ├── FFMpegCore.dll │ ├── FFMpegCore.pdb │ ├── GH-Toolkit-Core.dll │ ├── GH-Toolkit-Core.pdb │ ├── Honeycomb.deps.json │ ├── Honeycomb.dll │ ├── Honeycomb.exe │ ├── Honeycomb.pdb │ ├── Honeycomb.runtimeconfig.json │ ├── ICSharpCode.SharpZipLib.dll │ ├── INIFileParser.dll │ ├── Instances.dll │ ├── MIDI │ └── Sections.txt │ ├── Melanchall.DryWetMidi.dll │ ├── Melanchall_DryWetMidi_Native32.dll │ ├── Melanchall_DryWetMidi_Native64.dll │ ├── Melanchall_DryWetMidi_Native64.dylib │ ├── NAudio.Asio.dll │ ├── NAudio.Core.dll │ ├── NAudio.Lame.dll │ ├── NAudio.Midi.dll │ ├── NAudio.Wasapi.dll │ ├── NAudio.WinMM.dll │ ├── NAudio.dll │ ├── Newtonsoft.Json.dll │ ├── Other │ ├── animskas.txt │ └── cameraskas.txt │ ├── QBDebug │ ├── PS2Pak.dbg │ └── keys.dbg │ ├── Redpoint.ThirdParty.System.CommandLine.dll │ ├── Resources │ ├── GH3 │ │ ├── blank_songlist.q │ │ ├── blank_songlist_f.q │ │ ├── blank_songlist_g.q │ │ ├── blank_songlist_i.q │ │ ├── blank_songlist_s.q │ │ └── script_override.q │ ├── GHA │ │ ├── blank_songlist.q │ │ ├── blank_songlist_f.q │ │ ├── blank_songlist_g.q │ │ ├── blank_songlist_i.q │ │ └── blank_songlist_s.q │ ├── GHWoR │ │ ├── blank_qs.qs │ │ ├── blank_scripts.qb │ │ └── blank_songlist.q │ ├── Onyx │ │ ├── gh3-thumbnail.png │ │ ├── gh5-thumbnail.png │ │ ├── gha-thumbnail.png │ │ ├── ghwor-thumbnail.png │ │ ├── ghwt-thumbnail.png │ │ └── repack-stfs.yaml │ ├── PS3 │ │ ├── GH3 │ │ │ ├── ICON0.PNG │ │ │ ├── PARAM.SFO │ │ │ └── PS3LOGO.DAT │ │ ├── GHA │ │ │ ├── ICON0.PNG │ │ │ ├── PARAM.SFO │ │ │ └── PS3LOGO.DAT │ │ ├── GHWoR │ │ │ ├── ICON0.PNG │ │ │ ├── PARAM.SFO │ │ │ └── PS3LOGO.DAT │ │ ├── VRAM_GH3 │ │ ├── VRAM_GHA │ │ └── VRAM_GHWOR │ └── Sections │ │ └── all_sections.q │ ├── System.IO.Pipelines.dll │ ├── System.Text.Encodings.Web.dll │ ├── System.Text.Json.dll │ ├── Tools │ └── RemoveReadOnly │ │ ├── RemoveReadOnly.deps.json │ │ ├── RemoveReadOnly.dll │ │ ├── RemoveReadOnly.exe │ │ ├── RemoveReadOnly.pdb │ │ └── RemoveReadOnly.runtimeconfig.json │ ├── Ude.NetStandard.dll │ ├── YamlDotNet.dll │ ├── libmp3lame.32.dll │ ├── libmp3lame.64.dll │ └── runtimes │ └── browser │ └── lib │ └── net8.0 │ └── System.Text.Encodings.Web.dll ├── platform ├── pc │ └── DATA │ │ └── PAK │ │ ├── qb.pab.xen │ │ └── qb.pak.xen ├── ps2 │ └── pak │ │ ├── qb.pab.ps2 │ │ └── qb.pak.ps2 ├── ps3 │ ├── PS3_GAME │ │ └── USRDIR │ │ │ └── DATA │ │ │ ├── COMPRESSED │ │ │ └── PS3 │ │ │ │ ├── COMPRESS.TOC.LST.PS3 │ │ │ │ └── COMPRESS.TOC.PS3 │ │ │ └── PAK │ │ │ ├── QB.PAB.PS3 │ │ │ └── QB.PAK.PS3 │ └── note_limit_fix │ │ ├── README.txt │ │ └── USRDIR │ │ └── EBOOT.BIN ├── wii │ └── files │ │ └── pak │ │ └── qb.pak.ngc └── xbox │ ├── DATA │ ├── COMPRESSED │ │ ├── compress.toc.lst.xen │ │ └── compress.toc.xen │ └── PAK │ │ ├── qb.pab.xen │ │ └── qb.pak.xen │ ├── default-note-limit-fix.xex │ ├── default.xex │ └── note limit fix readme.txt └── scripts ├── linux ├── build_pc.sh ├── build_ps2.sh ├── build_ps3.sh ├── build_wii.sh └── build_xbox.sh └── windows ├── build_pc.bat ├── build_ps2.bat ├── build_ps3.bat ├── build_wii.bat └── build_xbox.bat /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/README.md -------------------------------------------------------------------------------- /_qb/dx/dx_fc_hud.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/_qb/dx/dx_fc_hud.q -------------------------------------------------------------------------------- /_qb/dx/dx_macros.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/_qb/dx/dx_macros.q -------------------------------------------------------------------------------- /_qb/dx/dx_random_song_scripts.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/_qb/dx/dx_random_song_scripts.q -------------------------------------------------------------------------------- /_qb/dx/dx_startup.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/_qb/dx/dx_startup.q -------------------------------------------------------------------------------- /_qb/dx/engine/dx_tod_profiles.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/_qb/dx/engine/dx_tod_profiles.q -------------------------------------------------------------------------------- /_qb/dx/menu/deluxe_menu.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/_qb/dx/menu/deluxe_menu.q -------------------------------------------------------------------------------- /_qb/dx/menu/deluxe_menu_flow.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/_qb/dx/menu/deluxe_menu_flow.q -------------------------------------------------------------------------------- /_qb/dx/menu/manage_gig_menu.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/_qb/dx/menu/manage_gig_menu.q -------------------------------------------------------------------------------- /_qb/dx/menu/modifiers_menu.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/_qb/dx/menu/modifiers_menu.q -------------------------------------------------------------------------------- /_qb/game/net/menu_net_signin.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/_qb/game/net/menu_net_signin.q -------------------------------------------------------------------------------- /_qb/guitar/guitar.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/_qb/guitar/guitar.q -------------------------------------------------------------------------------- /_qb/guitar/guitar_band_profile.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/_qb/guitar/guitar_band_profile.q -------------------------------------------------------------------------------- /_qb/guitar/guitar_cameras.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/_qb/guitar/guitar_cameras.q -------------------------------------------------------------------------------- /_qb/guitar/guitar_character.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/_qb/guitar/guitar_character.q -------------------------------------------------------------------------------- /_qb/guitar/guitar_difficulty.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/_qb/guitar/guitar_difficulty.q -------------------------------------------------------------------------------- /_qb/guitar/guitar_events.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/_qb/guitar/guitar_events.q -------------------------------------------------------------------------------- /_qb/guitar/guitar_gems.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/_qb/guitar/guitar_gems.q -------------------------------------------------------------------------------- /_qb/guitar/guitar_globaltags.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/_qb/guitar/guitar_globaltags.q -------------------------------------------------------------------------------- /_qb/guitar/guitar_highway.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/_qb/guitar/guitar_highway.q -------------------------------------------------------------------------------- /_qb/guitar/guitar_input.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/_qb/guitar/guitar_input.q -------------------------------------------------------------------------------- /_qb/guitar/guitar_intro.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/_qb/guitar/guitar_intro.q -------------------------------------------------------------------------------- /_qb/guitar/guitar_memcard.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/_qb/guitar/guitar_memcard.q -------------------------------------------------------------------------------- /_qb/guitar/guitar_menu.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/_qb/guitar/guitar_menu.q -------------------------------------------------------------------------------- /_qb/guitar/guitar_progression.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/_qb/guitar/guitar_progression.q -------------------------------------------------------------------------------- /_qb/guitar/guitar_score.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/_qb/guitar/guitar_score.q -------------------------------------------------------------------------------- /_qb/guitar/guitar_starpower.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/_qb/guitar/guitar_starpower.q -------------------------------------------------------------------------------- /_qb/guitar/guitar_transitions.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/_qb/guitar/guitar_transitions.q -------------------------------------------------------------------------------- /_qb/guitar/highway_2d.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/_qb/guitar/highway_2d.q -------------------------------------------------------------------------------- /_qb/guitar/menu/bootup_menu_flow.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/_qb/guitar/menu/bootup_menu_flow.q -------------------------------------------------------------------------------- /_qb/guitar/menu/menu_cheats.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/_qb/guitar/menu/menu_cheats.q -------------------------------------------------------------------------------- /_qb/guitar/menu/menu_press_any_button.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/_qb/guitar/menu/menu_press_any_button.q -------------------------------------------------------------------------------- /_qb/guitar/menu/menu_setlist.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/_qb/guitar/menu/menu_setlist.q -------------------------------------------------------------------------------- /_qb/guitar/menu/practice_menu_flow.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/_qb/guitar/menu/practice_menu_flow.q -------------------------------------------------------------------------------- /_qb/guitar/menu/quickplay_menu_flow.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/_qb/guitar/menu/quickplay_menu_flow.q -------------------------------------------------------------------------------- /_qb/menu/pause_menu_flow.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/_qb/menu/pause_menu_flow.q -------------------------------------------------------------------------------- /dependencies/art/gh3dx.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/art/gh3dx.ico -------------------------------------------------------------------------------- /dependencies/features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/features.md -------------------------------------------------------------------------------- /dependencies/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/header.png -------------------------------------------------------------------------------- /dependencies/linux/Honeycomb-CLI/Audio/Blank Audio/48k128kbps.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/linux/Honeycomb-CLI/Audio/Blank Audio/48k128kbps.mp3 -------------------------------------------------------------------------------- /dependencies/linux/Honeycomb-CLI/Audio/Blank Audio/blankWav.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/linux/Honeycomb-CLI/Audio/Blank Audio/blankWav.wav -------------------------------------------------------------------------------- /dependencies/linux/Honeycomb-CLI/FFMpegCore.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/linux/Honeycomb-CLI/FFMpegCore.pdb -------------------------------------------------------------------------------- /dependencies/linux/Honeycomb-CLI/GH-Toolkit-Core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/linux/Honeycomb-CLI/GH-Toolkit-Core.pdb -------------------------------------------------------------------------------- /dependencies/linux/Honeycomb-CLI/Honeycomb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/linux/Honeycomb-CLI/Honeycomb -------------------------------------------------------------------------------- /dependencies/linux/Honeycomb-CLI/Honeycomb.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/linux/Honeycomb-CLI/Honeycomb.pdb -------------------------------------------------------------------------------- /dependencies/linux/Honeycomb-CLI/MIDI/Sections.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/linux/Honeycomb-CLI/MIDI/Sections.txt -------------------------------------------------------------------------------- /dependencies/linux/Honeycomb-CLI/Melanchall_DryWetMidi_Native32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/linux/Honeycomb-CLI/Melanchall_DryWetMidi_Native32.dll -------------------------------------------------------------------------------- /dependencies/linux/Honeycomb-CLI/Melanchall_DryWetMidi_Native64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/linux/Honeycomb-CLI/Melanchall_DryWetMidi_Native64.dll -------------------------------------------------------------------------------- /dependencies/linux/Honeycomb-CLI/Melanchall_DryWetMidi_Native64.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/linux/Honeycomb-CLI/Melanchall_DryWetMidi_Native64.dylib -------------------------------------------------------------------------------- /dependencies/linux/Honeycomb-CLI/Other/animskas.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/linux/Honeycomb-CLI/Other/animskas.txt -------------------------------------------------------------------------------- /dependencies/linux/Honeycomb-CLI/Other/cameraskas.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/linux/Honeycomb-CLI/Other/cameraskas.txt -------------------------------------------------------------------------------- /dependencies/linux/Honeycomb-CLI/QBDebug/PS2Pak.dbg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/linux/Honeycomb-CLI/QBDebug/PS2Pak.dbg -------------------------------------------------------------------------------- /dependencies/linux/Honeycomb-CLI/QBDebug/keys.dbg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/linux/Honeycomb-CLI/QBDebug/keys.dbg -------------------------------------------------------------------------------- /dependencies/linux/Honeycomb-CLI/Resources/GH3/blank_songlist.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/linux/Honeycomb-CLI/Resources/GH3/blank_songlist.q -------------------------------------------------------------------------------- /dependencies/linux/Honeycomb-CLI/Resources/GH3/blank_songlist_f.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/linux/Honeycomb-CLI/Resources/GH3/blank_songlist_f.q -------------------------------------------------------------------------------- /dependencies/linux/Honeycomb-CLI/Resources/GH3/blank_songlist_g.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/linux/Honeycomb-CLI/Resources/GH3/blank_songlist_g.q -------------------------------------------------------------------------------- /dependencies/linux/Honeycomb-CLI/Resources/GH3/blank_songlist_i.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/linux/Honeycomb-CLI/Resources/GH3/blank_songlist_i.q -------------------------------------------------------------------------------- /dependencies/linux/Honeycomb-CLI/Resources/GH3/blank_songlist_s.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/linux/Honeycomb-CLI/Resources/GH3/blank_songlist_s.q -------------------------------------------------------------------------------- /dependencies/linux/Honeycomb-CLI/Resources/GH3/script_override.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/linux/Honeycomb-CLI/Resources/GH3/script_override.q -------------------------------------------------------------------------------- /dependencies/linux/Honeycomb-CLI/Resources/GHA/blank_songlist.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/linux/Honeycomb-CLI/Resources/GHA/blank_songlist.q -------------------------------------------------------------------------------- /dependencies/linux/Honeycomb-CLI/Resources/GHA/blank_songlist_f.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/linux/Honeycomb-CLI/Resources/GHA/blank_songlist_f.q -------------------------------------------------------------------------------- /dependencies/linux/Honeycomb-CLI/Resources/GHA/blank_songlist_g.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/linux/Honeycomb-CLI/Resources/GHA/blank_songlist_g.q -------------------------------------------------------------------------------- /dependencies/linux/Honeycomb-CLI/Resources/GHA/blank_songlist_i.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/linux/Honeycomb-CLI/Resources/GHA/blank_songlist_i.q -------------------------------------------------------------------------------- /dependencies/linux/Honeycomb-CLI/Resources/GHA/blank_songlist_s.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/linux/Honeycomb-CLI/Resources/GHA/blank_songlist_s.q -------------------------------------------------------------------------------- /dependencies/linux/Honeycomb-CLI/Resources/GHWoR/blank_qs.qs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/linux/Honeycomb-CLI/Resources/GHWoR/blank_qs.qs -------------------------------------------------------------------------------- /dependencies/linux/Honeycomb-CLI/Resources/GHWoR/blank_scripts.qb: -------------------------------------------------------------------------------- 1 | c`L -------------------------------------------------------------------------------- /dependencies/linux/Honeycomb-CLI/Resources/GHWoR/blank_songlist.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/linux/Honeycomb-CLI/Resources/GHWoR/blank_songlist.q -------------------------------------------------------------------------------- /dependencies/linux/Honeycomb-CLI/Resources/Onyx/gh3-thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/linux/Honeycomb-CLI/Resources/Onyx/gh3-thumbnail.png -------------------------------------------------------------------------------- /dependencies/linux/Honeycomb-CLI/Resources/Onyx/gh5-thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/linux/Honeycomb-CLI/Resources/Onyx/gh5-thumbnail.png -------------------------------------------------------------------------------- /dependencies/linux/Honeycomb-CLI/Resources/Onyx/gha-thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/linux/Honeycomb-CLI/Resources/Onyx/gha-thumbnail.png -------------------------------------------------------------------------------- /dependencies/linux/Honeycomb-CLI/Resources/Onyx/ghwor-thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/linux/Honeycomb-CLI/Resources/Onyx/ghwor-thumbnail.png -------------------------------------------------------------------------------- /dependencies/linux/Honeycomb-CLI/Resources/Onyx/ghwt-thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/linux/Honeycomb-CLI/Resources/Onyx/ghwt-thumbnail.png -------------------------------------------------------------------------------- /dependencies/linux/Honeycomb-CLI/Resources/Onyx/repack-stfs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/linux/Honeycomb-CLI/Resources/Onyx/repack-stfs.yaml -------------------------------------------------------------------------------- /dependencies/linux/Honeycomb-CLI/Resources/PS3/GH3/ICON0.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/linux/Honeycomb-CLI/Resources/PS3/GH3/ICON0.PNG -------------------------------------------------------------------------------- /dependencies/linux/Honeycomb-CLI/Resources/PS3/GH3/PARAM.SFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/linux/Honeycomb-CLI/Resources/PS3/GH3/PARAM.SFO -------------------------------------------------------------------------------- /dependencies/linux/Honeycomb-CLI/Resources/PS3/GH3/PS3LOGO.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/linux/Honeycomb-CLI/Resources/PS3/GH3/PS3LOGO.DAT -------------------------------------------------------------------------------- /dependencies/linux/Honeycomb-CLI/Resources/PS3/GHWoR/ICON0.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/linux/Honeycomb-CLI/Resources/PS3/GHWoR/ICON0.PNG -------------------------------------------------------------------------------- /dependencies/linux/Honeycomb-CLI/Resources/PS3/GHWoR/PARAM.SFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/linux/Honeycomb-CLI/Resources/PS3/GHWoR/PARAM.SFO -------------------------------------------------------------------------------- /dependencies/linux/Honeycomb-CLI/Resources/PS3/GHWoR/PS3LOGO.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/linux/Honeycomb-CLI/Resources/PS3/GHWoR/PS3LOGO.DAT -------------------------------------------------------------------------------- /dependencies/linux/Honeycomb-CLI/Resources/PS3/VRAM_GH3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/linux/Honeycomb-CLI/Resources/PS3/VRAM_GH3 -------------------------------------------------------------------------------- /dependencies/linux/Honeycomb-CLI/Resources/PS3/VRAM_GHWOR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/linux/Honeycomb-CLI/Resources/PS3/VRAM_GHWOR -------------------------------------------------------------------------------- /dependencies/linux/Honeycomb-CLI/Tools/RemoveReadOnly/RemoveReadOnly.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/linux/Honeycomb-CLI/Tools/RemoveReadOnly/RemoveReadOnly.deps.json -------------------------------------------------------------------------------- /dependencies/linux/Honeycomb-CLI/Tools/RemoveReadOnly/RemoveReadOnly.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/linux/Honeycomb-CLI/Tools/RemoveReadOnly/RemoveReadOnly.exe -------------------------------------------------------------------------------- /dependencies/linux/Honeycomb-CLI/Tools/RemoveReadOnly/RemoveReadOnly.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/linux/Honeycomb-CLI/Tools/RemoveReadOnly/RemoveReadOnly.pdb -------------------------------------------------------------------------------- /dependencies/linux/Honeycomb-CLI/Tools/RemoveReadOnly/RemoveReadOnly.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/linux/Honeycomb-CLI/Tools/RemoveReadOnly/RemoveReadOnly.runtimeconfig.json -------------------------------------------------------------------------------- /dependencies/linux/Honeycomb-CLI/libmp3lame.32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/linux/Honeycomb-CLI/libmp3lame.32.dll -------------------------------------------------------------------------------- /dependencies/linux/Honeycomb-CLI/libmp3lame.64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/linux/Honeycomb-CLI/libmp3lame.64.dll -------------------------------------------------------------------------------- /dependencies/loadpak_patches/PS3/scripts/guitar/guitar.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/loadpak_patches/PS3/scripts/guitar/guitar.q -------------------------------------------------------------------------------- /dependencies/loadpak_patches/pc/scripts/guitar/guitar.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/loadpak_patches/pc/scripts/guitar/guitar.q -------------------------------------------------------------------------------- /dependencies/loadpak_patches/ps2/scripts/guitar/guitar.qb.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/loadpak_patches/ps2/scripts/guitar/guitar.qb.q -------------------------------------------------------------------------------- /dependencies/loadpak_patches/wii/scripts/guitar/guitar.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/loadpak_patches/wii/scripts/guitar/guitar.q -------------------------------------------------------------------------------- /dependencies/loadpak_patches/xbox/scripts/guitar/guitar.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/loadpak_patches/xbox/scripts/guitar/guitar.q -------------------------------------------------------------------------------- /dependencies/python/configure_build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/python/configure_build.py -------------------------------------------------------------------------------- /dependencies/python/gen_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/python/gen_version.py -------------------------------------------------------------------------------- /dependencies/syntax/Q-Script.sublime-syntax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/syntax/Q-Script.sublime-syntax -------------------------------------------------------------------------------- /dependencies/windows/Honeycomb-CLI/Audio/Blank Audio/48k128kbps.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/windows/Honeycomb-CLI/Audio/Blank Audio/48k128kbps.mp3 -------------------------------------------------------------------------------- /dependencies/windows/Honeycomb-CLI/Audio/Blank Audio/blankWav.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/windows/Honeycomb-CLI/Audio/Blank Audio/blankWav.wav -------------------------------------------------------------------------------- /dependencies/windows/Honeycomb-CLI/FFMpegCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/windows/Honeycomb-CLI/FFMpegCore.dll -------------------------------------------------------------------------------- /dependencies/windows/Honeycomb-CLI/FFMpegCore.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/windows/Honeycomb-CLI/FFMpegCore.pdb -------------------------------------------------------------------------------- /dependencies/windows/Honeycomb-CLI/GH-Toolkit-Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/windows/Honeycomb-CLI/GH-Toolkit-Core.dll -------------------------------------------------------------------------------- /dependencies/windows/Honeycomb-CLI/GH-Toolkit-Core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/windows/Honeycomb-CLI/GH-Toolkit-Core.pdb -------------------------------------------------------------------------------- /dependencies/windows/Honeycomb-CLI/Honeycomb.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/windows/Honeycomb-CLI/Honeycomb.deps.json -------------------------------------------------------------------------------- /dependencies/windows/Honeycomb-CLI/Honeycomb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/windows/Honeycomb-CLI/Honeycomb.dll -------------------------------------------------------------------------------- /dependencies/windows/Honeycomb-CLI/Honeycomb.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/windows/Honeycomb-CLI/Honeycomb.exe -------------------------------------------------------------------------------- /dependencies/windows/Honeycomb-CLI/Honeycomb.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/windows/Honeycomb-CLI/Honeycomb.pdb -------------------------------------------------------------------------------- /dependencies/windows/Honeycomb-CLI/Honeycomb.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/windows/Honeycomb-CLI/Honeycomb.runtimeconfig.json -------------------------------------------------------------------------------- /dependencies/windows/Honeycomb-CLI/ICSharpCode.SharpZipLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/windows/Honeycomb-CLI/ICSharpCode.SharpZipLib.dll -------------------------------------------------------------------------------- /dependencies/windows/Honeycomb-CLI/INIFileParser.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/windows/Honeycomb-CLI/INIFileParser.dll -------------------------------------------------------------------------------- /dependencies/windows/Honeycomb-CLI/Instances.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/windows/Honeycomb-CLI/Instances.dll -------------------------------------------------------------------------------- /dependencies/windows/Honeycomb-CLI/MIDI/Sections.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/windows/Honeycomb-CLI/MIDI/Sections.txt -------------------------------------------------------------------------------- /dependencies/windows/Honeycomb-CLI/Melanchall.DryWetMidi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/windows/Honeycomb-CLI/Melanchall.DryWetMidi.dll -------------------------------------------------------------------------------- /dependencies/windows/Honeycomb-CLI/Melanchall_DryWetMidi_Native32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/windows/Honeycomb-CLI/Melanchall_DryWetMidi_Native32.dll -------------------------------------------------------------------------------- /dependencies/windows/Honeycomb-CLI/Melanchall_DryWetMidi_Native64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/windows/Honeycomb-CLI/Melanchall_DryWetMidi_Native64.dll -------------------------------------------------------------------------------- /dependencies/windows/Honeycomb-CLI/Melanchall_DryWetMidi_Native64.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/windows/Honeycomb-CLI/Melanchall_DryWetMidi_Native64.dylib -------------------------------------------------------------------------------- /dependencies/windows/Honeycomb-CLI/NAudio.Asio.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/windows/Honeycomb-CLI/NAudio.Asio.dll -------------------------------------------------------------------------------- /dependencies/windows/Honeycomb-CLI/NAudio.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/windows/Honeycomb-CLI/NAudio.Core.dll -------------------------------------------------------------------------------- /dependencies/windows/Honeycomb-CLI/NAudio.Lame.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/windows/Honeycomb-CLI/NAudio.Lame.dll -------------------------------------------------------------------------------- /dependencies/windows/Honeycomb-CLI/NAudio.Midi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/windows/Honeycomb-CLI/NAudio.Midi.dll -------------------------------------------------------------------------------- /dependencies/windows/Honeycomb-CLI/NAudio.Wasapi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/windows/Honeycomb-CLI/NAudio.Wasapi.dll -------------------------------------------------------------------------------- /dependencies/windows/Honeycomb-CLI/NAudio.WinMM.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/windows/Honeycomb-CLI/NAudio.WinMM.dll -------------------------------------------------------------------------------- /dependencies/windows/Honeycomb-CLI/NAudio.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/windows/Honeycomb-CLI/NAudio.dll -------------------------------------------------------------------------------- /dependencies/windows/Honeycomb-CLI/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/windows/Honeycomb-CLI/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /dependencies/windows/Honeycomb-CLI/Other/animskas.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/windows/Honeycomb-CLI/Other/animskas.txt -------------------------------------------------------------------------------- /dependencies/windows/Honeycomb-CLI/Other/cameraskas.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/windows/Honeycomb-CLI/Other/cameraskas.txt -------------------------------------------------------------------------------- /dependencies/windows/Honeycomb-CLI/QBDebug/PS2Pak.dbg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/windows/Honeycomb-CLI/QBDebug/PS2Pak.dbg -------------------------------------------------------------------------------- /dependencies/windows/Honeycomb-CLI/QBDebug/keys.dbg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/windows/Honeycomb-CLI/QBDebug/keys.dbg -------------------------------------------------------------------------------- /dependencies/windows/Honeycomb-CLI/Redpoint.ThirdParty.System.CommandLine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/windows/Honeycomb-CLI/Redpoint.ThirdParty.System.CommandLine.dll -------------------------------------------------------------------------------- /dependencies/windows/Honeycomb-CLI/Resources/GH3/blank_songlist.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/windows/Honeycomb-CLI/Resources/GH3/blank_songlist.q -------------------------------------------------------------------------------- /dependencies/windows/Honeycomb-CLI/Resources/GH3/blank_songlist_f.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/windows/Honeycomb-CLI/Resources/GH3/blank_songlist_f.q -------------------------------------------------------------------------------- /dependencies/windows/Honeycomb-CLI/Resources/GH3/blank_songlist_g.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/windows/Honeycomb-CLI/Resources/GH3/blank_songlist_g.q -------------------------------------------------------------------------------- /dependencies/windows/Honeycomb-CLI/Resources/GH3/blank_songlist_i.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/windows/Honeycomb-CLI/Resources/GH3/blank_songlist_i.q -------------------------------------------------------------------------------- /dependencies/windows/Honeycomb-CLI/Resources/GH3/blank_songlist_s.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/windows/Honeycomb-CLI/Resources/GH3/blank_songlist_s.q -------------------------------------------------------------------------------- /dependencies/windows/Honeycomb-CLI/Resources/GH3/script_override.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/windows/Honeycomb-CLI/Resources/GH3/script_override.q -------------------------------------------------------------------------------- /dependencies/windows/Honeycomb-CLI/Resources/GHA/blank_songlist.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/windows/Honeycomb-CLI/Resources/GHA/blank_songlist.q -------------------------------------------------------------------------------- /dependencies/windows/Honeycomb-CLI/Resources/GHA/blank_songlist_f.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/windows/Honeycomb-CLI/Resources/GHA/blank_songlist_f.q -------------------------------------------------------------------------------- /dependencies/windows/Honeycomb-CLI/Resources/GHA/blank_songlist_g.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/windows/Honeycomb-CLI/Resources/GHA/blank_songlist_g.q -------------------------------------------------------------------------------- /dependencies/windows/Honeycomb-CLI/Resources/GHA/blank_songlist_i.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/windows/Honeycomb-CLI/Resources/GHA/blank_songlist_i.q -------------------------------------------------------------------------------- /dependencies/windows/Honeycomb-CLI/Resources/GHA/blank_songlist_s.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/windows/Honeycomb-CLI/Resources/GHA/blank_songlist_s.q -------------------------------------------------------------------------------- /dependencies/windows/Honeycomb-CLI/Resources/GHWoR/blank_qs.qs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/windows/Honeycomb-CLI/Resources/GHWoR/blank_qs.qs -------------------------------------------------------------------------------- /dependencies/windows/Honeycomb-CLI/Resources/GHWoR/blank_scripts.qb: -------------------------------------------------------------------------------- 1 | c`L -------------------------------------------------------------------------------- /dependencies/windows/Honeycomb-CLI/Resources/GHWoR/blank_songlist.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/windows/Honeycomb-CLI/Resources/GHWoR/blank_songlist.q -------------------------------------------------------------------------------- /dependencies/windows/Honeycomb-CLI/Resources/Onyx/gh3-thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/windows/Honeycomb-CLI/Resources/Onyx/gh3-thumbnail.png -------------------------------------------------------------------------------- /dependencies/windows/Honeycomb-CLI/Resources/Onyx/gh5-thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/windows/Honeycomb-CLI/Resources/Onyx/gh5-thumbnail.png -------------------------------------------------------------------------------- /dependencies/windows/Honeycomb-CLI/Resources/Onyx/gha-thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/windows/Honeycomb-CLI/Resources/Onyx/gha-thumbnail.png -------------------------------------------------------------------------------- /dependencies/windows/Honeycomb-CLI/Resources/Onyx/ghwor-thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/windows/Honeycomb-CLI/Resources/Onyx/ghwor-thumbnail.png -------------------------------------------------------------------------------- /dependencies/windows/Honeycomb-CLI/Resources/Onyx/ghwt-thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/windows/Honeycomb-CLI/Resources/Onyx/ghwt-thumbnail.png -------------------------------------------------------------------------------- /dependencies/windows/Honeycomb-CLI/Resources/Onyx/repack-stfs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/windows/Honeycomb-CLI/Resources/Onyx/repack-stfs.yaml -------------------------------------------------------------------------------- /dependencies/windows/Honeycomb-CLI/Resources/PS3/GH3/ICON0.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/windows/Honeycomb-CLI/Resources/PS3/GH3/ICON0.PNG -------------------------------------------------------------------------------- /dependencies/windows/Honeycomb-CLI/Resources/PS3/GH3/PARAM.SFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/windows/Honeycomb-CLI/Resources/PS3/GH3/PARAM.SFO -------------------------------------------------------------------------------- /dependencies/windows/Honeycomb-CLI/Resources/PS3/GH3/PS3LOGO.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/windows/Honeycomb-CLI/Resources/PS3/GH3/PS3LOGO.DAT -------------------------------------------------------------------------------- /dependencies/windows/Honeycomb-CLI/Resources/PS3/GHA/ICON0.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/windows/Honeycomb-CLI/Resources/PS3/GHA/ICON0.PNG -------------------------------------------------------------------------------- /dependencies/windows/Honeycomb-CLI/Resources/PS3/GHA/PARAM.SFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/windows/Honeycomb-CLI/Resources/PS3/GHA/PARAM.SFO -------------------------------------------------------------------------------- /dependencies/windows/Honeycomb-CLI/Resources/PS3/GHA/PS3LOGO.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/windows/Honeycomb-CLI/Resources/PS3/GHA/PS3LOGO.DAT -------------------------------------------------------------------------------- /dependencies/windows/Honeycomb-CLI/Resources/PS3/GHWoR/ICON0.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/windows/Honeycomb-CLI/Resources/PS3/GHWoR/ICON0.PNG -------------------------------------------------------------------------------- /dependencies/windows/Honeycomb-CLI/Resources/PS3/GHWoR/PARAM.SFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/windows/Honeycomb-CLI/Resources/PS3/GHWoR/PARAM.SFO -------------------------------------------------------------------------------- /dependencies/windows/Honeycomb-CLI/Resources/PS3/GHWoR/PS3LOGO.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/windows/Honeycomb-CLI/Resources/PS3/GHWoR/PS3LOGO.DAT -------------------------------------------------------------------------------- /dependencies/windows/Honeycomb-CLI/Resources/PS3/VRAM_GH3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/windows/Honeycomb-CLI/Resources/PS3/VRAM_GH3 -------------------------------------------------------------------------------- /dependencies/windows/Honeycomb-CLI/Resources/PS3/VRAM_GHA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/windows/Honeycomb-CLI/Resources/PS3/VRAM_GHA -------------------------------------------------------------------------------- /dependencies/windows/Honeycomb-CLI/Resources/PS3/VRAM_GHWOR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/windows/Honeycomb-CLI/Resources/PS3/VRAM_GHWOR -------------------------------------------------------------------------------- /dependencies/windows/Honeycomb-CLI/Resources/Sections/all_sections.q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/windows/Honeycomb-CLI/Resources/Sections/all_sections.q -------------------------------------------------------------------------------- /dependencies/windows/Honeycomb-CLI/System.IO.Pipelines.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/windows/Honeycomb-CLI/System.IO.Pipelines.dll -------------------------------------------------------------------------------- /dependencies/windows/Honeycomb-CLI/System.Text.Encodings.Web.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/windows/Honeycomb-CLI/System.Text.Encodings.Web.dll -------------------------------------------------------------------------------- /dependencies/windows/Honeycomb-CLI/System.Text.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/windows/Honeycomb-CLI/System.Text.Json.dll -------------------------------------------------------------------------------- /dependencies/windows/Honeycomb-CLI/Tools/RemoveReadOnly/RemoveReadOnly.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/windows/Honeycomb-CLI/Tools/RemoveReadOnly/RemoveReadOnly.deps.json -------------------------------------------------------------------------------- /dependencies/windows/Honeycomb-CLI/Tools/RemoveReadOnly/RemoveReadOnly.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/windows/Honeycomb-CLI/Tools/RemoveReadOnly/RemoveReadOnly.dll -------------------------------------------------------------------------------- /dependencies/windows/Honeycomb-CLI/Tools/RemoveReadOnly/RemoveReadOnly.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/windows/Honeycomb-CLI/Tools/RemoveReadOnly/RemoveReadOnly.exe -------------------------------------------------------------------------------- /dependencies/windows/Honeycomb-CLI/Tools/RemoveReadOnly/RemoveReadOnly.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/windows/Honeycomb-CLI/Tools/RemoveReadOnly/RemoveReadOnly.pdb -------------------------------------------------------------------------------- /dependencies/windows/Honeycomb-CLI/Tools/RemoveReadOnly/RemoveReadOnly.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/windows/Honeycomb-CLI/Tools/RemoveReadOnly/RemoveReadOnly.runtimeconfig.json -------------------------------------------------------------------------------- /dependencies/windows/Honeycomb-CLI/Ude.NetStandard.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/windows/Honeycomb-CLI/Ude.NetStandard.dll -------------------------------------------------------------------------------- /dependencies/windows/Honeycomb-CLI/YamlDotNet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/windows/Honeycomb-CLI/YamlDotNet.dll -------------------------------------------------------------------------------- /dependencies/windows/Honeycomb-CLI/libmp3lame.32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/windows/Honeycomb-CLI/libmp3lame.32.dll -------------------------------------------------------------------------------- /dependencies/windows/Honeycomb-CLI/libmp3lame.64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/windows/Honeycomb-CLI/libmp3lame.64.dll -------------------------------------------------------------------------------- /dependencies/windows/Honeycomb-CLI/runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/dependencies/windows/Honeycomb-CLI/runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll -------------------------------------------------------------------------------- /platform/pc/DATA/PAK/qb.pab.xen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/platform/pc/DATA/PAK/qb.pab.xen -------------------------------------------------------------------------------- /platform/pc/DATA/PAK/qb.pak.xen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/platform/pc/DATA/PAK/qb.pak.xen -------------------------------------------------------------------------------- /platform/ps2/pak/qb.pab.ps2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/platform/ps2/pak/qb.pab.ps2 -------------------------------------------------------------------------------- /platform/ps2/pak/qb.pak.ps2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/platform/ps2/pak/qb.pak.ps2 -------------------------------------------------------------------------------- /platform/ps3/PS3_GAME/USRDIR/DATA/COMPRESSED/PS3/COMPRESS.TOC.LST.PS3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /platform/ps3/PS3_GAME/USRDIR/DATA/COMPRESSED/PS3/COMPRESS.TOC.PS3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /platform/ps3/PS3_GAME/USRDIR/DATA/PAK/QB.PAB.PS3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/platform/ps3/PS3_GAME/USRDIR/DATA/PAK/QB.PAB.PS3 -------------------------------------------------------------------------------- /platform/ps3/PS3_GAME/USRDIR/DATA/PAK/QB.PAK.PS3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/platform/ps3/PS3_GAME/USRDIR/DATA/PAK/QB.PAK.PS3 -------------------------------------------------------------------------------- /platform/ps3/note_limit_fix/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/platform/ps3/note_limit_fix/README.txt -------------------------------------------------------------------------------- /platform/ps3/note_limit_fix/USRDIR/EBOOT.BIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/platform/ps3/note_limit_fix/USRDIR/EBOOT.BIN -------------------------------------------------------------------------------- /platform/wii/files/pak/qb.pak.ngc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/platform/wii/files/pak/qb.pak.ngc -------------------------------------------------------------------------------- /platform/xbox/DATA/COMPRESSED/compress.toc.lst.xen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/platform/xbox/DATA/COMPRESSED/compress.toc.lst.xen -------------------------------------------------------------------------------- /platform/xbox/DATA/COMPRESSED/compress.toc.xen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/platform/xbox/DATA/COMPRESSED/compress.toc.xen -------------------------------------------------------------------------------- /platform/xbox/DATA/PAK/qb.pab.xen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/platform/xbox/DATA/PAK/qb.pab.xen -------------------------------------------------------------------------------- /platform/xbox/DATA/PAK/qb.pak.xen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/platform/xbox/DATA/PAK/qb.pak.xen -------------------------------------------------------------------------------- /platform/xbox/default-note-limit-fix.xex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/platform/xbox/default-note-limit-fix.xex -------------------------------------------------------------------------------- /platform/xbox/default.xex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/platform/xbox/default.xex -------------------------------------------------------------------------------- /platform/xbox/note limit fix readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/platform/xbox/note limit fix readme.txt -------------------------------------------------------------------------------- /scripts/linux/build_pc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/scripts/linux/build_pc.sh -------------------------------------------------------------------------------- /scripts/linux/build_ps2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/scripts/linux/build_ps2.sh -------------------------------------------------------------------------------- /scripts/linux/build_ps3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/scripts/linux/build_ps3.sh -------------------------------------------------------------------------------- /scripts/linux/build_wii.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/scripts/linux/build_wii.sh -------------------------------------------------------------------------------- /scripts/linux/build_xbox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/scripts/linux/build_xbox.sh -------------------------------------------------------------------------------- /scripts/windows/build_pc.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/scripts/windows/build_pc.bat -------------------------------------------------------------------------------- /scripts/windows/build_ps2.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/scripts/windows/build_ps2.bat -------------------------------------------------------------------------------- /scripts/windows/build_ps3.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/scripts/windows/build_ps3.bat -------------------------------------------------------------------------------- /scripts/windows/build_wii.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/scripts/windows/build_wii.bat -------------------------------------------------------------------------------- /scripts/windows/build_xbox.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nsneverhax/guitar-hero-3-deluxe/HEAD/scripts/windows/build_xbox.bat --------------------------------------------------------------------------------