├── .gitattributes ├── .gitignore ├── .gitmodules ├── BULLY ├── bully.json ├── bullywd.json └── readme.md ├── GTA1 ├── gta1.json ├── gta1wd.json └── readme.md ├── GTA2 ├── gta2.json ├── gta2wd.json └── readme.md ├── GTAADVANCE ├── gtaadvance.json ├── gtaadvancewd.json └── readme.md ├── GTACTW ├── gtactw.json ├── gtactwwd.json └── readme.md ├── GTAIII ├── gta3.json ├── gta3wd.json └── readme.md ├── GTAIV ├── gtaiv.json ├── gtaivwd.json └── readme.md ├── GTAIVTBOGT ├── gtaivtbogt.json ├── gtaivtbogtwd.json └── readme.md ├── GTAIVTLAD ├── gtaivtlad.json ├── gtaivtladwd.json └── readme.md ├── GTALCS ├── gtalcs.json ├── gtalcswd.json └── readme.md ├── GTASA ├── gtasa.json ├── gtasawd.json └── readme.md ├── GTAV ├── gtav.json ├── gtav_old.json ├── gtavwd.json ├── readme.md └── readme_old.md ├── GTAVC ├── gtavc.json ├── gtavcwd.json └── readme.md ├── GTAVCDE ├── gtavcde.json ├── gtavcdewd.json └── readme.md ├── GTAVCS ├── gtavcs.json ├── gtavcswd.json └── readme.md ├── LANOIRE ├── lanoire.json ├── lanoirewd.json └── readme.md ├── MAFIA ├── mafia.json ├── mafiawd.json └── readme.md ├── MAFIA2 ├── mafia2.json ├── mafia2wd.json └── readme.md ├── MAFIA3 ├── mafia3.json ├── mafia3wd.json └── readme.md ├── MAFIADE ├── mafiade.json ├── mafiadewd.json └── readme.md ├── MANHUNT ├── manhunt.json ├── manhuntwd.json └── readme.md ├── MANHUNT2 ├── manhunt2.json ├── manhunt2wd.json └── readme.md ├── MAXPAYNE3 ├── maxpayne3.json ├── maxpayne3alt.json ├── maxpayne3wd.json ├── maxpayne3wdalt.json ├── readme.md └── readmealt.md ├── MCLA ├── mcla.json ├── mclaalt.json ├── mclaaltwd.json ├── mclawd.json ├── readme.md └── readmealt.md ├── RDR ├── rdr.json ├── rdrwd.json └── readme.md ├── RDR2 ├── rdr2.json ├── rdr2wd.json └── readme.md ├── THESOPRANOS ├── readme.md ├── sopranos.json └── sopranoswd.json ├── THEWARRIORS ├── readme.md ├── thewarriors.json └── thewarriorswd.json ├── TLOU ├── readme.md ├── tlou.json └── tlouwd.json ├── plugins ├── data │ ├── 4F32A11F.pnach │ ├── 7EA439F5.pnach │ ├── md2json._exe │ ├── text │ │ ├── BULLY.json │ │ ├── BULLY.text │ │ ├── GTA1.json │ │ ├── GTA1.text │ │ ├── GTA1ALT.json │ │ ├── GTA1ALT.text │ │ ├── GTA2.json │ │ ├── GTA2.text │ │ ├── GTA2ALT.json │ │ ├── GTA3.json │ │ ├── GTA3.text │ │ ├── GTA3DE.json │ │ ├── GTA3DE.text │ │ ├── GTAADVANCE.json │ │ ├── GTAADVANCE.text │ │ ├── GTAADVANCEALT.json │ │ ├── GTAADVANCEALT.text │ │ ├── GTACTW.json │ │ ├── GTACTW.text │ │ ├── GTACTWALT.json │ │ ├── GTACTWALT.text │ │ ├── GTAIV.json │ │ ├── GTAIV.text │ │ ├── GTALCS.json │ │ ├── GTALCS.text │ │ ├── GTASA.json │ │ ├── GTASA.text │ │ ├── GTASADE.json │ │ ├── GTASADE.text │ │ ├── GTAV.json │ │ ├── GTAV.text │ │ ├── GTAVC.json │ │ ├── GTAVC.text │ │ ├── GTAVCDE.json │ │ ├── GTAVCDE.text │ │ ├── GTAVCS.json │ │ ├── GTAVCS.text │ │ ├── LANOIRE.json │ │ ├── LANOIRE.text │ │ ├── MAFIA.json │ │ ├── MAFIA.text │ │ ├── MAFIA2.json │ │ ├── MAFIA2.text │ │ ├── MAFIA3.json │ │ ├── MAFIA3.text │ │ ├── MAFIADE.json │ │ ├── MAFIADE.text │ │ ├── MANHUNT.json │ │ ├── MANHUNT.text │ │ ├── MANHUNT2.json │ │ ├── MANHUNT2.text │ │ ├── MAXPAYNE3.json │ │ ├── MAXPAYNE3.text │ │ ├── MAXPAYNE3ALT.json │ │ ├── MAXPAYNE3ALT.text │ │ ├── MCLA.json │ │ ├── MCLA.text │ │ ├── RDR.json │ │ ├── RDR.text │ │ ├── RDR2.json │ │ ├── RDR2.text │ │ ├── SOPRANOS.json │ │ ├── SOPRANOS.text │ │ ├── TBOGT.json │ │ ├── TBOGT.text │ │ ├── THEWARRIORS.json │ │ ├── THEWARRIORS.text │ │ ├── TLAD.json │ │ └── TLAD.text │ └── togif.bat ├── premake5.bat ├── premake5.exe ├── premake5.lua └── source │ ├── MemoryMgr.h │ ├── Trampoline.h │ ├── bully.cpp │ ├── dllmain.cpp │ ├── episodes.cpp │ ├── maxpayne3.cpp │ ├── meowhunt.cpp │ ├── resources │ ├── VersionInfo.h │ └── Versioninfo.rc │ ├── stories.cpp │ └── v.cpp └── readme.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/.gitmodules -------------------------------------------------------------------------------- /BULLY/bully.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/BULLY/bully.json -------------------------------------------------------------------------------- /BULLY/bullywd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/BULLY/bullywd.json -------------------------------------------------------------------------------- /BULLY/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/BULLY/readme.md -------------------------------------------------------------------------------- /GTA1/gta1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/GTA1/gta1.json -------------------------------------------------------------------------------- /GTA1/gta1wd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/GTA1/gta1wd.json -------------------------------------------------------------------------------- /GTA1/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/GTA1/readme.md -------------------------------------------------------------------------------- /GTA2/gta2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/GTA2/gta2.json -------------------------------------------------------------------------------- /GTA2/gta2wd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/GTA2/gta2wd.json -------------------------------------------------------------------------------- /GTA2/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/GTA2/readme.md -------------------------------------------------------------------------------- /GTAADVANCE/gtaadvance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/GTAADVANCE/gtaadvance.json -------------------------------------------------------------------------------- /GTAADVANCE/gtaadvancewd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/GTAADVANCE/gtaadvancewd.json -------------------------------------------------------------------------------- /GTAADVANCE/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/GTAADVANCE/readme.md -------------------------------------------------------------------------------- /GTACTW/gtactw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/GTACTW/gtactw.json -------------------------------------------------------------------------------- /GTACTW/gtactwwd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/GTACTW/gtactwwd.json -------------------------------------------------------------------------------- /GTACTW/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/GTACTW/readme.md -------------------------------------------------------------------------------- /GTAIII/gta3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/GTAIII/gta3.json -------------------------------------------------------------------------------- /GTAIII/gta3wd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/GTAIII/gta3wd.json -------------------------------------------------------------------------------- /GTAIII/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/GTAIII/readme.md -------------------------------------------------------------------------------- /GTAIV/gtaiv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/GTAIV/gtaiv.json -------------------------------------------------------------------------------- /GTAIV/gtaivwd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/GTAIV/gtaivwd.json -------------------------------------------------------------------------------- /GTAIV/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/GTAIV/readme.md -------------------------------------------------------------------------------- /GTAIVTBOGT/gtaivtbogt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/GTAIVTBOGT/gtaivtbogt.json -------------------------------------------------------------------------------- /GTAIVTBOGT/gtaivtbogtwd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/GTAIVTBOGT/gtaivtbogtwd.json -------------------------------------------------------------------------------- /GTAIVTBOGT/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/GTAIVTBOGT/readme.md -------------------------------------------------------------------------------- /GTAIVTLAD/gtaivtlad.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/GTAIVTLAD/gtaivtlad.json -------------------------------------------------------------------------------- /GTAIVTLAD/gtaivtladwd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/GTAIVTLAD/gtaivtladwd.json -------------------------------------------------------------------------------- /GTAIVTLAD/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/GTAIVTLAD/readme.md -------------------------------------------------------------------------------- /GTALCS/gtalcs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/GTALCS/gtalcs.json -------------------------------------------------------------------------------- /GTALCS/gtalcswd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/GTALCS/gtalcswd.json -------------------------------------------------------------------------------- /GTALCS/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/GTALCS/readme.md -------------------------------------------------------------------------------- /GTASA/gtasa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/GTASA/gtasa.json -------------------------------------------------------------------------------- /GTASA/gtasawd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/GTASA/gtasawd.json -------------------------------------------------------------------------------- /GTASA/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/GTASA/readme.md -------------------------------------------------------------------------------- /GTAV/gtav.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/GTAV/gtav.json -------------------------------------------------------------------------------- /GTAV/gtav_old.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/GTAV/gtav_old.json -------------------------------------------------------------------------------- /GTAV/gtavwd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/GTAV/gtavwd.json -------------------------------------------------------------------------------- /GTAV/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/GTAV/readme.md -------------------------------------------------------------------------------- /GTAV/readme_old.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/GTAV/readme_old.md -------------------------------------------------------------------------------- /GTAVC/gtavc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/GTAVC/gtavc.json -------------------------------------------------------------------------------- /GTAVC/gtavcwd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/GTAVC/gtavcwd.json -------------------------------------------------------------------------------- /GTAVC/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/GTAVC/readme.md -------------------------------------------------------------------------------- /GTAVCDE/gtavcde.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/GTAVCDE/gtavcde.json -------------------------------------------------------------------------------- /GTAVCDE/gtavcdewd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/GTAVCDE/gtavcdewd.json -------------------------------------------------------------------------------- /GTAVCDE/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/GTAVCDE/readme.md -------------------------------------------------------------------------------- /GTAVCS/gtavcs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/GTAVCS/gtavcs.json -------------------------------------------------------------------------------- /GTAVCS/gtavcswd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/GTAVCS/gtavcswd.json -------------------------------------------------------------------------------- /GTAVCS/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/GTAVCS/readme.md -------------------------------------------------------------------------------- /LANOIRE/lanoire.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/LANOIRE/lanoire.json -------------------------------------------------------------------------------- /LANOIRE/lanoirewd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/LANOIRE/lanoirewd.json -------------------------------------------------------------------------------- /LANOIRE/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/LANOIRE/readme.md -------------------------------------------------------------------------------- /MAFIA/mafia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/MAFIA/mafia.json -------------------------------------------------------------------------------- /MAFIA/mafiawd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/MAFIA/mafiawd.json -------------------------------------------------------------------------------- /MAFIA/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/MAFIA/readme.md -------------------------------------------------------------------------------- /MAFIA2/mafia2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/MAFIA2/mafia2.json -------------------------------------------------------------------------------- /MAFIA2/mafia2wd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/MAFIA2/mafia2wd.json -------------------------------------------------------------------------------- /MAFIA2/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/MAFIA2/readme.md -------------------------------------------------------------------------------- /MAFIA3/mafia3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/MAFIA3/mafia3.json -------------------------------------------------------------------------------- /MAFIA3/mafia3wd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/MAFIA3/mafia3wd.json -------------------------------------------------------------------------------- /MAFIA3/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/MAFIA3/readme.md -------------------------------------------------------------------------------- /MAFIADE/mafiade.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/MAFIADE/mafiade.json -------------------------------------------------------------------------------- /MAFIADE/mafiadewd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/MAFIADE/mafiadewd.json -------------------------------------------------------------------------------- /MAFIADE/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/MAFIADE/readme.md -------------------------------------------------------------------------------- /MANHUNT/manhunt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/MANHUNT/manhunt.json -------------------------------------------------------------------------------- /MANHUNT/manhuntwd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/MANHUNT/manhuntwd.json -------------------------------------------------------------------------------- /MANHUNT/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/MANHUNT/readme.md -------------------------------------------------------------------------------- /MANHUNT2/manhunt2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/MANHUNT2/manhunt2.json -------------------------------------------------------------------------------- /MANHUNT2/manhunt2wd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/MANHUNT2/manhunt2wd.json -------------------------------------------------------------------------------- /MANHUNT2/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/MANHUNT2/readme.md -------------------------------------------------------------------------------- /MAXPAYNE3/maxpayne3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/MAXPAYNE3/maxpayne3.json -------------------------------------------------------------------------------- /MAXPAYNE3/maxpayne3alt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/MAXPAYNE3/maxpayne3alt.json -------------------------------------------------------------------------------- /MAXPAYNE3/maxpayne3wd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/MAXPAYNE3/maxpayne3wd.json -------------------------------------------------------------------------------- /MAXPAYNE3/maxpayne3wdalt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/MAXPAYNE3/maxpayne3wdalt.json -------------------------------------------------------------------------------- /MAXPAYNE3/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/MAXPAYNE3/readme.md -------------------------------------------------------------------------------- /MAXPAYNE3/readmealt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/MAXPAYNE3/readmealt.md -------------------------------------------------------------------------------- /MCLA/mcla.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/MCLA/mcla.json -------------------------------------------------------------------------------- /MCLA/mclaalt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/MCLA/mclaalt.json -------------------------------------------------------------------------------- /MCLA/mclaaltwd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/MCLA/mclaaltwd.json -------------------------------------------------------------------------------- /MCLA/mclawd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/MCLA/mclawd.json -------------------------------------------------------------------------------- /MCLA/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/MCLA/readme.md -------------------------------------------------------------------------------- /MCLA/readmealt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/MCLA/readmealt.md -------------------------------------------------------------------------------- /RDR/rdr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/RDR/rdr.json -------------------------------------------------------------------------------- /RDR/rdrwd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/RDR/rdrwd.json -------------------------------------------------------------------------------- /RDR/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/RDR/readme.md -------------------------------------------------------------------------------- /RDR2/rdr2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/RDR2/rdr2.json -------------------------------------------------------------------------------- /RDR2/rdr2wd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/RDR2/rdr2wd.json -------------------------------------------------------------------------------- /RDR2/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/RDR2/readme.md -------------------------------------------------------------------------------- /THESOPRANOS/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/THESOPRANOS/readme.md -------------------------------------------------------------------------------- /THESOPRANOS/sopranos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/THESOPRANOS/sopranos.json -------------------------------------------------------------------------------- /THESOPRANOS/sopranoswd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/THESOPRANOS/sopranoswd.json -------------------------------------------------------------------------------- /THEWARRIORS/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/THEWARRIORS/readme.md -------------------------------------------------------------------------------- /THEWARRIORS/thewarriors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/THEWARRIORS/thewarriors.json -------------------------------------------------------------------------------- /THEWARRIORS/thewarriorswd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/THEWARRIORS/thewarriorswd.json -------------------------------------------------------------------------------- /TLOU/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/TLOU/readme.md -------------------------------------------------------------------------------- /TLOU/tlou.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/TLOU/tlou.json -------------------------------------------------------------------------------- /TLOU/tlouwd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/TLOU/tlouwd.json -------------------------------------------------------------------------------- /plugins/data/4F32A11F.pnach: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/plugins/data/4F32A11F.pnach -------------------------------------------------------------------------------- /plugins/data/7EA439F5.pnach: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/plugins/data/7EA439F5.pnach -------------------------------------------------------------------------------- /plugins/data/md2json._exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/plugins/data/md2json._exe -------------------------------------------------------------------------------- /plugins/data/text/BULLY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/plugins/data/text/BULLY.json -------------------------------------------------------------------------------- /plugins/data/text/BULLY.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/plugins/data/text/BULLY.text -------------------------------------------------------------------------------- /plugins/data/text/GTA1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/plugins/data/text/GTA1.json -------------------------------------------------------------------------------- /plugins/data/text/GTA1.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/plugins/data/text/GTA1.text -------------------------------------------------------------------------------- /plugins/data/text/GTA1ALT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/plugins/data/text/GTA1ALT.json -------------------------------------------------------------------------------- /plugins/data/text/GTA1ALT.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/plugins/data/text/GTA1ALT.text -------------------------------------------------------------------------------- /plugins/data/text/GTA2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/plugins/data/text/GTA2.json -------------------------------------------------------------------------------- /plugins/data/text/GTA2.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/plugins/data/text/GTA2.text -------------------------------------------------------------------------------- /plugins/data/text/GTA2ALT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/plugins/data/text/GTA2ALT.json -------------------------------------------------------------------------------- /plugins/data/text/GTA3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/plugins/data/text/GTA3.json -------------------------------------------------------------------------------- /plugins/data/text/GTA3.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/plugins/data/text/GTA3.text -------------------------------------------------------------------------------- /plugins/data/text/GTA3DE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/plugins/data/text/GTA3DE.json -------------------------------------------------------------------------------- /plugins/data/text/GTA3DE.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/plugins/data/text/GTA3DE.text -------------------------------------------------------------------------------- /plugins/data/text/GTAADVANCE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/plugins/data/text/GTAADVANCE.json -------------------------------------------------------------------------------- /plugins/data/text/GTAADVANCE.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/plugins/data/text/GTAADVANCE.text -------------------------------------------------------------------------------- /plugins/data/text/GTAADVANCEALT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/plugins/data/text/GTAADVANCEALT.json -------------------------------------------------------------------------------- /plugins/data/text/GTAADVANCEALT.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/plugins/data/text/GTAADVANCEALT.text -------------------------------------------------------------------------------- /plugins/data/text/GTACTW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/plugins/data/text/GTACTW.json -------------------------------------------------------------------------------- /plugins/data/text/GTACTW.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/plugins/data/text/GTACTW.text -------------------------------------------------------------------------------- /plugins/data/text/GTACTWALT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/plugins/data/text/GTACTWALT.json -------------------------------------------------------------------------------- /plugins/data/text/GTACTWALT.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/plugins/data/text/GTACTWALT.text -------------------------------------------------------------------------------- /plugins/data/text/GTAIV.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/plugins/data/text/GTAIV.json -------------------------------------------------------------------------------- /plugins/data/text/GTAIV.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/plugins/data/text/GTAIV.text -------------------------------------------------------------------------------- /plugins/data/text/GTALCS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/plugins/data/text/GTALCS.json -------------------------------------------------------------------------------- /plugins/data/text/GTALCS.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/plugins/data/text/GTALCS.text -------------------------------------------------------------------------------- /plugins/data/text/GTASA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/plugins/data/text/GTASA.json -------------------------------------------------------------------------------- /plugins/data/text/GTASA.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/plugins/data/text/GTASA.text -------------------------------------------------------------------------------- /plugins/data/text/GTASADE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/plugins/data/text/GTASADE.json -------------------------------------------------------------------------------- /plugins/data/text/GTASADE.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/plugins/data/text/GTASADE.text -------------------------------------------------------------------------------- /plugins/data/text/GTAV.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/plugins/data/text/GTAV.json -------------------------------------------------------------------------------- /plugins/data/text/GTAV.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/plugins/data/text/GTAV.text -------------------------------------------------------------------------------- /plugins/data/text/GTAVC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/plugins/data/text/GTAVC.json -------------------------------------------------------------------------------- /plugins/data/text/GTAVC.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/plugins/data/text/GTAVC.text -------------------------------------------------------------------------------- /plugins/data/text/GTAVCDE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/plugins/data/text/GTAVCDE.json -------------------------------------------------------------------------------- /plugins/data/text/GTAVCDE.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/plugins/data/text/GTAVCDE.text -------------------------------------------------------------------------------- /plugins/data/text/GTAVCS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/plugins/data/text/GTAVCS.json -------------------------------------------------------------------------------- /plugins/data/text/GTAVCS.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/plugins/data/text/GTAVCS.text -------------------------------------------------------------------------------- /plugins/data/text/LANOIRE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/plugins/data/text/LANOIRE.json -------------------------------------------------------------------------------- /plugins/data/text/LANOIRE.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/plugins/data/text/LANOIRE.text -------------------------------------------------------------------------------- /plugins/data/text/MAFIA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/plugins/data/text/MAFIA.json -------------------------------------------------------------------------------- /plugins/data/text/MAFIA.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/plugins/data/text/MAFIA.text -------------------------------------------------------------------------------- /plugins/data/text/MAFIA2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/plugins/data/text/MAFIA2.json -------------------------------------------------------------------------------- /plugins/data/text/MAFIA2.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/plugins/data/text/MAFIA2.text -------------------------------------------------------------------------------- /plugins/data/text/MAFIA3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/plugins/data/text/MAFIA3.json -------------------------------------------------------------------------------- /plugins/data/text/MAFIA3.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/plugins/data/text/MAFIA3.text -------------------------------------------------------------------------------- /plugins/data/text/MAFIADE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/plugins/data/text/MAFIADE.json -------------------------------------------------------------------------------- /plugins/data/text/MAFIADE.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/plugins/data/text/MAFIADE.text -------------------------------------------------------------------------------- /plugins/data/text/MANHUNT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/plugins/data/text/MANHUNT.json -------------------------------------------------------------------------------- /plugins/data/text/MANHUNT.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/plugins/data/text/MANHUNT.text -------------------------------------------------------------------------------- /plugins/data/text/MANHUNT2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/plugins/data/text/MANHUNT2.json -------------------------------------------------------------------------------- /plugins/data/text/MANHUNT2.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/plugins/data/text/MANHUNT2.text -------------------------------------------------------------------------------- /plugins/data/text/MAXPAYNE3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/plugins/data/text/MAXPAYNE3.json -------------------------------------------------------------------------------- /plugins/data/text/MAXPAYNE3.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/plugins/data/text/MAXPAYNE3.text -------------------------------------------------------------------------------- /plugins/data/text/MAXPAYNE3ALT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/plugins/data/text/MAXPAYNE3ALT.json -------------------------------------------------------------------------------- /plugins/data/text/MAXPAYNE3ALT.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/plugins/data/text/MAXPAYNE3ALT.text -------------------------------------------------------------------------------- /plugins/data/text/MCLA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/plugins/data/text/MCLA.json -------------------------------------------------------------------------------- /plugins/data/text/MCLA.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/plugins/data/text/MCLA.text -------------------------------------------------------------------------------- /plugins/data/text/RDR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/plugins/data/text/RDR.json -------------------------------------------------------------------------------- /plugins/data/text/RDR.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/plugins/data/text/RDR.text -------------------------------------------------------------------------------- /plugins/data/text/RDR2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/plugins/data/text/RDR2.json -------------------------------------------------------------------------------- /plugins/data/text/RDR2.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/plugins/data/text/RDR2.text -------------------------------------------------------------------------------- /plugins/data/text/SOPRANOS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/plugins/data/text/SOPRANOS.json -------------------------------------------------------------------------------- /plugins/data/text/SOPRANOS.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/plugins/data/text/SOPRANOS.text -------------------------------------------------------------------------------- /plugins/data/text/TBOGT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/plugins/data/text/TBOGT.json -------------------------------------------------------------------------------- /plugins/data/text/TBOGT.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/plugins/data/text/TBOGT.text -------------------------------------------------------------------------------- /plugins/data/text/THEWARRIORS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/plugins/data/text/THEWARRIORS.json -------------------------------------------------------------------------------- /plugins/data/text/THEWARRIORS.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/plugins/data/text/THEWARRIORS.text -------------------------------------------------------------------------------- /plugins/data/text/TLAD.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/plugins/data/text/TLAD.json -------------------------------------------------------------------------------- /plugins/data/text/TLAD.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/plugins/data/text/TLAD.text -------------------------------------------------------------------------------- /plugins/data/togif.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/plugins/data/togif.bat -------------------------------------------------------------------------------- /plugins/premake5.bat: -------------------------------------------------------------------------------- 1 | premake5 vs2019 -------------------------------------------------------------------------------- /plugins/premake5.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/plugins/premake5.exe -------------------------------------------------------------------------------- /plugins/premake5.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/plugins/premake5.lua -------------------------------------------------------------------------------- /plugins/source/MemoryMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/plugins/source/MemoryMgr.h -------------------------------------------------------------------------------- /plugins/source/Trampoline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/plugins/source/Trampoline.h -------------------------------------------------------------------------------- /plugins/source/bully.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/plugins/source/bully.cpp -------------------------------------------------------------------------------- /plugins/source/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/plugins/source/dllmain.cpp -------------------------------------------------------------------------------- /plugins/source/episodes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/plugins/source/episodes.cpp -------------------------------------------------------------------------------- /plugins/source/maxpayne3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/plugins/source/maxpayne3.cpp -------------------------------------------------------------------------------- /plugins/source/meowhunt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/plugins/source/meowhunt.cpp -------------------------------------------------------------------------------- /plugins/source/resources/VersionInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/plugins/source/resources/VersionInfo.h -------------------------------------------------------------------------------- /plugins/source/resources/Versioninfo.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/plugins/source/resources/Versioninfo.rc -------------------------------------------------------------------------------- /plugins/source/stories.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/plugins/source/stories.cpp -------------------------------------------------------------------------------- /plugins/source/v.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/plugins/source/v.cpp -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThirteenAG/GTA-One-Liners/HEAD/readme.md --------------------------------------------------------------------------------