├── .gitignore ├── Functions.ahk ├── GPrompt-Explorer.code-workspace ├── Img ├── Exit.png ├── GreenCheck.ico ├── GreenCheck.png ├── GreenDot.ico ├── GreenDot.png ├── GreenDotAlt.ico ├── GreenDotAlt.png ├── GreenSave.ico ├── GreenSave.png ├── GreenScrollEdit.ico ├── GreenScrollEdit.png ├── GreyDot.ico ├── GreyDot.png ├── RedDot.ico ├── RedDot.png ├── RedDotAlt.ico ├── RedDotAlt.png ├── Settings_Black.png ├── WhiteDot.ico ├── WhiteDot.png └── default.png ├── Lib ├── AutoXYWH.ahk ├── BinArr.ahk ├── Class_LVColors.ahk ├── Class_Toolbar.ahk ├── ControlColor.ahk ├── CreateFormData.ahk ├── JSON.ahk ├── Jxon.ahk └── LVA.ahk ├── Old Viewer.zip ├── Prompt Viewer.ahk ├── Prompts ├── Tier 00 │ └── _ ├── Tier 1 │ └── _ ├── Tier 2 │ └── _ └── Tier 3 │ └── _ └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | Prompt Viewer Custom edit.ahk 2 | Settings.ini 3 | -------------------------------------------------------------------------------- /Functions.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinickySpider/GPrompt-Explorer/HEAD/Functions.ahk -------------------------------------------------------------------------------- /GPrompt-Explorer.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinickySpider/GPrompt-Explorer/HEAD/GPrompt-Explorer.code-workspace -------------------------------------------------------------------------------- /Img/Exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinickySpider/GPrompt-Explorer/HEAD/Img/Exit.png -------------------------------------------------------------------------------- /Img/GreenCheck.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinickySpider/GPrompt-Explorer/HEAD/Img/GreenCheck.ico -------------------------------------------------------------------------------- /Img/GreenCheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinickySpider/GPrompt-Explorer/HEAD/Img/GreenCheck.png -------------------------------------------------------------------------------- /Img/GreenDot.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinickySpider/GPrompt-Explorer/HEAD/Img/GreenDot.ico -------------------------------------------------------------------------------- /Img/GreenDot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinickySpider/GPrompt-Explorer/HEAD/Img/GreenDot.png -------------------------------------------------------------------------------- /Img/GreenDotAlt.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinickySpider/GPrompt-Explorer/HEAD/Img/GreenDotAlt.ico -------------------------------------------------------------------------------- /Img/GreenDotAlt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinickySpider/GPrompt-Explorer/HEAD/Img/GreenDotAlt.png -------------------------------------------------------------------------------- /Img/GreenSave.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinickySpider/GPrompt-Explorer/HEAD/Img/GreenSave.ico -------------------------------------------------------------------------------- /Img/GreenSave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinickySpider/GPrompt-Explorer/HEAD/Img/GreenSave.png -------------------------------------------------------------------------------- /Img/GreenScrollEdit.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinickySpider/GPrompt-Explorer/HEAD/Img/GreenScrollEdit.ico -------------------------------------------------------------------------------- /Img/GreenScrollEdit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinickySpider/GPrompt-Explorer/HEAD/Img/GreenScrollEdit.png -------------------------------------------------------------------------------- /Img/GreyDot.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinickySpider/GPrompt-Explorer/HEAD/Img/GreyDot.ico -------------------------------------------------------------------------------- /Img/GreyDot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinickySpider/GPrompt-Explorer/HEAD/Img/GreyDot.png -------------------------------------------------------------------------------- /Img/RedDot.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinickySpider/GPrompt-Explorer/HEAD/Img/RedDot.ico -------------------------------------------------------------------------------- /Img/RedDot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinickySpider/GPrompt-Explorer/HEAD/Img/RedDot.png -------------------------------------------------------------------------------- /Img/RedDotAlt.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinickySpider/GPrompt-Explorer/HEAD/Img/RedDotAlt.ico -------------------------------------------------------------------------------- /Img/RedDotAlt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinickySpider/GPrompt-Explorer/HEAD/Img/RedDotAlt.png -------------------------------------------------------------------------------- /Img/Settings_Black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinickySpider/GPrompt-Explorer/HEAD/Img/Settings_Black.png -------------------------------------------------------------------------------- /Img/WhiteDot.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinickySpider/GPrompt-Explorer/HEAD/Img/WhiteDot.ico -------------------------------------------------------------------------------- /Img/WhiteDot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinickySpider/GPrompt-Explorer/HEAD/Img/WhiteDot.png -------------------------------------------------------------------------------- /Img/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinickySpider/GPrompt-Explorer/HEAD/Img/default.png -------------------------------------------------------------------------------- /Lib/AutoXYWH.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinickySpider/GPrompt-Explorer/HEAD/Lib/AutoXYWH.ahk -------------------------------------------------------------------------------- /Lib/BinArr.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinickySpider/GPrompt-Explorer/HEAD/Lib/BinArr.ahk -------------------------------------------------------------------------------- /Lib/Class_LVColors.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinickySpider/GPrompt-Explorer/HEAD/Lib/Class_LVColors.ahk -------------------------------------------------------------------------------- /Lib/Class_Toolbar.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinickySpider/GPrompt-Explorer/HEAD/Lib/Class_Toolbar.ahk -------------------------------------------------------------------------------- /Lib/ControlColor.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinickySpider/GPrompt-Explorer/HEAD/Lib/ControlColor.ahk -------------------------------------------------------------------------------- /Lib/CreateFormData.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinickySpider/GPrompt-Explorer/HEAD/Lib/CreateFormData.ahk -------------------------------------------------------------------------------- /Lib/JSON.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinickySpider/GPrompt-Explorer/HEAD/Lib/JSON.ahk -------------------------------------------------------------------------------- /Lib/Jxon.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinickySpider/GPrompt-Explorer/HEAD/Lib/Jxon.ahk -------------------------------------------------------------------------------- /Lib/LVA.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinickySpider/GPrompt-Explorer/HEAD/Lib/LVA.ahk -------------------------------------------------------------------------------- /Old Viewer.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinickySpider/GPrompt-Explorer/HEAD/Old Viewer.zip -------------------------------------------------------------------------------- /Prompt Viewer.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinickySpider/GPrompt-Explorer/HEAD/Prompt Viewer.ahk -------------------------------------------------------------------------------- /Prompts/Tier 00/_: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Prompts/Tier 1/_: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Prompts/Tier 2/_: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Prompts/Tier 3/_: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FinickySpider/GPrompt-Explorer/HEAD/README.md --------------------------------------------------------------------------------