├── (for developers) ├── Documentation.url ├── How to create scripts with CLEO+.url ├── SCRLog (updated).url ├── Sanny Builder │ ├── CLEO+ sanny builder - opcodes_txt.txt │ └── CLEO+ sanny builder - sascm_ini.txt └── gta3script │ ├── CLEO+ gta3sc xml - commands.txt │ ├── CLEO+ gta3sc xml - enums.txt │ ├── CLEO+ gta3sc xml.txt │ ├── CLEO+ test script (infos).txt │ ├── CLEO+ test script.cs │ ├── CLEO+ test script.sc │ └── cleo.xml ├── .gitignore ├── CLEOPlus.sln ├── CLEOPlus ├── Audio.cpp ├── Bones.cpp ├── CLEOPlus.cpp ├── CLEOPlus.vcxproj ├── CLEOPlus.vcxproj.filters ├── CLEOPlus.vcxproj.user ├── CPedDamageResponseCalculator.h ├── Colpoint.cpp ├── Coop.cpp ├── Drawing.cpp ├── Drawing.h ├── Environment.cpp ├── Events.cpp ├── Events.h ├── ExtendedEntityVars.cpp ├── Input.cpp ├── Intelligence.cpp ├── List.cpp ├── MathRelated.cpp ├── Memory.cpp ├── Misc.cpp ├── NoSave.cpp ├── ObjExtendedData.cpp ├── ObjExtendedData.h ├── OpcodesCommon.h ├── Patches.cpp ├── Patches.h ├── PedExtendedData.cpp ├── PedExtendedData.h ├── PerlinNoise │ ├── SimplexNoise.cpp │ └── SimplexNoise.h ├── Pickup.cpp ├── RadarBlip.cpp ├── RadarBlip.h ├── RenderObject.cpp ├── RenderObject.h ├── RenderObjectOnChar.cpp ├── RenderObjectOnChar.h ├── RenderObjectOnEntity.cpp ├── RenderObjectOnEntity.h ├── Screen.cpp ├── Screen.h ├── ScriptEntities.cpp ├── SpecialModels.cpp ├── SpecialModels.h ├── TextDrawer │ ├── TextDrawer.cpp │ └── TextDrawer.h ├── Timer.cpp ├── Types.cpp ├── VehExtendedData.cpp ├── VehExtendedData.h └── game_sa │ └── CarGeneratorsEx.h ├── LICENSE └── README.md /(for developers)/Documentation.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniorDjjr/CLEOPlus/HEAD/(for developers)/Documentation.url -------------------------------------------------------------------------------- /(for developers)/How to create scripts with CLEO+.url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniorDjjr/CLEOPlus/HEAD/(for developers)/How to create scripts with CLEO+.url -------------------------------------------------------------------------------- /(for developers)/SCRLog (updated).url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniorDjjr/CLEOPlus/HEAD/(for developers)/SCRLog (updated).url -------------------------------------------------------------------------------- /(for developers)/Sanny Builder/CLEO+ sanny builder - opcodes_txt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniorDjjr/CLEOPlus/HEAD/(for developers)/Sanny Builder/CLEO+ sanny builder - opcodes_txt.txt -------------------------------------------------------------------------------- /(for developers)/Sanny Builder/CLEO+ sanny builder - sascm_ini.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniorDjjr/CLEOPlus/HEAD/(for developers)/Sanny Builder/CLEO+ sanny builder - sascm_ini.txt -------------------------------------------------------------------------------- /(for developers)/gta3script/CLEO+ gta3sc xml - commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniorDjjr/CLEOPlus/HEAD/(for developers)/gta3script/CLEO+ gta3sc xml - commands.txt -------------------------------------------------------------------------------- /(for developers)/gta3script/CLEO+ gta3sc xml - enums.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniorDjjr/CLEOPlus/HEAD/(for developers)/gta3script/CLEO+ gta3sc xml - enums.txt -------------------------------------------------------------------------------- /(for developers)/gta3script/CLEO+ gta3sc xml.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniorDjjr/CLEOPlus/HEAD/(for developers)/gta3script/CLEO+ gta3sc xml.txt -------------------------------------------------------------------------------- /(for developers)/gta3script/CLEO+ test script (infos).txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniorDjjr/CLEOPlus/HEAD/(for developers)/gta3script/CLEO+ test script (infos).txt -------------------------------------------------------------------------------- /(for developers)/gta3script/CLEO+ test script.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniorDjjr/CLEOPlus/HEAD/(for developers)/gta3script/CLEO+ test script.cs -------------------------------------------------------------------------------- /(for developers)/gta3script/CLEO+ test script.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniorDjjr/CLEOPlus/HEAD/(for developers)/gta3script/CLEO+ test script.sc -------------------------------------------------------------------------------- /(for developers)/gta3script/cleo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniorDjjr/CLEOPlus/HEAD/(for developers)/gta3script/cleo.xml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniorDjjr/CLEOPlus/HEAD/.gitignore -------------------------------------------------------------------------------- /CLEOPlus.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniorDjjr/CLEOPlus/HEAD/CLEOPlus.sln -------------------------------------------------------------------------------- /CLEOPlus/Audio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniorDjjr/CLEOPlus/HEAD/CLEOPlus/Audio.cpp -------------------------------------------------------------------------------- /CLEOPlus/Bones.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniorDjjr/CLEOPlus/HEAD/CLEOPlus/Bones.cpp -------------------------------------------------------------------------------- /CLEOPlus/CLEOPlus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniorDjjr/CLEOPlus/HEAD/CLEOPlus/CLEOPlus.cpp -------------------------------------------------------------------------------- /CLEOPlus/CLEOPlus.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniorDjjr/CLEOPlus/HEAD/CLEOPlus/CLEOPlus.vcxproj -------------------------------------------------------------------------------- /CLEOPlus/CLEOPlus.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniorDjjr/CLEOPlus/HEAD/CLEOPlus/CLEOPlus.vcxproj.filters -------------------------------------------------------------------------------- /CLEOPlus/CLEOPlus.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniorDjjr/CLEOPlus/HEAD/CLEOPlus/CLEOPlus.vcxproj.user -------------------------------------------------------------------------------- /CLEOPlus/CPedDamageResponseCalculator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniorDjjr/CLEOPlus/HEAD/CLEOPlus/CPedDamageResponseCalculator.h -------------------------------------------------------------------------------- /CLEOPlus/Colpoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniorDjjr/CLEOPlus/HEAD/CLEOPlus/Colpoint.cpp -------------------------------------------------------------------------------- /CLEOPlus/Coop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniorDjjr/CLEOPlus/HEAD/CLEOPlus/Coop.cpp -------------------------------------------------------------------------------- /CLEOPlus/Drawing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniorDjjr/CLEOPlus/HEAD/CLEOPlus/Drawing.cpp -------------------------------------------------------------------------------- /CLEOPlus/Drawing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniorDjjr/CLEOPlus/HEAD/CLEOPlus/Drawing.h -------------------------------------------------------------------------------- /CLEOPlus/Environment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniorDjjr/CLEOPlus/HEAD/CLEOPlus/Environment.cpp -------------------------------------------------------------------------------- /CLEOPlus/Events.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniorDjjr/CLEOPlus/HEAD/CLEOPlus/Events.cpp -------------------------------------------------------------------------------- /CLEOPlus/Events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniorDjjr/CLEOPlus/HEAD/CLEOPlus/Events.h -------------------------------------------------------------------------------- /CLEOPlus/ExtendedEntityVars.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniorDjjr/CLEOPlus/HEAD/CLEOPlus/ExtendedEntityVars.cpp -------------------------------------------------------------------------------- /CLEOPlus/Input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniorDjjr/CLEOPlus/HEAD/CLEOPlus/Input.cpp -------------------------------------------------------------------------------- /CLEOPlus/Intelligence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniorDjjr/CLEOPlus/HEAD/CLEOPlus/Intelligence.cpp -------------------------------------------------------------------------------- /CLEOPlus/List.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniorDjjr/CLEOPlus/HEAD/CLEOPlus/List.cpp -------------------------------------------------------------------------------- /CLEOPlus/MathRelated.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniorDjjr/CLEOPlus/HEAD/CLEOPlus/MathRelated.cpp -------------------------------------------------------------------------------- /CLEOPlus/Memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniorDjjr/CLEOPlus/HEAD/CLEOPlus/Memory.cpp -------------------------------------------------------------------------------- /CLEOPlus/Misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniorDjjr/CLEOPlus/HEAD/CLEOPlus/Misc.cpp -------------------------------------------------------------------------------- /CLEOPlus/NoSave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniorDjjr/CLEOPlus/HEAD/CLEOPlus/NoSave.cpp -------------------------------------------------------------------------------- /CLEOPlus/ObjExtendedData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniorDjjr/CLEOPlus/HEAD/CLEOPlus/ObjExtendedData.cpp -------------------------------------------------------------------------------- /CLEOPlus/ObjExtendedData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniorDjjr/CLEOPlus/HEAD/CLEOPlus/ObjExtendedData.h -------------------------------------------------------------------------------- /CLEOPlus/OpcodesCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniorDjjr/CLEOPlus/HEAD/CLEOPlus/OpcodesCommon.h -------------------------------------------------------------------------------- /CLEOPlus/Patches.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniorDjjr/CLEOPlus/HEAD/CLEOPlus/Patches.cpp -------------------------------------------------------------------------------- /CLEOPlus/Patches.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | void ApplyPatches(); 4 | -------------------------------------------------------------------------------- /CLEOPlus/PedExtendedData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniorDjjr/CLEOPlus/HEAD/CLEOPlus/PedExtendedData.cpp -------------------------------------------------------------------------------- /CLEOPlus/PedExtendedData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniorDjjr/CLEOPlus/HEAD/CLEOPlus/PedExtendedData.h -------------------------------------------------------------------------------- /CLEOPlus/PerlinNoise/SimplexNoise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniorDjjr/CLEOPlus/HEAD/CLEOPlus/PerlinNoise/SimplexNoise.cpp -------------------------------------------------------------------------------- /CLEOPlus/PerlinNoise/SimplexNoise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniorDjjr/CLEOPlus/HEAD/CLEOPlus/PerlinNoise/SimplexNoise.h -------------------------------------------------------------------------------- /CLEOPlus/Pickup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniorDjjr/CLEOPlus/HEAD/CLEOPlus/Pickup.cpp -------------------------------------------------------------------------------- /CLEOPlus/RadarBlip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniorDjjr/CLEOPlus/HEAD/CLEOPlus/RadarBlip.cpp -------------------------------------------------------------------------------- /CLEOPlus/RadarBlip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniorDjjr/CLEOPlus/HEAD/CLEOPlus/RadarBlip.h -------------------------------------------------------------------------------- /CLEOPlus/RenderObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniorDjjr/CLEOPlus/HEAD/CLEOPlus/RenderObject.cpp -------------------------------------------------------------------------------- /CLEOPlus/RenderObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniorDjjr/CLEOPlus/HEAD/CLEOPlus/RenderObject.h -------------------------------------------------------------------------------- /CLEOPlus/RenderObjectOnChar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniorDjjr/CLEOPlus/HEAD/CLEOPlus/RenderObjectOnChar.cpp -------------------------------------------------------------------------------- /CLEOPlus/RenderObjectOnChar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniorDjjr/CLEOPlus/HEAD/CLEOPlus/RenderObjectOnChar.h -------------------------------------------------------------------------------- /CLEOPlus/RenderObjectOnEntity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniorDjjr/CLEOPlus/HEAD/CLEOPlus/RenderObjectOnEntity.cpp -------------------------------------------------------------------------------- /CLEOPlus/RenderObjectOnEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniorDjjr/CLEOPlus/HEAD/CLEOPlus/RenderObjectOnEntity.h -------------------------------------------------------------------------------- /CLEOPlus/Screen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniorDjjr/CLEOPlus/HEAD/CLEOPlus/Screen.cpp -------------------------------------------------------------------------------- /CLEOPlus/Screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniorDjjr/CLEOPlus/HEAD/CLEOPlus/Screen.h -------------------------------------------------------------------------------- /CLEOPlus/ScriptEntities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniorDjjr/CLEOPlus/HEAD/CLEOPlus/ScriptEntities.cpp -------------------------------------------------------------------------------- /CLEOPlus/SpecialModels.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniorDjjr/CLEOPlus/HEAD/CLEOPlus/SpecialModels.cpp -------------------------------------------------------------------------------- /CLEOPlus/SpecialModels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniorDjjr/CLEOPlus/HEAD/CLEOPlus/SpecialModels.h -------------------------------------------------------------------------------- /CLEOPlus/TextDrawer/TextDrawer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniorDjjr/CLEOPlus/HEAD/CLEOPlus/TextDrawer/TextDrawer.cpp -------------------------------------------------------------------------------- /CLEOPlus/TextDrawer/TextDrawer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniorDjjr/CLEOPlus/HEAD/CLEOPlus/TextDrawer/TextDrawer.h -------------------------------------------------------------------------------- /CLEOPlus/Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniorDjjr/CLEOPlus/HEAD/CLEOPlus/Timer.cpp -------------------------------------------------------------------------------- /CLEOPlus/Types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniorDjjr/CLEOPlus/HEAD/CLEOPlus/Types.cpp -------------------------------------------------------------------------------- /CLEOPlus/VehExtendedData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniorDjjr/CLEOPlus/HEAD/CLEOPlus/VehExtendedData.cpp -------------------------------------------------------------------------------- /CLEOPlus/VehExtendedData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniorDjjr/CLEOPlus/HEAD/CLEOPlus/VehExtendedData.h -------------------------------------------------------------------------------- /CLEOPlus/game_sa/CarGeneratorsEx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniorDjjr/CLEOPlus/HEAD/CLEOPlus/game_sa/CarGeneratorsEx.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniorDjjr/CLEOPlus/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniorDjjr/CLEOPlus/HEAD/README.md --------------------------------------------------------------------------------