diff --git a/resources/BetterFlashlight/client/client.lua b/resources/BetterFlashlight/client/client.lua new file mode 100644 index 000000000..9184799e2 Binary files /dev/null and b/resources/BetterFlashlight/client/client.lua differ diff --git a/resources/BetterFlashlight/config.lua b/resources/BetterFlashlight/config.lua new file mode 100644 index 000000000..284c6d3fb --- /dev/null +++ b/resources/BetterFlashlight/config.lua @@ -0,0 +1,21 @@ +Config = {} + +--Default buttons only change on first join, to change later, change ingame +Config['DefaultToogle'] = 'E' +Config['DefaultChangeAnim'] = 'O' +Config['Locale'] = 'en' -- pl/en +Config['HelpBox'] = true -- true/false +Config['ShowAuthorInHelpBox'] = false -- true/false +Config['KeyMapping'] = true -- true/false (if false use commands 'toogleflash' and 'changeflashanim') +Config['CustomHelpEvent'] = false -- true/false +Config['FixAnimWhenStop'] = true -- true/false (Set it to true, if you want the anim to fix itself when you stop it somehow) + +Config['Anims'] = { -- Toogle anims on/off + ["PoliceTorchAnim"] = true, -- true/false + ["SecGuard1Anim"] = true, -- true/false + ["SecGuard2Anim"] = true, -- true/false + ["SecGuard3Anim"] = true, -- true/false + ["SecGuard4Anim"] = true, -- true/false + ["SecGuard5Anim"] = true, -- true/false + ["Default"] = true, -- true/false +} \ No newline at end of file diff --git a/resources/BetterFlashlight/customhelp.lua b/resources/BetterFlashlight/customhelp.lua new file mode 100644 index 000000000..a439be232 --- /dev/null +++ b/resources/BetterFlashlight/customhelp.lua @@ -0,0 +1,15 @@ +RegisterNetEvent('Betterflashlight:CustomHelpMenu') +AddEventHandler('Betterflashlight:CustomHelpMenu', function(animName, toogleTorch, changeAnim, isEquipped) + print("Anim Name: "..animName) + print("Toogle torch button: "..toogleTorch) + print("Change anim button: "..changeAnim) + print("Is Equipped: "..tostring(isEquipped)) + --EXAMPLE: + if isEquipped then + --Your show notify trigger + else + --Hide notify trigger + end +end) + + diff --git a/resources/BetterFlashlight/fxmanifest.lua b/resources/BetterFlashlight/fxmanifest.lua new file mode 100644 index 000000000..9598d28b7 --- /dev/null +++ b/resources/BetterFlashlight/fxmanifest.lua @@ -0,0 +1,30 @@ +shared_script '@WolfShield/WolfShield.lua' +fx_version "cerulean" +game "gta5" + +author 'miraf' +description "Better Flashlight with a custom animation" +version '1.2.4' + +lua54 'yes' + +client_scripts { + "config.lua", + "locale.lua", + "locales/*.lua", + "client/*.lua", + "customhelp.lua" +} + +escrow_ignore { + "config.lua", + "locales/*.lua", + "customhelp.lua" +} + +server_scripts{ + "server/*.lua" +} + + +dependency '/assetpacks' \ No newline at end of file diff --git a/resources/BetterFlashlight/locale.lua b/resources/BetterFlashlight/locale.lua new file mode 100644 index 000000000..c4cb8d9d9 Binary files /dev/null and b/resources/BetterFlashlight/locale.lua differ diff --git a/resources/BetterFlashlight/locales/en.lua b/resources/BetterFlashlight/locales/en.lua new file mode 100644 index 000000000..1f489d765 --- /dev/null +++ b/resources/BetterFlashlight/locales/en.lua @@ -0,0 +1,14 @@ +Locales['en'] = { + ['HelpString1'] = 'Animation Name: ~h~%s~h~~s~', + ['HelpString2'] = 'Press %s to turn ~g~on~s~/~r~off~s~ the flashlight', + ['HelpString3'] = 'Press %s to change the animation', + ['HelpString4'] = '~h~BetterFlashlight made by miraf', + ['HelpString5'] = 'Animations edited by Big Gucci Nelson', + ['PoliceTorchAnim'] = 'Police torch', + ['SecGuard1Anim'] = 'Security Guard 1', + ['SecGuard2Anim'] = 'Security Guard 2', + ['SecGuard3Anim'] = 'Security Guard 3', + ['SecGuard4Anim'] = 'Security Guard 4', + ['SecGuard5Anim'] = 'Security Guard 5', + ['Default'] = 'Default' +} \ No newline at end of file diff --git a/resources/BetterFlashlight/locales/pl.lua b/resources/BetterFlashlight/locales/pl.lua new file mode 100644 index 000000000..80fea2ee1 --- /dev/null +++ b/resources/BetterFlashlight/locales/pl.lua @@ -0,0 +1,14 @@ +Locales['pl'] = { + ['HelpString1'] = 'Animacja: ~h~%s~h~~s~', + ['HelpString2'] = 'Naciśnij %s aby ~g~włączyć~s~/~r~wyłączyć~s~ latarkę', + ['HelpString3'] = 'Naciśnij %s aby zmienić animację', + ['HelpString4'] = '~h~BetterFlashlight autorstwa miraf', + ['HelpString5'] = 'Animacje edytował Big Gucci Nelson', + ['PoliceTorchAnim'] = 'Policjant', + ['SecGuard1Anim'] = 'Ochroniarz 1', + ['SecGuard2Anim'] = 'Ochroniarz 2', + ['SecGuard3Anim'] = 'Ochroniarz 3', + ['SecGuard4Anim'] = 'Ochroniarz 4', + ['SecGuard5Anim'] = 'Ochroniarz 5', + ['Default'] = 'Domyślna' +} \ No newline at end of file diff --git a/resources/BetterFlashlight/stream/amb@incar@male@patrol@torch@base.ycd b/resources/BetterFlashlight/stream/amb@incar@male@patrol@torch@base.ycd new file mode 100644 index 000000000..4fd363d42 Binary files /dev/null and b/resources/BetterFlashlight/stream/amb@incar@male@patrol@torch@base.ycd differ diff --git a/resources/[EGRP-CarPacks]/EGRP-Muscle/__resource.lua b/resources/[EGRP-CarPacks]/EGRP-Muscle/__resource.lua index 50e478913..f1c06b4d1 100644 --- a/resources/[EGRP-CarPacks]/EGRP-Muscle/__resource.lua +++ b/resources/[EGRP-CarPacks]/EGRP-Muscle/__resource.lua @@ -418,8 +418,22 @@ resource_manifest_version '77731fab-63ca-442c-a67b-abc70f28dfa5' data_file 'VEHICLE_METADATA_FILE' 'data/24mustdh/vehicles.meta' data_file 'CARCOLS_FILE' 'data/24mustdh/carcols.meta' data_file 'VEHICLE_VARIATION_FILE' 'data/24mustdh/carvariations.meta' - data_file 'VEHICLE_LAYOUTS_FILE' 'data/24mustdh/dlctext.meta' + data_file 'VEHICLE_LAYOUTS_FILE' 'data/24mustdh/dlctext.meta' + -- 24mustgtstd + files { + 'data/24mustgtstd/vehicles.meta', + 'data/24mustgtstd/carvariations.meta', + 'data/24mustgtstd/carcols.meta', + 'data/24mustgtstd/handling.meta', + 'data/24mustgtstd/vehiclelayouts.meta', + } + + data_file 'HANDLING_FILE' 'data/24mustgtstd/handling.meta' + data_file 'VEHICLE_METADATA_FILE' 'data/24mustgtstd/vehicles.meta' + data_file 'CARCOLS_FILE' 'data/24mustgtstd/carcols.meta' + data_file 'VEHICLE_VARIATION_FILE' 'data/24mustgtstd/carvariations.meta' + data_file 'VEHICLE_LAYOUTS_FILE' 'data/24mustgtstd/dlctext.meta' client_script { 'vehicle_names.lua' diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/tahoe2/carcols.meta b/resources/[EGRP-CarPacks]/EGRP-Muscle/data/24mustgtstd/carcols.meta similarity index 79% rename from resources/[EGRP-CarPacks]/EGRP-SUVs/data/tahoe2/carcols.meta rename to resources/[EGRP-CarPacks]/EGRP-Muscle/data/24mustgtstd/carcols.meta index 6036272b5..3d0ec4d28 100644 --- a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/tahoe2/carcols.meta +++ b/resources/[EGRP-CarPacks]/EGRP-Muscle/data/24mustgtstd/carcols.meta @@ -1,50 +1,51 @@ - + + + + + + + + - 5043_monkeyaddon_modkit - + 135_24mustgtstd_modkit + MKT_SPECIAL - + + - + VMT_ENGINE - + VMT_ENGINE - + VMT_ENGINE - + VMT_ENGINE - - - - - - VMT_BRAKES - @@ -61,21 +62,28 @@ - + + + + VMT_BRAKES + + + + VMT_GEARBOX - + VMT_GEARBOX - + VMT_GEARBOX @@ -171,7 +179,7 @@ VMT_HORN - + HORN_SAD_TROMBONE @@ -219,70 +227,70 @@ VMT_HORN - - + + MUSICAL_HORN_BUSINESS_7 VMT_HORN - - + + DLC_BUSI2_C_MAJOR_NOTES_C0 VMT_HORN - - + + DLC_BUSI2_C_MAJOR_NOTES_D0 VMT_HORN - - + + DLC_BUSI2_C_MAJOR_NOTES_E0 VMT_HORN - - + + DLC_BUSI2_C_MAJOR_NOTES_F0 VMT_HORN - - + + DLC_BUSI2_C_MAJOR_NOTES_G0 VMT_HORN - - + + DLC_BUSI2_C_MAJOR_NOTES_A0 VMT_HORN - - + + DLC_BUSI2_C_MAJOR_NOTES_B0 VMT_HORN - - + + DLC_BUSI2_C_MAJOR_NOTES_C1 VMT_HORN - + HIPSTER_HORN_1 @@ -339,21 +347,21 @@ VMT_HORN - + LUXE_HORN_1 VMT_HORN - + LUXE_HORN_2 VMT_HORN - + LUXE_HORN_3 @@ -361,7 +369,7 @@ VMT_HORN - + LUXORY_HORN_1 @@ -369,7 +377,7 @@ VMT_HORN - + LUXURY_HORN_2 @@ -377,37 +385,97 @@ VMT_HORN - + LUXURY_HORN_3 VMT_HORN - + + ORGAN_HORN_LOOP_01 + + + + VMT_HORN + + + + ORGAN_HORN_LOOP_01_PREVIEW + + + + VMT_HORN + + + ORGAN_HORN_LOOP_02 + + + + VMT_HORN + + + + ORGAN_HORN_LOOP_02_PREVIEW + + + + VMT_HORN + + + LOWRIDER_HORN_1 + + + + VMT_HORN + + + + LOWRIDER_HORN_1_PREVIEW + + + + VMT_HORN + + + LOWRIDER_HORN_2 + + + + VMT_HORN + + + + LOWRIDER_HORN_2_PREVIEW + + + + VMT_HORN + + - + VMT_SUSPENSION - + VMT_SUSPENSION - + VMT_SUSPENSION - + VMT_SUSPENSION @@ -418,17 +486,17 @@ - - - + + + - - - - + + + + @@ -436,7 +504,7 @@ - + @@ -451,7 +519,7 @@ - + @@ -472,62 +540,62 @@ - + - + - - + + - - - + + + - - - + + + - - + + - + - - + + - - VehicleLight_car_standardmodern - + + VehicleLight_car_oldsquare + - - - + + + - - - + + + - + - - + + @@ -549,8 +617,17 @@ - tahoe2 + 24mustgtstd - + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/tahoe2/carvariations.meta b/resources/[EGRP-CarPacks]/EGRP-Muscle/data/24mustgtstd/carvariations.meta similarity index 81% rename from resources/[EGRP-CarPacks]/EGRP-SUVs/data/tahoe2/carvariations.meta rename to resources/[EGRP-CarPacks]/EGRP-Muscle/data/24mustgtstd/carvariations.meta index 2f4b72057..34225c3e1 100644 --- a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/tahoe2/carvariations.meta +++ b/resources/[EGRP-CarPacks]/EGRP-Muscle/data/24mustgtstd/carvariations.meta @@ -1,19 +1,28 @@ - + + + + + + + + + + - tahoe2 + 24mustgtstd - + - 34 - 6 - 46 - 111 - 46 - 111 + 30 + 0 + 0 + 0 + 11 + 12 @@ -28,14 +37,16 @@ + 30 0 + 0 0 - 0 - 156 + 11 + 12 - + @@ -46,110 +57,121 @@ - 00 - 01 - 00 - 00 + 30 + 0 + 0 + 0 + 11 + 12 + + - - - + - 30 - 01 - 36 - 00 + 30 + 0 + 0 + 0 + 11 + 12 + + + - - - - + - 62 - 01 - 64 - 00 + 30 + 0 + 0 + 0 + 11 + 12 + + + + - - - - - - + - 002 - 01 - 006 - 00 + 30 + 0 + 0 + 0 + 11 + 12 + + + + + - - - - - - + - 134 - 01 - 134 - 00 + 30 + 0 + 0 + 0 + 11 + 12 + + + + + + - - - - - - - + - 018 - 01 - 024 - 00 + 30 + 0 + 0 + 0 + 11 + 12 + + + + + + + - - - - - - - @@ -158,16 +180,20 @@ - - - Standard White - - - + - + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/esca/dlctext.meta b/resources/[EGRP-CarPacks]/EGRP-Muscle/data/24mustgtstd/dlctext.meta similarity index 100% rename from resources/[EGRP-CarPacks]/EGRP-SUVs/data/esca/dlctext.meta rename to resources/[EGRP-CarPacks]/EGRP-Muscle/data/24mustgtstd/dlctext.meta diff --git a/resources/[EGRP-CarPacks]/EGRP-Muscle/data/24mustgtstd/handling.meta b/resources/[EGRP-CarPacks]/EGRP-Muscle/data/24mustgtstd/handling.meta new file mode 100644 index 000000000..ec392059b --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Muscle/data/24mustgtstd/handling.meta @@ -0,0 +1,67 @@ + + + + + + 24MUSTGTSTD + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 440010 + 0 + 0 + SPORTS_CAR + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-Muscle/data/24mustgtstd/vehicles.meta b/resources/[EGRP-CarPacks]/EGRP-Muscle/data/24mustgtstd/vehicles.meta new file mode 100644 index 000000000..9bed5bc1c --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Muscle/data/24mustgtstd/vehicles.meta @@ -0,0 +1,120 @@ + + + vehshare + + + + 24mustgtstd + 24mustgtstd + 24MUSTGTSTD + MustangFastBack + FORD + null + null + null + null + + null + GAUNTLET + LAYOUT_LOW + GROWLER_COVER_OFFSET_INFO + EXPLOSION_INFO_DEFAULT + + FOLLOW_CHEETAH_CAMERA + DEFAULT_THIRD_PERSON_VEHICLE_AIM_CAMERA + VEHICLE_BONNET_CAMERA_LOW_LOW + REDUCED_NEAR_CLIP_POV_CAMERA + + + + + + + + + + + + VFXVEHICLEINFO_CAR_GENERIC + + + + + + + + + + + + + + + + + + + + + + 15.000000 + 30.000000 + 70.000000 + 140.000000 + 500.000000 + 500.000000 + + + + + + + + + + + SWANKNESS_3 + + FLAG_HAS_LIVERY FLAG_EXTRAS_ALL FLAG_SPORTS FLAG_PARKING_SENSORS + VEHICLE_TYPE_CAR + VPT_FRONT_AND_BACK_PLATES + VDT_RACE + VC_SPORT + VWT_SPORT + + + + + EXTRA_1 EXTRA_2 + + + + + + + + + WHEEL_FRONT_RIGHT_CAMERA + WHEEL_FRONT_LEFT_CAMERA + WHEEL_REAR_RIGHT_CAMERA + WHEEL_REAR_LEFT_CAMERA + + Truck + + + + + STD_DILETTANTE_FRONT_LEFT + STD_DILETTANTE_FRONT_RIGHT + STD_BALLER_REAR_LEFT + STD_BALLER_REAR_RIGHT + + + + + + vehicles_bob_brown_interior + 24mustgtstd + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-Muscle/stream/24mustgtstd/24mustgtstd.yft b/resources/[EGRP-CarPacks]/EGRP-Muscle/stream/24mustgtstd/24mustgtstd.yft new file mode 100644 index 000000000..385ef51ab --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Muscle/stream/24mustgtstd/24mustgtstd.yft @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9f8221efbe9b44fe3fab28ceb0ee7d059866b4d9597f676cea0654047c91e71 +size 5822420 diff --git a/resources/[EGRP-CarPacks]/EGRP-Muscle/stream/24mustgtstd/24mustgtstd.ytd b/resources/[EGRP-CarPacks]/EGRP-Muscle/stream/24mustgtstd/24mustgtstd.ytd new file mode 100644 index 000000000..892346637 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Muscle/stream/24mustgtstd/24mustgtstd.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dce60d07e53cb1351717cf87e66394eedefcb72aea084d204077677cba682d90 +size 5184707 diff --git a/resources/[EGRP-CarPacks]/EGRP-Muscle/stream/24mustgtstd/24mustgtstd_hi.yft b/resources/[EGRP-CarPacks]/EGRP-Muscle/stream/24mustgtstd/24mustgtstd_hi.yft new file mode 100644 index 000000000..93c97c044 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Muscle/stream/24mustgtstd/24mustgtstd_hi.yft @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abdfd82b782e9415e335dd4bca4136e4691e22adaa5fb3e9f094f19959f8d801 +size 6920554 diff --git a/resources/[EGRP-CarPacks]/EGRP-Muscle/stream/ford70f100b/ford70f100.yft b/resources/[EGRP-CarPacks]/EGRP-Muscle/stream/ford70f100b/ford70f100.yft deleted file mode 100644 index 6563713fe..000000000 --- a/resources/[EGRP-CarPacks]/EGRP-Muscle/stream/ford70f100b/ford70f100.yft +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:dc5ef6280fc2bda8c2338a948e8f03f1445589a6a55c9d5fd21627056cb44436 -size 3182893 diff --git a/resources/[EGRP-CarPacks]/EGRP-Muscle/stream/ford70f100b/ford70f100.ytd b/resources/[EGRP-CarPacks]/EGRP-Muscle/stream/ford70f100b/ford70f100.ytd deleted file mode 100644 index 037d0946b..000000000 --- a/resources/[EGRP-CarPacks]/EGRP-Muscle/stream/ford70f100b/ford70f100.ytd +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:92db4ebe65eeba4c1cbeac17007c1df3cd05b14d412454ba39dcab0ce6ca5cf5 -size 14942201 diff --git a/resources/[EGRP-CarPacks]/EGRP-Muscle/stream/ford70f100b/ford70f100_hi.yft b/resources/[EGRP-CarPacks]/EGRP-Muscle/stream/ford70f100b/ford70f100_hi.yft deleted file mode 100644 index 6563713fe..000000000 --- a/resources/[EGRP-CarPacks]/EGRP-Muscle/stream/ford70f100b/ford70f100_hi.yft +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:dc5ef6280fc2bda8c2338a948e8f03f1445589a6a55c9d5fd21627056cb44436 -size 3182893 diff --git a/resources/[EGRP-CarPacks]/EGRP-Muscle/stream/ford70f100b/ford70f100b.yft b/resources/[EGRP-CarPacks]/EGRP-Muscle/stream/ford70f100b/ford70f100b.yft deleted file mode 100644 index af0782b7d..000000000 --- a/resources/[EGRP-CarPacks]/EGRP-Muscle/stream/ford70f100b/ford70f100b.yft +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4db5b3233dd4de9a912d87d8f6e78194464e57d63b74d94bc89dc545a0683f01 -size 3085261 diff --git a/resources/[EGRP-CarPacks]/EGRP-Muscle/stream/ford70f100b/ford70f100b.ytd b/resources/[EGRP-CarPacks]/EGRP-Muscle/stream/ford70f100b/ford70f100b.ytd deleted file mode 100644 index 52f086156..000000000 --- a/resources/[EGRP-CarPacks]/EGRP-Muscle/stream/ford70f100b/ford70f100b.ytd +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:5aa464a71692d8e9ae2ce89462739f9de1825b995a68518032052974138d0e46 -size 6283369 diff --git a/resources/[EGRP-CarPacks]/EGRP-Muscle/stream/ford70f100b/ford70f100b_hi.yft b/resources/[EGRP-CarPacks]/EGRP-Muscle/stream/ford70f100b/ford70f100b_hi.yft deleted file mode 100644 index af0782b7d..000000000 --- a/resources/[EGRP-CarPacks]/EGRP-Muscle/stream/ford70f100b/ford70f100b_hi.yft +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4db5b3233dd4de9a912d87d8f6e78194464e57d63b74d94bc89dc545a0683f01 -size 3085261 diff --git a/resources/[EGRP-CarPacks]/EGRP-Muscle/vehicle_names.lua b/resources/[EGRP-CarPacks]/EGRP-Muscle/vehicle_names.lua index c74ebfb5f..3af4909bc 100644 --- a/resources/[EGRP-CarPacks]/EGRP-Muscle/vehicle_names.lua +++ b/resources/[EGRP-CarPacks]/EGRP-Muscle/vehicle_names.lua @@ -60,5 +60,9 @@ Citizen.CreateThread(function() -- 24mustdh AddTextEntry('24mustdh', 'Ford Mustang darkhorse') --23camss - AddTextEntry('23camss', 'Chevy Camaro ss 2023') + AddTextEntry('23camss', 'Chevy Camaro ss 2023') + --24mustgtstd + AddTextEntry('24mustgtstd', '2024 Ford Mustang GT') + + end) \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/__resource.lua b/resources/[EGRP-CarPacks]/EGRP-SUVs/__resource.lua index 885cf7090..d53eafbc0 100644 --- a/resources/[EGRP-CarPacks]/EGRP-SUVs/__resource.lua +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/__resource.lua @@ -329,52 +329,7 @@ resource_manifest_version '77731fab-63ca-442c-a67b-abc70f28dfa5' data_file 'CARCOLS_FILE' 'data/srt2018/carcols.meta' data_file 'VEHICLE_VARIATION_FILE' 'data/srt2018/carvariations.meta' data_file 'VEHICLE_LAYOUTS_FILE' 'data/srt2018/dlctext.meta' - - --subn - files { - 'data/subn/vehicles.meta', - 'data/subn/carvariations.meta', - 'data/subn/carcols.meta', - 'data/subn/handling.meta', - 'data/subn/vehiclelayouts.meta', - } - - data_file 'HANDLING_FILE' 'data/subn/handling.meta' - data_file 'VEHICLE_METADATA_FILE' 'data/subn/vehicles.meta' - data_file 'CARCOLS_FILE' 'data/subn/carcols.meta' - data_file 'VEHICLE_VARIATION_FILE' 'data/subn/carvariations.meta' - data_file 'VEHICLE_LAYOUTS_FILE' 'data/subn/dlctext.meta' - - --tahoe - files { - 'data/tahoe/vehicles.meta', - 'data/tahoe/carvariations.meta', - 'data/tahoe/carcols.meta', - 'data/tahoe/handling.meta', - 'data/tahoe/vehiclelayouts.meta', - } - - data_file 'HANDLING_FILE' 'data/tahoe/handling.meta' - data_file 'VEHICLE_METADATA_FILE' 'data/tahoe/vehicles.meta' - data_file 'CARCOLS_FILE' 'data/tahoe/carcols.meta' - data_file 'VEHICLE_VARIATION_FILE' 'data/tahoe/carvariations.meta' - data_file 'VEHICLE_LAYOUTS_FILE' 'data/tahoe/dlctext.meta' - - --tahoe2 - files { - 'data/tahoe2/vehicles.meta', - 'data/tahoe2/carvariations.meta', - 'data/tahoe2/carcols.meta', - 'data/tahoe2/handling.meta', - 'data/tahoe2/vehiclelayouts.meta', - } - - data_file 'HANDLING_FILE' 'data/tahoe2/handling.meta' - data_file 'VEHICLE_METADATA_FILE' 'data/tahoe2/vehicles.meta' - data_file 'CARCOLS_FILE' 'data/tahoe2/carcols.meta' - data_file 'VEHICLE_VARIATION_FILE' 'data/tahoe2/carvariations.meta' - data_file 'VEHICLE_LAYOUTS_FILE' 'data/tahoe2/dlctext.meta' - + --teslax files { 'data/teslax/vehicles.meta', @@ -389,22 +344,7 @@ resource_manifest_version '77731fab-63ca-442c-a67b-abc70f28dfa5' data_file 'CARCOLS_FILE' 'data/teslax/carcols.meta' data_file 'VEHICLE_VARIATION_FILE' 'data/teslax/carvariations.meta' data_file 'VEHICLE_LAYOUTS_FILE' 'data/teslax/dlctext.meta' - - --volvoxc90 - files { - 'data/volvoxc90/vehicles.meta', - 'data/volvoxc90/carvariations.meta', - 'data/volvoxc90/carcols.meta', - 'data/volvoxc90/handling.meta', - 'data/volvoxc90/vehiclelayouts.meta', - } - - data_file 'HANDLING_FILE' 'data/volvoxc90/handling.meta' - data_file 'VEHICLE_METADATA_FILE' 'data/volvoxc90/vehicles.meta' - data_file 'CARCOLS_FILE' 'data/volvoxc90/carcols.meta' - data_file 'VEHICLE_VARIATION_FILE' 'data/volvoxc90/carvariations.meta' - data_file 'VEHICLE_LAYOUTS_FILE' 'data/volvoxc90/dlctext.meta' - + --tahoe21 files { 'data/tahoe21/vehicles.meta', @@ -435,21 +375,6 @@ resource_manifest_version '77731fab-63ca-442c-a67b-abc70f28dfa5' data_file 'VEHICLE_VARIATION_FILE' 'data/pct18/carvariations.meta' data_file 'VEHICLE_LAYOUTS_FILE' 'data/pct18/dlctext.meta' - --yukon - files { - 'data/yukon/vehicles.meta', - 'data/yukon/carvariations.meta', - 'data/yukon/carcols.meta', - 'data/yukon/handling.meta', - 'data/yukon/vehiclelayouts.meta', - } - - data_file 'HANDLING_FILE' 'data/yukon/handling.meta' - data_file 'VEHICLE_METADATA_FILE' 'data/yukon/vehicles.meta' - data_file 'CARCOLS_FILE' 'data/yukon/carcols.meta' - data_file 'VEHICLE_VARIATION_FILE' 'data/yukon/carvariations.meta' - data_file 'VEHICLE_LAYOUTS_FILE' 'data/yukon/dlctext.meta' - --urus files { 'data/urus/vehicles.meta', @@ -612,7 +537,383 @@ resource_manifest_version '77731fab-63ca-442c-a67b-abc70f28dfa5' data_file 'VEHICLE_METADATA_FILE' 'data/wagoneer91/vehicles.meta' data_file 'CARCOLS_FILE' 'data/wagoneer91/carcols.meta' data_file 'VEHICLE_VARIATION_FILE' 'data/wagoneer91/carvariations.meta' - data_file 'VEHICLE_LAYOUTS_FILE' 'data/wagoneer91/dlctext.meta' + data_file 'VEHICLE_LAYOUTS_FILE' 'data/wagoneer91/dlctext.meta' + + -- 22jeeplar + files { + 'data/22jeeplar/vehicles.meta', + 'data/22jeeplar/carvariations.meta', + 'data/22jeeplar/carcols.meta', + 'data/22jeeplar/handling.meta', + 'data/22jeeplar/vehiclelayouts.meta', + } + + data_file 'HANDLING_FILE' 'data/22jeeplar/handling.meta' + data_file 'VEHICLE_METADATA_FILE' 'data/22jeeplar/vehicles.meta' + data_file 'CARCOLS_FILE' 'data/22jeeplar/carcols.meta' + data_file 'VEHICLE_VARIATION_FILE' 'data/22jeeplar/carvariations.meta' + data_file 'VEHICLE_LAYOUTS_FILE' 'data/22jeeplar/dlctext.meta' + + -- jeep20 + files { + 'data/jeep20/vehicles.meta', + 'data/jeep20/carvariations.meta', + 'data/jeep20/carcols.meta', + 'data/jeep20/handling.meta', + 'data/jeep20/vehiclelayouts.meta', + } + + data_file 'HANDLING_FILE' 'data/jeep20/handling.meta' + data_file 'VEHICLE_METADATA_FILE' 'data/jeep20/vehicles.meta' + data_file 'CARCOLS_FILE' 'data/jeep20/carcols.meta' + data_file 'VEHICLE_VARIATION_FILE' 'data/jeep20/carvariations.meta' + data_file 'VEHICLE_LAYOUTS_FILE' 'data/jeep20/dlctext.meta' + + -- 02tahoe + files { + 'data/02tahoe/vehicles.meta', + 'data/02tahoe/carvariations.meta', + 'data/02tahoe/carcols.meta', + 'data/02tahoe/handling.meta', + 'data/02tahoe/vehiclelayouts.meta', + } + + data_file 'HANDLING_FILE' 'data/02tahoe/handling.meta' + data_file 'VEHICLE_METADATA_FILE' 'data/02tahoe/vehicles.meta' + data_file 'CARCOLS_FILE' 'data/02tahoe/carcols.meta' + data_file 'VEHICLE_VARIATION_FILE' 'data/02tahoe/carvariations.meta' + data_file 'VEHICLE_LAYOUTS_FILE' 'data/02tahoe/dlctext.meta' + + -- 80fj60 + files { + 'data/80fj60/vehicles.meta', + 'data/80fj60/carvariations.meta', + 'data/80fj60/carcols.meta', + 'data/80fj60/handling.meta', + 'data/80fj60/vehiclelayouts.meta', + } + + data_file 'HANDLING_FILE' 'data/80fj60/handling.meta' + data_file 'VEHICLE_METADATA_FILE' 'data/80fj60/vehicles.meta' + data_file 'CARCOLS_FILE' 'data/80fj60/carcols.meta' + data_file 'VEHICLE_VARIATION_FILE' 'data/80fj60/carvariations.meta' + data_file 'VEHICLE_LAYOUTS_FILE' 'data/80fj60/dlctext.meta' + + -- 23tesla + files { + 'data/23tesla/vehicles.meta', + 'data/23tesla/carvariations.meta', + 'data/23tesla/carcols.meta', + 'data/23tesla/handling.meta', + 'data/23tesla/vehiclelayouts.meta', + } + + data_file 'HANDLING_FILE' 'data/23tesla/handling.meta' + data_file 'VEHICLE_METADATA_FILE' 'data/23tesla/vehicles.meta' + data_file 'CARCOLS_FILE' 'data/23tesla/carcols.meta' + data_file 'VEHICLE_VARIATION_FILE' 'data/23tesla/carvariations.meta' + data_file 'VEHICLE_LAYOUTS_FILE' 'data/23tesla/dlctext.meta' + + -- 23teslahc + files { + 'data/23teslahc/vehicles.meta', + 'data/23teslahc/carvariations.meta', + 'data/23teslahc/carcols.meta', + 'data/23teslahc/handling.meta', + 'data/23teslahc/vehiclelayouts.meta', + } + + data_file 'HANDLING_FILE' 'data/23teslahc/handling.meta' + data_file 'VEHICLE_METADATA_FILE' 'data/23teslahc/vehicles.meta' + data_file 'CARCOLS_FILE' 'data/23teslahc/carcols.meta' + data_file 'VEHICLE_VARIATION_FILE' 'data/23teslahc/carvariations.meta' + data_file 'VEHICLE_LAYOUTS_FILE' 'data/23teslahc/dlctext.meta' + + -- 23subur + files { + 'data/23subur/vehicles.meta', + 'data/23subur/carvariations.meta', + 'data/23subur/carcols.meta', + 'data/23subur/handling.meta', + 'data/23subur/vehiclelayouts.meta', + } + + data_file 'HANDLING_FILE' 'data/23subur/handling.meta' + data_file 'VEHICLE_METADATA_FILE' 'data/23subur/vehicles.meta' + data_file 'CARCOLS_FILE' 'data/23subur/carcols.meta' + data_file 'VEHICLE_VARIATION_FILE' 'data/23subur/carvariations.meta' + data_file 'VEHICLE_LAYOUTS_FILE' 'data/23subur/dlctext.meta' + + -- 19yukon + files { + 'data/19yukon/vehicles.meta', + 'data/19yukon/carvariations.meta', + 'data/19yukon/carcols.meta', + 'data/19yukon/handling.meta', + 'data/19yukon/vehiclelayouts.meta', + } + + data_file 'HANDLING_FILE' 'data/19yukon/handling.meta' + data_file 'VEHICLE_METADATA_FILE' 'data/19yukon/vehicles.meta' + data_file 'CARCOLS_FILE' 'data/19yukon/carcols.meta' + data_file 'VEHICLE_VARIATION_FILE' 'data/19yukon/carvariations.meta' + data_file 'VEHICLE_LAYOUTS_FILE' 'data/19yukon/dlctext.meta' + + -- 23santastd + files { + 'data/23santastd/vehicles.meta', + 'data/23santastd/carvariations.meta', + 'data/23santastd/carcols.meta', + 'data/23santastd/handling.meta', + 'data/23santastd/vehiclelayouts.meta', + } + + data_file 'HANDLING_FILE' 'data/23santastd/handling.meta' + data_file 'VEHICLE_METADATA_FILE' 'data/23santastd/vehicles.meta' + data_file 'CARCOLS_FILE' 'data/23santastd/carcols.meta' + data_file 'VEHICLE_VARIATION_FILE' 'data/23santastd/carvariations.meta' + data_file 'VEHICLE_LAYOUTS_FILE' 'data/23santastd/dlctext.meta' + + -- 23ev6 + files { + 'data/23ev6/vehicles.meta', + 'data/23ev6/carvariations.meta', + 'data/23ev6/carcols.meta', + 'data/23ev6/handling.meta', + 'data/23ev6/vehiclelayouts.meta', + } + + data_file 'HANDLING_FILE' 'data/23ev6/handling.meta' + data_file 'VEHICLE_METADATA_FILE' 'data/23ev6/vehicles.meta' + data_file 'CARCOLS_FILE' 'data/23ev6/carcols.meta' + data_file 'VEHICLE_VARIATION_FILE' 'data/23ev6/carvariations.meta' + data_file 'VEHICLE_LAYOUTS_FILE' 'data/23ev6/dlctext.meta' + + --23santa + files { + 'data/23santa/vehicles.meta', + 'data/23santa/carvariations.meta', + 'data/23santa/carcols.meta', + 'data/23santa/handling.meta', + 'data/23santa/vehiclelayouts.meta', + } + + data_file 'HANDLING_FILE' 'data/23santa/handling.meta' + data_file 'VEHICLE_METADATA_FILE' 'data/23santa/vehicles.meta' + data_file 'CARCOLS_FILE' 'data/23santa/carcols.meta' + data_file 'VEHICLE_VARIATION_FILE' 'data/23santa/carvariations.meta' + data_file 'VEHICLE_LAYOUTS_FILE' 'data/23santa/dlctext.meta' + + -- 23jeepwag3 + files { + 'data/23jeepwag3/vehicles.meta', + 'data/23jeepwag3/carvariations.meta', + 'data/23jeepwag3/carcols.meta', + 'data/23jeepwag3/handling.meta', + 'data/23jeepwag3/vehiclelayouts.meta', + } + + data_file 'HANDLING_FILE' 'data/23jeepwag3/handling.meta' + data_file 'VEHICLE_METADATA_FILE' 'data/23jeepwag3/vehicles.meta' + data_file 'CARCOLS_FILE' 'data/23jeepwag3/carcols.meta' + data_file 'VEHICLE_VARIATION_FILE' 'data/23jeepwag3/carvariations.meta' + data_file 'VEHICLE_LAYOUTS_FILE' 'data/23jeepwag3/dlctext.meta' + + -- 23esv + files { + 'data/23esv/vehicles.meta', + 'data/23esv/carvariations.meta', + 'data/23esv/carcols.meta', + 'data/23esv/handling.meta', + 'data/23esv/vehiclelayouts.meta', + } + + data_file 'HANDLING_FILE' 'data/23esv/handling.meta' + data_file 'VEHICLE_METADATA_FILE' 'data/23esv/vehicles.meta' + data_file 'CARCOLS_FILE' 'data/23esv/carcols.meta' + data_file 'VEHICLE_VARIATION_FILE' 'data/23esv/carvariations.meta' + data_file 'VEHICLE_LAYOUTS_FILE' 'data/23esv/dlctext.meta' + + -- 23esvsp + files { + 'data/23esvsp/vehicles.meta', + 'data/23esvsp/carvariations.meta', + 'data/23esvsp/carcols.meta', + 'data/23esvsp/handling.meta', + 'data/23esvsp/vehiclelayouts.meta', + } + + data_file 'HANDLING_FILE' 'data/23esvsp/handling.meta' + data_file 'VEHICLE_METADATA_FILE' 'data/23esvsp/vehicles.meta' + data_file 'CARCOLS_FILE' 'data/23esvsp/carcols.meta' + data_file 'VEHICLE_VARIATION_FILE' 'data/23esvsp/carvariations.meta' + data_file 'VEHICLE_LAYOUTS_FILE' 'data/23esvsp/dlctext.meta' + + -- 21yuk + files { + 'data/21yuk/vehicles.meta', + 'data/21yuk/carvariations.meta', + 'data/21yuk/carcols.meta', + 'data/21yuk/handling.meta', + 'data/21yuk/vehiclelayouts.meta', + } + + data_file 'HANDLING_FILE' 'data/21yuk/handling.meta' + data_file 'VEHICLE_METADATA_FILE' 'data/21yuk/vehicles.meta' + data_file 'CARCOLS_FILE' 'data/21yuk/carcols.meta' + data_file 'VEHICLE_VARIATION_FILE' 'data/21yuk/carvariations.meta' + data_file 'VEHICLE_LAYOUTS_FILE' 'data/21yuk/dlctext.meta' + + -- 23hornetrt + files { + 'data/23hornetrt/vehicles.meta', + 'data/23hornetrt/carvariations.meta', + 'data/23hornetrt/carcols.meta', + 'data/23hornetrt/handling.meta', + 'data/23hornetrt/vehiclelayouts.meta', + } + + data_file 'HANDLING_FILE' 'data/23hornetrt/handling.meta' + data_file 'VEHICLE_METADATA_FILE' 'data/23hornetrt/vehicles.meta' + data_file 'CARCOLS_FILE' 'data/23hornetrt/carcols.meta' + data_file 'VEHICLE_VARIATION_FILE' 'data/23hornetrt/carvariations.meta' + data_file 'VEHICLE_LAYOUTS_FILE' 'data/23hornetrt/dlctext.meta' + + --rover130v8 + files { + 'data/rover130v8/vehicles.meta', + 'data/rover130v8/carvariations.meta', + 'data/rover130v8/carcols.meta', + 'data/rover130v8/handling.meta', + 'data/rover130v8/vehiclelayouts.meta', + } + + data_file 'HANDLING_FILE' 'data/rover130v8/handling.meta' + data_file 'VEHICLE_METADATA_FILE' 'data/rover130v8/vehicles.meta' + data_file 'CARCOLS_FILE' 'data/rover130v8/carcols.meta' + data_file 'VEHICLE_VARIATION_FILE' 'data/rover130v8/carvariations.meta' + data_file 'VEHICLE_LAYOUTS_FILE' 'data/rover130v8/dlctext.meta' + + -- 22jeep + files { + 'data/22jeep/vehicles.meta', + 'data/22jeep/carvariations.meta', + 'data/22jeep/carcols.meta', + 'data/22jeep/handling.meta', + 'data/22jeep/vehiclelayouts.meta', + } + + data_file 'HANDLING_FILE' 'data/22jeep/handling.meta' + data_file 'VEHICLE_METADATA_FILE' 'data/22jeep/vehicles.meta' + data_file 'CARCOLS_FILE' 'data/22jeep/carcols.meta' + data_file 'VEHICLE_VARIATION_FILE' 'data/22jeep/carvariations.meta' + data_file 'VEHICLE_LAYOUTS_FILE' 'data/22jeep/dlctext.meta' + + -- 15expxlt + files { + 'data/15expxlt/vehicles.meta', + 'data/15expxlt/carvariations.meta', + 'data/15expxlt/carcols.meta', + 'data/15expxlt/handling.meta', + 'data/15expxlt/vehiclelayouts.meta', + } + + data_file 'HANDLING_FILE' 'data/15expxlt/handling.meta' + data_file 'VEHICLE_METADATA_FILE' 'data/15expxlt/vehicles.meta' + data_file 'CARCOLS_FILE' 'data/15expxlt/carcols.meta' + data_file 'VEHICLE_VARIATION_FILE' 'data/15expxlt/carvariations.meta' + data_file 'VEHICLE_LAYOUTS_FILE' 'data/15expxlt/dlctext.meta' + + -- 19yukonslt + files { + 'data/19yukonslt/vehicles.meta', + 'data/19yukonslt/carvariations.meta', + 'data/19yukonslt/carcols.meta', + 'data/19yukonslt/handling.meta', + 'data/19yukonslt/vehiclelayouts.meta', + } + + data_file 'HANDLING_FILE' 'data/19yukonslt/handling.meta' + data_file 'VEHICLE_METADATA_FILE' 'data/19yukonslt/vehicles.meta' + data_file 'CARCOLS_FILE' 'data/19yukonslt/carcols.meta' + data_file 'VEHICLE_VARIATION_FILE' 'data/19yukonslt/carvariations.meta' + data_file 'VEHICLE_LAYOUTS_FILE' 'data/19yukonslt/dlctext.meta' + + -- 21bro + files { + 'data/21bro/vehicles.meta', + 'data/21bro/carvariations.meta', + 'data/21bro/carcols.meta', + 'data/21bro/handling.meta', + 'data/21bro/vehiclelayouts.meta', + } + + data_file 'HANDLING_FILE' 'data/21bro/handling.meta' + data_file 'VEHICLE_METADATA_FILE' 'data/21bro/vehicles.meta' + data_file 'CARCOLS_FILE' 'data/21bro/carcols.meta' + data_file 'VEHICLE_VARIATION_FILE' 'data/21bro/carvariations.meta' + data_file 'VEHICLE_LAYOUTS_FILE' 'data/21bro/dlctext.meta' + + -- 21dura + files { + 'data/21dura/vehicles.meta', + 'data/21dura/carvariations.meta', + 'data/21dura/carcols.meta', + 'data/21dura/handling.meta', + 'data/21dura/vehiclelayouts.meta', + } + + data_file 'HANDLING_FILE' 'data/21dura/handling.meta' + data_file 'VEHICLE_METADATA_FILE' 'data/21dura/vehicles.meta' + data_file 'CARCOLS_FILE' 'data/21dura/carcols.meta' + data_file 'VEHICLE_VARIATION_FILE' 'data/21dura/carvariations.meta' + data_file 'VEHICLE_LAYOUTS_FILE' 'data/21dura/dlctext.meta' + + -- rav4hyb + files { + 'data/rav4hyb/vehicles.meta', + 'data/rav4hyb/carvariations.meta', + 'data/rav4hyb/carcols.meta', + 'data/rav4hyb/handling.meta', + 'data/rav4hyb/vehiclelayouts.meta', + } + + data_file 'HANDLING_FILE' 'data/rav4hyb/handling.meta' + data_file 'VEHICLE_METADATA_FILE' 'data/rav4hyb/vehicles.meta' + data_file 'CARCOLS_FILE' 'data/rav4hyb/carcols.meta' + data_file 'VEHICLE_VARIATION_FILE' 'data/rav4hyb/carvariations.meta' + data_file 'VEHICLE_LAYOUTS_FILE' 'data/rav4hyb/dlctext.meta' + + -- 23blazerppv + files { + 'data/23blazerppv/vehicles.meta', + 'data/23blazerppv/carvariations.meta', + 'data/23blazerppv/carcols.meta', + 'data/23blazerppv/handling.meta', + 'data/23blazerppv/vehiclelayouts.meta', + } + + data_file 'HANDLING_FILE' 'data/23blazerppv/handling.meta' + data_file 'VEHICLE_METADATA_FILE' 'data/23blazerppv/vehicles.meta' + data_file 'CARCOLS_FILE' 'data/23blazerppv/carcols.meta' + data_file 'VEHICLE_VARIATION_FILE' 'data/23blazerppv/carvariations.meta' + data_file 'VEHICLE_LAYOUTS_FILE' 'data/23blazerppv/dlctext.meta' + + -- 22macgt + files { + 'data/22macgt/vehicles.meta', + 'data/22macgt/carvariations.meta', + 'data/22macgt/carcols.meta', + 'data/22macgt/handling.meta', + 'data/22macgt/vehiclelayouts.meta', + } + + data_file 'HANDLING_FILE' 'data/22macgt/handling.meta' + data_file 'VEHICLE_METADATA_FILE' 'data/22macgt/vehicles.meta' + data_file 'CARCOLS_FILE' 'data/22macgt/carcols.meta' + data_file 'VEHICLE_VARIATION_FILE' 'data/22macgt/carvariations.meta' + data_file 'VEHICLE_LAYOUTS_FILE' 'data/22macgt/dlctext.meta' + client_script { 'vehicle_names.lua' diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/02tahoe/carcols.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/02tahoe/carcols.meta new file mode 100644 index 000000000..89c645210 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/02tahoe/carcols.meta @@ -0,0 +1,633 @@ + + + + + + + + + + + + + + 135_02tahoe_modkit + + MKT_SPECIAL + + + + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_BRAKES + + + + + + + VMT_BRAKES + + + + + + + VMT_BRAKES + + + + + + + VMT_GEARBOX + + + + + + + VMT_GEARBOX + + + + + + + VMT_GEARBOX + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + HORN_TRUCK + + + + VMT_HORN + + + HORN_COP + + + + VMT_HORN + + + HORN_CLOWN + + + + VMT_HORN + + + HORN_MUSICAL_1 + + + + VMT_HORN + + + HORN_MUSICAL_2 + + + + VMT_HORN + + + HORN_MUSICAL_3 + + + + VMT_HORN + + + HORN_MUSICAL_4 + + + + VMT_HORN + + + HORN_MUSICAL_5 + + + + VMT_HORN + + + HORN_SAD_TROMBONE + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_1 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_2 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_3 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_4 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_5 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_6 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_7 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_C0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_D0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_E0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_F0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_G0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_A0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_B0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_C1 + + + + VMT_HORN + + + HIPSTER_HORN_1 + + + + VMT_HORN + + + HIPSTER_HORN_2 + + + + VMT_HORN + + + HIPSTER_HORN_3 + + + + VMT_HORN + + + HIPSTER_HORN_4 + + + + VMT_HORN + + + INDEP_HORN_1 + + + + VMT_HORN + + + INDEP_HORN_2 + + + + VMT_HORN + + + INDEP_HORN_3 + + + + VMT_HORN + + + INDEP_HORN_4 + + + + VMT_HORN + + + LUXE_HORN_1 + + + + VMT_HORN + + + LUXE_HORN_2 + + + + VMT_HORN + + + LUXE_HORN_3 + + + + VMT_HORN + + + + LUXORY_HORN_1 + + + + VMT_HORN + + + + LUXURY_HORN_2 + + + + VMT_HORN + + + + LUXURY_HORN_3 + + + + VMT_HORN + + + ORGAN_HORN_LOOP_01 + + + + VMT_HORN + + + + ORGAN_HORN_LOOP_01_PREVIEW + + + + VMT_HORN + + + ORGAN_HORN_LOOP_02 + + + + VMT_HORN + + + + ORGAN_HORN_LOOP_02_PREVIEW + + + + VMT_HORN + + + LOWRIDER_HORN_1 + + + + VMT_HORN + + + + LOWRIDER_HORN_1_PREVIEW + + + + VMT_HORN + + + LOWRIDER_HORN_2 + + + + VMT_HORN + + + + LOWRIDER_HORN_2_PREVIEW + + + + VMT_HORN + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + VehicleLight_car_oldsquare + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 02tahoe + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/02tahoe/carvariations.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/02tahoe/carvariations.meta new file mode 100644 index 000000000..dc3caf80d --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/02tahoe/carvariations.meta @@ -0,0 +1,183 @@ + + + + + + + + + + + + + + + + 02tahoe + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 0_default_modkit + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/foxlight/dlctext.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/02tahoe/dlctext.meta similarity index 100% rename from resources/[EGRP-CarPacks]/EGRP-SUVs/data/foxlight/dlctext.meta rename to resources/[EGRP-CarPacks]/EGRP-SUVs/data/02tahoe/dlctext.meta diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/02tahoe/handling.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/02tahoe/handling.meta new file mode 100644 index 000000000..9364b732b --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/02tahoe/handling.meta @@ -0,0 +1,67 @@ + + + + + + 02TAHOE + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 440010 + 0 + 0 + AVERAGE + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/02tahoe/vehicles.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/02tahoe/vehicles.meta new file mode 100644 index 000000000..2bfd1dac9 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/02tahoe/vehicles.meta @@ -0,0 +1,134 @@ + + + vehshare + + + + 02tahoe + 02tahoe + 02TAHOE + Chverolet + TahoeLS + null + null + null + null + + null + LANDSTALKER + LAYOUT_STD_HIGHWINDOW + GRESLEY_COVER_OFFSET_INFO + EXPLOSION_INFO_DEFAULT + + DEFAULT_FOLLOW_VEHICLE_CAMERA + DEFAULT_THIRD_PERSON_VEHICLE_AIM_CAMERA + VEHICLE_BONNET_CAMERA_MID_HIGH + DEFAULT_POV_CAMERA + + + + + + + + + + + + + + + + + + + + + + + + + + + + VFXVEHICLEINFO_CAR_GENERIC + + + + + + + + + + + + + + + + + + + + + + 15.000000 + 30.000000 + 70.000000 + 140.000000 + 500.000000 + 500.000000 + + + + + + + + + + + SWANKNESS_3 + + FLAG_HAS_LIVERY FLAG_EXTRAS_ALL FLAG_IS_OFFROAD_VEHICLE FLAG_IS_BULKY + VEHICLE_TYPE_CAR + VPT_BACK_PLATES + VDT_CAVALCADE + VC_SUV + VWT_SUV + + + + + + + + + + + + WHEEL_FRONT_RIGHT_CAMERA + WHEEL_FRONT_LEFT_CAMERA + WHEEL_REAR_RIGHT_CAMERA + WHEEL_REAR_LEFT_CAMERA + + Truck + + + + + STD_DILETTANTE_FRONT_LEFT + STD_DILETTANTE_FRONT_RIGHT + STD_BALLER_REAR_LEFT + STD_BALLER_REAR_RIGHT + + + + + + vehicles_bob_brown_interior + 20tahoe + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/15expxlt/carcols.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/15expxlt/carcols.meta new file mode 100644 index 000000000..c38eff056 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/15expxlt/carcols.meta @@ -0,0 +1,633 @@ + + + + + + + + + + + + + + 135_15expxlt_modkit + + MKT_SPECIAL + + + + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_BRAKES + + + + + + + VMT_BRAKES + + + + + + + VMT_BRAKES + + + + + + + VMT_GEARBOX + + + + + + + VMT_GEARBOX + + + + + + + VMT_GEARBOX + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + HORN_TRUCK + + + + VMT_HORN + + + HORN_COP + + + + VMT_HORN + + + HORN_CLOWN + + + + VMT_HORN + + + HORN_MUSICAL_1 + + + + VMT_HORN + + + HORN_MUSICAL_2 + + + + VMT_HORN + + + HORN_MUSICAL_3 + + + + VMT_HORN + + + HORN_MUSICAL_4 + + + + VMT_HORN + + + HORN_MUSICAL_5 + + + + VMT_HORN + + + HORN_SAD_TROMBONE + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_1 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_2 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_3 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_4 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_5 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_6 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_7 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_C0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_D0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_E0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_F0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_G0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_A0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_B0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_C1 + + + + VMT_HORN + + + HIPSTER_HORN_1 + + + + VMT_HORN + + + HIPSTER_HORN_2 + + + + VMT_HORN + + + HIPSTER_HORN_3 + + + + VMT_HORN + + + HIPSTER_HORN_4 + + + + VMT_HORN + + + INDEP_HORN_1 + + + + VMT_HORN + + + INDEP_HORN_2 + + + + VMT_HORN + + + INDEP_HORN_3 + + + + VMT_HORN + + + INDEP_HORN_4 + + + + VMT_HORN + + + LUXE_HORN_1 + + + + VMT_HORN + + + LUXE_HORN_2 + + + + VMT_HORN + + + LUXE_HORN_3 + + + + VMT_HORN + + + + LUXORY_HORN_1 + + + + VMT_HORN + + + + LUXURY_HORN_2 + + + + VMT_HORN + + + + LUXURY_HORN_3 + + + + VMT_HORN + + + ORGAN_HORN_LOOP_01 + + + + VMT_HORN + + + + ORGAN_HORN_LOOP_01_PREVIEW + + + + VMT_HORN + + + ORGAN_HORN_LOOP_02 + + + + VMT_HORN + + + + ORGAN_HORN_LOOP_02_PREVIEW + + + + VMT_HORN + + + LOWRIDER_HORN_1 + + + + VMT_HORN + + + + LOWRIDER_HORN_1_PREVIEW + + + + VMT_HORN + + + LOWRIDER_HORN_2 + + + + VMT_HORN + + + + LOWRIDER_HORN_2_PREVIEW + + + + VMT_HORN + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + VehicleLight_car_oldsquare + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 15expxlt + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/15expxlt/carvariations.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/15expxlt/carvariations.meta new file mode 100644 index 000000000..a302c9e42 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/15expxlt/carvariations.meta @@ -0,0 +1,183 @@ + + + + + + + + + + + + + + + + 15expxlt + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 0_default_modkit + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/tahoe/dlctext.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/15expxlt/dlctext.meta similarity index 100% rename from resources/[EGRP-CarPacks]/EGRP-SUVs/data/tahoe/dlctext.meta rename to resources/[EGRP-CarPacks]/EGRP-SUVs/data/15expxlt/dlctext.meta diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/15expxlt/handling.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/15expxlt/handling.meta new file mode 100644 index 000000000..bd31d4c72 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/15expxlt/handling.meta @@ -0,0 +1,67 @@ + + + + + + 15EXPXLT + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 440010 + 0 + 0 + AVERAGE + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/15expxlt/vehicles.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/15expxlt/vehicles.meta new file mode 100644 index 000000000..217df4644 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/15expxlt/vehicles.meta @@ -0,0 +1,134 @@ + + + vehshare + + + + 15expxlt + 15expxlt + 15EXPXLT + Expedition + FORD + null + null + null + null + + null + LANDSTALKER + LAYOUT_STANDARD + GRESLEY_COVER_OFFSET_INFO + EXPLOSION_INFO_DEFAULT + + DEFAULT_FOLLOW_VEHICLE_CAMERA + DEFAULT_THIRD_PERSON_VEHICLE_AIM_CAMERA + VEHICLE_BONNET_CAMERA_MID_HIGH + DEFAULT_POV_CAMERA + + + + + + + + + + + + + + + + + + + + + + + + + + + + VFXVEHICLEINFO_CAR_GENERIC + + + + + + + + + + + + + + + + + + + + + + 15.000000 + 30.000000 + 70.000000 + 140.000000 + 500.000000 + 500.000000 + + + + + + + + + + + SWANKNESS_3 + + FLAG_HAS_LIVERY FLAG_EXTRAS_ALL FLAG_IS_OFFROAD_VEHICLE FLAG_IS_BULKY + VEHICLE_TYPE_CAR + VPT_BACK_PLATES + VDT_ZTYPE + VC_SUV + VWT_SUV + + + + + + + + + + + + WHEEL_FRONT_RIGHT_CAMERA + WHEEL_FRONT_LEFT_CAMERA + WHEEL_REAR_RIGHT_CAMERA + WHEEL_REAR_LEFT_CAMERA + + Truck + + + + + STD_DILETTANTE_FRONT_LEFT + STD_DILETTANTE_FRONT_RIGHT + STD_BALLER_REAR_LEFT + STD_BALLER_REAR_RIGHT + + + + + + vehicles_bob_brown_interior + 15expxlt + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/19yukon/carcols.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/19yukon/carcols.meta new file mode 100644 index 000000000..b042e53e6 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/19yukon/carcols.meta @@ -0,0 +1,633 @@ + + + + + + + + + + + + + + 135_19yukon_modkit + + MKT_SPECIAL + + + + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_BRAKES + + + + + + + VMT_BRAKES + + + + + + + VMT_BRAKES + + + + + + + VMT_GEARBOX + + + + + + + VMT_GEARBOX + + + + + + + VMT_GEARBOX + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + HORN_TRUCK + + + + VMT_HORN + + + HORN_COP + + + + VMT_HORN + + + HORN_CLOWN + + + + VMT_HORN + + + HORN_MUSICAL_1 + + + + VMT_HORN + + + HORN_MUSICAL_2 + + + + VMT_HORN + + + HORN_MUSICAL_3 + + + + VMT_HORN + + + HORN_MUSICAL_4 + + + + VMT_HORN + + + HORN_MUSICAL_5 + + + + VMT_HORN + + + HORN_SAD_TROMBONE + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_1 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_2 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_3 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_4 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_5 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_6 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_7 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_C0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_D0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_E0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_F0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_G0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_A0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_B0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_C1 + + + + VMT_HORN + + + HIPSTER_HORN_1 + + + + VMT_HORN + + + HIPSTER_HORN_2 + + + + VMT_HORN + + + HIPSTER_HORN_3 + + + + VMT_HORN + + + HIPSTER_HORN_4 + + + + VMT_HORN + + + INDEP_HORN_1 + + + + VMT_HORN + + + INDEP_HORN_2 + + + + VMT_HORN + + + INDEP_HORN_3 + + + + VMT_HORN + + + INDEP_HORN_4 + + + + VMT_HORN + + + LUXE_HORN_1 + + + + VMT_HORN + + + LUXE_HORN_2 + + + + VMT_HORN + + + LUXE_HORN_3 + + + + VMT_HORN + + + + LUXORY_HORN_1 + + + + VMT_HORN + + + + LUXURY_HORN_2 + + + + VMT_HORN + + + + LUXURY_HORN_3 + + + + VMT_HORN + + + ORGAN_HORN_LOOP_01 + + + + VMT_HORN + + + + ORGAN_HORN_LOOP_01_PREVIEW + + + + VMT_HORN + + + ORGAN_HORN_LOOP_02 + + + + VMT_HORN + + + + ORGAN_HORN_LOOP_02_PREVIEW + + + + VMT_HORN + + + LOWRIDER_HORN_1 + + + + VMT_HORN + + + + LOWRIDER_HORN_1_PREVIEW + + + + VMT_HORN + + + LOWRIDER_HORN_2 + + + + VMT_HORN + + + + LOWRIDER_HORN_2_PREVIEW + + + + VMT_HORN + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + VehicleLight_car_oldsquare + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 19yukon + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/19yukon/carvariations.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/19yukon/carvariations.meta new file mode 100644 index 000000000..74a509436 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/19yukon/carvariations.meta @@ -0,0 +1,183 @@ + + + + + + + + + + + + + + + + 19yukon + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 0_default_modkit + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/teslax/dlctext.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/19yukon/dlctext.meta similarity index 100% rename from resources/[EGRP-CarPacks]/EGRP-SUVs/data/teslax/dlctext.meta rename to resources/[EGRP-CarPacks]/EGRP-SUVs/data/19yukon/dlctext.meta diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/19yukon/handling.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/19yukon/handling.meta new file mode 100644 index 000000000..6ef1b979b --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/19yukon/handling.meta @@ -0,0 +1,67 @@ + + + + + + 19YUKON + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 440010 + 0 + 0 + AVERAGE + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/teslax/vehicles.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/19yukon/vehicles.meta similarity index 68% rename from resources/[EGRP-CarPacks]/EGRP-SUVs/data/teslax/vehicles.meta rename to resources/[EGRP-CarPacks]/EGRP-SUVs/data/19yukon/vehicles.meta index da4f29a61..a5c41b84b 100644 --- a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/teslax/vehicles.meta +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/19yukon/vehicles.meta @@ -1,54 +1,53 @@ - + vehshare - - - teslax - teslax - teslax - teslax - KARIN + + 19yukon + 19yukon + 19YUKON + YukonDenali + GMC null null null null null - VOLTIC + BALLER3 LAYOUT_STANDARD - DILETTANTE_COVER_OFFSET_INFO + GRESLEY_COVER_OFFSET_INFO EXPLOSION_INFO_DEFAULT DEFAULT_FOLLOW_VEHICLE_CAMERA DEFAULT_THIRD_PERSON_VEHICLE_AIM_CAMERA - DEFAULT_VEHICLE_BONNET_CAMERA + VEHICLE_BONNET_CAMERA_MID_HIGH DEFAULT_POV_CAMERA - - - - + + + + - + - - + + - + - + - + @@ -60,44 +59,44 @@ - - + + - + - - + + - + - 15.000000 - 30.000000 + 15.000000 + 30.000000 70.000000 140.000000 500.000000 500.000000 - - + + - + - SWANKNESS_5 + SWANKNESS_3 - FLAG_HAS_INTERIOR_EXTRAS FLAG_SPORTS FLAG_COUNT_AS_FACEBOOK_DRIVEN FLAG_RICH_CAR + FLAG_HAS_LIVERY FLAG_IS_BULKY FLAG_PARKING_SENSORS VEHICLE_TYPE_CAR - VPT_FRONT_AND_BACK_PLATES - VDT_RACE + VPT_BACK_PLATES + VDT_FEROCI VC_SUV - VWT_SPORT + VWT_SUV @@ -114,24 +113,22 @@ WHEEL_REAR_RIGHT_CAMERA WHEEL_REAR_LEFT_CAMERA - + Truck STD_DILETTANTE_FRONT_LEFT STD_DILETTANTE_FRONT_RIGHT - STD_DILETTANTE_REAR_LEFT - STD_DILETTANTE_REAR_RIGHT + STD_BALLER_REAR_LEFT + STD_BALLER_REAR_RIGHT - - + - - vehicles_jet_interior - f117 + + vehicles_bob_brown_interior + 19yukon - - + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/19yukonslt/carcols.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/19yukonslt/carcols.meta new file mode 100644 index 000000000..cbf421a59 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/19yukonslt/carcols.meta @@ -0,0 +1,633 @@ + + + + + + + + + + + + + + 135_19yukonslt_modkit + + MKT_SPECIAL + + + + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_BRAKES + + + + + + + VMT_BRAKES + + + + + + + VMT_BRAKES + + + + + + + VMT_GEARBOX + + + + + + + VMT_GEARBOX + + + + + + + VMT_GEARBOX + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + HORN_TRUCK + + + + VMT_HORN + + + HORN_COP + + + + VMT_HORN + + + HORN_CLOWN + + + + VMT_HORN + + + HORN_MUSICAL_1 + + + + VMT_HORN + + + HORN_MUSICAL_2 + + + + VMT_HORN + + + HORN_MUSICAL_3 + + + + VMT_HORN + + + HORN_MUSICAL_4 + + + + VMT_HORN + + + HORN_MUSICAL_5 + + + + VMT_HORN + + + HORN_SAD_TROMBONE + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_1 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_2 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_3 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_4 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_5 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_6 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_7 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_C0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_D0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_E0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_F0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_G0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_A0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_B0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_C1 + + + + VMT_HORN + + + HIPSTER_HORN_1 + + + + VMT_HORN + + + HIPSTER_HORN_2 + + + + VMT_HORN + + + HIPSTER_HORN_3 + + + + VMT_HORN + + + HIPSTER_HORN_4 + + + + VMT_HORN + + + INDEP_HORN_1 + + + + VMT_HORN + + + INDEP_HORN_2 + + + + VMT_HORN + + + INDEP_HORN_3 + + + + VMT_HORN + + + INDEP_HORN_4 + + + + VMT_HORN + + + LUXE_HORN_1 + + + + VMT_HORN + + + LUXE_HORN_2 + + + + VMT_HORN + + + LUXE_HORN_3 + + + + VMT_HORN + + + + LUXORY_HORN_1 + + + + VMT_HORN + + + + LUXURY_HORN_2 + + + + VMT_HORN + + + + LUXURY_HORN_3 + + + + VMT_HORN + + + ORGAN_HORN_LOOP_01 + + + + VMT_HORN + + + + ORGAN_HORN_LOOP_01_PREVIEW + + + + VMT_HORN + + + ORGAN_HORN_LOOP_02 + + + + VMT_HORN + + + + ORGAN_HORN_LOOP_02_PREVIEW + + + + VMT_HORN + + + LOWRIDER_HORN_1 + + + + VMT_HORN + + + + LOWRIDER_HORN_1_PREVIEW + + + + VMT_HORN + + + LOWRIDER_HORN_2 + + + + VMT_HORN + + + + LOWRIDER_HORN_2_PREVIEW + + + + VMT_HORN + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + VehicleLight_car_oldsquare + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 19yukonslt + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/19yukonslt/carvariations.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/19yukonslt/carvariations.meta new file mode 100644 index 000000000..a5217906a --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/19yukonslt/carvariations.meta @@ -0,0 +1,183 @@ + + + + + + + + + + + + + + + + 19yukonslt + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 0_default_modkit + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/tahoe2/dlctext.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/19yukonslt/dlctext.meta similarity index 88% rename from resources/[EGRP-CarPacks]/EGRP-SUVs/data/tahoe2/dlctext.meta rename to resources/[EGRP-CarPacks]/EGRP-SUVs/data/19yukonslt/dlctext.meta index b24c4f58a..22bb4c390 100644 --- a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/tahoe2/dlctext.meta +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/19yukonslt/dlctext.meta @@ -1,6 +1,7 @@ + - + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/19yukonslt/handling.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/19yukonslt/handling.meta new file mode 100644 index 000000000..ad78e8185 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/19yukonslt/handling.meta @@ -0,0 +1,67 @@ + + + + + + 19YUKONSLT + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 440010 + 0 + 0 + AVERAGE + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/19yukonslt/vehicles.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/19yukonslt/vehicles.meta new file mode 100644 index 000000000..bf6d4ffcf --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/19yukonslt/vehicles.meta @@ -0,0 +1,138 @@ + + + vehshare + + + + 19yukonslt + 19yukonslt + 19YUKONSLT + YukonDenali + GMC + null + null + null + null + + null + BALLER3 + LAYOUT_STANDARD + GRESLEY_COVER_OFFSET_INFO + EXPLOSION_INFO_DEFAULT + + DEFAULT_FOLLOW_VEHICLE_CAMERA + DEFAULT_THIRD_PERSON_VEHICLE_AIM_CAMERA + VEHICLE_BONNET_CAMERA_MID_HIGH + DEFAULT_POV_CAMERA + + + + + + + + + + + + + + + + + + + + + + + + + + + + VFXVEHICLEINFO_CAR_GENERIC + + + + + + + + + + + + + + + + + + + + + + 15.000000 + 30.000000 + 70.000000 + 140.000000 + 500.000000 + 500.000000 + + + + + + + + + + + SWANKNESS_3 + + FLAG_HAS_LIVERY FLAG_IS_BULKY FLAG_PARKING_SENSORS + VEHICLE_TYPE_CAR + VPT_BACK_PLATES + VDT_FEROCI + VC_SUV + VWT_SUV + + + + + EXTRA_1 + + + + + + + EXTRA_1 + + + + WHEEL_FRONT_RIGHT_CAMERA + WHEEL_FRONT_LEFT_CAMERA + WHEEL_REAR_RIGHT_CAMERA + WHEEL_REAR_LEFT_CAMERA + + Truck + + + + + STD_DILETTANTE_FRONT_LEFT + STD_DILETTANTE_FRONT_RIGHT + STD_BALLER_REAR_LEFT + STD_BALLER_REAR_RIGHT + + + + + + vehicles_bob_brown_interior + 19yukonslt + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/tahoe/carcols.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/21bro/carcols.meta similarity index 85% rename from resources/[EGRP-CarPacks]/EGRP-SUVs/data/tahoe/carcols.meta rename to resources/[EGRP-CarPacks]/EGRP-SUVs/data/21bro/carcols.meta index 6e6712a68..45beb4d5a 100644 --- a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/tahoe/carcols.meta +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/21bro/carcols.meta @@ -1,35 +1,23 @@ - - + + + + + + + + + + + - 907_tahoe_modkit - + 135_21bro_modkit + MKT_SPECIAL - + - - - - - - VMT_ENGINE - - - - - - - VMT_ENGINE - - - - - - - VMT_ENGINE - @@ -37,6 +25,27 @@ VMT_ENGINE + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + @@ -46,7 +55,7 @@ - + VMT_BRAKES @@ -170,7 +179,7 @@ VMT_HORN - + HORN_SAD_TROMBONE @@ -218,70 +227,70 @@ VMT_HORN - - + + MUSICAL_HORN_BUSINESS_7 VMT_HORN - - + + DLC_BUSI2_C_MAJOR_NOTES_C0 VMT_HORN - - + + DLC_BUSI2_C_MAJOR_NOTES_D0 VMT_HORN - - + + DLC_BUSI2_C_MAJOR_NOTES_E0 VMT_HORN - - + + DLC_BUSI2_C_MAJOR_NOTES_F0 VMT_HORN - - + + DLC_BUSI2_C_MAJOR_NOTES_G0 VMT_HORN - - + + DLC_BUSI2_C_MAJOR_NOTES_A0 VMT_HORN - - + + DLC_BUSI2_C_MAJOR_NOTES_B0 VMT_HORN - - + + DLC_BUSI2_C_MAJOR_NOTES_C1 VMT_HORN - + HIPSTER_HORN_1 @@ -338,21 +347,21 @@ VMT_HORN - + LUXE_HORN_1 VMT_HORN - + LUXE_HORN_2 VMT_HORN - + LUXE_HORN_3 @@ -360,7 +369,7 @@ VMT_HORN - + LUXORY_HORN_1 @@ -368,7 +377,7 @@ VMT_HORN - + LUXURY_HORN_2 @@ -376,51 +385,108 @@ VMT_HORN - + LUXURY_HORN_3 VMT_HORN - + + ORGAN_HORN_LOOP_01 + + + + VMT_HORN + + + + ORGAN_HORN_LOOP_01_PREVIEW + + + + VMT_HORN + + + ORGAN_HORN_LOOP_02 + + + + VMT_HORN + + + + ORGAN_HORN_LOOP_02_PREVIEW + + + + VMT_HORN + + + LOWRIDER_HORN_1 + + + + VMT_HORN + + + + LOWRIDER_HORN_1_PREVIEW + + + + VMT_HORN + + + LOWRIDER_HORN_2 + + + + VMT_HORN + + + + LOWRIDER_HORN_2_PREVIEW + + + + VMT_HORN + + - + VMT_SUSPENSION - + VMT_SUSPENSION - + VMT_SUSPENSION - + VMT_SUSPENSION - - VMT_CHASSIS - TOP_CAGE - - + + - + @@ -518,7 +584,7 @@ - + @@ -542,7 +608,7 @@ - + @@ -551,8 +617,17 @@ - tahoe + 21bro - + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/esca/carvariations.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/21bro/carvariations.meta similarity index 76% rename from resources/[EGRP-CarPacks]/EGRP-SUVs/data/esca/carvariations.meta rename to resources/[EGRP-CarPacks]/EGRP-SUVs/data/21bro/carvariations.meta index 95b9b5f43..74f42a4a1 100644 --- a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/esca/carvariations.meta +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/21bro/carvariations.meta @@ -1,74 +1,44 @@  - + + + + + + + + + + + - esca + 21bro + 134 + 134 + 0 0 - 120 + + + + + + + + + + + + + + + 134 + 134 + 0 0 - 156 - 64 - - - - - - - - - - - - - - - 61 - 120 - 61 - 156 - 64 - - - - - - - - - - - - - - - 154 - 120 - 154 - 156 - 64 - - - - - - - - - - - - - - - 9 - 120 - 9 - 156 - 64 @@ -83,16 +53,15 @@ - 90 - 120 - 90 - 156 - 64 + 134 + 134 + 0 + 0 - + @@ -102,57 +71,113 @@ - 27 - 120 - 27 - 156 - 64 + 134 + 134 + 0 + 0 + + - - - 111 - 120 - 111 - 156 - 64 + 134 + 134 + 0 + 0 + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + - 0_default_modkit + 0_default_modkit - - - standard white - - - + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/21bro/dlctext.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/21bro/dlctext.meta new file mode 100644 index 000000000..22bb4c390 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/21bro/dlctext.meta @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/21bro/handling.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/21bro/handling.meta new file mode 100644 index 000000000..b4f12aeb6 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/21bro/handling.meta @@ -0,0 +1,76 @@ + + + + + + 21BRO + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 00440010 + 00000000 + 00000000 + AVERAGE + + + + + + + + + + + + + + 00000000 + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/21bro/vehicles.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/21bro/vehicles.meta new file mode 100644 index 000000000..61a1abf0a --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/21bro/vehicles.meta @@ -0,0 +1,164 @@ + + + vehshare + + + + 21bro + 21bro + 21BRO + FORD + BroncoSport + null + null + null + null + + null + BISON + LAYOUT_BISON + BISON_COVER_OFFSET_INFO + EXPLOSION_INFO_DEFAULT + + DEFAULT_FOLLOW_VEHICLE_CAMERA + DEFAULT_THIRD_PERSON_VEHICLE_AIM_CAMERA + VEHICLE_BONNET_CAMERA_MID_NEAR + DEFAULT_POV_CAMERA + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + VFXVEHICLEINFO_CAR_GENERIC + + + + + + + + + + + + + + + + + + + + + + 15.000000 + 30.000000 + 70.000000 + 140.000000 + 500.000000 + 500.000000 + + + + + + + + + + + SWANKNESS_1 + + FLAG_HAS_LIVERY FLAG_IS_OFFROAD_VEHICLE FLAG_IS_BULKY FLAG_HAS_INTERIOR_EXTRAS + VEHICLE_TYPE_CAR + VPT_FRONT_AND_BACK_PLATES + VDT_ZTYPE + VC_VAN + VWT_SUV + + boattrailer + trailersmall + + + trailersmall2 + + + + S_M_M_AutoShop_01 + + + + S_M_M_AutoShop_02 + + + + S_M_M_Trucker_01 + + + + + + VEH_EXT_BOOT + + + + + + + + WHEEL_FRONT_RIGHT_CAMERA + WHEEL_FRONT_LEFT_CAMERA + WHEEL_REAR_RIGHT_CAMERA + WHEEL_REAR_LEFT_CAMERA + + Truck + + + + + RANGER_BISON_FRONT_LEFT + VAN_RUMPO_FRONT_RIGHT + RANGER_BISON_REAR_LEFT + RANGER_BISON_REAR_RIGHT + VAN_BODHI_REAR_LEFT + VAN_BODHI_REAR_RIGHT + + + + + + vehicles_bob_brown_interior + 21bro + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/21dura/carcols.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/21dura/carcols.meta new file mode 100644 index 000000000..a70005e58 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/21dura/carcols.meta @@ -0,0 +1,633 @@ + + + + + + + + + + + + + + 135_21dura_modkit + + MKT_SPECIAL + + + + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_BRAKES + + + + + + + VMT_BRAKES + + + + + + + VMT_BRAKES + + + + + + + VMT_GEARBOX + + + + + + + VMT_GEARBOX + + + + + + + VMT_GEARBOX + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + HORN_TRUCK + + + + VMT_HORN + + + HORN_COP + + + + VMT_HORN + + + HORN_CLOWN + + + + VMT_HORN + + + HORN_MUSICAL_1 + + + + VMT_HORN + + + HORN_MUSICAL_2 + + + + VMT_HORN + + + HORN_MUSICAL_3 + + + + VMT_HORN + + + HORN_MUSICAL_4 + + + + VMT_HORN + + + HORN_MUSICAL_5 + + + + VMT_HORN + + + HORN_SAD_TROMBONE + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_1 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_2 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_3 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_4 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_5 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_6 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_7 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_C0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_D0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_E0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_F0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_G0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_A0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_B0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_C1 + + + + VMT_HORN + + + HIPSTER_HORN_1 + + + + VMT_HORN + + + HIPSTER_HORN_2 + + + + VMT_HORN + + + HIPSTER_HORN_3 + + + + VMT_HORN + + + HIPSTER_HORN_4 + + + + VMT_HORN + + + INDEP_HORN_1 + + + + VMT_HORN + + + INDEP_HORN_2 + + + + VMT_HORN + + + INDEP_HORN_3 + + + + VMT_HORN + + + INDEP_HORN_4 + + + + VMT_HORN + + + LUXE_HORN_1 + + + + VMT_HORN + + + LUXE_HORN_2 + + + + VMT_HORN + + + LUXE_HORN_3 + + + + VMT_HORN + + + + LUXORY_HORN_1 + + + + VMT_HORN + + + + LUXURY_HORN_2 + + + + VMT_HORN + + + + LUXURY_HORN_3 + + + + VMT_HORN + + + ORGAN_HORN_LOOP_01 + + + + VMT_HORN + + + + ORGAN_HORN_LOOP_01_PREVIEW + + + + VMT_HORN + + + ORGAN_HORN_LOOP_02 + + + + VMT_HORN + + + + ORGAN_HORN_LOOP_02_PREVIEW + + + + VMT_HORN + + + LOWRIDER_HORN_1 + + + + VMT_HORN + + + + LOWRIDER_HORN_1_PREVIEW + + + + VMT_HORN + + + LOWRIDER_HORN_2 + + + + VMT_HORN + + + + LOWRIDER_HORN_2_PREVIEW + + + + VMT_HORN + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + VehicleLight_car_oldsquare + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 21dura + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/21dura/carvariations.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/21dura/carvariations.meta new file mode 100644 index 000000000..9532502f0 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/21dura/carvariations.meta @@ -0,0 +1,183 @@ + + + + + + + + + + + + + + + + 21dura + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 0_default_modkit + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/21dura/dlctext.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/21dura/dlctext.meta new file mode 100644 index 000000000..22bb4c390 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/21dura/dlctext.meta @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/21dura/handling.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/21dura/handling.meta new file mode 100644 index 000000000..74fad18da --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/21dura/handling.meta @@ -0,0 +1,67 @@ + + + + + + 21DURA + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 440010 + 0 + 0 + AVERAGE + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/21dura/vehicles.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/21dura/vehicles.meta new file mode 100644 index 000000000..6df232f73 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/21dura/vehicles.meta @@ -0,0 +1,134 @@ + + + vehshare + + + + 21dura + 21dura + 21DURA + Durango + Dodge + null + null + null + null + + null + SERRANO + LAYOUT_STD_HIGHWINDOW + GRESLEY_COVER_OFFSET_INFO + EXPLOSION_INFO_DEFAULT + + DEFAULT_FOLLOW_VEHICLE_CAMERA + DEFAULT_THIRD_PERSON_VEHICLE_AIM_CAMERA + VEHICLE_BONNET_CAMERA_MID_HIGH + DEFAULT_POV_CAMERA + + + + + + + + + + + + + + + + + + + + + + + + + + + + VFXVEHICLEINFO_CAR_GENERIC + + + + + + + + + + + + + + + + + + + + + + 15.000000 + 30.000000 + 70.000000 + 140.000000 + 500.000000 + 500.000000 + + + + + + + + + + + SWANKNESS_3 + + FLAG_EXTRAS_ALL FLAG_IS_OFFROAD_VEHICLE FLAG_IS_BULKY + VEHICLE_TYPE_CAR + VPT_BACK_PLATES + VDT_ZTYPE + VC_SUV + VWT_SUV + + + + + + + + + + + + WHEEL_FRONT_RIGHT_CAMERA + WHEEL_FRONT_LEFT_CAMERA + WHEEL_REAR_RIGHT_CAMERA + WHEEL_REAR_LEFT_CAMERA + + Truck + + + + + STD_DILETTANTE_FRONT_LEFT + STD_DILETTANTE_FRONT_RIGHT + STD_BALLER_REAR_LEFT + STD_BALLER_REAR_RIGHT + + + + + + vehicles_bob_brown_interior + 21dura + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/21yuk/carcols.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/21yuk/carcols.meta new file mode 100644 index 000000000..7fdd4a7d9 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/21yuk/carcols.meta @@ -0,0 +1,633 @@ + + + + + + + + + + + + + + 135_21yuk_modkit + + MKT_SPECIAL + + + + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_BRAKES + + + + + + + VMT_BRAKES + + + + + + + VMT_BRAKES + + + + + + + VMT_GEARBOX + + + + + + + VMT_GEARBOX + + + + + + + VMT_GEARBOX + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + HORN_TRUCK + + + + VMT_HORN + + + HORN_COP + + + + VMT_HORN + + + HORN_CLOWN + + + + VMT_HORN + + + HORN_MUSICAL_1 + + + + VMT_HORN + + + HORN_MUSICAL_2 + + + + VMT_HORN + + + HORN_MUSICAL_3 + + + + VMT_HORN + + + HORN_MUSICAL_4 + + + + VMT_HORN + + + HORN_MUSICAL_5 + + + + VMT_HORN + + + HORN_SAD_TROMBONE + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_1 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_2 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_3 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_4 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_5 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_6 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_7 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_C0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_D0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_E0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_F0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_G0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_A0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_B0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_C1 + + + + VMT_HORN + + + HIPSTER_HORN_1 + + + + VMT_HORN + + + HIPSTER_HORN_2 + + + + VMT_HORN + + + HIPSTER_HORN_3 + + + + VMT_HORN + + + HIPSTER_HORN_4 + + + + VMT_HORN + + + INDEP_HORN_1 + + + + VMT_HORN + + + INDEP_HORN_2 + + + + VMT_HORN + + + INDEP_HORN_3 + + + + VMT_HORN + + + INDEP_HORN_4 + + + + VMT_HORN + + + LUXE_HORN_1 + + + + VMT_HORN + + + LUXE_HORN_2 + + + + VMT_HORN + + + LUXE_HORN_3 + + + + VMT_HORN + + + + LUXORY_HORN_1 + + + + VMT_HORN + + + + LUXURY_HORN_2 + + + + VMT_HORN + + + + LUXURY_HORN_3 + + + + VMT_HORN + + + ORGAN_HORN_LOOP_01 + + + + VMT_HORN + + + + ORGAN_HORN_LOOP_01_PREVIEW + + + + VMT_HORN + + + ORGAN_HORN_LOOP_02 + + + + VMT_HORN + + + + ORGAN_HORN_LOOP_02_PREVIEW + + + + VMT_HORN + + + LOWRIDER_HORN_1 + + + + VMT_HORN + + + + LOWRIDER_HORN_1_PREVIEW + + + + VMT_HORN + + + LOWRIDER_HORN_2 + + + + VMT_HORN + + + + LOWRIDER_HORN_2_PREVIEW + + + + VMT_HORN + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + VehicleLight_car_oldsquare + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 21yuk + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/21yuk/carvariations.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/21yuk/carvariations.meta new file mode 100644 index 000000000..26244237e --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/21yuk/carvariations.meta @@ -0,0 +1,183 @@ + + + + + + + + + + + + + + + + 21yuk + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 0_default_modkit + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/21yuk/dlctext.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/21yuk/dlctext.meta new file mode 100644 index 000000000..22bb4c390 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/21yuk/dlctext.meta @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/esca/handling.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/21yuk/handling.meta similarity index 58% rename from resources/[EGRP-CarPacks]/EGRP-SUVs/data/esca/handling.meta rename to resources/[EGRP-CarPacks]/EGRP-SUVs/data/21yuk/handling.meta index c45810c81..6c199525f 100644 --- a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/esca/handling.meta +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/21yuk/handling.meta @@ -1,50 +1,50 @@  - - - esca - + + + 21YUK + - - + + - + - - - + + + - + - - + + - + - - - + + + - + - + - - - + + + - - + + @@ -62,6 +62,6 @@ - + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/21yuk/vehicles.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/21yuk/vehicles.meta new file mode 100644 index 000000000..df5ece59d --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/21yuk/vehicles.meta @@ -0,0 +1,164 @@ + + + vehshare + + + + 21yuk + 21yuk + 21YUK + YUKON + GMC + null + null + null + null + + null + BISON + LAYOUT_BISON + BISON_COVER_OFFSET_INFO + EXPLOSION_INFO_DEFAULT + + DEFAULT_FOLLOW_VEHICLE_CAMERA + DEFAULT_THIRD_PERSON_VEHICLE_AIM_CAMERA + VEHICLE_BONNET_CAMERA_MID_NEAR + DEFAULT_POV_CAMERA + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + VFXVEHICLEINFO_CAR_GENERIC + + + + + + + + + + + + + + + + + + + + + + 15.000000 + 30.000000 + 70.000000 + 140.000000 + 500.000000 + 500.000000 + + + + + + + + + + + SWANKNESS_1 + + FLAG_HAS_LIVERY FLAG_IS_OFFROAD_VEHICLE FLAG_IS_BULKY FLAG_HAS_INTERIOR_EXTRAS + VEHICLE_TYPE_CAR + VPT_FRONT_AND_BACK_PLATES + VDT_ZTYPE + VC_VAN + VWT_SUV + + boattrailer + trailersmall + + + trailersmall2 + + + + S_M_M_AutoShop_01 + + + + S_M_M_AutoShop_02 + + + + S_M_M_Trucker_01 + + + + + + VEH_EXT_BOOT + + + + + + + + WHEEL_FRONT_RIGHT_CAMERA + WHEEL_FRONT_LEFT_CAMERA + WHEEL_REAR_RIGHT_CAMERA + WHEEL_REAR_LEFT_CAMERA + + Truck + + + + + RANGER_BISON_FRONT_LEFT + VAN_RUMPO_FRONT_RIGHT + RANGER_BISON_REAR_LEFT + RANGER_BISON_REAR_RIGHT + VAN_BODHI_REAR_LEFT + VAN_BODHI_REAR_RIGHT + + + + + + vehicles_bob_brown_interior + 21yuk + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/22jeep/carcols.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/22jeep/carcols.meta new file mode 100644 index 000000000..da8fbc017 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/22jeep/carcols.meta @@ -0,0 +1,633 @@ + + + + + + + + + + + + + + 135_22jeep_modkit + + MKT_SPECIAL + + + + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_BRAKES + + + + + + + VMT_BRAKES + + + + + + + VMT_BRAKES + + + + + + + VMT_GEARBOX + + + + + + + VMT_GEARBOX + + + + + + + VMT_GEARBOX + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + HORN_TRUCK + + + + VMT_HORN + + + HORN_COP + + + + VMT_HORN + + + HORN_CLOWN + + + + VMT_HORN + + + HORN_MUSICAL_1 + + + + VMT_HORN + + + HORN_MUSICAL_2 + + + + VMT_HORN + + + HORN_MUSICAL_3 + + + + VMT_HORN + + + HORN_MUSICAL_4 + + + + VMT_HORN + + + HORN_MUSICAL_5 + + + + VMT_HORN + + + HORN_SAD_TROMBONE + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_1 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_2 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_3 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_4 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_5 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_6 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_7 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_C0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_D0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_E0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_F0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_G0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_A0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_B0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_C1 + + + + VMT_HORN + + + HIPSTER_HORN_1 + + + + VMT_HORN + + + HIPSTER_HORN_2 + + + + VMT_HORN + + + HIPSTER_HORN_3 + + + + VMT_HORN + + + HIPSTER_HORN_4 + + + + VMT_HORN + + + INDEP_HORN_1 + + + + VMT_HORN + + + INDEP_HORN_2 + + + + VMT_HORN + + + INDEP_HORN_3 + + + + VMT_HORN + + + INDEP_HORN_4 + + + + VMT_HORN + + + LUXE_HORN_1 + + + + VMT_HORN + + + LUXE_HORN_2 + + + + VMT_HORN + + + LUXE_HORN_3 + + + + VMT_HORN + + + + LUXORY_HORN_1 + + + + VMT_HORN + + + + LUXURY_HORN_2 + + + + VMT_HORN + + + + LUXURY_HORN_3 + + + + VMT_HORN + + + ORGAN_HORN_LOOP_01 + + + + VMT_HORN + + + + ORGAN_HORN_LOOP_01_PREVIEW + + + + VMT_HORN + + + ORGAN_HORN_LOOP_02 + + + + VMT_HORN + + + + ORGAN_HORN_LOOP_02_PREVIEW + + + + VMT_HORN + + + LOWRIDER_HORN_1 + + + + VMT_HORN + + + + LOWRIDER_HORN_1_PREVIEW + + + + VMT_HORN + + + LOWRIDER_HORN_2 + + + + VMT_HORN + + + + LOWRIDER_HORN_2_PREVIEW + + + + VMT_HORN + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + VehicleLight_car_oldsquare + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 22jeep + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/22jeep/carvariations.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/22jeep/carvariations.meta new file mode 100644 index 000000000..7ef5ccc70 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/22jeep/carvariations.meta @@ -0,0 +1,183 @@ + + + + + + + + + + + + + + + + 22jeep + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 0_default_modkit + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/22jeep/dlctext.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/22jeep/dlctext.meta new file mode 100644 index 000000000..22bb4c390 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/22jeep/dlctext.meta @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/22jeep/handling.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/22jeep/handling.meta new file mode 100644 index 000000000..a3375a584 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/22jeep/handling.meta @@ -0,0 +1,67 @@ + + + + + + 22JEEP + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 440010 + 0 + 0 + AVERAGE + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/22jeep/vehicles.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/22jeep/vehicles.meta new file mode 100644 index 000000000..892af7f0a --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/22jeep/vehicles.meta @@ -0,0 +1,134 @@ + + + vehshare + + + + 22jeep + 22jeep + 22JEEP + GrandCherokee + JEEP + null + null + null + null + + null + SERRANO + LAYOUT_STD_HIGHWINDOW + GRESLEY_COVER_OFFSET_INFO + EXPLOSION_INFO_DEFAULT + + DEFAULT_FOLLOW_VEHICLE_CAMERA + DEFAULT_THIRD_PERSON_VEHICLE_AIM_CAMERA + VEHICLE_BONNET_CAMERA_MID_HIGH + DEFAULT_POV_CAMERA + + + + + + + + + + + + + + + + + + + + + + + + + + + + VFXVEHICLEINFO_CAR_GENERIC + + + + + + + + + + + + + + + + + + + + + + 15.000000 + 30.000000 + 70.000000 + 140.000000 + 500.000000 + 500.000000 + + + + + + + + + + + SWANKNESS_3 + + FLAG_HAS_LIVERY FLAG_EXTRAS_ALL FLAG_IS_OFFROAD_VEHICLE FLAG_IS_BULKY + VEHICLE_TYPE_CAR + VPT_BACK_PLATES + VDT_TRUCKDIGI + VC_SUV + VWT_SUV + + + + + + + + + + + + WHEEL_FRONT_RIGHT_CAMERA + WHEEL_FRONT_LEFT_CAMERA + WHEEL_REAR_RIGHT_CAMERA + WHEEL_REAR_LEFT_CAMERA + + Truck + + + + + STD_DILETTANTE_FRONT_LEFT + STD_DILETTANTE_FRONT_RIGHT + STD_BALLER_REAR_LEFT + STD_BALLER_REAR_RIGHT + + + + + + vehicles_bob_brown_interior + 22jeep + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/22jeeplar/carcols.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/22jeeplar/carcols.meta new file mode 100644 index 000000000..e9dac1a25 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/22jeeplar/carcols.meta @@ -0,0 +1,633 @@ + + + + + + + + + + + + + + 135_22jeeplar_modkit + + MKT_SPECIAL + + + + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_BRAKES + + + + + + + VMT_BRAKES + + + + + + + VMT_BRAKES + + + + + + + VMT_GEARBOX + + + + + + + VMT_GEARBOX + + + + + + + VMT_GEARBOX + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + HORN_TRUCK + + + + VMT_HORN + + + HORN_COP + + + + VMT_HORN + + + HORN_CLOWN + + + + VMT_HORN + + + HORN_MUSICAL_1 + + + + VMT_HORN + + + HORN_MUSICAL_2 + + + + VMT_HORN + + + HORN_MUSICAL_3 + + + + VMT_HORN + + + HORN_MUSICAL_4 + + + + VMT_HORN + + + HORN_MUSICAL_5 + + + + VMT_HORN + + + HORN_SAD_TROMBONE + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_1 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_2 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_3 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_4 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_5 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_6 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_7 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_C0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_D0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_E0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_F0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_G0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_A0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_B0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_C1 + + + + VMT_HORN + + + HIPSTER_HORN_1 + + + + VMT_HORN + + + HIPSTER_HORN_2 + + + + VMT_HORN + + + HIPSTER_HORN_3 + + + + VMT_HORN + + + HIPSTER_HORN_4 + + + + VMT_HORN + + + INDEP_HORN_1 + + + + VMT_HORN + + + INDEP_HORN_2 + + + + VMT_HORN + + + INDEP_HORN_3 + + + + VMT_HORN + + + INDEP_HORN_4 + + + + VMT_HORN + + + LUXE_HORN_1 + + + + VMT_HORN + + + LUXE_HORN_2 + + + + VMT_HORN + + + LUXE_HORN_3 + + + + VMT_HORN + + + + LUXORY_HORN_1 + + + + VMT_HORN + + + + LUXURY_HORN_2 + + + + VMT_HORN + + + + LUXURY_HORN_3 + + + + VMT_HORN + + + ORGAN_HORN_LOOP_01 + + + + VMT_HORN + + + + ORGAN_HORN_LOOP_01_PREVIEW + + + + VMT_HORN + + + ORGAN_HORN_LOOP_02 + + + + VMT_HORN + + + + ORGAN_HORN_LOOP_02_PREVIEW + + + + VMT_HORN + + + LOWRIDER_HORN_1 + + + + VMT_HORN + + + + LOWRIDER_HORN_1_PREVIEW + + + + VMT_HORN + + + LOWRIDER_HORN_2 + + + + VMT_HORN + + + + LOWRIDER_HORN_2_PREVIEW + + + + VMT_HORN + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + VehicleLight_car_oldsquare + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 22jeeplar + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/22jeeplar/carvariations.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/22jeeplar/carvariations.meta new file mode 100644 index 000000000..51de91377 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/22jeeplar/carvariations.meta @@ -0,0 +1,183 @@ + + + + + + + + + + + + + + + + 22jeeplar + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 0_default_modkit + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/22jeeplar/dlctext.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/22jeeplar/dlctext.meta new file mode 100644 index 000000000..22bb4c390 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/22jeeplar/dlctext.meta @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/22jeeplar/handling.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/22jeeplar/handling.meta new file mode 100644 index 000000000..3567fb5f5 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/22jeeplar/handling.meta @@ -0,0 +1,67 @@ + + + + + + 22JEEPLAR + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 440010 + 0 + 0 + AVERAGE + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/22jeeplar/vehicles.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/22jeeplar/vehicles.meta new file mode 100644 index 000000000..79db639ed --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/22jeeplar/vehicles.meta @@ -0,0 +1,134 @@ + + + vehshare + + + + 22jeeplar + 22jeeplar + 22JEEP + GrandCherokee + JEEP + null + null + null + null + + null + SERRANO + LAYOUT_STD_HIGHWINDOW + GRESLEY_COVER_OFFSET_INFO + EXPLOSION_INFO_DEFAULT + + DEFAULT_FOLLOW_VEHICLE_CAMERA + DEFAULT_THIRD_PERSON_VEHICLE_AIM_CAMERA + VEHICLE_BONNET_CAMERA_MID_HIGH + DEFAULT_POV_CAMERA + + + + + + + + + + + + + + + + + + + + + + + + + + + + VFXVEHICLEINFO_CAR_GENERIC + + + + + + + + + + + + + + + + + + + + + + 15.000000 + 30.000000 + 70.000000 + 140.000000 + 500.000000 + 500.000000 + + + + + + + + + + + SWANKNESS_3 + + FLAG_HAS_LIVERY FLAG_EXTRAS_ALL FLAG_IS_OFFROAD_VEHICLE FLAG_IS_BULKY + VEHICLE_TYPE_CAR + VPT_BACK_PLATES + VDT_TRUCKDIGI + VC_SUV + VWT_SUV + + + + + + + + + + + + WHEEL_FRONT_RIGHT_CAMERA + WHEEL_FRONT_LEFT_CAMERA + WHEEL_REAR_RIGHT_CAMERA + WHEEL_REAR_LEFT_CAMERA + + Truck + + + + + STD_DILETTANTE_FRONT_LEFT + STD_DILETTANTE_FRONT_RIGHT + STD_BALLER_REAR_LEFT + STD_BALLER_REAR_RIGHT + + + + + + vehicles_bob_brown_interior + 22jeeplar + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/22macgt/carcols.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/22macgt/carcols.meta new file mode 100644 index 000000000..c921c2ad4 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/22macgt/carcols.meta @@ -0,0 +1,633 @@ + + + + + + + + + + + + + + 135_22macgt_modkit + + MKT_SPECIAL + + + + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_BRAKES + + + + + + + VMT_BRAKES + + + + + + + VMT_BRAKES + + + + + + + VMT_GEARBOX + + + + + + + VMT_GEARBOX + + + + + + + VMT_GEARBOX + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + HORN_TRUCK + + + + VMT_HORN + + + HORN_COP + + + + VMT_HORN + + + HORN_CLOWN + + + + VMT_HORN + + + HORN_MUSICAL_1 + + + + VMT_HORN + + + HORN_MUSICAL_2 + + + + VMT_HORN + + + HORN_MUSICAL_3 + + + + VMT_HORN + + + HORN_MUSICAL_4 + + + + VMT_HORN + + + HORN_MUSICAL_5 + + + + VMT_HORN + + + HORN_SAD_TROMBONE + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_1 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_2 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_3 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_4 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_5 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_6 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_7 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_C0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_D0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_E0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_F0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_G0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_A0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_B0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_C1 + + + + VMT_HORN + + + HIPSTER_HORN_1 + + + + VMT_HORN + + + HIPSTER_HORN_2 + + + + VMT_HORN + + + HIPSTER_HORN_3 + + + + VMT_HORN + + + HIPSTER_HORN_4 + + + + VMT_HORN + + + INDEP_HORN_1 + + + + VMT_HORN + + + INDEP_HORN_2 + + + + VMT_HORN + + + INDEP_HORN_3 + + + + VMT_HORN + + + INDEP_HORN_4 + + + + VMT_HORN + + + LUXE_HORN_1 + + + + VMT_HORN + + + LUXE_HORN_2 + + + + VMT_HORN + + + LUXE_HORN_3 + + + + VMT_HORN + + + + LUXORY_HORN_1 + + + + VMT_HORN + + + + LUXURY_HORN_2 + + + + VMT_HORN + + + + LUXURY_HORN_3 + + + + VMT_HORN + + + ORGAN_HORN_LOOP_01 + + + + VMT_HORN + + + + ORGAN_HORN_LOOP_01_PREVIEW + + + + VMT_HORN + + + ORGAN_HORN_LOOP_02 + + + + VMT_HORN + + + + ORGAN_HORN_LOOP_02_PREVIEW + + + + VMT_HORN + + + LOWRIDER_HORN_1 + + + + VMT_HORN + + + + LOWRIDER_HORN_1_PREVIEW + + + + VMT_HORN + + + LOWRIDER_HORN_2 + + + + VMT_HORN + + + + LOWRIDER_HORN_2_PREVIEW + + + + VMT_HORN + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + VehicleLight_car_oldsquare + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 22macgt + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/22macgt/carvariations.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/22macgt/carvariations.meta new file mode 100644 index 000000000..330cc2608 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/22macgt/carvariations.meta @@ -0,0 +1,183 @@ + + + + + + + + + + + + + + + + 22macgt + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 0_default_modkit + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/22macgt/dlctext.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/22macgt/dlctext.meta new file mode 100644 index 000000000..22bb4c390 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/22macgt/dlctext.meta @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/22macgt/handling.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/22macgt/handling.meta new file mode 100644 index 000000000..cbed058a8 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/22macgt/handling.meta @@ -0,0 +1,67 @@ + + + + + + 22MACGT + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 440010 + 1000 + 0 + AVERAGE + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/22macgt/vehicles.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/22macgt/vehicles.meta new file mode 100644 index 000000000..5a27d5f60 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/22macgt/vehicles.meta @@ -0,0 +1,134 @@ + + + vehshare + + + + 22macgt + 22macgt + 22MACGT + MachEGT + FORD + null + null + null + null + + null + SURGE + LAYOUT_STANDARD + GRESLEY_COVER_OFFSET_INFO + EXPLOSION_INFO_DEFAULT + + DEFAULT_FOLLOW_VEHICLE_CAMERA + DEFAULT_THIRD_PERSON_VEHICLE_AIM_CAMERA + VEHICLE_BONNET_CAMERA_MID_HIGH + DEFAULT_POV_CAMERA + + + + + + + + + + + + + + + + + + + + + + + + + + + + VFXVEHICLEINFO_CAR_GENERIC + + + + + + + + + + + + + + + + + + + + + + 15.000000 + 30.000000 + 70.000000 + 140.000000 + 500.000000 + 500.000000 + + + + + + + + + + + SWANKNESS_3 + + FLAG_HAS_LIVERY FLAG_IS_ELECTRIC + VEHICLE_TYPE_CAR + VPT_BACK_PLATES + VDT_TRUCKDIGI + VC_SUV + VWT_SUV + + + + + + + + + + + + WHEEL_FRONT_RIGHT_CAMERA + WHEEL_FRONT_LEFT_CAMERA + WHEEL_REAR_RIGHT_CAMERA + WHEEL_REAR_LEFT_CAMERA + + Truck + + + + + STD_DILETTANTE_FRONT_LEFT + STD_DILETTANTE_FRONT_RIGHT + STD_BALLER_REAR_LEFT + STD_BALLER_REAR_RIGHT + + + + + + vehicles_bob_brown_interior + 22macgt + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23blazerppv/carcols.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23blazerppv/carcols.meta new file mode 100644 index 000000000..4d893f271 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23blazerppv/carcols.meta @@ -0,0 +1,633 @@ + + + + + + + + + + + + + + 135_23blazerppv_modkit + + MKT_SPECIAL + + + + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_BRAKES + + + + + + + VMT_BRAKES + + + + + + + VMT_BRAKES + + + + + + + VMT_GEARBOX + + + + + + + VMT_GEARBOX + + + + + + + VMT_GEARBOX + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + HORN_TRUCK + + + + VMT_HORN + + + HORN_COP + + + + VMT_HORN + + + HORN_CLOWN + + + + VMT_HORN + + + HORN_MUSICAL_1 + + + + VMT_HORN + + + HORN_MUSICAL_2 + + + + VMT_HORN + + + HORN_MUSICAL_3 + + + + VMT_HORN + + + HORN_MUSICAL_4 + + + + VMT_HORN + + + HORN_MUSICAL_5 + + + + VMT_HORN + + + HORN_SAD_TROMBONE + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_1 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_2 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_3 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_4 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_5 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_6 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_7 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_C0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_D0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_E0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_F0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_G0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_A0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_B0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_C1 + + + + VMT_HORN + + + HIPSTER_HORN_1 + + + + VMT_HORN + + + HIPSTER_HORN_2 + + + + VMT_HORN + + + HIPSTER_HORN_3 + + + + VMT_HORN + + + HIPSTER_HORN_4 + + + + VMT_HORN + + + INDEP_HORN_1 + + + + VMT_HORN + + + INDEP_HORN_2 + + + + VMT_HORN + + + INDEP_HORN_3 + + + + VMT_HORN + + + INDEP_HORN_4 + + + + VMT_HORN + + + LUXE_HORN_1 + + + + VMT_HORN + + + LUXE_HORN_2 + + + + VMT_HORN + + + LUXE_HORN_3 + + + + VMT_HORN + + + + LUXORY_HORN_1 + + + + VMT_HORN + + + + LUXURY_HORN_2 + + + + VMT_HORN + + + + LUXURY_HORN_3 + + + + VMT_HORN + + + ORGAN_HORN_LOOP_01 + + + + VMT_HORN + + + + ORGAN_HORN_LOOP_01_PREVIEW + + + + VMT_HORN + + + ORGAN_HORN_LOOP_02 + + + + VMT_HORN + + + + ORGAN_HORN_LOOP_02_PREVIEW + + + + VMT_HORN + + + LOWRIDER_HORN_1 + + + + VMT_HORN + + + + LOWRIDER_HORN_1_PREVIEW + + + + VMT_HORN + + + LOWRIDER_HORN_2 + + + + VMT_HORN + + + + LOWRIDER_HORN_2_PREVIEW + + + + VMT_HORN + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + VehicleLight_car_oldsquare + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 23blazerppv + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23blazerppv/carvariations.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23blazerppv/carvariations.meta new file mode 100644 index 000000000..f0b416d2d --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23blazerppv/carvariations.meta @@ -0,0 +1,199 @@ + + + + + + + + + + + + + + + + 23blazerppv + + + + 134 + 0 + 0 + 0 + 13 + 12 + + + + + + + + + + + + + + + 134 + 0 + 0 + 0 + 13 + 12 + + + + + + + + + + + + + + + 134 + 0 + 0 + 0 + 13 + 12 + + + + + + + + + + + + + + + 134 + 0 + 0 + 0 + 13 + 12 + + + + + + + + + + + + + + + 134 + 0 + 0 + 0 + 13 + 12 + + + + + + + + + + + + + + 134 + 0 + 0 + 0 + 13 + 12 + + + + + + + + + + + + + + + 134 + 0 + 0 + 0 + 13 + 12 + + + + + + + + + + + + + + + 134 + 0 + 0 + 0 + 13 + 12 + + + + + + + + + + + + + + + 0_default_modkit + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23blazerppv/dlctext.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23blazerppv/dlctext.meta new file mode 100644 index 000000000..22bb4c390 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23blazerppv/dlctext.meta @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23blazerppv/handling.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23blazerppv/handling.meta new file mode 100644 index 000000000..70e30fcf4 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23blazerppv/handling.meta @@ -0,0 +1,67 @@ + + + + + + 23BLAZERPPV + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 440010 + 0 + 0 + SPORTS_CAR + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23blazerppv/vehicles.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23blazerppv/vehicles.meta new file mode 100644 index 000000000..71beb1eb1 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23blazerppv/vehicles.meta @@ -0,0 +1,136 @@ + + + vehshare + + + + 23blazerppv + 23blazerppv + 23BLAZERPPV + Chev + BlazerEVPPV + null + null + null + null + + null + SURGE + LAYOUT_STD_HIGHWINDOW + GRESLEY_COVER_OFFSET_INFO + EXPLOSION_INFO_DEFAULT + + DEFAULT_FOLLOW_VEHICLE_CAMERA + DEFAULT_THIRD_PERSON_VEHICLE_AIM_CAMERA + VEHICLE_BONNET_CAMERA_MID_HIGH + DEFAULT_POV_CAMERA + + + + + + + + + + + + + + + + + + + + + + + + + + + + VFXVEHICLEINFO_CAR_GENERIC + + + + + + + + + + + + + + + + + + + + + + 15.000000 + 30.000000 + 70.000000 + 140.000000 + 500.000000 + 500.000000 + + + + + + + + + + + SWANKNESS_3 + + FLAG_HAS_LIVERY FLAG_IS_ELECTRIC FLAG_IS_OFFROAD_VEHICLE FLAG_IS_BULKY FLAG_LAW_ENFORCEMENT + VEHICLE_TYPE_CAR + VPT_BACK_PLATES + VDT_RACE + VC_SUV + VWT_SUV + + + + + extra_2 + + + + + + + + + WHEEL_FRONT_RIGHT_CAMERA + WHEEL_FRONT_LEFT_CAMERA + WHEEL_REAR_RIGHT_CAMERA + WHEEL_REAR_LEFT_CAMERA + + Truck + + + + + STD_DILETTANTE_FRONT_LEFT + STD_DILETTANTE_FRONT_RIGHT + STD_BALLER_REAR_LEFT + STD_BALLER_REAR_RIGHT + + + + + + vehicles_bob_brown_interior + 23blazerppv + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23esv/carcols.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23esv/carcols.meta new file mode 100644 index 000000000..202d497fe --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23esv/carcols.meta @@ -0,0 +1,633 @@ + + + + + + + + + + + + + + 135_23esv_modkit + + MKT_SPECIAL + + + + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_BRAKES + + + + + + + VMT_BRAKES + + + + + + + VMT_BRAKES + + + + + + + VMT_GEARBOX + + + + + + + VMT_GEARBOX + + + + + + + VMT_GEARBOX + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + HORN_TRUCK + + + + VMT_HORN + + + HORN_COP + + + + VMT_HORN + + + HORN_CLOWN + + + + VMT_HORN + + + HORN_MUSICAL_1 + + + + VMT_HORN + + + HORN_MUSICAL_2 + + + + VMT_HORN + + + HORN_MUSICAL_3 + + + + VMT_HORN + + + HORN_MUSICAL_4 + + + + VMT_HORN + + + HORN_MUSICAL_5 + + + + VMT_HORN + + + HORN_SAD_TROMBONE + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_1 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_2 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_3 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_4 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_5 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_6 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_7 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_C0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_D0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_E0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_F0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_G0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_A0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_B0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_C1 + + + + VMT_HORN + + + HIPSTER_HORN_1 + + + + VMT_HORN + + + HIPSTER_HORN_2 + + + + VMT_HORN + + + HIPSTER_HORN_3 + + + + VMT_HORN + + + HIPSTER_HORN_4 + + + + VMT_HORN + + + INDEP_HORN_1 + + + + VMT_HORN + + + INDEP_HORN_2 + + + + VMT_HORN + + + INDEP_HORN_3 + + + + VMT_HORN + + + INDEP_HORN_4 + + + + VMT_HORN + + + LUXE_HORN_1 + + + + VMT_HORN + + + LUXE_HORN_2 + + + + VMT_HORN + + + LUXE_HORN_3 + + + + VMT_HORN + + + + LUXORY_HORN_1 + + + + VMT_HORN + + + + LUXURY_HORN_2 + + + + VMT_HORN + + + + LUXURY_HORN_3 + + + + VMT_HORN + + + ORGAN_HORN_LOOP_01 + + + + VMT_HORN + + + + ORGAN_HORN_LOOP_01_PREVIEW + + + + VMT_HORN + + + ORGAN_HORN_LOOP_02 + + + + VMT_HORN + + + + ORGAN_HORN_LOOP_02_PREVIEW + + + + VMT_HORN + + + LOWRIDER_HORN_1 + + + + VMT_HORN + + + + LOWRIDER_HORN_1_PREVIEW + + + + VMT_HORN + + + LOWRIDER_HORN_2 + + + + VMT_HORN + + + + LOWRIDER_HORN_2_PREVIEW + + + + VMT_HORN + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + VehicleLight_car_oldsquare + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 23esv + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23esv/carvariations.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23esv/carvariations.meta new file mode 100644 index 000000000..eeb0387fb --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23esv/carvariations.meta @@ -0,0 +1,199 @@ + + + + + + + + + + + + + + + + 23esv + + + + 134 + 0 + 0 + 0 + 13 + 16 + + + + + + + + + + + + + + + 134 + 0 + 0 + 0 + 13 + 16 + + + + + + + + + + + + + + + 134 + 0 + 0 + 0 + 13 + 16 + + + + + + + + + + + + + + + 134 + 0 + 0 + 0 + 13 + 16 + + + + + + + + + + + + + + + 134 + 0 + 0 + 0 + 13 + 16 + + + + + + + + + + + + + + 134 + 0 + 0 + 0 + 13 + 16 + + + + + + + + + + + + + + + 134 + 0 + 0 + 0 + 13 + 16 + + + + + + + + + + + + + + + 134 + 0 + 0 + 0 + 13 + 16 + + + + + + + + + + + + + + + 0_default_modkit + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23esv/dlctext.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23esv/dlctext.meta new file mode 100644 index 000000000..22bb4c390 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23esv/dlctext.meta @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23esv/handling.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23esv/handling.meta new file mode 100644 index 000000000..5b8bdcb8b --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23esv/handling.meta @@ -0,0 +1,67 @@ + + + + + + 23ESV + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 440010 + 0 + 0 + AVERAGE + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23esv/vehicles.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23esv/vehicles.meta new file mode 100644 index 000000000..1792654af --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23esv/vehicles.meta @@ -0,0 +1,138 @@ + + + vehshare + + + + 23esv + 23esv + 23ESV + YukonDenali + GMC + null + null + null + null + + null + BALLER3 + LAYOUT_STANDARD + GRESLEY_COVER_OFFSET_INFO + EXPLOSION_INFO_DEFAULT + + DEFAULT_FOLLOW_VEHICLE_CAMERA + DEFAULT_THIRD_PERSON_VEHICLE_AIM_CAMERA + VEHICLE_BONNET_CAMERA_MID_HIGH + DEFAULT_POV_CAMERA + + + + + + + + + + + + + + + + + + + + + + + + + + + + VFXVEHICLEINFO_CAR_GENERIC + + + + + + + + + + + + + + + + + + + + + + 15.000000 + 30.000000 + 70.000000 + 140.000000 + 500.000000 + 500.000000 + + + + + + + + + + + SWANKNESS_3 + + FLAG_HAS_LIVERY FLAG_IS_BULKY FLAG_PARKING_SENSORS + VEHICLE_TYPE_CAR + VPT_BACK_PLATES + VDT_RACE + VC_SUV + VWT_SUV + + + + + EXTRA_1 EXTRA_2 + + + + + + + EXTRA_1 EXTRA_2 + + + + WHEEL_FRONT_RIGHT_CAMERA + WHEEL_FRONT_LEFT_CAMERA + WHEEL_REAR_RIGHT_CAMERA + WHEEL_REAR_LEFT_CAMERA + + Truck + + + + + STD_DILETTANTE_FRONT_LEFT + STD_DILETTANTE_FRONT_RIGHT + STD_BALLER_REAR_LEFT + STD_BALLER_REAR_RIGHT + + + + + + vehicles_bob_brown_interior + 23esv + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23esvsp/carcols.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23esvsp/carcols.meta new file mode 100644 index 000000000..6a87ca9cd --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23esvsp/carcols.meta @@ -0,0 +1,633 @@ + + + + + + + + + + + + + + 135_23esvsp_modkit + + MKT_SPECIAL + + + + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_BRAKES + + + + + + + VMT_BRAKES + + + + + + + VMT_BRAKES + + + + + + + VMT_GEARBOX + + + + + + + VMT_GEARBOX + + + + + + + VMT_GEARBOX + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + HORN_TRUCK + + + + VMT_HORN + + + HORN_COP + + + + VMT_HORN + + + HORN_CLOWN + + + + VMT_HORN + + + HORN_MUSICAL_1 + + + + VMT_HORN + + + HORN_MUSICAL_2 + + + + VMT_HORN + + + HORN_MUSICAL_3 + + + + VMT_HORN + + + HORN_MUSICAL_4 + + + + VMT_HORN + + + HORN_MUSICAL_5 + + + + VMT_HORN + + + HORN_SAD_TROMBONE + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_1 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_2 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_3 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_4 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_5 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_6 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_7 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_C0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_D0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_E0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_F0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_G0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_A0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_B0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_C1 + + + + VMT_HORN + + + HIPSTER_HORN_1 + + + + VMT_HORN + + + HIPSTER_HORN_2 + + + + VMT_HORN + + + HIPSTER_HORN_3 + + + + VMT_HORN + + + HIPSTER_HORN_4 + + + + VMT_HORN + + + INDEP_HORN_1 + + + + VMT_HORN + + + INDEP_HORN_2 + + + + VMT_HORN + + + INDEP_HORN_3 + + + + VMT_HORN + + + INDEP_HORN_4 + + + + VMT_HORN + + + LUXE_HORN_1 + + + + VMT_HORN + + + LUXE_HORN_2 + + + + VMT_HORN + + + LUXE_HORN_3 + + + + VMT_HORN + + + + LUXORY_HORN_1 + + + + VMT_HORN + + + + LUXURY_HORN_2 + + + + VMT_HORN + + + + LUXURY_HORN_3 + + + + VMT_HORN + + + ORGAN_HORN_LOOP_01 + + + + VMT_HORN + + + + ORGAN_HORN_LOOP_01_PREVIEW + + + + VMT_HORN + + + ORGAN_HORN_LOOP_02 + + + + VMT_HORN + + + + ORGAN_HORN_LOOP_02_PREVIEW + + + + VMT_HORN + + + LOWRIDER_HORN_1 + + + + VMT_HORN + + + + LOWRIDER_HORN_1_PREVIEW + + + + VMT_HORN + + + LOWRIDER_HORN_2 + + + + VMT_HORN + + + + LOWRIDER_HORN_2_PREVIEW + + + + VMT_HORN + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + VehicleLight_car_oldsquare + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 23esvsp + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23esvsp/carvariations.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23esvsp/carvariations.meta new file mode 100644 index 000000000..ead0091bf --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23esvsp/carvariations.meta @@ -0,0 +1,199 @@ + + + + + + + + + + + + + + + + 23esvsp + + + + 134 + 0 + 0 + 0 + 17 + 99 + + + + + + + + + + + + + + + 134 + 0 + 0 + 0 + 17 + 99 + + + + + + + + + + + + + + + 134 + 0 + 0 + 0 + 17 + 99 + + + + + + + + + + + + + + + 134 + 0 + 0 + 0 + 17 + 99 + + + + + + + + + + + + + + + 134 + 0 + 0 + 0 + 17 + 99 + + + + + + + + + + + + + + 134 + 0 + 0 + 0 + 17 + 99 + + + + + + + + + + + + + + + 134 + 0 + 0 + 0 + 17 + 99 + + + + + + + + + + + + + + + 134 + 0 + 0 + 0 + 17 + 99 + + + + + + + + + + + + + + + 0_default_modkit + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23esvsp/dlctext.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23esvsp/dlctext.meta new file mode 100644 index 000000000..22bb4c390 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23esvsp/dlctext.meta @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23esvsp/handling.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23esvsp/handling.meta new file mode 100644 index 000000000..5178dff7a --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23esvsp/handling.meta @@ -0,0 +1,67 @@ + + + + + + 23ESVSP + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 440010 + 0 + 0 + AVERAGE + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23esvsp/vehicles.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23esvsp/vehicles.meta new file mode 100644 index 000000000..c389cb9e0 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23esvsp/vehicles.meta @@ -0,0 +1,138 @@ + + + vehshare + + + + 23esvsp + 23esvsp + 23ESVSP + YukonDenali + GMC + null + null + null + null + + null + BALLER3 + LAYOUT_STANDARD + GRESLEY_COVER_OFFSET_INFO + EXPLOSION_INFO_DEFAULT + + DEFAULT_FOLLOW_VEHICLE_CAMERA + DEFAULT_THIRD_PERSON_VEHICLE_AIM_CAMERA + VEHICLE_BONNET_CAMERA_MID_HIGH + DEFAULT_POV_CAMERA + + + + + + + + + + + + + + + + + + + + + + + + + + + + VFXVEHICLEINFO_CAR_GENERIC + + + + + + + + + + + + + + + + + + + + + + 15.000000 + 30.000000 + 70.000000 + 140.000000 + 500.000000 + 500.000000 + + + + + + + + + + + SWANKNESS_3 + + FLAG_HAS_LIVERY FLAG_IS_BULKY FLAG_PARKING_SENSORS + VEHICLE_TYPE_CAR + VPT_BACK_PLATES + VDT_RACE + VC_SUV + VWT_SUV + + + + + EXTRA_1 EXTRA_2 + + + + + + + EXTRA_1 EXTRA_2 + + + + WHEEL_FRONT_RIGHT_CAMERA + WHEEL_FRONT_LEFT_CAMERA + WHEEL_REAR_RIGHT_CAMERA + WHEEL_REAR_LEFT_CAMERA + + Truck + + + + + STD_DILETTANTE_FRONT_LEFT + STD_DILETTANTE_FRONT_RIGHT + STD_BALLER_REAR_LEFT + STD_BALLER_REAR_RIGHT + + + + + + vehicles_bob_brown_interior + 23esvsp + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23ev6/carcols.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23ev6/carcols.meta new file mode 100644 index 000000000..82b09fc3b --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23ev6/carcols.meta @@ -0,0 +1,633 @@ + + + + + + + + + + + + + + 135_23ev6_modkit + + MKT_SPECIAL + + + + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_BRAKES + + + + + + + VMT_BRAKES + + + + + + + VMT_BRAKES + + + + + + + VMT_GEARBOX + + + + + + + VMT_GEARBOX + + + + + + + VMT_GEARBOX + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + HORN_TRUCK + + + + VMT_HORN + + + HORN_COP + + + + VMT_HORN + + + HORN_CLOWN + + + + VMT_HORN + + + HORN_MUSICAL_1 + + + + VMT_HORN + + + HORN_MUSICAL_2 + + + + VMT_HORN + + + HORN_MUSICAL_3 + + + + VMT_HORN + + + HORN_MUSICAL_4 + + + + VMT_HORN + + + HORN_MUSICAL_5 + + + + VMT_HORN + + + HORN_SAD_TROMBONE + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_1 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_2 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_3 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_4 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_5 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_6 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_7 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_C0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_D0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_E0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_F0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_G0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_A0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_B0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_C1 + + + + VMT_HORN + + + HIPSTER_HORN_1 + + + + VMT_HORN + + + HIPSTER_HORN_2 + + + + VMT_HORN + + + HIPSTER_HORN_3 + + + + VMT_HORN + + + HIPSTER_HORN_4 + + + + VMT_HORN + + + INDEP_HORN_1 + + + + VMT_HORN + + + INDEP_HORN_2 + + + + VMT_HORN + + + INDEP_HORN_3 + + + + VMT_HORN + + + INDEP_HORN_4 + + + + VMT_HORN + + + LUXE_HORN_1 + + + + VMT_HORN + + + LUXE_HORN_2 + + + + VMT_HORN + + + LUXE_HORN_3 + + + + VMT_HORN + + + + LUXORY_HORN_1 + + + + VMT_HORN + + + + LUXURY_HORN_2 + + + + VMT_HORN + + + + LUXURY_HORN_3 + + + + VMT_HORN + + + ORGAN_HORN_LOOP_01 + + + + VMT_HORN + + + + ORGAN_HORN_LOOP_01_PREVIEW + + + + VMT_HORN + + + ORGAN_HORN_LOOP_02 + + + + VMT_HORN + + + + ORGAN_HORN_LOOP_02_PREVIEW + + + + VMT_HORN + + + LOWRIDER_HORN_1 + + + + VMT_HORN + + + + LOWRIDER_HORN_1_PREVIEW + + + + VMT_HORN + + + LOWRIDER_HORN_2 + + + + VMT_HORN + + + + LOWRIDER_HORN_2_PREVIEW + + + + VMT_HORN + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + VehicleLight_car_oldsquare + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 23ev6 + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23ev6/carvariations.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23ev6/carvariations.meta new file mode 100644 index 000000000..588312ed3 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23ev6/carvariations.meta @@ -0,0 +1,199 @@ + + + + + + + + + + + + + + + + 23ev6 + + + + 134 + 0 + 0 + 0 + 13 + 23 + + + + + + + + + + + + + + + 134 + 0 + 0 + 0 + 13 + 23 + + + + + + + + + + + + + + + 134 + 0 + 0 + 0 + 13 + 23 + + + + + + + + + + + + + + + 134 + 0 + 0 + 0 + 13 + 23 + + + + + + + + + + + + + + + 134 + 0 + 0 + 0 + 13 + 23 + + + + + + + + + + + + + + 134 + 0 + 0 + 0 + 13 + 23 + + + + + + + + + + + + + + + 134 + 0 + 0 + 0 + 13 + 23 + + + + + + + + + + + + + + + 134 + 0 + 0 + 0 + 13 + 23 + + + + + + + + + + + + + + + 0_default_modkit + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23ev6/dlctext.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23ev6/dlctext.meta new file mode 100644 index 000000000..22bb4c390 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23ev6/dlctext.meta @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23ev6/handling.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23ev6/handling.meta new file mode 100644 index 000000000..c798d4e56 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23ev6/handling.meta @@ -0,0 +1,67 @@ + + + + + + 23EV6 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 440010 + 0 + 0 + SPORTS_CAR + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23ev6/vehicles.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23ev6/vehicles.meta new file mode 100644 index 000000000..8b159b12c --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23ev6/vehicles.meta @@ -0,0 +1,136 @@ + + + vehshare + + + + 23ev6 + 23ev6 + 23ev6 + KIA + EV6 + null + null + null + null + + null + SURGE + LAYOUT_STD_HIGHWINDOW + GRESLEY_COVER_OFFSET_INFO + EXPLOSION_INFO_DEFAULT + + DEFAULT_FOLLOW_VEHICLE_CAMERA + DEFAULT_THIRD_PERSON_VEHICLE_AIM_CAMERA + VEHICLE_BONNET_CAMERA_MID_HIGH + DEFAULT_POV_CAMERA + + + + + + + + + + + + + + + + + + + + + + + + + + + + VFXVEHICLEINFO_CAR_GENERIC + + + + + + + + + + + + + + + + + + + + + + 15.000000 + 30.000000 + 70.000000 + 140.000000 + 500.000000 + 500.000000 + + + + + + + + + + + SWANKNESS_3 + + FLAG_HAS_LIVERY FLAG_IS_ELECTRIC FLAG_IS_OFFROAD_VEHICLE FLAG_IS_BULKY + VEHICLE_TYPE_CAR + VPT_BACK_PLATES + VDT_RACE + VC_SUV + VWT_SUV + + + + + extra_2 + + + + + + + + + WHEEL_FRONT_RIGHT_CAMERA + WHEEL_FRONT_LEFT_CAMERA + WHEEL_REAR_RIGHT_CAMERA + WHEEL_REAR_LEFT_CAMERA + + Truck + + + + + STD_DILETTANTE_FRONT_LEFT + STD_DILETTANTE_FRONT_RIGHT + STD_BALLER_REAR_LEFT + STD_BALLER_REAR_RIGHT + + + + + + vehicles_bob_brown_interior + 23ev6 + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23hornetrt/carcols.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23hornetrt/carcols.meta new file mode 100644 index 000000000..6d9455037 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23hornetrt/carcols.meta @@ -0,0 +1,633 @@ + + + + + + + + + + + + + + 135_23hornetrt_modkit + + MKT_SPECIAL + + + + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_BRAKES + + + + + + + VMT_BRAKES + + + + + + + VMT_BRAKES + + + + + + + VMT_GEARBOX + + + + + + + VMT_GEARBOX + + + + + + + VMT_GEARBOX + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + HORN_TRUCK + + + + VMT_HORN + + + HORN_COP + + + + VMT_HORN + + + HORN_CLOWN + + + + VMT_HORN + + + HORN_MUSICAL_1 + + + + VMT_HORN + + + HORN_MUSICAL_2 + + + + VMT_HORN + + + HORN_MUSICAL_3 + + + + VMT_HORN + + + HORN_MUSICAL_4 + + + + VMT_HORN + + + HORN_MUSICAL_5 + + + + VMT_HORN + + + HORN_SAD_TROMBONE + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_1 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_2 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_3 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_4 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_5 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_6 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_7 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_C0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_D0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_E0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_F0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_G0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_A0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_B0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_C1 + + + + VMT_HORN + + + HIPSTER_HORN_1 + + + + VMT_HORN + + + HIPSTER_HORN_2 + + + + VMT_HORN + + + HIPSTER_HORN_3 + + + + VMT_HORN + + + HIPSTER_HORN_4 + + + + VMT_HORN + + + INDEP_HORN_1 + + + + VMT_HORN + + + INDEP_HORN_2 + + + + VMT_HORN + + + INDEP_HORN_3 + + + + VMT_HORN + + + INDEP_HORN_4 + + + + VMT_HORN + + + LUXE_HORN_1 + + + + VMT_HORN + + + LUXE_HORN_2 + + + + VMT_HORN + + + LUXE_HORN_3 + + + + VMT_HORN + + + + LUXORY_HORN_1 + + + + VMT_HORN + + + + LUXURY_HORN_2 + + + + VMT_HORN + + + + LUXURY_HORN_3 + + + + VMT_HORN + + + ORGAN_HORN_LOOP_01 + + + + VMT_HORN + + + + ORGAN_HORN_LOOP_01_PREVIEW + + + + VMT_HORN + + + ORGAN_HORN_LOOP_02 + + + + VMT_HORN + + + + ORGAN_HORN_LOOP_02_PREVIEW + + + + VMT_HORN + + + LOWRIDER_HORN_1 + + + + VMT_HORN + + + + LOWRIDER_HORN_1_PREVIEW + + + + VMT_HORN + + + LOWRIDER_HORN_2 + + + + VMT_HORN + + + + LOWRIDER_HORN_2_PREVIEW + + + + VMT_HORN + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + VehicleLight_car_oldsquare + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 23hornetrt + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23hornetrt/carvariations.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23hornetrt/carvariations.meta new file mode 100644 index 000000000..ddb8149b4 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23hornetrt/carvariations.meta @@ -0,0 +1,191 @@ + + + + + + + + + + + + + + + + 23hornetrt + + + + 134 + 134 + 0 + 0 + 32 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + 32 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + 32 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + 32 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + 32 + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + 32 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + 32 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + 32 + + + + + + + + + + + + + + + 0_default_modkit + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23hornetrt/dlctext.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23hornetrt/dlctext.meta new file mode 100644 index 000000000..22bb4c390 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23hornetrt/dlctext.meta @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23hornetrt/handling.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23hornetrt/handling.meta new file mode 100644 index 000000000..5f0bc4b13 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23hornetrt/handling.meta @@ -0,0 +1,67 @@ + + + + + + 23HORNETRT + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 440010 + 0 + 0 + SPORTS_CAR + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23hornetrt/vehicles.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23hornetrt/vehicles.meta new file mode 100644 index 000000000..b73c978f3 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23hornetrt/vehicles.meta @@ -0,0 +1,134 @@ + + + vehshare + + + + 23hornetrt + 23hornetrt + 23HORNETRT + Dodge + HORNETRT + null + null + null + null + + null + DILETTANTE + LAYOUT_STD_HIGHWINDOW + GRESLEY_COVER_OFFSET_INFO + EXPLOSION_INFO_DEFAULT + + DEFAULT_FOLLOW_VEHICLE_CAMERA + DEFAULT_THIRD_PERSON_VEHICLE_AIM_CAMERA + VEHICLE_BONNET_CAMERA_MID_HIGH + DEFAULT_POV_CAMERA + + + + + + + + + + + + + + + + + + + + + + + + + + + + VFXVEHICLEINFO_CAR_GENERIC + + + + + + + + + + + + + + + + + + + + + + 15.000000 + 30.000000 + 70.000000 + 140.000000 + 500.000000 + 500.000000 + + + + + + + + + + + SWANKNESS_3 + + FLAG_HAS_LIVERY FLAG FLAG_IS_ELECTRIC FLAG_IS_OFFROAD_VEHICLE FLAG_IS_BULKY + VEHICLE_TYPE_CAR + VPT_BACK_PLATES + VDT_RACE + VC_SUV + VWT_SUV + + + + + + + + + + + + WHEEL_FRONT_RIGHT_CAMERA + WHEEL_FRONT_LEFT_CAMERA + WHEEL_REAR_RIGHT_CAMERA + WHEEL_REAR_LEFT_CAMERA + + Truck + + + + + STD_DILETTANTE_FRONT_LEFT + STD_DILETTANTE_FRONT_RIGHT + STD_BALLER_REAR_LEFT + STD_BALLER_REAR_RIGHT + + + + + + vehicles_bob_brown_interior + 23hornetrt + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23jeepwag3/carcols.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23jeepwag3/carcols.meta new file mode 100644 index 000000000..cdb1ad8d9 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23jeepwag3/carcols.meta @@ -0,0 +1,633 @@ + + + + + + + + + + + + + + 135_23jeepwag3_modkit + + MKT_SPECIAL + + + + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_BRAKES + + + + + + + VMT_BRAKES + + + + + + + VMT_BRAKES + + + + + + + VMT_GEARBOX + + + + + + + VMT_GEARBOX + + + + + + + VMT_GEARBOX + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + HORN_TRUCK + + + + VMT_HORN + + + HORN_COP + + + + VMT_HORN + + + HORN_CLOWN + + + + VMT_HORN + + + HORN_MUSICAL_1 + + + + VMT_HORN + + + HORN_MUSICAL_2 + + + + VMT_HORN + + + HORN_MUSICAL_3 + + + + VMT_HORN + + + HORN_MUSICAL_4 + + + + VMT_HORN + + + HORN_MUSICAL_5 + + + + VMT_HORN + + + HORN_SAD_TROMBONE + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_1 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_2 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_3 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_4 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_5 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_6 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_7 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_C0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_D0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_E0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_F0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_G0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_A0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_B0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_C1 + + + + VMT_HORN + + + HIPSTER_HORN_1 + + + + VMT_HORN + + + HIPSTER_HORN_2 + + + + VMT_HORN + + + HIPSTER_HORN_3 + + + + VMT_HORN + + + HIPSTER_HORN_4 + + + + VMT_HORN + + + INDEP_HORN_1 + + + + VMT_HORN + + + INDEP_HORN_2 + + + + VMT_HORN + + + INDEP_HORN_3 + + + + VMT_HORN + + + INDEP_HORN_4 + + + + VMT_HORN + + + LUXE_HORN_1 + + + + VMT_HORN + + + LUXE_HORN_2 + + + + VMT_HORN + + + LUXE_HORN_3 + + + + VMT_HORN + + + + LUXORY_HORN_1 + + + + VMT_HORN + + + + LUXURY_HORN_2 + + + + VMT_HORN + + + + LUXURY_HORN_3 + + + + VMT_HORN + + + ORGAN_HORN_LOOP_01 + + + + VMT_HORN + + + + ORGAN_HORN_LOOP_01_PREVIEW + + + + VMT_HORN + + + ORGAN_HORN_LOOP_02 + + + + VMT_HORN + + + + ORGAN_HORN_LOOP_02_PREVIEW + + + + VMT_HORN + + + LOWRIDER_HORN_1 + + + + VMT_HORN + + + + LOWRIDER_HORN_1_PREVIEW + + + + VMT_HORN + + + LOWRIDER_HORN_2 + + + + VMT_HORN + + + + LOWRIDER_HORN_2_PREVIEW + + + + VMT_HORN + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + VehicleLight_car_oldsquare + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 23jeepwag3 + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23jeepwag3/carvariations.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23jeepwag3/carvariations.meta new file mode 100644 index 000000000..370cfce17 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23jeepwag3/carvariations.meta @@ -0,0 +1,183 @@ + + + + + + + + + + + + + + + + 23jeepwag3 + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 0_default_modkit + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23jeepwag3/dlctext.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23jeepwag3/dlctext.meta new file mode 100644 index 000000000..22bb4c390 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23jeepwag3/dlctext.meta @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23jeepwag3/handling.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23jeepwag3/handling.meta new file mode 100644 index 000000000..131d2fcb7 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23jeepwag3/handling.meta @@ -0,0 +1,67 @@ + + + + + + 23JEEPWAG3 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 440010 + 0 + 0 + AVERAGE + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23jeepwag3/vehicles.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23jeepwag3/vehicles.meta new file mode 100644 index 000000000..ccefe13a5 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23jeepwag3/vehicles.meta @@ -0,0 +1,138 @@ + + + vehshare + + + + 23jeepwag3 + 23jeepwag3 + 23JEEPWAG3 + GrandWagoneerl + JEEP + null + null + null + null + + null + BALLER3 + LAYOUT_STANDARD + GRESLEY_COVER_OFFSET_INFO + EXPLOSION_INFO_DEFAULT + + DEFAULT_FOLLOW_VEHICLE_CAMERA + DEFAULT_THIRD_PERSON_VEHICLE_AIM_CAMERA + VEHICLE_BONNET_CAMERA_MID_HIGH + DEFAULT_POV_CAMERA + + + + + + + + + + + + + + + + + + + + + + + + + + + + VFXVEHICLEINFO_CAR_GENERIC + + + + + + + + + + + + + + + + + + + + + + 15.000000 + 30.000000 + 70.000000 + 140.000000 + 500.000000 + 500.000000 + + + + + + + + + + + SWANKNESS_3 + + FLAG_HAS_LIVERY FLAG_EXTRAS_ALL FLAG_IS_OFFROAD_VEHICLE FLAG_IS_BULKY + VEHICLE_TYPE_CAR + VPT_BACK_PLATES + VDT_TRUCKDIGI + VC_SUV + VWT_SUV + + + + + EXTRA_1 + + + + + + + EXTRA_1 + + + + WHEEL_FRONT_RIGHT_CAMERA + WHEEL_FRONT_LEFT_CAMERA + WHEEL_REAR_RIGHT_CAMERA + WHEEL_REAR_LEFT_CAMERA + + Truck + + + + + STD_DILETTANTE_FRONT_LEFT + STD_DILETTANTE_FRONT_RIGHT + STD_BALLER_REAR_LEFT + STD_BALLER_REAR_RIGHT + + + + + + vehicles_bob_brown_interior + 23jeepwag3 + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23santa/carcols.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23santa/carcols.meta new file mode 100644 index 000000000..a80888a04 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23santa/carcols.meta @@ -0,0 +1,633 @@ + + + + + + + + + + + + + + 23santa + + MKT_SPECIAL + + + + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_BRAKES + + + + + + + VMT_BRAKES + + + + + + + VMT_BRAKES + + + + + + + VMT_GEARBOX + + + + + + + VMT_GEARBOX + + + + + + + VMT_GEARBOX + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + HORN_TRUCK + + + + VMT_HORN + + + HORN_COP + + + + VMT_HORN + + + HORN_CLOWN + + + + VMT_HORN + + + HORN_MUSICAL_1 + + + + VMT_HORN + + + HORN_MUSICAL_2 + + + + VMT_HORN + + + HORN_MUSICAL_3 + + + + VMT_HORN + + + HORN_MUSICAL_4 + + + + VMT_HORN + + + HORN_MUSICAL_5 + + + + VMT_HORN + + + HORN_SAD_TROMBONE + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_1 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_2 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_3 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_4 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_5 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_6 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_7 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_C0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_D0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_E0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_F0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_G0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_A0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_B0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_C1 + + + + VMT_HORN + + + HIPSTER_HORN_1 + + + + VMT_HORN + + + HIPSTER_HORN_2 + + + + VMT_HORN + + + HIPSTER_HORN_3 + + + + VMT_HORN + + + HIPSTER_HORN_4 + + + + VMT_HORN + + + INDEP_HORN_1 + + + + VMT_HORN + + + INDEP_HORN_2 + + + + VMT_HORN + + + INDEP_HORN_3 + + + + VMT_HORN + + + INDEP_HORN_4 + + + + VMT_HORN + + + LUXE_HORN_1 + + + + VMT_HORN + + + LUXE_HORN_2 + + + + VMT_HORN + + + LUXE_HORN_3 + + + + VMT_HORN + + + + LUXORY_HORN_1 + + + + VMT_HORN + + + + LUXURY_HORN_2 + + + + VMT_HORN + + + + LUXURY_HORN_3 + + + + VMT_HORN + + + ORGAN_HORN_LOOP_01 + + + + VMT_HORN + + + + ORGAN_HORN_LOOP_01_PREVIEW + + + + VMT_HORN + + + ORGAN_HORN_LOOP_02 + + + + VMT_HORN + + + + ORGAN_HORN_LOOP_02_PREVIEW + + + + VMT_HORN + + + LOWRIDER_HORN_1 + + + + VMT_HORN + + + + LOWRIDER_HORN_1_PREVIEW + + + + VMT_HORN + + + LOWRIDER_HORN_2 + + + + VMT_HORN + + + + LOWRIDER_HORN_2_PREVIEW + + + + VMT_HORN + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + VehicleLight_car_oldsquare + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 23santa + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23santa/carvariations.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23santa/carvariations.meta new file mode 100644 index 000000000..8f7c7fccb --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23santa/carvariations.meta @@ -0,0 +1,183 @@ + + + + + + + + + + + + + + + + 23santa + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 0_default_modkit + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23santa/dlctext.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23santa/dlctext.meta new file mode 100644 index 000000000..22bb4c390 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23santa/dlctext.meta @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23santa/handling.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23santa/handling.meta new file mode 100644 index 000000000..9480d2bd1 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23santa/handling.meta @@ -0,0 +1,67 @@ + + + + + + 23SANTA + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 440010 + 0 + 0 + AVERAGE + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23santa/vehicles.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23santa/vehicles.meta new file mode 100644 index 000000000..2fed0d62b --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23santa/vehicles.meta @@ -0,0 +1,138 @@ + + + vehshare + + + + 23santa + 23santa + 23SANTA + SantaFe + Hyundai + null + null + null + null + + null + GRESLEY + LAYOUT_STANDARD + GRESLEY_COVER_OFFSET_INFO + EXPLOSION_INFO_DEFAULT + + DEFAULT_FOLLOW_VEHICLE_CAMERA + DEFAULT_THIRD_PERSON_VEHICLE_AIM_CAMERA + VEHICLE_BONNET_CAMERA_MID_HIGH + DEFAULT_POV_CAMERA + + + + + + + + + + + + + + + + + + + + + + + + + + + + VFXVEHICLEINFO_CAR_GENERIC + + + + + + + + + + + + + + + + + + + + + + 15.000000 + 30.000000 + 70.000000 + 140.000000 + 500.000000 + 500.000000 + + + + + + + + + + + SWANKNESS_3 + + FLAG_HAS_LIVERY FLAG_EXTRAS_ALL FLAG_IS_OFFROAD_VEHICLE FLAG_IS_BULKY FLAG_PARKING_SENSORS + VEHICLE_TYPE_CAR + VPT_BACK_PLATES + VDT_ZTYPE + VC_SUV + VWT_SUV + + + + + EXTRA_1 + + + + + + + EXTRA_1 + + + + WHEEL_FRONT_RIGHT_CAMERA + WHEEL_FRONT_LEFT_CAMERA + WHEEL_REAR_RIGHT_CAMERA + WHEEL_REAR_LEFT_CAMERA + + Truck + + + + + STD_DILETTANTE_FRONT_LEFT + STD_DILETTANTE_FRONT_RIGHT + STD_BALLER_REAR_LEFT + STD_BALLER_REAR_RIGHT + + + + + + vehicles_bob_brown_interior + 23santa + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23santastd/carcols.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23santastd/carcols.meta new file mode 100644 index 000000000..23aadb172 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23santastd/carcols.meta @@ -0,0 +1,633 @@ + + + + + + + + + + + + + + 23santastd + + MKT_SPECIAL + + + + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_BRAKES + + + + + + + VMT_BRAKES + + + + + + + VMT_BRAKES + + + + + + + VMT_GEARBOX + + + + + + + VMT_GEARBOX + + + + + + + VMT_GEARBOX + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + HORN_TRUCK + + + + VMT_HORN + + + HORN_COP + + + + VMT_HORN + + + HORN_CLOWN + + + + VMT_HORN + + + HORN_MUSICAL_1 + + + + VMT_HORN + + + HORN_MUSICAL_2 + + + + VMT_HORN + + + HORN_MUSICAL_3 + + + + VMT_HORN + + + HORN_MUSICAL_4 + + + + VMT_HORN + + + HORN_MUSICAL_5 + + + + VMT_HORN + + + HORN_SAD_TROMBONE + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_1 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_2 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_3 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_4 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_5 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_6 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_7 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_C0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_D0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_E0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_F0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_G0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_A0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_B0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_C1 + + + + VMT_HORN + + + HIPSTER_HORN_1 + + + + VMT_HORN + + + HIPSTER_HORN_2 + + + + VMT_HORN + + + HIPSTER_HORN_3 + + + + VMT_HORN + + + HIPSTER_HORN_4 + + + + VMT_HORN + + + INDEP_HORN_1 + + + + VMT_HORN + + + INDEP_HORN_2 + + + + VMT_HORN + + + INDEP_HORN_3 + + + + VMT_HORN + + + INDEP_HORN_4 + + + + VMT_HORN + + + LUXE_HORN_1 + + + + VMT_HORN + + + LUXE_HORN_2 + + + + VMT_HORN + + + LUXE_HORN_3 + + + + VMT_HORN + + + + LUXORY_HORN_1 + + + + VMT_HORN + + + + LUXURY_HORN_2 + + + + VMT_HORN + + + + LUXURY_HORN_3 + + + + VMT_HORN + + + ORGAN_HORN_LOOP_01 + + + + VMT_HORN + + + + ORGAN_HORN_LOOP_01_PREVIEW + + + + VMT_HORN + + + ORGAN_HORN_LOOP_02 + + + + VMT_HORN + + + + ORGAN_HORN_LOOP_02_PREVIEW + + + + VMT_HORN + + + LOWRIDER_HORN_1 + + + + VMT_HORN + + + + LOWRIDER_HORN_1_PREVIEW + + + + VMT_HORN + + + LOWRIDER_HORN_2 + + + + VMT_HORN + + + + LOWRIDER_HORN_2_PREVIEW + + + + VMT_HORN + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + VehicleLight_car_oldsquare + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 23santastd + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23santastd/carvariations.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23santastd/carvariations.meta new file mode 100644 index 000000000..55d1c92a7 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23santastd/carvariations.meta @@ -0,0 +1,183 @@ + + + + + + + + + + + + + + + + 23santastd + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 0_default_modkit + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23santastd/dlctext.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23santastd/dlctext.meta new file mode 100644 index 000000000..22bb4c390 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23santastd/dlctext.meta @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23santastd/handling.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23santastd/handling.meta new file mode 100644 index 000000000..8c65f114e --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23santastd/handling.meta @@ -0,0 +1,67 @@ + + + + + + 23SANTASTD + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 440010 + 0 + 0 + AVERAGE + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23santastd/vehicles.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23santastd/vehicles.meta new file mode 100644 index 000000000..c914c5649 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23santastd/vehicles.meta @@ -0,0 +1,134 @@ + + + vehshare + + + + 23santastd + 23santastd + 23SANTASTD + SantaFe + Hyundai + null + null + null + null + + null + GRESLEY + LAYOUT_STANDARD + GRESLEY_COVER_OFFSET_INFO + EXPLOSION_INFO_DEFAULT + + DEFAULT_FOLLOW_VEHICLE_CAMERA + DEFAULT_THIRD_PERSON_VEHICLE_AIM_CAMERA + VEHICLE_BONNET_CAMERA_MID_HIGH + DEFAULT_POV_CAMERA + + + + + + + + + + + + + + + + + + + + + + + + + + + + VFXVEHICLEINFO_CAR_GENERIC + + + + + + + + + + + + + + + + + + + + + + 15.000000 + 30.000000 + 70.000000 + 140.000000 + 500.000000 + 500.000000 + + + + + + + + + + + SWANKNESS_3 + + FLAG_HAS_LIVERY FLAG_IS_OFFROAD_VEHICLE FLAG_IS_BULKY FLAG_PARKING_SENSORS + VEHICLE_TYPE_CAR + VPT_BACK_PLATES + VDT_ZTYPE + VC_SUV + VWT_SUV + + + + + + + + + + + + WHEEL_FRONT_RIGHT_CAMERA + WHEEL_FRONT_LEFT_CAMERA + WHEEL_REAR_RIGHT_CAMERA + WHEEL_REAR_LEFT_CAMERA + + Truck + + + + + STD_DILETTANTE_FRONT_LEFT + STD_DILETTANTE_FRONT_RIGHT + STD_BALLER_REAR_LEFT + STD_BALLER_REAR_RIGHT + + + + + + vehicles_bob_brown_interior + 23santastd + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23subur/carcols.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23subur/carcols.meta new file mode 100644 index 000000000..f4bbb6ad0 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23subur/carcols.meta @@ -0,0 +1,633 @@ + + + + + + + + + + + + + + 135_23subur_modkit + + MKT_SPECIAL + + + + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_BRAKES + + + + + + + VMT_BRAKES + + + + + + + VMT_BRAKES + + + + + + + VMT_GEARBOX + + + + + + + VMT_GEARBOX + + + + + + + VMT_GEARBOX + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + HORN_TRUCK + + + + VMT_HORN + + + HORN_COP + + + + VMT_HORN + + + HORN_CLOWN + + + + VMT_HORN + + + HORN_MUSICAL_1 + + + + VMT_HORN + + + HORN_MUSICAL_2 + + + + VMT_HORN + + + HORN_MUSICAL_3 + + + + VMT_HORN + + + HORN_MUSICAL_4 + + + + VMT_HORN + + + HORN_MUSICAL_5 + + + + VMT_HORN + + + HORN_SAD_TROMBONE + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_1 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_2 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_3 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_4 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_5 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_6 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_7 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_C0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_D0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_E0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_F0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_G0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_A0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_B0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_C1 + + + + VMT_HORN + + + HIPSTER_HORN_1 + + + + VMT_HORN + + + HIPSTER_HORN_2 + + + + VMT_HORN + + + HIPSTER_HORN_3 + + + + VMT_HORN + + + HIPSTER_HORN_4 + + + + VMT_HORN + + + INDEP_HORN_1 + + + + VMT_HORN + + + INDEP_HORN_2 + + + + VMT_HORN + + + INDEP_HORN_3 + + + + VMT_HORN + + + INDEP_HORN_4 + + + + VMT_HORN + + + LUXE_HORN_1 + + + + VMT_HORN + + + LUXE_HORN_2 + + + + VMT_HORN + + + LUXE_HORN_3 + + + + VMT_HORN + + + + LUXORY_HORN_1 + + + + VMT_HORN + + + + LUXURY_HORN_2 + + + + VMT_HORN + + + + LUXURY_HORN_3 + + + + VMT_HORN + + + ORGAN_HORN_LOOP_01 + + + + VMT_HORN + + + + ORGAN_HORN_LOOP_01_PREVIEW + + + + VMT_HORN + + + ORGAN_HORN_LOOP_02 + + + + VMT_HORN + + + + ORGAN_HORN_LOOP_02_PREVIEW + + + + VMT_HORN + + + LOWRIDER_HORN_1 + + + + VMT_HORN + + + + LOWRIDER_HORN_1_PREVIEW + + + + VMT_HORN + + + LOWRIDER_HORN_2 + + + + VMT_HORN + + + + LOWRIDER_HORN_2_PREVIEW + + + + VMT_HORN + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + VehicleLight_car_oldsquare + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 23subur + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23subur/carvariations.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23subur/carvariations.meta new file mode 100644 index 000000000..ea882676d --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23subur/carvariations.meta @@ -0,0 +1,199 @@ + + + + + + + + + + + + + + + + 23subur + + + + 134 + 0 + 0 + 0 + 98 + 16 + + + + + + + + + + + + + + + 134 + 0 + 0 + 0 + 98 + 16 + + + + + + + + + + + + + + + 134 + 0 + 0 + 0 + 98 + 16 + + + + + + + + + + + + + + + 134 + 0 + 0 + 0 + 98 + 16 + + + + + + + + + + + + + + + 134 + 0 + 0 + 0 + 98 + 16 + + + + + + + + + + + + + + 134 + 0 + 0 + 0 + 98 + 16 + + + + + + + + + + + + + + + 134 + 0 + 0 + 0 + 98 + 16 + + + + + + + + + + + + + + + 134 + 0 + 0 + 0 + 98 + 16 + + + + + + + + + + + + + + + 0_default_modkit + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23subur/dlctext.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23subur/dlctext.meta new file mode 100644 index 000000000..22bb4c390 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23subur/dlctext.meta @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23subur/handling.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23subur/handling.meta new file mode 100644 index 000000000..6861f90ed --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23subur/handling.meta @@ -0,0 +1,67 @@ + + + + + + 23SUBUR + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 440010 + 0 + 0 + AVERAGE + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/tahoe2/vehicles.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23subur/vehicles.meta similarity index 60% rename from resources/[EGRP-CarPacks]/EGRP-SUVs/data/tahoe2/vehicles.meta rename to resources/[EGRP-CarPacks]/EGRP-SUVs/data/23subur/vehicles.meta index 3ff9e2fa2..c2a527801 100644 --- a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/tahoe2/vehicles.meta +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23subur/vehicles.meta @@ -1,49 +1,56 @@ - + vehshare - - - - - tahoe2 - tahoe2 - tahoe2 - tahoe2 - Chevrolet + + 23subur + 23subur + 23SUBUR + Suburban + Chev null null null null null - brabus850 - LAYOUT_RANGER - CAVALCADE_COVER_OFFSET_INFO + BALLER3 + LAYOUT_STANDARD + GRESLEY_COVER_OFFSET_INFO EXPLOSION_INFO_DEFAULT DEFAULT_FOLLOW_VEHICLE_CAMERA DEFAULT_THIRD_PERSON_VEHICLE_AIM_CAMERA - VEHICLE_BONNET_CAMERA_MID_NEAR - DEFAULT_POV_CAMERA_LOOKAROUND - + VEHICLE_BONNET_CAMERA_MID_HIGH + DEFAULT_POV_CAMERA + - - - - - - - + + + + + + + - - - + + + + + + + + + + + + + - - + + VFXVEHICLEINFO_CAR_GENERIC @@ -52,28 +59,28 @@ - - + + - + - 500.000000 - 500.000000 - 500.000000 - 500.000000 + 15.000000 + 30.000000 + 70.000000 + 140.000000 500.000000 500.000000 - + @@ -84,35 +91,30 @@ SWANKNESS_3 - FLAG_RICH_CAR FLAG_AVERAGE_CAR FLAG_IS_OFFROAD_VEHICLE FLAG_IS_BULKY FLAG_HAS_INTERIOR_EXTRAS FLAG_ATTACH_TRAILER_ON_HIGHWAY FLAG_HAS_LIVERY + FLAG_HAS_LIVERY FLAG_IS_BULKY FLAG_PARKING_SENSORS VEHICLE_TYPE_CAR VPT_BACK_PLATES - VDT_GENTAXI + VDT_RACE VC_SUV VWT_SUV - - boattrailer - trailersmall - cartrailer - cotrailer - thauler - trailercast + + boattrailer + trailersmall - boattrailer - trailersmall - cartrailer - cotrailer - thauler - trailercast + trailersmall2 - + + EXTRA_2 EXTRA_3 EXTRA_4 EXTRA_5 + - + + EXTRA_2 EXTRA_3 EXTRA_4 EXTRA_5 + WHEEL_FRONT_RIGHT_CAMERA @@ -120,38 +122,22 @@ WHEEL_REAR_RIGHT_CAMERA WHEEL_REAR_LEFT_CAMERA - + Truck - - RANGER_CAVALCADE_FRONT_LEFT - RANGER_FRONT_RIGHT - RANGER_DUBSTA_REAR_LEFT - RANGER_DUBSTA_REAR_RIGHT + + STD_DILETTANTE_FRONT_LEFT + STD_DILETTANTE_FRONT_RIGHT + STD_BALLER_REAR_LEFT + STD_BALLER_REAR_RIGHT - - - - - - - - - - - - - - vehicles_dom_interior - tahoe2 + + vehicles_bob_brown_interior + 23subur - - - - - + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23tesla/carcols.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23tesla/carcols.meta new file mode 100644 index 000000000..fe392e743 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23tesla/carcols.meta @@ -0,0 +1,633 @@ + + + + + + + + + + + + + + 135_23tesla_modkit + + MKT_SPECIAL + + + + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_BRAKES + + + + + + + VMT_BRAKES + + + + + + + VMT_BRAKES + + + + + + + VMT_GEARBOX + + + + + + + VMT_GEARBOX + + + + + + + VMT_GEARBOX + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + HORN_TRUCK + + + + VMT_HORN + + + HORN_COP + + + + VMT_HORN + + + HORN_CLOWN + + + + VMT_HORN + + + HORN_MUSICAL_1 + + + + VMT_HORN + + + HORN_MUSICAL_2 + + + + VMT_HORN + + + HORN_MUSICAL_3 + + + + VMT_HORN + + + HORN_MUSICAL_4 + + + + VMT_HORN + + + HORN_MUSICAL_5 + + + + VMT_HORN + + + HORN_SAD_TROMBONE + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_1 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_2 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_3 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_4 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_5 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_6 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_7 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_C0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_D0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_E0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_F0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_G0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_A0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_B0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_C1 + + + + VMT_HORN + + + HIPSTER_HORN_1 + + + + VMT_HORN + + + HIPSTER_HORN_2 + + + + VMT_HORN + + + HIPSTER_HORN_3 + + + + VMT_HORN + + + HIPSTER_HORN_4 + + + + VMT_HORN + + + INDEP_HORN_1 + + + + VMT_HORN + + + INDEP_HORN_2 + + + + VMT_HORN + + + INDEP_HORN_3 + + + + VMT_HORN + + + INDEP_HORN_4 + + + + VMT_HORN + + + LUXE_HORN_1 + + + + VMT_HORN + + + LUXE_HORN_2 + + + + VMT_HORN + + + LUXE_HORN_3 + + + + VMT_HORN + + + + LUXORY_HORN_1 + + + + VMT_HORN + + + + LUXURY_HORN_2 + + + + VMT_HORN + + + + LUXURY_HORN_3 + + + + VMT_HORN + + + ORGAN_HORN_LOOP_01 + + + + VMT_HORN + + + + ORGAN_HORN_LOOP_01_PREVIEW + + + + VMT_HORN + + + ORGAN_HORN_LOOP_02 + + + + VMT_HORN + + + + ORGAN_HORN_LOOP_02_PREVIEW + + + + VMT_HORN + + + LOWRIDER_HORN_1 + + + + VMT_HORN + + + + LOWRIDER_HORN_1_PREVIEW + + + + VMT_HORN + + + LOWRIDER_HORN_2 + + + + VMT_HORN + + + + LOWRIDER_HORN_2_PREVIEW + + + + VMT_HORN + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + VehicleLight_car_oldsquare + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 23tesla + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23tesla/carvariations.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23tesla/carvariations.meta new file mode 100644 index 000000000..679c5d545 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23tesla/carvariations.meta @@ -0,0 +1,183 @@ + + + + + + + + + + + + + + + + 23tesla + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 0_default_modkit + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23tesla/dlctext.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23tesla/dlctext.meta new file mode 100644 index 000000000..22bb4c390 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23tesla/dlctext.meta @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23tesla/handling.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23tesla/handling.meta new file mode 100644 index 000000000..61996d1bb --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23tesla/handling.meta @@ -0,0 +1,67 @@ + + + + + + 23TESLA + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 440010 + 0 + 0 + SPORTS_CAR + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23tesla/vehicles.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23tesla/vehicles.meta new file mode 100644 index 000000000..5b01b809b --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23tesla/vehicles.meta @@ -0,0 +1,136 @@ + + + vehshare + + + + 23tesla + 23tesla + 23TESLA + Tesla + ModelY + null + null + null + null + + null + SURGE + LAYOUT_STD_HIGHWINDOW + GRESLEY_COVER_OFFSET_INFO + EXPLOSION_INFO_DEFAULT + + DEFAULT_FOLLOW_VEHICLE_CAMERA + DEFAULT_THIRD_PERSON_VEHICLE_AIM_CAMERA + VEHICLE_BONNET_CAMERA_MID_HIGH + DEFAULT_POV_CAMERA + + + + + + + + + + + + + + + + + + + + + + + + + + + + VFXVEHICLEINFO_CAR_GENERIC + + + + + + + + + + + + + + + + + + + + + + 15.000000 + 30.000000 + 70.000000 + 140.000000 + 500.000000 + 500.000000 + + + + + + + + + + + SWANKNESS_3 + + FLAG_HAS_LIVERY FLAG_IS_ELECTRIC FLAG_IS_OFFROAD_VEHICLE FLAG_IS_BULKY + VEHICLE_TYPE_CAR + VPT_BACK_PLATES + VDT_RACE + VC_SUV + VWT_SUV + + + + + extra_1 + + + + + + + + + WHEEL_FRONT_RIGHT_CAMERA + WHEEL_FRONT_LEFT_CAMERA + WHEEL_REAR_RIGHT_CAMERA + WHEEL_REAR_LEFT_CAMERA + + Truck + + + + + STD_DILETTANTE_FRONT_LEFT + STD_DILETTANTE_FRONT_RIGHT + STD_BALLER_REAR_LEFT + STD_BALLER_REAR_RIGHT + + + + + + vehicles_bob_brown_interior + 23tesla + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23teslahc/carcols.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23teslahc/carcols.meta new file mode 100644 index 000000000..fe392e743 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23teslahc/carcols.meta @@ -0,0 +1,633 @@ + + + + + + + + + + + + + + 135_23tesla_modkit + + MKT_SPECIAL + + + + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_BRAKES + + + + + + + VMT_BRAKES + + + + + + + VMT_BRAKES + + + + + + + VMT_GEARBOX + + + + + + + VMT_GEARBOX + + + + + + + VMT_GEARBOX + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + HORN_TRUCK + + + + VMT_HORN + + + HORN_COP + + + + VMT_HORN + + + HORN_CLOWN + + + + VMT_HORN + + + HORN_MUSICAL_1 + + + + VMT_HORN + + + HORN_MUSICAL_2 + + + + VMT_HORN + + + HORN_MUSICAL_3 + + + + VMT_HORN + + + HORN_MUSICAL_4 + + + + VMT_HORN + + + HORN_MUSICAL_5 + + + + VMT_HORN + + + HORN_SAD_TROMBONE + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_1 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_2 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_3 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_4 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_5 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_6 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_7 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_C0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_D0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_E0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_F0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_G0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_A0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_B0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_C1 + + + + VMT_HORN + + + HIPSTER_HORN_1 + + + + VMT_HORN + + + HIPSTER_HORN_2 + + + + VMT_HORN + + + HIPSTER_HORN_3 + + + + VMT_HORN + + + HIPSTER_HORN_4 + + + + VMT_HORN + + + INDEP_HORN_1 + + + + VMT_HORN + + + INDEP_HORN_2 + + + + VMT_HORN + + + INDEP_HORN_3 + + + + VMT_HORN + + + INDEP_HORN_4 + + + + VMT_HORN + + + LUXE_HORN_1 + + + + VMT_HORN + + + LUXE_HORN_2 + + + + VMT_HORN + + + LUXE_HORN_3 + + + + VMT_HORN + + + + LUXORY_HORN_1 + + + + VMT_HORN + + + + LUXURY_HORN_2 + + + + VMT_HORN + + + + LUXURY_HORN_3 + + + + VMT_HORN + + + ORGAN_HORN_LOOP_01 + + + + VMT_HORN + + + + ORGAN_HORN_LOOP_01_PREVIEW + + + + VMT_HORN + + + ORGAN_HORN_LOOP_02 + + + + VMT_HORN + + + + ORGAN_HORN_LOOP_02_PREVIEW + + + + VMT_HORN + + + LOWRIDER_HORN_1 + + + + VMT_HORN + + + + LOWRIDER_HORN_1_PREVIEW + + + + VMT_HORN + + + LOWRIDER_HORN_2 + + + + VMT_HORN + + + + LOWRIDER_HORN_2_PREVIEW + + + + VMT_HORN + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + VehicleLight_car_oldsquare + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 23tesla + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23teslahc/carvariations.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23teslahc/carvariations.meta new file mode 100644 index 000000000..bc7d8e379 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23teslahc/carvariations.meta @@ -0,0 +1,183 @@ + + + + + + + + + + + + + + + + 23teslahc + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 0_default_modkit + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23teslahc/dlctext.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23teslahc/dlctext.meta new file mode 100644 index 000000000..22bb4c390 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23teslahc/dlctext.meta @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23teslahc/handling.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23teslahc/handling.meta new file mode 100644 index 000000000..a06541601 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23teslahc/handling.meta @@ -0,0 +1,67 @@ + + + + + + 23TESLAHC + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 440010 + 0 + 0 + SPORTS_CAR + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23teslahc/vehicles.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23teslahc/vehicles.meta new file mode 100644 index 000000000..435fde48e --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/23teslahc/vehicles.meta @@ -0,0 +1,136 @@ + + + vehshare + + + + 23teslahc + 23teslahc + 23TESLAHC + Tesla + ModelY + null + null + null + null + + null + SURGE + LAYOUT_STD_HIGHWINDOW + GRESLEY_COVER_OFFSET_INFO + EXPLOSION_INFO_DEFAULT + + DEFAULT_FOLLOW_VEHICLE_CAMERA + DEFAULT_THIRD_PERSON_VEHICLE_AIM_CAMERA + VEHICLE_BONNET_CAMERA_MID_HIGH + DEFAULT_POV_CAMERA + + + + + + + + + + + + + + + + + + + + + + + + + + + + VFXVEHICLEINFO_CAR_GENERIC + + + + + + + + + + + + + + + + + + + + + + 15.000000 + 30.000000 + 70.000000 + 140.000000 + 500.000000 + 500.000000 + + + + + + + + + + + SWANKNESS_3 + + FLAG_HAS_LIVERY FLAG_IS_ELECTRIC FLAG_IS_OFFROAD_VEHICLE FLAG_IS_BULKY + VEHICLE_TYPE_CAR + VPT_BACK_PLATES + VDT_RACE + VC_SUV + VWT_SUV + + + + + extra_1 + + + + + + + + + WHEEL_FRONT_RIGHT_CAMERA + WHEEL_FRONT_LEFT_CAMERA + WHEEL_REAR_RIGHT_CAMERA + WHEEL_REAR_LEFT_CAMERA + + Truck + + + + + STD_DILETTANTE_FRONT_LEFT + STD_DILETTANTE_FRONT_RIGHT + STD_BALLER_REAR_LEFT + STD_BALLER_REAR_RIGHT + + + + + + vehicles_bob_brown_interior + 23teslahc + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/80fj60/carcols.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/80fj60/carcols.meta new file mode 100644 index 000000000..2a47aa77b --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/80fj60/carcols.meta @@ -0,0 +1,633 @@ + + + + + + + + + + + + + + 135_80fj60_modkit + + MKT_SPECIAL + + + + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_BRAKES + + + + + + + VMT_BRAKES + + + + + + + VMT_BRAKES + + + + + + + VMT_GEARBOX + + + + + + + VMT_GEARBOX + + + + + + + VMT_GEARBOX + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + HORN_TRUCK + + + + VMT_HORN + + + HORN_COP + + + + VMT_HORN + + + HORN_CLOWN + + + + VMT_HORN + + + HORN_MUSICAL_1 + + + + VMT_HORN + + + HORN_MUSICAL_2 + + + + VMT_HORN + + + HORN_MUSICAL_3 + + + + VMT_HORN + + + HORN_MUSICAL_4 + + + + VMT_HORN + + + HORN_MUSICAL_5 + + + + VMT_HORN + + + HORN_SAD_TROMBONE + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_1 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_2 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_3 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_4 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_5 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_6 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_7 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_C0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_D0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_E0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_F0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_G0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_A0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_B0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_C1 + + + + VMT_HORN + + + HIPSTER_HORN_1 + + + + VMT_HORN + + + HIPSTER_HORN_2 + + + + VMT_HORN + + + HIPSTER_HORN_3 + + + + VMT_HORN + + + HIPSTER_HORN_4 + + + + VMT_HORN + + + INDEP_HORN_1 + + + + VMT_HORN + + + INDEP_HORN_2 + + + + VMT_HORN + + + INDEP_HORN_3 + + + + VMT_HORN + + + INDEP_HORN_4 + + + + VMT_HORN + + + LUXE_HORN_1 + + + + VMT_HORN + + + LUXE_HORN_2 + + + + VMT_HORN + + + LUXE_HORN_3 + + + + VMT_HORN + + + + LUXORY_HORN_1 + + + + VMT_HORN + + + + LUXURY_HORN_2 + + + + VMT_HORN + + + + LUXURY_HORN_3 + + + + VMT_HORN + + + ORGAN_HORN_LOOP_01 + + + + VMT_HORN + + + + ORGAN_HORN_LOOP_01_PREVIEW + + + + VMT_HORN + + + ORGAN_HORN_LOOP_02 + + + + VMT_HORN + + + + ORGAN_HORN_LOOP_02_PREVIEW + + + + VMT_HORN + + + LOWRIDER_HORN_1 + + + + VMT_HORN + + + + LOWRIDER_HORN_1_PREVIEW + + + + VMT_HORN + + + LOWRIDER_HORN_2 + + + + VMT_HORN + + + + LOWRIDER_HORN_2_PREVIEW + + + + VMT_HORN + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + VehicleLight_car_oldsquare + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 80fj60 + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/80fj60/carvariations.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/80fj60/carvariations.meta new file mode 100644 index 000000000..cee83ca70 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/80fj60/carvariations.meta @@ -0,0 +1,183 @@ + + + + + + + + + + + + + + + + 80fj60 + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 0_default_modkit + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/80fj60/dlctext.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/80fj60/dlctext.meta new file mode 100644 index 000000000..22bb4c390 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/80fj60/dlctext.meta @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/80fj60/handling.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/80fj60/handling.meta new file mode 100644 index 000000000..3428b9446 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/80fj60/handling.meta @@ -0,0 +1,67 @@ + + + + + + 80FJ60 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 440010 + 0 + 0 + AVERAGE + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/80fj60/vehicles.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/80fj60/vehicles.meta new file mode 100644 index 000000000..56c680601 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/80fj60/vehicles.meta @@ -0,0 +1,134 @@ + + + vehshare + + + + 80fj60 + 80fj60 + 80FJ60 + 80LCFJ60 + TOYOTA + null + null + null + null + + null + caracara2 + LAYOUT_STANDARD + GRESLEY_COVER_OFFSET_INFO + EXPLOSION_INFO_DEFAULT + + DEFAULT_FOLLOW_VEHICLE_CAMERA + DEFAULT_THIRD_PERSON_VEHICLE_AIM_CAMERA + VEHICLE_BONNET_CAMERA_MID_HIGH + DEFAULT_POV_CAMERA + + + + + + + + + + + + + + + + + + + + + + + + + + + + VFXVEHICLEINFO_CAR_GENERIC + + + + + + + + + + + + + + + + + + + + + + 15.000000 + 30.000000 + 70.000000 + 140.000000 + 500.000000 + 500.000000 + + + + + + + + + + + SWANKNESS_3 + + FLAG_HAS_LIVERY FLAG_EXTRAS_ALL FLAG_IS_OFFROAD_VEHICLE FLAG_IS_BULKY + VEHICLE_TYPE_CAR + VPT_BACK_PLATES + VDT_DUKES + VC_SUV + VWT_SUV + + + + + + + + + + + + WHEEL_FRONT_RIGHT_CAMERA + WHEEL_FRONT_LEFT_CAMERA + WHEEL_REAR_RIGHT_CAMERA + WHEEL_REAR_LEFT_CAMERA + + Truck + + + + + STD_DILETTANTE_FRONT_LEFT + STD_DILETTANTE_FRONT_RIGHT + STD_BALLER_REAR_LEFT + STD_BALLER_REAR_RIGHT + + + + + + vehicles_bob_brown_interior + 80fj60 + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/esca/vehicles.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/esca/vehicles.meta deleted file mode 100644 index e7ca83b12..000000000 --- a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/esca/vehicles.meta +++ /dev/null @@ -1,130 +0,0 @@ - - - vehshare - - - - - esca - esca - esca - esca - - null - null - null - null - - null - baller3 - LAYOUT_STD_HIGHWINDOW - CAVALCADE_COVER_OFFSET_INFO - EXPLOSION_INFO_DEFAULT - - DEFAULT_FOLLOW_VEHICLE_CAMERA - DEFAULT_THIRD_PERSON_VEHICLE_AIM_CAMERA - VEHICLE_BONNET_CAMERA_MID_NEAR - DEFAULT_POV_CAMERA_LOOKAROUND - - - - - - - - - - - - - - - - - - VFXVEHICLEINFO_CAR_GENERIC - - - - - - - - - - - - - - - - - - - - - - 15.000000 - 30.000000 - 70.000000 - 140.000000 - 500.000000 - 500.000000 - - - - - - - - - - - SWANKNESS_3 - - FLAG_RICH_CAR FLAG_AVERAGE_CAR FLAG_IS_OFFROAD_VEHICLE FLAG_IS_BULKY FLAG_HAS_INTERIOR_EXTRAS - VEHICLE_TYPE_CAR - VPT_BACK_PLATES - VDT_BANSHEE - VC_SUV - VWT_SUV - - boattrailer - trailersmall - - - - - - - - - - - - WHEEL_FRONT_RIGHT_CAMERA - WHEEL_FRONT_LEFT_CAMERA - WHEEL_REAR_RIGHT_CAMERA - WHEEL_REAR_LEFT_CAMERA - - - - - - - RANGER_CAVALCADE_FRONT_LEFT - RANGER_FRONT_RIGHT - RANGER_DUBSTA_REAR_LEFT - RANGER_DUBSTA_REAR_RIGHT - - - - - - - vehicles_banshee_interior - esca - - - - \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/foxlight/carvariations.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/foxlight/carvariations.meta deleted file mode 100644 index d9a706cb5..000000000 --- a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/foxlight/carvariations.meta +++ /dev/null @@ -1,76 +0,0 @@ - - - - - foxlight - - - - 4 - 3 - 4 - 4 - 4 - 4 - - - - - - - - - - - - - - - 4 - 3 - 4 - 4 - 4 - 4 - - - - - - - - - - - - - - - 0_default_modkit - - - - - - Standard White - - - - White Plate 2 - - - - Blue Plate - - - - Yellow Plate - - - - - - - - - \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/foxlight/handling.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/foxlight/handling.meta deleted file mode 100644 index ba218d79f..000000000 --- a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/foxlight/handling.meta +++ /dev/null @@ -1,62 +0,0 @@ - - - - - foxlight - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 240010 - 800000 - 0 - AVERAGE - - - - - - - - \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/jeep20/carcols.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/jeep20/carcols.meta new file mode 100644 index 000000000..963cf0dce --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/jeep20/carcols.meta @@ -0,0 +1,633 @@ + + + + + + + + + + + + + + 135_jeep20_modkit + + MKT_SPECIAL + + + + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_BRAKES + + + + + + + VMT_BRAKES + + + + + + + VMT_BRAKES + + + + + + + VMT_GEARBOX + + + + + + + VMT_GEARBOX + + + + + + + VMT_GEARBOX + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + HORN_TRUCK + + + + VMT_HORN + + + HORN_COP + + + + VMT_HORN + + + HORN_CLOWN + + + + VMT_HORN + + + HORN_MUSICAL_1 + + + + VMT_HORN + + + HORN_MUSICAL_2 + + + + VMT_HORN + + + HORN_MUSICAL_3 + + + + VMT_HORN + + + HORN_MUSICAL_4 + + + + VMT_HORN + + + HORN_MUSICAL_5 + + + + VMT_HORN + + + HORN_SAD_TROMBONE + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_1 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_2 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_3 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_4 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_5 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_6 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_7 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_C0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_D0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_E0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_F0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_G0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_A0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_B0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_C1 + + + + VMT_HORN + + + HIPSTER_HORN_1 + + + + VMT_HORN + + + HIPSTER_HORN_2 + + + + VMT_HORN + + + HIPSTER_HORN_3 + + + + VMT_HORN + + + HIPSTER_HORN_4 + + + + VMT_HORN + + + INDEP_HORN_1 + + + + VMT_HORN + + + INDEP_HORN_2 + + + + VMT_HORN + + + INDEP_HORN_3 + + + + VMT_HORN + + + INDEP_HORN_4 + + + + VMT_HORN + + + LUXE_HORN_1 + + + + VMT_HORN + + + LUXE_HORN_2 + + + + VMT_HORN + + + LUXE_HORN_3 + + + + VMT_HORN + + + + LUXORY_HORN_1 + + + + VMT_HORN + + + + LUXURY_HORN_2 + + + + VMT_HORN + + + + LUXURY_HORN_3 + + + + VMT_HORN + + + ORGAN_HORN_LOOP_01 + + + + VMT_HORN + + + + ORGAN_HORN_LOOP_01_PREVIEW + + + + VMT_HORN + + + ORGAN_HORN_LOOP_02 + + + + VMT_HORN + + + + ORGAN_HORN_LOOP_02_PREVIEW + + + + VMT_HORN + + + LOWRIDER_HORN_1 + + + + VMT_HORN + + + + LOWRIDER_HORN_1_PREVIEW + + + + VMT_HORN + + + LOWRIDER_HORN_2 + + + + VMT_HORN + + + + LOWRIDER_HORN_2_PREVIEW + + + + VMT_HORN + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + VehicleLight_car_oldsquare + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + jeep20 + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/jeep20/carvariations.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/jeep20/carvariations.meta new file mode 100644 index 000000000..2aa3f2e14 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/jeep20/carvariations.meta @@ -0,0 +1,183 @@ + + + + + + + + + + + + + + + + jeep20 + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 0_default_modkit + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/jeep20/dlctext.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/jeep20/dlctext.meta new file mode 100644 index 000000000..22bb4c390 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/jeep20/dlctext.meta @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/jeep20/handling.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/jeep20/handling.meta new file mode 100644 index 000000000..5f4c27332 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/jeep20/handling.meta @@ -0,0 +1,67 @@ + + + + + + JEEP20 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 440010 + 0 + 0 + AVERAGE + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/jeep20/vehicles.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/jeep20/vehicles.meta new file mode 100644 index 000000000..324812fb0 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/jeep20/vehicles.meta @@ -0,0 +1,134 @@ + + + vehshare + + + + jeep20 + jeep20 + JEEP20 + SAHARA + JEEP + null + null + null + null + + null + MESA + LAYOUT_4X4 + MESA_COVER_OFFSET_INFO + EXPLOSION_INFO_DEFAULT + + FOLLOW_JEEP_CAMERA + JEEP_AIM_CAMERA + VEHICLE_BONNET_CAMERA_MID_NEAR + DEFAULT_POV_CAMERA_LOOKAROUND_MID + + + + + + + + + + + + + + + + + + + + + + + + + + + + VFXVEHICLEINFO_CAR_OFFROAD + + + + + + + + + + + + + + + + + + + + + + 15.000000 + 30.000000 + 70.000000 + 140.000000 + 500.000000 + 500.000000 + + + + + + + + + + + SWANKNESS_1 + + FLAG_EXTRAS_STRONG FLAG_AVERAGE_CAR FLAG_IS_OFFROAD_VEHICLE FLAG_IS_BULKY FLAG_EXTRAS_ALL + VEHICLE_TYPE_CAR + VPT_FRONT_AND_BACK_PLATES + VC_SUV + VDT_DUKES + VWT_OFFROAD + + + + + + + + + + + + WHEEL_FRONT_RIGHT_CAMERA + WHEEL_FRONT_LEFT_CAMERA + WHEEL_REAR_RIGHT_CAMERA + WHEEL_REAR_LEFT_CAMERA + + Truck + + + + + RANGER_MESA_FRONT_LEFT + VAN_SPEEDO_FRONT_RIGHT + RANGER_CRUSADER_REAR_LEFT + RANGER_CRUSADER_REAR_RIGHT + + + + + + vehicles_bob_brown_interior + jeep20 + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/rav4hyb/carcols.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/rav4hyb/carcols.meta new file mode 100644 index 000000000..d7ef03e78 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/rav4hyb/carcols.meta @@ -0,0 +1,633 @@ + + + + + + + + + + + + + + 135_rav4hyb_modkit + + MKT_SPECIAL + + + + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_BRAKES + + + + + + + VMT_BRAKES + + + + + + + VMT_BRAKES + + + + + + + VMT_GEARBOX + + + + + + + VMT_GEARBOX + + + + + + + VMT_GEARBOX + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + HORN_TRUCK + + + + VMT_HORN + + + HORN_COP + + + + VMT_HORN + + + HORN_CLOWN + + + + VMT_HORN + + + HORN_MUSICAL_1 + + + + VMT_HORN + + + HORN_MUSICAL_2 + + + + VMT_HORN + + + HORN_MUSICAL_3 + + + + VMT_HORN + + + HORN_MUSICAL_4 + + + + VMT_HORN + + + HORN_MUSICAL_5 + + + + VMT_HORN + + + HORN_SAD_TROMBONE + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_1 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_2 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_3 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_4 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_5 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_6 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_7 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_C0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_D0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_E0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_F0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_G0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_A0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_B0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_C1 + + + + VMT_HORN + + + HIPSTER_HORN_1 + + + + VMT_HORN + + + HIPSTER_HORN_2 + + + + VMT_HORN + + + HIPSTER_HORN_3 + + + + VMT_HORN + + + HIPSTER_HORN_4 + + + + VMT_HORN + + + INDEP_HORN_1 + + + + VMT_HORN + + + INDEP_HORN_2 + + + + VMT_HORN + + + INDEP_HORN_3 + + + + VMT_HORN + + + INDEP_HORN_4 + + + + VMT_HORN + + + LUXE_HORN_1 + + + + VMT_HORN + + + LUXE_HORN_2 + + + + VMT_HORN + + + LUXE_HORN_3 + + + + VMT_HORN + + + + LUXORY_HORN_1 + + + + VMT_HORN + + + + LUXURY_HORN_2 + + + + VMT_HORN + + + + LUXURY_HORN_3 + + + + VMT_HORN + + + ORGAN_HORN_LOOP_01 + + + + VMT_HORN + + + + ORGAN_HORN_LOOP_01_PREVIEW + + + + VMT_HORN + + + ORGAN_HORN_LOOP_02 + + + + VMT_HORN + + + + ORGAN_HORN_LOOP_02_PREVIEW + + + + VMT_HORN + + + LOWRIDER_HORN_1 + + + + VMT_HORN + + + + LOWRIDER_HORN_1_PREVIEW + + + + VMT_HORN + + + LOWRIDER_HORN_2 + + + + VMT_HORN + + + + LOWRIDER_HORN_2_PREVIEW + + + + VMT_HORN + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + VehicleLight_car_oldsquare + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + rav4hyb + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/rav4hyb/carvariations.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/rav4hyb/carvariations.meta new file mode 100644 index 000000000..bdd1b880d --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/rav4hyb/carvariations.meta @@ -0,0 +1,191 @@ + + + + + + + + + + + + + + + + rav4hyb + + + + 134 + 134 + 0 + 0 + 15 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + 15 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + 15 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + 15 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + 15 + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + 15 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + 15 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + 15 + + + + + + + + + + + + + + + 0_default_modkit + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/rav4hyb/dlctext.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/rav4hyb/dlctext.meta new file mode 100644 index 000000000..22bb4c390 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/rav4hyb/dlctext.meta @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/rav4hyb/handling.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/rav4hyb/handling.meta new file mode 100644 index 000000000..fe464a529 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/rav4hyb/handling.meta @@ -0,0 +1,67 @@ + + + + + + RAV4HYB + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 440010 + 0 + 0 + AVERAGE + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/rav4hyb/vehicles.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/rav4hyb/vehicles.meta new file mode 100644 index 000000000..9e324040a --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/rav4hyb/vehicles.meta @@ -0,0 +1,134 @@ + + + vehshare + + + + rav4hyb + rav4hyb + RAV4HYB + Toyota + RAV4 + null + null + null + null + + null + DILETTANTE + LAYOUT_STANDARD + GRESLEY_COVER_OFFSET_INFO + EXPLOSION_INFO_DEFAULT + + DEFAULT_FOLLOW_VEHICLE_CAMERA + DEFAULT_THIRD_PERSON_VEHICLE_AIM_CAMERA + VEHICLE_BONNET_CAMERA_MID_HIGH + DEFAULT_POV_CAMERA + + + + + + + + + + + + + + + + + + + + + + + + + + + + VFXVEHICLEINFO_CAR_GENERIC + + + + + + + + + + + + + + + + + + + + + + 15.000000 + 30.000000 + 70.000000 + 140.000000 + 500.000000 + 500.000000 + + + + + + + + + + + SWANKNESS_3 + + FLAG_HAS_LIVERY FLAG_IS_BULKY FLAG_PARKING_SENSORS FLAG_IS_ELECTRIC + VEHICLE_TYPE_CAR + VPT_BACK_PLATES + VDT_RACE + VC_SUV + VWT_SUV + + + + + + + + + + + + WHEEL_FRONT_RIGHT_CAMERA + WHEEL_FRONT_LEFT_CAMERA + WHEEL_REAR_RIGHT_CAMERA + WHEEL_REAR_LEFT_CAMERA + + Truck + + + + + STD_DILETTANTE_FRONT_LEFT + STD_DILETTANTE_FRONT_RIGHT + STD_BALLER_REAR_LEFT + STD_BALLER_REAR_RIGHT + + + + + + vehicles_bob_brown_interior + rav4hyb + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/rover130v8/carcols.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/rover130v8/carcols.meta new file mode 100644 index 000000000..4e96f4f2d --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/rover130v8/carcols.meta @@ -0,0 +1,633 @@ + + + + + + + + + + + + + + 135_rover130v8_modkit + + MKT_SPECIAL + + + + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_BRAKES + + + + + + + VMT_BRAKES + + + + + + + VMT_BRAKES + + + + + + + VMT_GEARBOX + + + + + + + VMT_GEARBOX + + + + + + + VMT_GEARBOX + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + HORN_TRUCK + + + + VMT_HORN + + + HORN_COP + + + + VMT_HORN + + + HORN_CLOWN + + + + VMT_HORN + + + HORN_MUSICAL_1 + + + + VMT_HORN + + + HORN_MUSICAL_2 + + + + VMT_HORN + + + HORN_MUSICAL_3 + + + + VMT_HORN + + + HORN_MUSICAL_4 + + + + VMT_HORN + + + HORN_MUSICAL_5 + + + + VMT_HORN + + + HORN_SAD_TROMBONE + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_1 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_2 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_3 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_4 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_5 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_6 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_7 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_C0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_D0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_E0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_F0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_G0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_A0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_B0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_C1 + + + + VMT_HORN + + + HIPSTER_HORN_1 + + + + VMT_HORN + + + HIPSTER_HORN_2 + + + + VMT_HORN + + + HIPSTER_HORN_3 + + + + VMT_HORN + + + HIPSTER_HORN_4 + + + + VMT_HORN + + + INDEP_HORN_1 + + + + VMT_HORN + + + INDEP_HORN_2 + + + + VMT_HORN + + + INDEP_HORN_3 + + + + VMT_HORN + + + INDEP_HORN_4 + + + + VMT_HORN + + + LUXE_HORN_1 + + + + VMT_HORN + + + LUXE_HORN_2 + + + + VMT_HORN + + + LUXE_HORN_3 + + + + VMT_HORN + + + + LUXORY_HORN_1 + + + + VMT_HORN + + + + LUXURY_HORN_2 + + + + VMT_HORN + + + + LUXURY_HORN_3 + + + + VMT_HORN + + + ORGAN_HORN_LOOP_01 + + + + VMT_HORN + + + + ORGAN_HORN_LOOP_01_PREVIEW + + + + VMT_HORN + + + ORGAN_HORN_LOOP_02 + + + + VMT_HORN + + + + ORGAN_HORN_LOOP_02_PREVIEW + + + + VMT_HORN + + + LOWRIDER_HORN_1 + + + + VMT_HORN + + + + LOWRIDER_HORN_1_PREVIEW + + + + VMT_HORN + + + LOWRIDER_HORN_2 + + + + VMT_HORN + + + + LOWRIDER_HORN_2_PREVIEW + + + + VMT_HORN + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + VehicleLight_car_oldsquare + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + rover130v8 + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/rover130v8/carvariations.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/rover130v8/carvariations.meta new file mode 100644 index 000000000..224bea8be --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/rover130v8/carvariations.meta @@ -0,0 +1,191 @@ + + + + + + + + + + + + + + + + rover130v8 + + + + 2 + 2 + 0 + 0 + 5 + + + + + + + + + + + + + + + 2 + 2 + 0 + 0 + 5 + + + + + + + + + + + + + + + 2 + 2 + 0 + 0 + 5 + + + + + + + + + + + + + + + 2 + 2 + 0 + 0 + 5 + + + + + + + + + + + + + + + 2 + 2 + 0 + 0 + 5 + + + + + + + + + + + + + + 2 + 2 + 0 + 0 + 5 + + + + + + + + + + + + + + + 2 + 2 + 0 + 0 + 5 + + + + + + + + + + + + + + + 2 + 2 + 0 + 0 + 5 + + + + + + + + + + + + + + + 0_default_modkit + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/rover130v8/dlctext.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/rover130v8/dlctext.meta new file mode 100644 index 000000000..22bb4c390 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/rover130v8/dlctext.meta @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/rover130v8/handling.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/rover130v8/handling.meta new file mode 100644 index 000000000..648385f08 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/rover130v8/handling.meta @@ -0,0 +1,67 @@ + + + + + + ROVER130V8 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 240010 + 800008 + 0 + AVERAGE + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/rover130v8/vehicles.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/rover130v8/vehicles.meta new file mode 100644 index 000000000..d7cf29bf6 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/rover130v8/vehicles.meta @@ -0,0 +1,138 @@ + + + vehshare + + + + rover130v8 + rover130v8 + ROVER130V8 + Defender + Landrover + null + null + null + null + + null + BLADE + LAYOUT_STANDARD + GRESLEY_COVER_OFFSET_INFO + EXPLOSION_INFO_DEFAULT + + DEFAULT_FOLLOW_VEHICLE_CAMERA + DEFAULT_THIRD_PERSON_VEHICLE_AIM_CAMERA + VEHICLE_BONNET_CAMERA_MID_HIGH + DEFAULT_POV_CAMERA + + + + + + + + + + + + + + + + + + + + + + + + + + + + VFXVEHICLEINFO_CAR_GENERIC + + + + + + + + + + + + + + + + + + + + + + 15.000000 + 30.000000 + 70.000000 + 140.000000 + 500.000000 + 500.000000 + + + + + + + + + + + SWANKNESS_3 + + FLAG_HAS_LIVERY FLAG_IS_BULKY FLAG_PARKING_SENSORS + VEHICLE_TYPE_CAR + VPT_BACK_PLATES + VDT_RACE + VC_SUV + VWT_SUV + + + + + extra_1 extra_2 + + + + + + + extra_1 extra_2 + + + + WHEEL_FRONT_RIGHT_CAMERA + WHEEL_FRONT_LEFT_CAMERA + WHEEL_REAR_RIGHT_CAMERA + WHEEL_REAR_LEFT_CAMERA + + Truck + + + + + STD_DILETTANTE_FRONT_LEFT + STD_DILETTANTE_FRONT_RIGHT + STD_BALLER_REAR_LEFT + STD_BALLER_REAR_RIGHT + + + + + + vehicles_bob_brown_interior + rover130v8 + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/tahoe/carvariations.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/tahoe/carvariations.meta deleted file mode 100644 index c458b6efb..000000000 --- a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/tahoe/carvariations.meta +++ /dev/null @@ -1,304 +0,0 @@ - - - - - - tahoe - - - - 0 - 0 - 0 - 156 - - - - - - - - - - - - - - - 1 - 1 - 4 - 156 - - - - - - - - - - - - - - - 2 - 2 - 7 - 156 - - - - - - - - - - - - - - - 3 - 3 - 23 - 156 - - - - - - - - - - - - - - - 4 - 4 - 111 - 156 - - - - - - - - - - - - - - - 111 - 111 - 111 - 156 - - - - - - - - - - - - - - - 5 - 5 - 111 - 156 - - - - - - - - - - - - - - - 73 - 73 - 74 - 156 - - - - - - - - - - - - - - - 34 - 34 - 44 - 156 - - - - - - - - - - - - - - - 31 - 31 - 36 - 156 - - - - - - - - - - - - - - - 71 - 71 - 74 - 156 - - - - - - - - - - - - - - - 66 - 66 - 67 - 156 - - - - - - - - - - - - - - - 5 - 5 - 111 - 156 - - - - - - - - - - - - - - - 11 - 11 - 6 - 156 - - - - - - - - - - - - - - - 111 - 111 - 0 - 156 - - - - - - - - - - - - - - - 0_default_modkit - - - - - - Standard White - - - - White Plate 2 - - - - Yellow Plate - - - - - - - - - - \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/tahoe/handling.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/tahoe/handling.meta deleted file mode 100644 index 20ff9ca85..000000000 --- a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/tahoe/handling.meta +++ /dev/null @@ -1,68 +0,0 @@ - - - - - - tahoe - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 440010 - 0 - 0 - AVERAGE - - - - - - - - - - - - - diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/tahoe/vehiclelayouts.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/tahoe/vehiclelayouts.meta deleted file mode 100644 index 5d36803b6..000000000 --- a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/tahoe/vehiclelayouts.meta +++ /dev/null @@ -1,99 +0,0 @@ - - - - - - DOMINATOR_COVER_OFFSET_INFO - - - - - - - - - - - STD_DOMINATOR_FRONT_LEFT - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - STD_DOMINATOR_FRONT_RIGHT - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/tahoe2/handling.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/tahoe2/handling.meta deleted file mode 100644 index 6e8777484..000000000 --- a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/tahoe2/handling.meta +++ /dev/null @@ -1,72 +0,0 @@ - - - - - - - tahoe2 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 220010 - 0 - 0 - AVERAGE - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/teslax/carcols.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/teslax/carcols.meta deleted file mode 100644 index 898326e7b..000000000 --- a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/teslax/carcols.meta +++ /dev/null @@ -1,141 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - VehicleLight_car_oldsquare - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - teslax - - - \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/teslax/carvariations.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/teslax/carvariations.meta deleted file mode 100644 index 09bab1d48..000000000 --- a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/teslax/carvariations.meta +++ /dev/null @@ -1,43 +0,0 @@ - - - - - teslax - - - - 36 - 0 - 38 - 0 - - - - - - - - - - - - - - - 0_default_modkit - - - - - - Yellow Plate - - - - - - - - - - \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/teslax/clip_sets.xml b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/teslax/clip_sets.xml deleted file mode 100644 index 4aa692142..000000000 --- a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/teslax/clip_sets.xml +++ /dev/null @@ -1,61 +0,0 @@ - - - - - clipset@veh@low@prototipo@front_ds@enter_exit - anim@veh@low@gullwing@front_ds@enter_exit - - - - - - - - - - clipset@veh@low@prototipo@front_ps@enter_exit - anim@veh@low@gullwing@front_ps@enter_exit - - - - - - - - - - - ANIM@MP_HELMETS@ON_FOOT - - - APF_ISBLENDAUTOREMOVE - AP_MEDIUM - BONEMASK_ARMONLY_L - - - APF_ISBLENDAUTOREMOVE - AP_MEDIUM - BONEMASK_ARMONLY_L - - - APF_ISBLENDAUTOREMOVE - AP_MEDIUM - BONEMASK_HEAD_NECK_AND_L_ARM - - - APF_ISBLENDAUTOREMOVE - AP_MEDIUM - BONEMASK_HEAD_NECK_AND_L_ARM - - - - - - - - SP_STREAMING - MG_PlayerMovement - SP_Low - - - diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/teslax/handling.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/teslax/handling.meta deleted file mode 100644 index db4531dc0..000000000 --- a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/teslax/handling.meta +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - teslax - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 440010 - 0 - 0 - AVERAGE - - - - - - - - - - - - diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/teslax/vehiclelayouts.meta b/resources/[EGRP-CarPacks]/EGRP-SUVs/data/teslax/vehiclelayouts.meta deleted file mode 100644 index 36694df79..000000000 --- a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/teslax/vehiclelayouts.meta +++ /dev/null @@ -1,2426 +0,0 @@ - - - - - - - ENTRY_CLIPSET_MAP_M600_STD_FRONT_RIGHT - - - clipset@veh@std@ps@enter_exit - EntryVarClipSet - - - - - clipset@veh@break_in@0h@p_m_zero@ - EntryVarClipSet - CF_BreakInAnims - - - - clipset@veh@break_in@0h@p_m_one@ - EntryVarClipSet - CF_BreakInAnims - - - - clipset@veh@break_in@0h@p_m_two@ - EntryVarClipSet - CF_BreakInAnims - - - - clipset@veh@jacking@0h@p_m_zero@ - EntryVarClipSet - CF_JackingAnims - - - - clipset@veh@jacking@0h@p_m_one@ - EntryVarClipSet - CF_JackingAnims - - - - clipset@veh@jacking@0h@p_m_two@ - EntryVarClipSet - CF_JackingAnims - - - - - - ENTRY_CLIPSET_MAP_M600_STD_FRONT_LEFT - - - clipset@veh@std@rds@enter_exit - EntryVarClipSet - - - - - clipset@veh@break_in@0h@p_m_zero@ - EntryVarClipSet - CF_BreakInAnims - - - - clipset@veh@break_in@0h@p_m_one@ - EntryVarClipSet - CF_BreakInAnims - - - - clipset@veh@break_in@0h@p_m_two@ - EntryVarClipSet - CF_BreakInAnims - - - - clipset@veh@jacking@0h@p_m_zero@ - EntryVarClipSet - CF_JackingAnims - IF_JackedPedExitsWillingly - - - clipset@veh@jacking@0h@p_m_one@ - EntryVarClipSet - CF_JackingAnims - - - - clipset@veh@jacking@0h@p_m_two@ - EntryVarClipSet - CF_JackingAnims - - - - - - EXIT_CLIPSET_MAP_M600_STD_FRONT_RIGHT - - - clipset@veh@std@ps@enter_exit - ExitVarClipSet - - - - - - - EXIT_CLIPSET_MAP_M600_STD_FRONT_LEFT - - - clipset@veh@std@rds@enter_exit - ExitVarClipSet - - - - - - - ENTRY_CLIPSET_MAP_LOW_LE7B_FRONT_LEFT - - - clipset@veh@low@le7b@front_ds@enter_exit - EntryVarClipSet - - - - - clipset@veh@break_in@0h@p_m_zero@ - EntryVarClipSet - CF_BreakInAnims - IF_ScriptFlagOnly - - - clipset@veh@break_in@0h@p_m_one@ - EntryVarClipSet - CF_BreakInAnims - IF_ScriptFlagOnly - - - clipset@veh@break_in@0h@p_m_two@ - EntryVarClipSet - CF_BreakInAnims - IF_ScriptFlagOnly - - - - - EXIT_CLIPSET_MAP_LOW_LE7B_FRONT_LEFT - - - clipset@veh@low@le7b@front_ds@enter_exit - ExitVarClipSet - - - - - - - ENTRY_CLIPSET_MAP_LOW_LE7B_FRONT_RIGHT - - - clipset@veh@low@le7b@front_ps@enter_exit - EntryVarClipSet - - - - - clipset@veh@break_in@0h@p_m_zero@ - EntryVarClipSet - CF_BreakInAnims - IF_ScriptFlagOnly - - - clipset@veh@break_in@0h@p_m_one@ - EntryVarClipSet - CF_BreakInAnims - IF_ScriptFlagOnly - - - clipset@veh@break_in@0h@p_m_two@ - EntryVarClipSet - CF_BreakInAnims - IF_ScriptFlagOnly - - - - - EXIT_CLIPSET_MAP_LOW_LE7B_FRONT_RIGHT - - - clipset@veh@low@le7b@front_ps@enter_exit - ExitVarClipSet - - - - - - - INSIDE_CLIPSET_MAP_STD_BRIOSO_FRONT_LEFT - - - anim@veh@std@panto@ds@base - InsideVarClipSet - - - - - - - - - BF400_COVER_OFFSET_INFO - - - - - - - - BRIOSO_COVER_OFFSET_INFO - - - - - - - - CLIFFHANGER_COVER_OFFSET_INFO - - - - - - - - LE7B_COVER_OFFSET_INFO - - - - - - - - LYNX_COVER_OFFSET_INFO - - - - - - - Front - - - - - - - - Back - - - - - - - - - - OMNIS_COVER_OFFSET_INFO - - - - - - - - RALLYTRUCK_COVER_OFFSET_INFO - - - - - - - Front - - - - - - - - MIDDLE - - - - - - - - REARWHEELS - - - - - - - - REAR - - - - - - - - - - SHEAVA_COVER_OFFSET_INFO - - - - - - - - TAMPA2_COVER_OFFSET_INFO - - - - - - - Front - - - - - - - - MIDDLE - - - - - - - - REARWHEELS - - - - - - - - REAR - - - - - - - - - - TROPHY_COVER_OFFSET_INFO - - - - - - - FRONT_BUMPER - - - - - - - - WHEELS_FRONT - - - - - - - - MIDDLE - - - - - - - - WHEELS_REAR - - - - - - - - REAR_BUMPER - - - - - - - - - - TROPHY2_COVER_OFFSET_INFO - - - - - - - Front - - - - - - - - MIDDLE - - - - - - - - REAR - - - - - - - - BACKTYRES - - - - - - - - - - TROPOS_COVER_OFFSET_INFO - - - - - - - Front - - - - - - - - Back - - - - - - - - - - TYRUS_COVER_OFFSET_INFO - - - - - - - - M600_COVER_OFFSET_INFO - - - - - - - - - - - - - - - M600_LOW_DB_ANIM_INFO_UNARMED_PS - - drive_by@std_rds_unarmed - driveby@first_person@passenger_right_handed@unarmed - - STD_CAR_DRIVEBY - - - M600_LOW_DB_ANIM_INFO_ONE_HANDED_PS - - drive_by@std_rds - driveby@first_person@passenger_right_handed@1h - - - - WEAPON_MICROSMG - - driveby@first_person@passenger_right_handed@smg - - - STD_CAR_DRIVEBY - - - M600_LOW_DB_ANIM_INFO_THROW_PS - - drive_by@std_rds_grenades - driveby@first_person@driver@throw - - MOUNTED_THROW - - - M600_LOW_DB_ANIM_INFO_UNARMED_DS - - drive_by@low_ps_unarmed - driveby@first_person@driver@unarmed - - STD_CAR_DRIVEBY - - - M600_LOW_DB_ANIM_INFO_ONE_HANDED_DS - - drive_by@low_ps - driveby@first_person@passenger_left_handed@1h - - - - WEAPON_MICROSMG - - driveby@first_person@passenger_right_handed@smg - - - STD_CAR_DRIVEBY - - - M600_LOW_DB_ANIM_INFO_THROW_DS - - drive_by@low_ps_grenades - driveby@first_person@passenger_right_handed@throw - - MOUNTED_THROW - - - - - DRIVEBY_M600_LOW_TIGHT_FRONT_RIGHT - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - UseMountedProjectileTask LeftHandedUnarmedFirstPersonAnims - - - DRIVEBY_M600_LOW_TIGHT_FRONT_LEFT - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - UseMountedProjectileTask LeftHandedProjctiles LeftHandedUnarmedFirstPersonAnims - - - - - SEAT_M600_FRONT_RIGHT - seat_dside_f - SEAT_M600_FRONT_LEFT - - TASK_DRIVE_WANDER - IsFrontSeat - - - - SEAT_M600_FRONT_LEFT - seat_pside_f - SEAT_M600_FRONT_RIGHT - - TASK_DRIVE_WANDER - IsFrontSeat - - - - - - SEAT_ANIM_M600_FRONT_LEFT - - - clipset@veh@low@ps@idle_panic - - clipset@veh@low@ps@idle_duck - LOW_CAR_FRONT_PS_IDLE - IN_CAR_LOW - VEHICLE_DEFAULT - UseStandardInVehicleAnims UseCloseDoorBlendAnims HasPanicAnims PreventShuffleJack - - LOW - ANIM_GROUP_GESTURE_M_CAR_LOW_PS - ANIM_GROUP_GESTURE_F_CAR_LOW_PS - - - SEAT_ANIM_M600_FRONT_RIGHT - - - clipset@veh@low@ds@idle_panic - clipset@veh@low@ds@idle_agitated - clipset@veh@low@ds@idle_duck - LOW_CAR_FRONT_DS_IDLE - IN_CAR_LOW - VEHICLE_DEFAULT - UseStandardInVehicleAnims UseCloseDoorBlendAnims WeaponAttachedToLeftHand - - LOW - ANIM_GROUP_GESTURE_M_CAR_LOW_DS - ANIM_GROUP_GESTURE_F_CAR_LOW_DS - - - SEAT_ANIM_STD_BRIOSO_FRONT_LEFT - - - anim@veh@std@panto@ds@idle_panic - clipset@veh@std@ds@idle_agitated - clipset@veh@std@ds@idle_duck - - - - STD_CAR_FRONT_DS_IDLE - - VEHICLE_DEFAULT - UseStandardInVehicleAnims UseCloseDoorBlendAnims - - STANDARD - ANIM_GROUP_GESTURE_M_CAR_STD_DS - ANIM_GROUP_GESTURE_F_CAR_STD_DS - - - - - - SEAT_ANIM_STD_OMNIS_FRONT_LEFT - - - clipset@veh@std@ds@idle_panic - clipset@veh@std@ds@idle_agitated - clipset@veh@std@ds@idle_duck - - - - STD_CAR_FRONT_DS_IDLE - - VEHICLE_DEFAULT - UseStandardInVehicleAnims UseCloseDoorBlendAnims - - STANDARD - ANIM_GROUP_GESTURE_M_CAR_STD_DS - ANIM_GROUP_GESTURE_F_CAR_STD_DS - - - - - - SEAT_ANIM_STD_OMNIS_FRONT_RIGHT - - - clipset@veh@std@ps@idle_panic - - clipset@veh@std@ps@idle_duck - - - - STD_CAR_FRONT_PS_IDLE - - VEHICLE_DEFAULT - UseStandardInVehicleAnims HasPanicAnims UseCloseDoorBlendAnims PreventShuffleJack - - STANDARD - ANIM_GROUP_GESTURE_M_CAR_STD_PS - ANIM_GROUP_GESTURE_F_CAR_STD_PS - - - - - - - - ENTRY_POINT_M600_FRONT_RIGHT - door_dside_f - - handle_dside_f - FRONT_RIGHT - SIDE_RIGHT - - - - - BlockJackReactionUntilJackerIsReady - - SIDE_LEFT - - - - ENTRY_POINT_M600_FRONT_LEFT - door_pside_f - - handle_pside_f - FRONT_LEFT - SIDE_LEFT - - - - - BlockJackReactionUntilJackerIsReady - - SIDE_RIGHT - - - - - - ENTRY_POINT_ANIM_STD_M600_FRONT_LEFT - - - - STD_Locked_PS - STD_Force_Entry_PS - std_perp_ps - std_victim_ps - clipset@veh@std@ps@female@enter_exit - ENTER_VEHICLE_STD - - - - - - JackIncludesGetIn UsesNoDoorTransitionForExit UseOpenDoorBlendAnims FixUpMoverToEntryPointOnExit UseGetUpAfterJack JackVariationsIncludeGetIn HasCombatEntry - - - - ENTRY_POINT_ANIM_STD_M600_FRONT_RIGHT - - - - STD_Locked_DS - STD_Force_Entry_DS - std_perp_ds - std_victim_ds - clipset@veh@std@ds@female@enter_exit - ENTER_VEHICLE_STD - - - - - - JackIncludesGetIn UsesNoDoorTransitionForExit UseOpenDoorBlendAnims FixUpMoverToEntryPointOnExit UseGetUpAfterJack JackVariationsIncludeGetIn HasCombatEntry - - LOWCAR - - - ENTRY_POINT_ANIM_LOW_LE7B_FRONT_LEFT - - - - LOW_Locked_DS - LOW_Force_Entry_DS - - - - ENTER_VEHICLE_STD - - - - - - JackIncludesGetIn UsesNoDoorTransitionForExit UseOpenDoorBlendAnims UseGetUpAfterJack DeadJackIncludesGetIn - - - - - ENTRY_POINT_ANIM_LOW_LE7B_FRONT_RIGHT - - - - LOW_Locked_PS - LOW_Force_Entry_PS - - - - ENTER_VEHICLE_STD - - - - - - JackIncludesGetIn UsesNoDoorTransitionForExit UseOpenDoorBlendAnims UseGetUpAfterJack DeadJackIncludesGetIn - - - - - - - - LAYOUT_STD_M600 - - - - - - - - - - - - - - - - - - - - - StreamAnims UseDoorOscillation UseLeanSteerAnims UseSteeringWheelIk UseFinerAlignTolerance - - - busted_vehicle_std - - - - - - - clipset@veh@std@ds@idle_a - clipset@veh@std@ds@idle_b - clipset@veh@std@ds@idle_c - clipset@veh@std@ds@idle_d - clipset@veh@std@ds@idle_e - - - clipset@veh@std@ds@hit_wheel@idle_a - clipset@veh@std@ds@hit_wheel@idle_b - clipset@veh@std@ds@hit_wheel@idle_c - - - - LAYOUT_LOW_LE7B - - - - - - - - - - - - - - - - - - - - - StreamAnims NoArmIkOnInsideCloseDoor NoArmIkOnOutsideCloseDoor UseLeanSteerAnims UseSteeringWheelIk UseFinerAlignTolerance - - - busted_vehicle_low - - - - - - - clipset@veh@low@ds@idle_a - clipset@veh@low@ds@idle_b - clipset@veh@low@ds@idle_c - clipset@veh@low@ds@idle_d - clipset@veh@low@ds@idle_e - - - clipset@veh@low@ds@hit_wheel@idle_a - clipset@veh@low@ds@hit_wheel@idle_b - clipset@veh@low@ds@hit_wheel@idle_c - - - ANIM_GROUP_CELLPHONE_IN_CAR_DS - ANIM_GROUP_CELLPHONE_IN_CAR_PS - ANIM_GROUP_CELLPHONE_IN_CAR_DS_FPS - ANIM_GROUP_CELLPHONE_IN_CAR_DS_FPS - - - - LAYOUT_STD_BRIOSO - - - - - - - - - - - - - - - - - - - - - StreamAnims UseDoorOscillation UseLeanSteerAnims UseSteeringWheelIk UseFinerAlignTolerance - - - busted_vehicle_std - - - - - - - clipset@veh@std@ds@idle_a - clipset@veh@std@ds@idle_b - clipset@veh@std@ds@idle_c - clipset@veh@std@ds@idle_d - clipset@veh@std@ds@idle_e - - - clipset@veh@std@ds@hit_wheel@idle_a - clipset@veh@std@ds@hit_wheel@idle_b - clipset@veh@std@ds@hit_wheel@idle_c - - - ANIM_GROUP_CELLPHONE_IN_CAR_DS - ANIM_GROUP_CELLPHONE_IN_CAR_PS - ANIM_GROUP_CELLPHONE_IN_CAR_DS_FPS - ANIM_GROUP_CELLPHONE_IN_CAR_DS_FPS - - - - LAYOUT_STD_OMNIS - - - - - - - - - - - - - - - - - - - - - StreamAnims UseDoorOscillation UseLeanSteerAnims UseSteeringWheelIk - - - busted_vehicle_std - - - - - - - clipset@veh@std@ds@idle_a - clipset@veh@std@ds@idle_b - clipset@veh@std@ds@idle_c - clipset@veh@std@ds@idle_d - clipset@veh@std@ds@idle_e - - - clipset@veh@std@ds@hit_wheel@idle_a - clipset@veh@std@ds@hit_wheel@idle_b - clipset@veh@std@ds@hit_wheel@idle_c - - - ANIM_GROUP_CELLPHONE_IN_CAR_DS - ANIM_GROUP_CELLPHONE_IN_CAR_PS - ANIM_GROUP_CELLPHONE_IN_CAR_DS_FPS - ANIM_GROUP_CELLPHONE_IN_CAR_DS_FPS - - - - LAYOUT_STD_TROPHY - - - - - - - - - - - - - - - - - - - - - StreamAnims UseLeanSteerAnims UseSteeringWheelIk UseFinerAlignTolerance - - - busted_vehicle_std - - - - - - - clipset@veh@std@ds@idle_a - clipset@veh@std@ds@idle_b - clipset@veh@std@ds@idle_c - clipset@veh@std@ds@idle_d - clipset@veh@std@ds@idle_e - - - clipset@veh@std@ds@hit_wheel@idle_a - clipset@veh@std@ds@hit_wheel@idle_b - clipset@veh@std@ds@hit_wheel@idle_c - - - ANIM_GROUP_CELLPHONE_IN_CAR_DS - ANIM_GROUP_CELLPHONE_IN_CAR_PS - ANIM_GROUP_CELLPHONE_IN_CAR_DS_FPS - ANIM_GROUP_CELLPHONE_IN_CAR_DS_FPS - - - - - - - - - BIKE_BF400_FRONT - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - LOW_LE7B_FRONT_LEFT - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - LOW_LE7B_FRONT_RIGHT - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - LOW_LYNX_FRONT_LEFT - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - LOW_LYNX_FRONT_RIGHT - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - LOW_SHEAVA_FRONT_LEFT - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - LOW_SHEAVA_FRONT_RIGHT - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - LOW_TAMPA2_FRONT_LEFT - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - LOW_TAMPA2_FRONT_RIGHT - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - LOW_TROPOS_FRONT_LEFT - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - LOW_TROPOS_FRONT_RIGHT - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - LOW_TYRUS_FRONT_LEFT - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - LOW_TYRUS_FRONT_RIGHT - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - RANGER_CONTENDER_FRONT_LEFT - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - RANGER_CONTENDER_FRONT_RIGHT - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - STD_BRIOSO_FRONT_LEFT - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - STD_BRIOSO_FRONT_RIGHT - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - STD_OMNIS_FRONT_LEFT - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - STD_OMNIS_FRONT_RIGHT - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - STD_TROPHY_FRONT_LEFT - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - STD_TROPHY_FRONT_RIGHT - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - STD_TROPHY2_FRONT_LEFT - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - STD_TROPHY2_FRONT_RIGHT - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - TRUCK_RALLY_FRONT_LEFT - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - TRUCK_RALLY_FRONT_RIGHT - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/02tahoe/02tahoe.yft b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/02tahoe/02tahoe.yft new file mode 100644 index 000000000..44fb41507 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/02tahoe/02tahoe.yft @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0acf28f47ce506161cc816d0cdf09d8cabf594d6207aef67cbe9469037dc3243 +size 4932812 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/02tahoe/02tahoe.ytd b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/02tahoe/02tahoe.ytd new file mode 100644 index 000000000..a84910625 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/02tahoe/02tahoe.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a6f3644e42325e0cba142929c61dbb405a9e73125336e0d36865b3fe649f8e7 +size 5796645 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/02tahoe/02tahoe_hi.yft b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/02tahoe/02tahoe_hi.yft new file mode 100644 index 000000000..9a7e2edd3 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/02tahoe/02tahoe_hi.yft @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84f334109c1b2fdeeba5ee58b200446d75bbaccd6493f67b8d9c89672e5a1396 +size 4932633 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/15expxlt/15expxlt.yft b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/15expxlt/15expxlt.yft new file mode 100644 index 000000000..3e39f500c --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/15expxlt/15expxlt.yft @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6a4e266f21952240a362461ca3bcc1656c434e94cb1f7cf3de5ae1776e34dd4 +size 4294140 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/15expxlt/15expxlt.ytd b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/15expxlt/15expxlt.ytd new file mode 100644 index 000000000..1267e5b54 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/15expxlt/15expxlt.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76ec3f1057f64745ab71e1cb43e8c3a9e62a942749acb5dd9b5839d8b13ed813 +size 5554869 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/15expxlt/15expxlt_hi.yft b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/15expxlt/15expxlt_hi.yft new file mode 100644 index 000000000..87d5d11ae --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/15expxlt/15expxlt_hi.yft @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccbd78a78feb0b692d9cd426dcb50cfca40078033b7030f6c4981b900b37d70f +size 4294019 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/19yukon/19yukon.yft b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/19yukon/19yukon.yft new file mode 100644 index 000000000..4de7a57de --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/19yukon/19yukon.yft @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b86a0a16e84873a0186ee1f1d6d765d9e5746dfaa70e7194f265ad2ec74375c +size 6504011 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/19yukon/19yukon.ytd b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/19yukon/19yukon.ytd new file mode 100644 index 000000000..9a6479724 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/19yukon/19yukon.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef3aa182ea21cb104e3dfedfdc624cbe24ffaa8c1e23d7061860dc9fd21e707c +size 6426333 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/19yukon/19yukon_hi.yft b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/19yukon/19yukon_hi.yft new file mode 100644 index 000000000..b7e56c8b8 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/19yukon/19yukon_hi.yft @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1671f5bf3c1ac520d5aba21397ce3bf2d8dbd2df2db1edb2f74db2e816e87fe7 +size 6503874 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/19yukonslt/19yukonslt.yft b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/19yukonslt/19yukonslt.yft new file mode 100644 index 000000000..e5f827889 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/19yukonslt/19yukonslt.yft @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e04ec14b8f1a82e1e6430132fcdcfe29ed89fa0c6282530c0338c71af8a47ced +size 5300460 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/19yukonslt/19yukonslt.ytd b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/19yukonslt/19yukonslt.ytd new file mode 100644 index 000000000..90b3bdf72 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/19yukonslt/19yukonslt.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69de94b3fc931864d04f75cefadc92682f5d942be68ab20b5fc618588b8e6960 +size 6331663 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/19yukonslt/19yukonslt_hi.yft b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/19yukonslt/19yukonslt_hi.yft new file mode 100644 index 000000000..20d98395c --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/19yukonslt/19yukonslt_hi.yft @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d381370ccec5e88ca1bdc47f384c25baec3f88142203bab47a0264015a145ad5 +size 5300325 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/21bro/21bro.yft b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/21bro/21bro.yft new file mode 100644 index 000000000..505896b5c --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/21bro/21bro.yft @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0326f6b9abb4aa36adce45ee230d3b8fe2136a4a95450e16003fff2dc8f19f14 +size 6157504 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/21bro/21bro.ytd b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/21bro/21bro.ytd new file mode 100644 index 000000000..5e8859e83 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/21bro/21bro.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a628e13826055354f572fc35fa32e46215c80e8db20329a7fb5737b0ed5670b4 +size 6236865 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/21bro/21bro_hi.yft b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/21bro/21bro_hi.yft new file mode 100644 index 000000000..b02a73c97 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/21bro/21bro_hi.yft @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa09fd23e60011712cb9b0ccc4adf0a9153184fa5c120ef76844ebeeb16617f3 +size 6170173 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/21dura/21dura.yft b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/21dura/21dura.yft new file mode 100644 index 000000000..a4c5db096 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/21dura/21dura.yft @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d63ba71f5e518d4bc705f59a95cadc4744304ac952ad8889ea240e25fc3b898 +size 5490193 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/21dura/21dura.ytd b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/21dura/21dura.ytd new file mode 100644 index 000000000..f2c6d6b2f --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/21dura/21dura.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a119b2036cb29a6764dce66e31b8d4ed0dfe128634a2af41b6224a5265f8e07 +size 5180548 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/21dura/21dura_hi.yft b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/21dura/21dura_hi.yft new file mode 100644 index 000000000..cbd9ae4ef --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/21dura/21dura_hi.yft @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1614ce21f6057d2aca2a661b718edeaf6718eb7fdff8f17bd11296f311e9d63e +size 5490090 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/21yuk/21yuk.yft b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/21yuk/21yuk.yft new file mode 100644 index 000000000..1fef4a28f --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/21yuk/21yuk.yft @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c7d604cb9184359a1fa723d9e3b538ac8fdda6bab626c61c1b8f6dbaa57ace0 +size 7848976 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/21yuk/21yuk.ytd b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/21yuk/21yuk.ytd new file mode 100644 index 000000000..e74b4295d --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/21yuk/21yuk.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88919eb00ef9f575aae93118bb1e94861c179a9cf5d17769ae250d1814f67ecf +size 7573184 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/21yuk/21yuk_hi.yft b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/21yuk/21yuk_hi.yft new file mode 100644 index 000000000..1fef4a28f --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/21yuk/21yuk_hi.yft @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c7d604cb9184359a1fa723d9e3b538ac8fdda6bab626c61c1b8f6dbaa57ace0 +size 7848976 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/22jeep/22jeep.yft b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/22jeep/22jeep.yft new file mode 100644 index 000000000..a5f39ddea --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/22jeep/22jeep.yft @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa0d471f1c6b52fd53bd78d08a33d5ea018146b77a6efb95b7e6347658f8dcf1 +size 6076506 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/22jeep/22jeep.ytd b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/22jeep/22jeep.ytd new file mode 100644 index 000000000..890a0a1d2 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/22jeep/22jeep.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2b5587585d0e267cd531f5628dc543e16b6cdbdb2804ef1636072853e64ce31 +size 6341838 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/22jeep/22jeep_hi.yft b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/22jeep/22jeep_hi.yft new file mode 100644 index 000000000..987ae5daa --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/22jeep/22jeep_hi.yft @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc250550f6a55382fc2621a39ad5e39a811fe740cd230a940944a73a7c82c815 +size 6076367 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/22jeeplar/22jeeplar.yft b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/22jeeplar/22jeeplar.yft new file mode 100644 index 000000000..eaaf931bc --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/22jeeplar/22jeeplar.yft @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b73a9b3aa9a74a7b969e5f818a2bedb3a98a52755f57a3765b5e533ec851aa2 +size 4762529 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/22jeeplar/22jeeplar.ytd b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/22jeeplar/22jeeplar.ytd new file mode 100644 index 000000000..e4a7231f5 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/22jeeplar/22jeeplar.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8da1568e8df84de5ad6f42c4c7984974b1e7b5f54dff3b0f4bac7791ddbb8aab +size 6208350 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/22jeeplar/22jeeplar_hi.yft b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/22jeeplar/22jeeplar_hi.yft new file mode 100644 index 000000000..3274242ef --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/22jeeplar/22jeeplar_hi.yft @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c2c45b33d7e4525b56ca39e4d834d00327c09bc7be3ac0ef47d92cb1cf95391 +size 4762377 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/22macgt/22macgt.yft b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/22macgt/22macgt.yft new file mode 100644 index 000000000..a8e69b803 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/22macgt/22macgt.yft @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb4de993895f7bcfaee9144083f47698113c339d62844a4cc462e28c2d6713d0 +size 5333809 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/22macgt/22macgt.ytd b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/22macgt/22macgt.ytd new file mode 100644 index 000000000..5d9806da3 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/22macgt/22macgt.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dba2921b45426d39a6fc08af5104f52e667b448b1889c13c82a3735a5458d0ab +size 7488055 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/22macgt/22macgt_hi.yft b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/22macgt/22macgt_hi.yft new file mode 100644 index 000000000..fadaab0d8 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/22macgt/22macgt_hi.yft @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d512b703c5ab8c2e4729ed55cc1123601b6b0ef940b5472d902b1baeafa3731 +size 5333681 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23blazerppv/23blazerppv.yft b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23blazerppv/23blazerppv.yft new file mode 100644 index 000000000..ed7e6bd2e --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23blazerppv/23blazerppv.yft @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6094a7b26eb6adfb64a81cc86a663952062de25a7f3167424e827708d5e20375 +size 3558477 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23blazerppv/23blazerppv.ytd b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23blazerppv/23blazerppv.ytd new file mode 100644 index 000000000..73267b77c --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23blazerppv/23blazerppv.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbad6428713aab842603c3ed8b8d4d48f6e2e6e54d9984ae0b22ffbf826bb9a2 +size 5301932 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23blazerppv/23blazerppv_hi.yft b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23blazerppv/23blazerppv_hi.yft new file mode 100644 index 000000000..58d27f6e9 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23blazerppv/23blazerppv_hi.yft @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8429b217619286fade0ce603994fd7cb1645a6fbd15ae0a1226b64b45d6c4a05 +size 4936342 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23esv/23esv.yft b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23esv/23esv.yft new file mode 100644 index 000000000..75d7412ff --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23esv/23esv.yft @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41a793c7724e9de1856613f6fbb56bc9ffe07e68f9cb6edd7dd753800254c0b8 +size 6123337 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23esv/23esv.ytd b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23esv/23esv.ytd new file mode 100644 index 000000000..2ac94acde --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23esv/23esv.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e35876da65860a872cbfce824671110e3754f683f05297c4566648a5568437d9 +size 4659173 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23esv/23esv_hi.yft b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23esv/23esv_hi.yft new file mode 100644 index 000000000..05ca581e7 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23esv/23esv_hi.yft @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8a9f461b25732de47a2e0b22f0ed363a93acaf1f327f7e6d58a7572e91d9197 +size 8499268 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23esvsp/23esvsp.yft b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23esvsp/23esvsp.yft new file mode 100644 index 000000000..a3d967077 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23esvsp/23esvsp.yft @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:843235d5fe7e7e55bb3a58357be20e71725b5585a890528991996d31ecbfffa4 +size 5547747 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23esvsp/23esvsp.ytd b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23esvsp/23esvsp.ytd new file mode 100644 index 000000000..314b1bc77 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23esvsp/23esvsp.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd506f26d2092f1d68ee30f69ef2ccefdf2bbb6abfa5e382ae1e2eb682cd0259 +size 4723903 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23esvsp/23esvsp_hi.yft b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23esvsp/23esvsp_hi.yft new file mode 100644 index 000000000..3ef603b37 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23esvsp/23esvsp_hi.yft @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df8ddb7fc7998d7c2edee5c7a25b2009d50fb4bed93b0c4d9d3da7e0ebd3e2c6 +size 6532236 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23ev6/23ev6.yft b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23ev6/23ev6.yft new file mode 100644 index 000000000..4fb39ef6f --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23ev6/23ev6.yft @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f318c86af71a5d55ab582427fd174721e8b040c8b393cc5c3dd7bc70dd9bd0a3 +size 5218053 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23ev6/23ev6.ytd b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23ev6/23ev6.ytd new file mode 100644 index 000000000..c2430e732 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23ev6/23ev6.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86c9d54c18c634a68b5e79500205ba10bcef442bab13b65e568dd14923dddbad +size 5947405 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23ev6/23ev6_hi.yft b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23ev6/23ev6_hi.yft new file mode 100644 index 000000000..e1812565d --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23ev6/23ev6_hi.yft @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afeeb5821eb45d978cb9b31da8b2fd47049c6da665944a3f76c2811830cfeff5 +size 6923286 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23hornetrt/23hornetrt.yft b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23hornetrt/23hornetrt.yft new file mode 100644 index 000000000..c52ca386d --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23hornetrt/23hornetrt.yft @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be8ac8708e90ad8516fc615e031eebdf279cc6f810b48c4f9aee3333187652be +size 5462835 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23hornetrt/23hornetrt.ytd b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23hornetrt/23hornetrt.ytd new file mode 100644 index 000000000..bb952edbf --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23hornetrt/23hornetrt.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a311331d0a783237e27906d26e8a24d34533f0088420c4f25e6ef1a7b4da36c +size 5426586 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23hornetrt/23hornetrt_hi.yft b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23hornetrt/23hornetrt_hi.yft new file mode 100644 index 000000000..b4f5f84dc --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23hornetrt/23hornetrt_hi.yft @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c06b7502ee28d5b8c89bb18f7d24c047bdd05a2aaa2ac793a0104596d11107c1 +size 5462697 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23jeepwag3/23jeepwag3.yft b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23jeepwag3/23jeepwag3.yft new file mode 100644 index 000000000..d5e3e9aab --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23jeepwag3/23jeepwag3.yft @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdffd091d47fed0b8c82f8b83a14397806a3dea2a8fb8d4e7f59ba47d98518e2 +size 5508517 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23jeepwag3/23jeepwag3.ytd b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23jeepwag3/23jeepwag3.ytd new file mode 100644 index 000000000..861e27311 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23jeepwag3/23jeepwag3.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:702478400027e043c502e7e62a82da06325bfd58cd037d15ed6c85bb2f1a5cf8 +size 6890444 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23jeepwag3/23jeepwag3_hi.yft b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23jeepwag3/23jeepwag3_hi.yft new file mode 100644 index 000000000..54917c201 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23jeepwag3/23jeepwag3_hi.yft @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2157c072cb9c67aedee8f97fd843bd2abd5f32492848fbca7f925f6ccd1fad58 +size 5508308 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23santa/23santa.yft b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23santa/23santa.yft new file mode 100644 index 000000000..3a1efbf56 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23santa/23santa.yft @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a5bdd5f94f767e2bb4457dbddef566af3978cd5b3f47154ca292346f283bcb5 +size 7089570 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23santa/23santa.ytd b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23santa/23santa.ytd new file mode 100644 index 000000000..5103db0ac --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23santa/23santa.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13416ce58f83f69e44814ffd80683adcd34f28b33e8663d61007aafab8a85214 +size 6523111 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23santa/23santa_hi.yft b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23santa/23santa_hi.yft new file mode 100644 index 000000000..02f52ecd0 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23santa/23santa_hi.yft @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cea0b88d63b72c62755cfc0081c25884c06dc1fe32b906864263ea4fb104fd60 +size 7089542 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23santastd/23santastd.yft b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23santastd/23santastd.yft new file mode 100644 index 000000000..db0e785a9 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23santastd/23santastd.yft @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78589ebd16648f4f9aca7548002b18513bc6c01bafb29831459add0769fbd769 +size 5776276 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23santastd/23santastd.ytd b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23santastd/23santastd.ytd new file mode 100644 index 000000000..89370ac22 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23santastd/23santastd.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdad365ba7f6542aaf6a70810d8849a8515e251507faaf8c4d43562bde58e4f6 +size 6642452 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23santastd/23santastd_hi.yft b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23santastd/23santastd_hi.yft new file mode 100644 index 000000000..e6a5a9877 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23santastd/23santastd_hi.yft @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebf77bcc6ac8b424ffa13ed3d7e5fc6cc90bdb5fca9485f252b9a0fa2bda6cba +size 5776157 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23subur/23subur.yft b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23subur/23subur.yft new file mode 100644 index 000000000..9eeac2ed0 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23subur/23subur.yft @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:383b1629904792fd0e8b62a5b8771c2e7ce6bcdbbb0636503df1fcd27d202a21 +size 5713994 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23subur/23subur.ytd b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23subur/23subur.ytd new file mode 100644 index 000000000..08b793a45 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23subur/23subur.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bed287da4af7fd11d64355b89532411e62b8aa510189b03f211dd756b5b6f253 +size 4928079 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23subur/23subur_hi.yft b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23subur/23subur_hi.yft new file mode 100644 index 000000000..5de780cf1 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23subur/23subur_hi.yft @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36b0b2234c2a31a25daaeeee1a773f8eff654dd26845c8bf2737e878d6fbd563 +size 6024259 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23tesla/23tesla.yft b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23tesla/23tesla.yft new file mode 100644 index 000000000..eadb2e1ef --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23tesla/23tesla.yft @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6429242690304d4118a3c488e4fa5664936361f07d7df48b0cb79ed0c90a15cb +size 4181351 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23tesla/23tesla.ytd b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23tesla/23tesla.ytd new file mode 100644 index 000000000..c8b788571 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23tesla/23tesla.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b0b56afc266c060edde4c32dbc107d53c2a1806ca787337810b4053d6215cfa +size 6455931 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23tesla/23tesla_hi.yft b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23tesla/23tesla_hi.yft new file mode 100644 index 000000000..d18d6f6d4 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23tesla/23tesla_hi.yft @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a38f860ced9f72b74d8e862e5afb141d3d0f23cb3e6cc048339c1f847d53364 +size 4181242 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23teslahc/23teslahc.yft b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23teslahc/23teslahc.yft new file mode 100644 index 000000000..242c45fc0 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23teslahc/23teslahc.yft @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a460fa690032f51ba33eb6425d53457bb2800640ff489535d59040d952e91bb8 +size 4262894 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23teslahc/23teslahc.ytd b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23teslahc/23teslahc.ytd new file mode 100644 index 000000000..c8b788571 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23teslahc/23teslahc.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b0b56afc266c060edde4c32dbc107d53c2a1806ca787337810b4053d6215cfa +size 6455931 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23teslahc/23teslahc_hi.yft b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23teslahc/23teslahc_hi.yft new file mode 100644 index 000000000..dfefc3c5e --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/23teslahc/23teslahc_hi.yft @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb7c80206cd100d44224411d3331aece678bc936eb6b6123f5e1be26a0958e54 +size 4262789 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/80fj60/80fj60.yft b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/80fj60/80fj60.yft new file mode 100644 index 000000000..e61f89617 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/80fj60/80fj60.yft @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77fe8fc0fe496779516782672ca9a21bb6eccaf826deb32416aebe72826f539f +size 4754040 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/80fj60/80fj60.ytd b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/80fj60/80fj60.ytd new file mode 100644 index 000000000..81a85b108 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/80fj60/80fj60.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd074217945f948d342ad3d78676a35a64a97888c23210bf42cbbc270825d03a +size 7791943 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/80fj60/80fj60_hi.yft b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/80fj60/80fj60_hi.yft new file mode 100644 index 000000000..3d6a82b33 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/80fj60/80fj60_hi.yft @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a21257cbcfffd01bf91fc8eec55f646623378193407e71fce6f15ea488fdd9ed +size 4753936 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/esca/esca.yft b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/esca/esca.yft deleted file mode 100644 index 17a8392eb..000000000 --- a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/esca/esca.yft +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f0e2e4dc6cf4ea55a4d52ac83afcda3ec6571ce095c3c8040a4c6753a118e4ee -size 2465053 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/esca/esca.ytd b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/esca/esca.ytd deleted file mode 100644 index a148044ef..000000000 --- a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/esca/esca.ytd +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:46f60661fb014b1877837886492e01ab8fa21960a6de9f7348b59bb7b538261e -size 7703989 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/esca/esca_hi.yft b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/esca/esca_hi.yft deleted file mode 100644 index 7dacc2f75..000000000 --- a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/esca/esca_hi.yft +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:244bc2fd826aa4d887c3a0374a816fd899d8bd88727b0c37040831a986558a7b -size 3433719 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/foxlight/foxlight.yft b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/foxlight/foxlight.yft deleted file mode 100644 index 0d1730e6c..000000000 --- a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/foxlight/foxlight.yft +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7886b704a078ca2e80d5b110069f628c5c725046f36067aa1ef222428c0c5ed7 -size 11552960 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/foxlight/foxlight.ytd b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/foxlight/foxlight.ytd deleted file mode 100644 index f8fd847de..000000000 --- a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/foxlight/foxlight.ytd +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7b869fd64d1027a9f5fe5e389fb3fe3dc880e7a6a6d15e5f66b86a2066262510 -size 7264934 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/foxlight/foxlight_hi.yft b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/foxlight/foxlight_hi.yft deleted file mode 100644 index 0d1730e6c..000000000 --- a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/foxlight/foxlight_hi.yft +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7886b704a078ca2e80d5b110069f628c5c725046f36067aa1ef222428c0c5ed7 -size 11552960 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/jeep20/jeep20.yft b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/jeep20/jeep20.yft new file mode 100644 index 000000000..c28bf5530 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/jeep20/jeep20.yft @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9aeff1182ae69115eaed66e027872ba1eebabc51e8a4330ea6def2dc89b3a571 +size 8049743 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/jeep20/jeep20.ytd b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/jeep20/jeep20.ytd new file mode 100644 index 000000000..a5185666f --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/jeep20/jeep20.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57b487df90049868238c9ce96e4718d71a2c842524ea30b01696f195935c4c6f +size 3900942 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/jeep20/jeep20_hi.yft b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/jeep20/jeep20_hi.yft new file mode 100644 index 000000000..c28bf5530 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/jeep20/jeep20_hi.yft @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9aeff1182ae69115eaed66e027872ba1eebabc51e8a4330ea6def2dc89b3a571 +size 8049743 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/rav4hyb/rav4hyb.yft b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/rav4hyb/rav4hyb.yft new file mode 100644 index 000000000..8b2c6027b --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/rav4hyb/rav4hyb.yft @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b86e189e4c20ab22bd54e282fca393a6fcd061fbd935ef521927961e21d727d +size 5677635 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/rav4hyb/rav4hyb.ytd b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/rav4hyb/rav4hyb.ytd new file mode 100644 index 000000000..0fac3018d --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/rav4hyb/rav4hyb.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a5502d8b42a326f6f7ae2a36c515a86b5ad19f1f52a548f31e495e8ecfd6f2e +size 7900695 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/rav4hyb/rav4hyb_hi.yft b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/rav4hyb/rav4hyb_hi.yft new file mode 100644 index 000000000..b8e040250 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/rav4hyb/rav4hyb_hi.yft @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a5c6d1fbfdaf0018b77a26d7c5a1256eaf48d2637421daa5637728f0a3bb9dd +size 5677546 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/rover130v8/rover130v8.yft b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/rover130v8/rover130v8.yft new file mode 100644 index 000000000..202728559 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/rover130v8/rover130v8.yft @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df4f9301152eeeb9cd2eba8f301aee17dfd83e68c050ed266659b8688e85ea7e +size 7024969 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/rover130v8/rover130v8.ytd b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/rover130v8/rover130v8.ytd new file mode 100644 index 000000000..5ff4d903f --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/rover130v8/rover130v8.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68c76bf81dcc2ef502c28985f11aabca2fad523b08df35f8a840e59b1377b117 +size 7021674 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/rover130v8/rover130v8_hi.yft b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/rover130v8/rover130v8_hi.yft new file mode 100644 index 000000000..f5e65f91a --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/rover130v8/rover130v8_hi.yft @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9c9597ddb729ed644d67944555cefb11f121c11ac1b91384e10c59f0361bf9a9 +size 7024822 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/subn/subn.yft b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/subn/subn.yft deleted file mode 100644 index 5554a38f0..000000000 --- a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/subn/subn.yft +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:51b712e998e4c96861a0b81667906c245b29b70c69f09b0cfd061367bcfc84c5 -size 2067717 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/subn/subn.ytd b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/subn/subn.ytd deleted file mode 100644 index 45633a5df..000000000 --- a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/subn/subn.ytd +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:5a392792f3e8ce907e74a8d3723d3c51e0503c80c88aeb30c4a5a14cf1046bf8 -size 13396133 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/subn/subn_ex_defl01.yft b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/subn/subn_ex_defl01.yft deleted file mode 100644 index 62f33b58f..000000000 --- a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/subn/subn_ex_defl01.yft +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8cde2244efc0d103eb4a00c1e5c67e7ee40776bf501891aaab436fb7f4dec02e -size 66662 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/subn/subn_ex_grille01.yft b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/subn/subn_ex_grille01.yft deleted file mode 100644 index 361e0a421..000000000 --- a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/subn/subn_ex_grille01.yft +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:cb1ba1709c5aae64f186e9a97b64ab8d1bfbdfd4620bede0b63e140b16fa6025 -size 148700 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/subn/subn_ex_hcov.yft b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/subn/subn_ex_hcov.yft deleted file mode 100644 index 6e2c687db..000000000 --- a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/subn/subn_ex_hcov.yft +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e548233e357e7d6ad2d4471662c8721b526fc7cf1416c7f65bec99b418fa89d2 -size 17340 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/subn/subn_ex_lfm.yft b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/subn/subn_ex_lfm.yft deleted file mode 100644 index 638fa9467..000000000 --- a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/subn/subn_ex_lfm.yft +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:cbc0246e69c09055c883e0dcf8f11719e59e9ae7c60421f10f5784b2e9e71fe5 -size 10222 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/subn/subn_ex_lrm.yft b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/subn/subn_ex_lrm.yft deleted file mode 100644 index fc1f8bf57..000000000 --- a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/subn/subn_ex_lrm.yft +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:28c7f64363b547b3c686fc0c64cbdc7ea616c8c0a921e85b32068507568059b4 -size 9196 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/subn/subn_ex_mir2_ds.yft b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/subn/subn_ex_mir2_ds.yft deleted file mode 100644 index b00f230b8..000000000 --- a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/subn/subn_ex_mir2_ds.yft +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a4de7308b0403beb3072dc6d29ca0eebb6aa56f825f3240113efcfdd53f8499a -size 376645 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/subn/subn_ex_mir2_ps.yft b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/subn/subn_ex_mir2_ps.yft deleted file mode 100644 index 836ef83e8..000000000 --- a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/subn/subn_ex_mir2_ps.yft +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:87d2596803443b1bdd132d8237aedbfd70e699827878aefd40d5615fb01b47f7 -size 379500 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/subn/subn_ex_rboard01.yft b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/subn/subn_ex_rboard01.yft deleted file mode 100644 index 63ea6540c..000000000 --- a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/subn/subn_ex_rboard01.yft +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:047bcfe9d07ff8ef9666a70a0d79c92b7211b2bb44a759e5936c72e2a7f24a24 -size 902743 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/subn/subn_ex_rboard02.yft b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/subn/subn_ex_rboard02.yft deleted file mode 100644 index aec7b54bb..000000000 --- a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/subn/subn_ex_rboard02.yft +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:106a667500670f2913844b108eccfd710db01b0c45740a86103de6c95376e496 -size 202371 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/subn/subn_ex_rfm.yft b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/subn/subn_ex_rfm.yft deleted file mode 100644 index 462fe6e2b..000000000 --- a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/subn/subn_ex_rfm.yft +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:82181461dc860e740281d6b64041e0d5099158a44205daaabc52676ce318c932 -size 9939 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/subn/subn_ex_rrm.yft b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/subn/subn_ex_rrm.yft deleted file mode 100644 index 83fc67988..000000000 --- a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/subn/subn_ex_rrm.yft +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a239714eb517bf20f4a8422ad4e174db4fd5049336b6f5ff77386d84f51625d8 -size 8627 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/subn/subn_hi.yft b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/subn/subn_hi.yft deleted file mode 100644 index efcd95aae..000000000 --- a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/subn/subn_hi.yft +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4d606bb20eb7e851688953b4ddd0e9f0ca25f95c4b5fde65a3ad83464d819865 -size 5268115 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/subn/subn_void01.yft b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/subn/subn_void01.yft deleted file mode 100644 index ad9a7da58..000000000 --- a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/subn/subn_void01.yft +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7d93ccac154be2b668a391e09eb4cfb7fcd13a96fe42828b1d83ede524b10d39 -size 2398 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/subn/wheel_hd_01.ydr b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/subn/wheel_hd_01.ydr deleted file mode 100644 index 51d7bfc78..000000000 --- a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/subn/wheel_hd_01.ydr +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:960d3fd3bc6e168a875806edcf72104ea1b11936fefdd4ccd19426b458fad292 -size 216597 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/subn/wheel_ltz_01.ydr b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/subn/wheel_ltz_01.ydr deleted file mode 100644 index 83fa21241..000000000 --- a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/subn/wheel_ltz_01.ydr +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:bff77dca83d3901e15ea478a669765c4e5f8ced8aa55ab0ca26948ca5d7b3640 -size 241369 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/tahoe/tahoe.yft b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/tahoe/tahoe.yft deleted file mode 100644 index fe7e664b9..000000000 --- a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/tahoe/tahoe.yft +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:dd23ddfc07abd69e0654409166b14e4bcc2ed7f4e7200a3a2f76d8b7dfb7116c -size 2965881 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/tahoe/tahoe.ytd b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/tahoe/tahoe.ytd deleted file mode 100644 index 1f8e63d24..000000000 --- a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/tahoe/tahoe.ytd +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:051a845ddf895272b73f507bd595adac8cbc35d1867e4453bb06351cdc14bd07 -size 12511839 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/tahoe/tahoe_hi.yft b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/tahoe/tahoe_hi.yft deleted file mode 100644 index e3d1ec1ad..000000000 --- a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/tahoe/tahoe_hi.yft +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:cd7a0e2f18980c9995c5defa16d39fa3501ea33d445c7b9491052a2871ec0a31 -size 2971740 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/tahoe2/tahoe2.yft b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/tahoe2/tahoe2.yft deleted file mode 100644 index 9af9013b1..000000000 --- a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/tahoe2/tahoe2.yft +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:14d7e2d355ba6eaaa82462772b481253ea9a8fb84273f2dcb76614d169bbf16c -size 6551828 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/tahoe2/tahoe2.ytd b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/tahoe2/tahoe2.ytd deleted file mode 100644 index f6c6df085..000000000 --- a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/tahoe2/tahoe2.ytd +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:cd8a3c5d5221168ef1dfda147568f86975e657c9133e6adf49cd9271d8b6b635 -size 11121205 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/tahoe2/tahoe2_hi.yft b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/tahoe2/tahoe2_hi.yft deleted file mode 100644 index 487107ce1..000000000 --- a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/tahoe2/tahoe2_hi.yft +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8abd1e61c4dfdeecfb3e7e4af80fc88f1d4f9d2b127f3a2da843f0fa10633237 -size 6551669 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/teslax/teslax.yft b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/teslax/teslax.yft deleted file mode 100644 index 77f7a17ff..000000000 --- a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/teslax/teslax.yft +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:bccc80688ce50a07078979a50d0564dbbb5b3dcee394111f7bf85f95dd9d1467 -size 9480490 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/teslax/teslax.ytd b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/teslax/teslax.ytd deleted file mode 100644 index 2967e1dbf..000000000 --- a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/teslax/teslax.ytd +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:378a0ec4cd614c81561d90abfdab7abeb5bff937b2611548e82851f21d3140ac -size 14460843 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/teslax/teslax_hi.yft b/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/teslax/teslax_hi.yft deleted file mode 100644 index 77f7a17ff..000000000 --- a/resources/[EGRP-CarPacks]/EGRP-SUVs/stream/teslax/teslax_hi.yft +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:bccc80688ce50a07078979a50d0564dbbb5b3dcee394111f7bf85f95dd9d1467 -size 9480490 diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/vehicle_names.lua b/resources/[EGRP-CarPacks]/EGRP-SUVs/vehicle_names.lua index 69e36afef..a1f751003 100644 --- a/resources/[EGRP-CarPacks]/EGRP-SUVs/vehicle_names.lua +++ b/resources/[EGRP-CarPacks]/EGRP-SUVs/vehicle_names.lua @@ -41,22 +41,10 @@ Citizen.CreateThread(function() AddTextEntry('sq72016', 'Audi SQ7 2016') -- srt2018 AddTextEntry('srt2018', 'Dodge Durango SRT 2018') - -- subn - AddTextEntry('subn', 'Chevrolet Suburban') - -- tahoe - AddTextEntry('tahoe', 'Chevrolet Tahoe 2011') - -- tahoe2 - AddTextEntry('tahoe2', 'Chevrolet Tahoe 2017') - -- teslax - AddTextEntry('teslax', 'Tesla Model X') - -- volvoxc90 - AddTextEntry('volvoxc90', 'Volvo XC90') -- tahoe21 AddTextEntry('tahoe21', 'Chevrolet Tahoe 2021') -- pct18 AddTextEntry('pct18', 'Porsche Cayenne') - -- yukon - AddTextEntry('yukon', 'GMC Yukon 2021') -- urus AddTextEntry('urus', 'Lamborghini Urus 2021') -- mcullinan @@ -67,10 +55,6 @@ Citizen.CreateThread(function() AddTextEntry('fjcruiser', 'Toyota FJ Cruiser 2014') -- trhawk AddTextEntry('trhawk', 'Jeep Grand Cherokee Trackhawk 2020') - -- foxlight - AddTextEntry('foxlight', 'Ford F-150 Lightning 2022') - -- esca - AddTextEntry('esca', '2007 Cadillac Escalade') -- gcmmdx18 AddTextEntry('gcmmdx18', 'Acura MDX 2018') -- gcmterraindenali2019 @@ -78,7 +62,60 @@ Citizen.CreateThread(function() -- q820 AddTextEntry('q820', 'Audi Q8 2023') -- wagoneer91 - AddTextEntry('wagoneer91', '1991 Jeep Grand Wagoneer') + AddTextEntry('wagoneer91', '1991 Jeep Grand Wagoneer') + -- 22jeeplar + AddTextEntry('22jeeplar', '2022 Jeep Grand Cherokee 4x4 Laredo') + -- jeep20 + AddTextEntry('jeep20', '2020 Jeep Wrangler Unlimited Sahara') + -- 02tahoe + AddTextEntry('02tahoe', '2002 Chevy tahoe') + -- 80fj60 + AddTextEntry('80fj60', '1980 Toyota Land Cruiser FJ60 4x4') + -- 23tesla + AddTextEntry('23tesla', '2023 Tesla Model Y') + -- 23teslahc + AddTextEntry('23teslahc', '2023 Tesla Model Y') + -- 23subur + AddTextEntry('23subur', '2023 Chevy Suburban Premier') + -- 19yukon + AddTextEntry('19yukon', '2019 GMC Yukon Denali') + -- 23santastd + AddTextEntry('23santastd', '2023 Hyundai Santastd 2.5T') + -- 23ev6 + AddTextEntry('23ev6', '2023 Kia EV6 ') + -- 23santa + AddTextEntry('23santa', '2023 Hyundai Santa Fe') + -- 23jeepwag3 + AddTextEntry('23jeepwag3', '2023 Grand Wagoneer') + -- 23esv + AddTextEntry('23esv', '2023 Cadillac Escalade ESV Premium Luxury') + -- 23esvsp + AddTextEntry('23esvsp ', '2023 Cadillac Escalade ESV Sport AWD') + --21yuk + AddTextEntry('21yuk', '2021 GMC Yukon Denali') + -- 23hornetrt + AddTextEntry('23hornetrt', '2023 Dodge Hornet RT') + -- rover130v8 + AddTextEntry('rover130v8', '2023 Land Rover Defender 130 V8 AWD') + -- 22jeep + AddTextEntry('22jeep', '2022 Jeep Grand Cherokee') + -- 15expxlt + AddTextEntry('15expxlt', '2017 Ford Expedition XLT') + -- 19yukonslt + AddTextEntry('19yukonslt', '2019 GMC Yukon SLT 4WD') + -- 21bro + AddTextEntry('21bro', '2021 Ford Bronco Sport') + -- 21dura + AddTextEntry('21dura', '2021 Dodge Durango citadel') + -- rav4hyb + AddTextEntry('rav4hyb', '2021 Toyota RAV4 Hybrid ') + -- 23blazerppv + AddTextEntry('23blazerppv', '2023 Chevrolet Blazer ') + -- 22macgt + AddTextEntry('22macgt', '2022 Ford Mustang Mach-E GT AWD') + -- + AddTextEntry(' ', ' ') + end) \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-Sports/__resource.lua b/resources/[EGRP-CarPacks]/EGRP-Sports/__resource.lua index 19db644e9..aa73d6d9f 100644 --- a/resources/[EGRP-CarPacks]/EGRP-Sports/__resource.lua +++ b/resources/[EGRP-CarPacks]/EGRP-Sports/__resource.lua @@ -958,7 +958,68 @@ resource_manifest_version '77731fab-63ca-442c-a67b-abc70f28dfa5' data_file 'VEHICLE_METADATA_FILE' 'data/charger21/vehicles.meta' data_file 'CARCOLS_FILE' 'data/charger21/carcols.meta' data_file 'VEHICLE_VARIATION_FILE' 'data/charger21/carvariations.meta' - data_file 'VEHICLE_LAYOUTS_FILE' 'data/charger21/dlctext.meta' + data_file 'VEHICLE_LAYOUTS_FILE' 'data/charger21/dlctext.meta' + + -- 22530i + files { + 'data/22530i/vehicles.meta', + 'data/22530i/carvariations.meta', + 'data/22530i/carcols.meta', + 'data/22530i/handling.meta', + 'data/22530i/vehiclelayouts.meta', + } + + data_file 'HANDLING_FILE' 'data/22530i/handling.meta' + data_file 'VEHICLE_METADATA_FILE' 'data/22530i/vehicles.meta' + data_file 'CARCOLS_FILE' 'data/22530i/carcols.meta' + data_file 'VEHICLE_VARIATION_FILE' 'data/22530i/carvariations.meta' + data_file 'VEHICLE_LAYOUTS_FILE' 'data/22530i/dlctext.meta' + + -- srtday20 + files { + 'data/srtday20/vehicles.meta', + 'data/srtday20/carvariations.meta', + 'data/srtday20/carcols.meta', + 'data/srtday20/handling.meta', + 'data/srtday20/vehiclelayouts.meta', + } + + data_file 'HANDLING_FILE' 'data/srtday20/handling.meta' + data_file 'VEHICLE_METADATA_FILE' 'data/srtday20/vehicles.meta' + data_file 'CARCOLS_FILE' 'data/srtday20/carcols.meta' + data_file 'VEHICLE_VARIATION_FILE' 'data/srtday20/carvariations.meta' + data_file 'VEHICLE_LAYOUTS_FILE' 'data/srtday20/dlctext.meta' + + -- fusion18 + files { + 'data/fusion18/vehicles.meta', + 'data/fusion18/carvariations.meta', + 'data/fusion18/carcols.meta', + 'data/fusion18/handling.meta', + 'data/fusion18/vehiclelayouts.meta', + } + + data_file 'HANDLING_FILE' 'data/fusion18/handling.meta' + data_file 'VEHICLE_METADATA_FILE' 'data/fusion18/vehicles.meta' + data_file 'CARCOLS_FILE' 'data/fusion18/carcols.meta' + data_file 'VEHICLE_VARIATION_FILE' 'data/fusion18/carvariations.meta' + data_file 'VEHICLE_LAYOUTS_FILE' 'data/fusion18/dlctext.meta' + + -- volkssle + files { + 'data/volkssle/vehicles.meta', + 'data/volkssle/carvariations.meta', + 'data/volkssle/carcols.meta', + 'data/volkssle/handling.meta', + 'data/volkssle/vehiclelayouts.meta', + } + + data_file 'HANDLING_FILE' 'data/volkssle/handling.meta' + data_file 'VEHICLE_METADATA_FILE' 'data/volkssle/vehicles.meta' + data_file 'CARCOLS_FILE' 'data/volkssle/carcols.meta' + data_file 'VEHICLE_VARIATION_FILE' 'data/volkssle/carvariations.meta' + data_file 'VEHICLE_LAYOUTS_FILE' 'data/volkssle/dlctext.meta' + client_script { 'vehicle_names.lua' diff --git a/resources/[EGRP-CarPacks]/EGRP-Sports/data/22530i/carcols.meta b/resources/[EGRP-CarPacks]/EGRP-Sports/data/22530i/carcols.meta new file mode 100644 index 000000000..39215e732 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Sports/data/22530i/carcols.meta @@ -0,0 +1,633 @@ + + + + + + + + + + + + + + 135_22530i_modkit + + MKT_SPECIAL + + + + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_BRAKES + + + + + + + VMT_BRAKES + + + + + + + VMT_BRAKES + + + + + + + VMT_GEARBOX + + + + + + + VMT_GEARBOX + + + + + + + VMT_GEARBOX + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + HORN_TRUCK + + + + VMT_HORN + + + HORN_COP + + + + VMT_HORN + + + HORN_CLOWN + + + + VMT_HORN + + + HORN_MUSICAL_1 + + + + VMT_HORN + + + HORN_MUSICAL_2 + + + + VMT_HORN + + + HORN_MUSICAL_3 + + + + VMT_HORN + + + HORN_MUSICAL_4 + + + + VMT_HORN + + + HORN_MUSICAL_5 + + + + VMT_HORN + + + HORN_SAD_TROMBONE + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_1 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_2 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_3 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_4 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_5 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_6 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_7 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_C0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_D0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_E0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_F0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_G0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_A0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_B0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_C1 + + + + VMT_HORN + + + HIPSTER_HORN_1 + + + + VMT_HORN + + + HIPSTER_HORN_2 + + + + VMT_HORN + + + HIPSTER_HORN_3 + + + + VMT_HORN + + + HIPSTER_HORN_4 + + + + VMT_HORN + + + INDEP_HORN_1 + + + + VMT_HORN + + + INDEP_HORN_2 + + + + VMT_HORN + + + INDEP_HORN_3 + + + + VMT_HORN + + + INDEP_HORN_4 + + + + VMT_HORN + + + LUXE_HORN_1 + + + + VMT_HORN + + + LUXE_HORN_2 + + + + VMT_HORN + + + LUXE_HORN_3 + + + + VMT_HORN + + + + LUXORY_HORN_1 + + + + VMT_HORN + + + + LUXURY_HORN_2 + + + + VMT_HORN + + + + LUXURY_HORN_3 + + + + VMT_HORN + + + ORGAN_HORN_LOOP_01 + + + + VMT_HORN + + + + ORGAN_HORN_LOOP_01_PREVIEW + + + + VMT_HORN + + + ORGAN_HORN_LOOP_02 + + + + VMT_HORN + + + + ORGAN_HORN_LOOP_02_PREVIEW + + + + VMT_HORN + + + LOWRIDER_HORN_1 + + + + VMT_HORN + + + + LOWRIDER_HORN_1_PREVIEW + + + + VMT_HORN + + + LOWRIDER_HORN_2 + + + + VMT_HORN + + + + LOWRIDER_HORN_2_PREVIEW + + + + VMT_HORN + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + VehicleLight_car_oldsquare + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 22530i + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-Sports/data/22530i/carvariations.meta b/resources/[EGRP-CarPacks]/EGRP-Sports/data/22530i/carvariations.meta new file mode 100644 index 000000000..4ac1d80dc --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Sports/data/22530i/carvariations.meta @@ -0,0 +1,183 @@ + + + + + + + + + + + + + + + + 22530i + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 0_default_modkit + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-Sports/data/22530i/dlctext.meta b/resources/[EGRP-CarPacks]/EGRP-Sports/data/22530i/dlctext.meta new file mode 100644 index 000000000..22bb4c390 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Sports/data/22530i/dlctext.meta @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-Sports/data/22530i/handling.meta b/resources/[EGRP-CarPacks]/EGRP-Sports/data/22530i/handling.meta new file mode 100644 index 000000000..cbcdd2353 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Sports/data/22530i/handling.meta @@ -0,0 +1,67 @@ + + + + + + 22530I + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 440010 + 0 + 0 + SPORTS_CAR + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-Sports/data/22530i/vehicles.meta b/resources/[EGRP-CarPacks]/EGRP-Sports/data/22530i/vehicles.meta new file mode 100644 index 000000000..08fcb943c --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Sports/data/22530i/vehicles.meta @@ -0,0 +1,134 @@ + + + vehshare + + + + 22530i + 22530i + 22530I + BMW + G31530i + null + null + null + null + + null + dominator + LAYOUT_STD_HIGHWINDOW + GRESLEY_COVER_OFFSET_INFO + EXPLOSION_INFO_DEFAULT + + DEFAULT_FOLLOW_VEHICLE_CAMERA + DEFAULT_THIRD_PERSON_VEHICLE_AIM_CAMERA + VEHICLE_BONNET_CAMERA_MID_HIGH + DEFAULT_POV_CAMERA + + + + + + + + + + + + + + + + + + + + + + + + + + + + VFXVEHICLEINFO_CAR_GENERIC + + + + + + + + + + + + + + + + + + + + + + 15.000000 + 30.000000 + 70.000000 + 140.000000 + 500.000000 + 500.000000 + + + + + + + + + + + SWANKNESS_3 + + FLAG_HAS_LIVERY FLAG_EXTRAS_ALL FLAG_IS_OFFROAD_VEHICLE FLAG_IS_BULKY + VEHICLE_TYPE_CAR + VPT_BACK_PLATES + VDT_TRUCKDIGI + VC_SEDAN + VWT_SUV + + + + + + + + + + + + WHEEL_FRONT_RIGHT_CAMERA + WHEEL_FRONT_LEFT_CAMERA + WHEEL_REAR_RIGHT_CAMERA + WHEEL_REAR_LEFT_CAMERA + + Truck + + + + + STD_DILETTANTE_FRONT_LEFT + STD_DILETTANTE_FRONT_RIGHT + STD_BALLER_REAR_LEFT + STD_BALLER_REAR_RIGHT + + + + + + vehicles_bob_brown_interior + 22530i + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-Sports/data/fusion18/carcols.meta b/resources/[EGRP-CarPacks]/EGRP-Sports/data/fusion18/carcols.meta new file mode 100644 index 000000000..0c3f60c2e --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Sports/data/fusion18/carcols.meta @@ -0,0 +1,633 @@ + + + + + + + + + + + + + + 135_fusion18_modkit + + MKT_SPECIAL + + + + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_BRAKES + + + + + + + VMT_BRAKES + + + + + + + VMT_BRAKES + + + + + + + VMT_GEARBOX + + + + + + + VMT_GEARBOX + + + + + + + VMT_GEARBOX + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + HORN_TRUCK + + + + VMT_HORN + + + HORN_COP + + + + VMT_HORN + + + HORN_CLOWN + + + + VMT_HORN + + + HORN_MUSICAL_1 + + + + VMT_HORN + + + HORN_MUSICAL_2 + + + + VMT_HORN + + + HORN_MUSICAL_3 + + + + VMT_HORN + + + HORN_MUSICAL_4 + + + + VMT_HORN + + + HORN_MUSICAL_5 + + + + VMT_HORN + + + HORN_SAD_TROMBONE + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_1 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_2 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_3 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_4 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_5 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_6 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_7 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_C0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_D0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_E0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_F0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_G0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_A0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_B0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_C1 + + + + VMT_HORN + + + HIPSTER_HORN_1 + + + + VMT_HORN + + + HIPSTER_HORN_2 + + + + VMT_HORN + + + HIPSTER_HORN_3 + + + + VMT_HORN + + + HIPSTER_HORN_4 + + + + VMT_HORN + + + INDEP_HORN_1 + + + + VMT_HORN + + + INDEP_HORN_2 + + + + VMT_HORN + + + INDEP_HORN_3 + + + + VMT_HORN + + + INDEP_HORN_4 + + + + VMT_HORN + + + LUXE_HORN_1 + + + + VMT_HORN + + + LUXE_HORN_2 + + + + VMT_HORN + + + LUXE_HORN_3 + + + + VMT_HORN + + + + LUXORY_HORN_1 + + + + VMT_HORN + + + + LUXURY_HORN_2 + + + + VMT_HORN + + + + LUXURY_HORN_3 + + + + VMT_HORN + + + ORGAN_HORN_LOOP_01 + + + + VMT_HORN + + + + ORGAN_HORN_LOOP_01_PREVIEW + + + + VMT_HORN + + + ORGAN_HORN_LOOP_02 + + + + VMT_HORN + + + + ORGAN_HORN_LOOP_02_PREVIEW + + + + VMT_HORN + + + LOWRIDER_HORN_1 + + + + VMT_HORN + + + + LOWRIDER_HORN_1_PREVIEW + + + + VMT_HORN + + + LOWRIDER_HORN_2 + + + + VMT_HORN + + + + LOWRIDER_HORN_2_PREVIEW + + + + VMT_HORN + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + VehicleLight_car_oldsquare + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + fusion18 + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-Sports/data/fusion18/carvariations.meta b/resources/[EGRP-CarPacks]/EGRP-Sports/data/fusion18/carvariations.meta new file mode 100644 index 000000000..d5632d46e --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Sports/data/fusion18/carvariations.meta @@ -0,0 +1,183 @@ + + + + + + + + + + + + + + + + fusion18 + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 0_default_modkit + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-Sports/data/fusion18/dlctext.meta b/resources/[EGRP-CarPacks]/EGRP-Sports/data/fusion18/dlctext.meta new file mode 100644 index 000000000..22bb4c390 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Sports/data/fusion18/dlctext.meta @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-Sports/data/fusion18/handling.meta b/resources/[EGRP-CarPacks]/EGRP-Sports/data/fusion18/handling.meta new file mode 100644 index 000000000..9f41f2f5c --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Sports/data/fusion18/handling.meta @@ -0,0 +1,67 @@ + + + + + + FUSION18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 440010 + 0 + 0 + SPORTS_CAR + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/tahoe/vehicles.meta b/resources/[EGRP-CarPacks]/EGRP-Sports/data/fusion18/vehicles.meta similarity index 53% rename from resources/[EGRP-CarPacks]/EGRP-SUVs/data/tahoe/vehicles.meta rename to resources/[EGRP-CarPacks]/EGRP-Sports/data/fusion18/vehicles.meta index b5147ce86..58ac18caf 100644 --- a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/tahoe/vehicles.meta +++ b/resources/[EGRP-CarPacks]/EGRP-Sports/data/fusion18/vehicles.meta @@ -1,48 +1,57 @@ - + vehshare - - tahoe - tahoe - TAHOE - TAHOE - Chevrolet Tahoe + + fusion18 + fusion18 + FUSION18 + FUSIONPLATINUM + FORD null null null null null - insurgent - LAYOUT_RANGER - TAHOE_COVER_OFFSET_INFO + STANIER + LAYOUT_STANDARD + STANIER_COVER_OFFSET_INFO EXPLOSION_INFO_DEFAULT DEFAULT_FOLLOW_VEHICLE_CAMERA MID_BOX_VEHICLE_AIM_CAMERA - VEHICLE_BONNET_CAMERA_MID - DEFAULT_POV_CAMERA_LOOKAROUND_MID - - + VEHICLE_BONNET_CAMERA_MID_HIGH + REDUCED_NEAR_CLIP_POV_CAMERA + - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + - - - VFXVEHICLEINFO_CAR_OFFROAD + + + VFXVEHICLEINFO_CAR_GENERIC @@ -50,8 +59,8 @@ - - + + @@ -60,18 +69,18 @@ - + - 450.000000 - 460.000000 - 470.000000 - 480.000000 - 500.000000 - 500.000000 + 15.000000 + 30.000000 + 50.000000 + 100.000000 + 500.000000 + 500.000000 - + @@ -79,19 +88,16 @@ - + SWANKNESS_1 - - FLAG_AVERAGE_CAR FLAG_POOR_CAR FLAG_USE_HIGHER_DOOR_TORQUE FLAG_IS_BULKY FLAG_ATTACH_TRAILER_ON_HIGHWAY FLAG_HAS_INTERIOR_EXTRAS + + FLAG_AVERAGE_CAR FLAG_POOR_CAR FLAG_HAS_INTERIOR_EXTRAS VEHICLE_TYPE_CAR VPT_FRONT_AND_BACK_PLATES - VDT_BOBCAT - VC_SUV - VWT_OFFROAD - - boattrailer - trailersmall - + VDT_ZTYPE + VC_SEDAN + VWT_MUSCLE + @@ -107,24 +113,22 @@ WHEEL_REAR_RIGHT_CAMERA WHEEL_REAR_LEFT_CAMERA - Truck + - - RANGER_RANCHERXL_FRONT_LEFT - RANGER_FRONT_RIGHT - RANGER_RANCHERXL2_REAR_LEFT - RANGER_RANCHERXL2_REAR_RIGHT + + STD_STANIER_FRONT_LEFT + STD_TORNADO_FRONT_RIGHT + STD_POLICE2_REAR_LEFT + STD_POLICE2_REAR_RIGHT - - - vehicles_bob_interior - tahoe + + vehicles_bob_brown_interior + fusion18 - - + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-Sports/data/srtday20/carcols.meta b/resources/[EGRP-CarPacks]/EGRP-Sports/data/srtday20/carcols.meta new file mode 100644 index 000000000..dec75d85e --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Sports/data/srtday20/carcols.meta @@ -0,0 +1,633 @@ + + + + + + + + + + + + + + 135_srtday20_modkit + + MKT_SPECIAL + + + + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_BRAKES + + + + + + + VMT_BRAKES + + + + + + + VMT_BRAKES + + + + + + + VMT_GEARBOX + + + + + + + VMT_GEARBOX + + + + + + + VMT_GEARBOX + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + HORN_TRUCK + + + + VMT_HORN + + + HORN_COP + + + + VMT_HORN + + + HORN_CLOWN + + + + VMT_HORN + + + HORN_MUSICAL_1 + + + + VMT_HORN + + + HORN_MUSICAL_2 + + + + VMT_HORN + + + HORN_MUSICAL_3 + + + + VMT_HORN + + + HORN_MUSICAL_4 + + + + VMT_HORN + + + HORN_MUSICAL_5 + + + + VMT_HORN + + + HORN_SAD_TROMBONE + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_1 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_2 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_3 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_4 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_5 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_6 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_7 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_C0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_D0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_E0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_F0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_G0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_A0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_B0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_C1 + + + + VMT_HORN + + + HIPSTER_HORN_1 + + + + VMT_HORN + + + HIPSTER_HORN_2 + + + + VMT_HORN + + + HIPSTER_HORN_3 + + + + VMT_HORN + + + HIPSTER_HORN_4 + + + + VMT_HORN + + + INDEP_HORN_1 + + + + VMT_HORN + + + INDEP_HORN_2 + + + + VMT_HORN + + + INDEP_HORN_3 + + + + VMT_HORN + + + INDEP_HORN_4 + + + + VMT_HORN + + + LUXE_HORN_1 + + + + VMT_HORN + + + LUXE_HORN_2 + + + + VMT_HORN + + + LUXE_HORN_3 + + + + VMT_HORN + + + + LUXORY_HORN_1 + + + + VMT_HORN + + + + LUXURY_HORN_2 + + + + VMT_HORN + + + + LUXURY_HORN_3 + + + + VMT_HORN + + + ORGAN_HORN_LOOP_01 + + + + VMT_HORN + + + + ORGAN_HORN_LOOP_01_PREVIEW + + + + VMT_HORN + + + ORGAN_HORN_LOOP_02 + + + + VMT_HORN + + + + ORGAN_HORN_LOOP_02_PREVIEW + + + + VMT_HORN + + + LOWRIDER_HORN_1 + + + + VMT_HORN + + + + LOWRIDER_HORN_1_PREVIEW + + + + VMT_HORN + + + LOWRIDER_HORN_2 + + + + VMT_HORN + + + + LOWRIDER_HORN_2_PREVIEW + + + + VMT_HORN + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + VehicleLight_car_oldsquare + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + srtday20 + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-Sports/data/srtday20/carvariations.meta b/resources/[EGRP-CarPacks]/EGRP-Sports/data/srtday20/carvariations.meta new file mode 100644 index 000000000..af9596f22 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Sports/data/srtday20/carvariations.meta @@ -0,0 +1,183 @@ + + + + + + + + + + + + + + + + srtday20 + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 0_default_modkit + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-Sports/data/srtday20/dlctext.meta b/resources/[EGRP-CarPacks]/EGRP-Sports/data/srtday20/dlctext.meta new file mode 100644 index 000000000..22bb4c390 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Sports/data/srtday20/dlctext.meta @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-Sports/data/srtday20/handling.meta b/resources/[EGRP-CarPacks]/EGRP-Sports/data/srtday20/handling.meta new file mode 100644 index 000000000..0d3f6dbcb --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Sports/data/srtday20/handling.meta @@ -0,0 +1,67 @@ + + + + + + SRTDAY20 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 440010 + 0 + 0 + SPORTS_CAR + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-Sports/data/srtday20/vehicles.meta b/resources/[EGRP-CarPacks]/EGRP-Sports/data/srtday20/vehicles.meta new file mode 100644 index 000000000..b8556e558 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Sports/data/srtday20/vehicles.meta @@ -0,0 +1,136 @@ + + + vehshare + + + + srtday20 + srtday20 + SRTDAY20 + SRTHellcatDaytona + Dodge + null + null + null + null + + null + BUFFALO2 + LAYOUT_STANDARD + BUFFALO_COVER_OFFSET_INFO + EXPLOSION_INFO_DEFAULT + + DEFAULT_FOLLOW_VEHICLE_CAMERA + DEFAULT_THIRD_PERSON_VEHICLE_AIM_CAMERA + VEHICLE_BONNET_CAMERA_STANDARD + DEFAULT_POV_CAMERA + + + + + + + + + + + + + + + + + + + + + + + + + + + + VFXVEHICLEINFO_CAR_GENERIC + + + + + + + + + + + + + + + + + + + + + + 15.000000 + 30.000000 + 65.000000 + 130.000000 + 500.000000 + 500.000000 + + + + + + + + + + + SWANKNESS_3 + + FLAG_AVERAGE_CAR FLAG_RECESSED_HEADLIGHT_CORONAS FLAG_HAS_INTERIOR_EXTRAS + VEHICLE_TYPE_CAR + VPT_BACK_PLATES + VDT_ZTYPE + VC_SPORT + VWT_SPORT + + + + + EXTRA_1 EXTRA_2 EXTRA_3 EXTRA_4 EXTRA_5 + + + + + + EXTRA_1 + + + WHEEL_FRONT_RIGHT_CAMERA + WHEEL_FRONT_LEFT_CAMERA + WHEEL_REAR_RIGHT_CAMERA + WHEEL_REAR_LEFT_CAMERA + + + + + + + STD_BUFFALO_FRONT_LEFT + STD_BUFFALO_FRONT_RIGHT + STD_BUFFALO_REAR_LEFT + STD_BUFFALO_REAR_RIGHT + + + + + + vehicles_bob_brown_interior + srtday20 + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-Sports/data/volkssle/carcols.meta b/resources/[EGRP-CarPacks]/EGRP-Sports/data/volkssle/carcols.meta new file mode 100644 index 000000000..c31d081cc --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Sports/data/volkssle/carcols.meta @@ -0,0 +1,633 @@ + + + + + + + + + + + + + + 135_volkssle_modkit + + MKT_SPECIAL + + + + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_BRAKES + + + + + + + VMT_BRAKES + + + + + + + VMT_BRAKES + + + + + + + VMT_GEARBOX + + + + + + + VMT_GEARBOX + + + + + + + VMT_GEARBOX + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + HORN_TRUCK + + + + VMT_HORN + + + HORN_COP + + + + VMT_HORN + + + HORN_CLOWN + + + + VMT_HORN + + + HORN_MUSICAL_1 + + + + VMT_HORN + + + HORN_MUSICAL_2 + + + + VMT_HORN + + + HORN_MUSICAL_3 + + + + VMT_HORN + + + HORN_MUSICAL_4 + + + + VMT_HORN + + + HORN_MUSICAL_5 + + + + VMT_HORN + + + HORN_SAD_TROMBONE + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_1 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_2 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_3 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_4 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_5 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_6 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_7 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_C0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_D0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_E0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_F0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_G0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_A0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_B0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_C1 + + + + VMT_HORN + + + HIPSTER_HORN_1 + + + + VMT_HORN + + + HIPSTER_HORN_2 + + + + VMT_HORN + + + HIPSTER_HORN_3 + + + + VMT_HORN + + + HIPSTER_HORN_4 + + + + VMT_HORN + + + INDEP_HORN_1 + + + + VMT_HORN + + + INDEP_HORN_2 + + + + VMT_HORN + + + INDEP_HORN_3 + + + + VMT_HORN + + + INDEP_HORN_4 + + + + VMT_HORN + + + LUXE_HORN_1 + + + + VMT_HORN + + + LUXE_HORN_2 + + + + VMT_HORN + + + LUXE_HORN_3 + + + + VMT_HORN + + + + LUXORY_HORN_1 + + + + VMT_HORN + + + + LUXURY_HORN_2 + + + + VMT_HORN + + + + LUXURY_HORN_3 + + + + VMT_HORN + + + ORGAN_HORN_LOOP_01 + + + + VMT_HORN + + + + ORGAN_HORN_LOOP_01_PREVIEW + + + + VMT_HORN + + + ORGAN_HORN_LOOP_02 + + + + VMT_HORN + + + + ORGAN_HORN_LOOP_02_PREVIEW + + + + VMT_HORN + + + LOWRIDER_HORN_1 + + + + VMT_HORN + + + + LOWRIDER_HORN_1_PREVIEW + + + + VMT_HORN + + + LOWRIDER_HORN_2 + + + + VMT_HORN + + + + LOWRIDER_HORN_2_PREVIEW + + + + VMT_HORN + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + VehicleLight_car_oldsquare + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + volkssle + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-Sports/data/volkssle/carvariations.meta b/resources/[EGRP-CarPacks]/EGRP-Sports/data/volkssle/carvariations.meta new file mode 100644 index 000000000..e30a9b6f1 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Sports/data/volkssle/carvariations.meta @@ -0,0 +1,191 @@ + + + + + + + + + + + + + + + + volkssle + + + + 134 + 134 + 0 + 0 + 14 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + 14 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + 14 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + 14 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + 14 + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + 14 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + 14 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + 14 + + + + + + + + + + + + + + + 0_default_modkit + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-Sports/data/volkssle/dlctext.meta b/resources/[EGRP-CarPacks]/EGRP-Sports/data/volkssle/dlctext.meta new file mode 100644 index 000000000..22bb4c390 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Sports/data/volkssle/dlctext.meta @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-Sports/data/volkssle/handling.meta b/resources/[EGRP-CarPacks]/EGRP-Sports/data/volkssle/handling.meta new file mode 100644 index 000000000..d9eae10ff --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Sports/data/volkssle/handling.meta @@ -0,0 +1,67 @@ + + + + + + VOLKSSLE + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 440010 + 0 + 0 + AVERAGE + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-Sports/data/volkssle/vehicles.meta b/resources/[EGRP-CarPacks]/EGRP-Sports/data/volkssle/vehicles.meta new file mode 100644 index 000000000..22fbf95e4 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Sports/data/volkssle/vehicles.meta @@ -0,0 +1,138 @@ + + + vehshare + + + + volkssle + volkssle + VOLKSSLE + Volkswagen + Passatsle + null + null + null + null + + null + ORACLE + LAYOUT_STD_LOWROOF + GRESLEY_COVER_OFFSET_INFO + EXPLOSION_INFO_DEFAULT + + DEFAULT_FOLLOW_VEHICLE_CAMERA + DEFAULT_THIRD_PERSON_VEHICLE_AIM_CAMERA + VEHICLE_BONNET_CAMERA_MID_HIGH + DEFAULT_POV_CAMERA + + + + + + + + + + + + + + + + + + + + + + + + + + + + VFXVEHICLEINFO_CAR_GENERIC + + + + + + + + + + + + + + + + + + + + + + 15.000000 + 30.000000 + 70.000000 + 140.000000 + 500.000000 + 500.000000 + + + + + + + + + + + SWANKNESS_3 + + FLAG_HAS_LIVERY FLAG_IS_BULKY FLAG_PARKING_SENSORS + VEHICLE_TYPE_CAR + VPT_FRONT_AND_BACK_PLATES + VDT_FEROCI + VC_SUV + VWT_SUV + + + + + extra_1 + + + + + + + extra_1 + + + + WHEEL_FRONT_RIGHT_CAMERA + WHEEL_FRONT_LEFT_CAMERA + WHEEL_REAR_RIGHT_CAMERA + WHEEL_REAR_LEFT_CAMERA + + Truck + + + + + STD_DILETTANTE_FRONT_LEFT + STD_DILETTANTE_FRONT_RIGHT + STD_BALLER_REAR_LEFT + STD_BALLER_REAR_RIGHT + + + + + + vehicles_bob_brown_interior + volkssle + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-Sports/stream/22530i/22530i.yft b/resources/[EGRP-CarPacks]/EGRP-Sports/stream/22530i/22530i.yft new file mode 100644 index 000000000..0a36b39c4 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Sports/stream/22530i/22530i.yft @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04a8a84db176c04bdd8cea787bcd4d974e379da170ce7543693986d18c759c06 +size 4962795 diff --git a/resources/[EGRP-CarPacks]/EGRP-Sports/stream/22530i/22530i.ytd b/resources/[EGRP-CarPacks]/EGRP-Sports/stream/22530i/22530i.ytd new file mode 100644 index 000000000..574cfa283 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Sports/stream/22530i/22530i.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2a31dba1c53a6c6f2f77f213a6d1085048e04ff937dcea91512ecde5f9b5b44 +size 7391501 diff --git a/resources/[EGRP-CarPacks]/EGRP-Sports/stream/22530i/22530i_hi.yft b/resources/[EGRP-CarPacks]/EGRP-Sports/stream/22530i/22530i_hi.yft new file mode 100644 index 000000000..c4779427a --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Sports/stream/22530i/22530i_hi.yft @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d861515083da301041bc54b38451829f824b9b579a6ca0baa825f6f6e98988b +size 4962693 diff --git a/resources/[EGRP-CarPacks]/EGRP-Sports/stream/fusion18/fusion18.yft b/resources/[EGRP-CarPacks]/EGRP-Sports/stream/fusion18/fusion18.yft new file mode 100644 index 000000000..4c333052e --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Sports/stream/fusion18/fusion18.yft @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e856ec780db0cf3ea5e0e7cc45339c62fda8ed5c9a683f6c5c51a18a76e89df +size 8214049 diff --git a/resources/[EGRP-CarPacks]/EGRP-Sports/stream/fusion18/fusion18.ytd b/resources/[EGRP-CarPacks]/EGRP-Sports/stream/fusion18/fusion18.ytd new file mode 100644 index 000000000..674023193 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Sports/stream/fusion18/fusion18.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e2a95e93bb95ac5cb5fa0af63edef82d2dadc5bb86c38db2a690c9e19da107d +size 4445611 diff --git a/resources/[EGRP-CarPacks]/EGRP-Sports/stream/fusion18/fusion18_hi.yft b/resources/[EGRP-CarPacks]/EGRP-Sports/stream/fusion18/fusion18_hi.yft new file mode 100644 index 000000000..4c333052e --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Sports/stream/fusion18/fusion18_hi.yft @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e856ec780db0cf3ea5e0e7cc45339c62fda8ed5c9a683f6c5c51a18a76e89df +size 8214049 diff --git a/resources/[EGRP-CarPacks]/EGRP-Sports/stream/srtday20/srtday20.yft b/resources/[EGRP-CarPacks]/EGRP-Sports/stream/srtday20/srtday20.yft new file mode 100644 index 000000000..cae09540d --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Sports/stream/srtday20/srtday20.yft @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03832cea92c715b7d6c7228a61e071549d5f9c4964c179e5cacfd21d0ed1969a +size 5989051 diff --git a/resources/[EGRP-CarPacks]/EGRP-Sports/stream/srtday20/srtday20.ytd b/resources/[EGRP-CarPacks]/EGRP-Sports/stream/srtday20/srtday20.ytd new file mode 100644 index 000000000..77c27f8b9 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Sports/stream/srtday20/srtday20.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfe9b56be72db10fc31c1027fe20edbd7e8e2b76bbccd713398d35b56cf8165f +size 2744514 diff --git a/resources/[EGRP-CarPacks]/EGRP-Sports/stream/srtday20/srtday20_hi.yft b/resources/[EGRP-CarPacks]/EGRP-Sports/stream/srtday20/srtday20_hi.yft new file mode 100644 index 000000000..cae09540d --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Sports/stream/srtday20/srtday20_hi.yft @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03832cea92c715b7d6c7228a61e071549d5f9c4964c179e5cacfd21d0ed1969a +size 5989051 diff --git a/resources/[EGRP-CarPacks]/EGRP-Sports/stream/volkssle/volkssle.yft b/resources/[EGRP-CarPacks]/EGRP-Sports/stream/volkssle/volkssle.yft new file mode 100644 index 000000000..ab22f95f0 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Sports/stream/volkssle/volkssle.yft @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10106f996d9fab92838140d2e8ee5f561ba2baf9dee182c32ef7f8f91b6e5d0f +size 4400086 diff --git a/resources/[EGRP-CarPacks]/EGRP-Sports/stream/volkssle/volkssle.ytd b/resources/[EGRP-CarPacks]/EGRP-Sports/stream/volkssle/volkssle.ytd new file mode 100644 index 000000000..76529acff --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Sports/stream/volkssle/volkssle.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9174ce99af9b660c66ba97f2ffb80e4e4fba0d06590c870a26aa8122ee69d85 +size 7075766 diff --git a/resources/[EGRP-CarPacks]/EGRP-Sports/stream/volkssle/volkssle_hi.yft b/resources/[EGRP-CarPacks]/EGRP-Sports/stream/volkssle/volkssle_hi.yft new file mode 100644 index 000000000..6ec66742a --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Sports/stream/volkssle/volkssle_hi.yft @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5eb97e63602c40aeac2fbd882d60c3e47db87d3b27aec957c98e1ecb6f2cd3a1 +size 5162697 diff --git a/resources/[EGRP-CarPacks]/EGRP-Sports/vehicle_names.lua b/resources/[EGRP-CarPacks]/EGRP-Sports/vehicle_names.lua index 4b67dbcae..3a337941a 100644 --- a/resources/[EGRP-CarPacks]/EGRP-Sports/vehicle_names.lua +++ b/resources/[EGRP-CarPacks]/EGRP-Sports/vehicle_names.lua @@ -126,6 +126,15 @@ Citizen.CreateThread(function() --amgh AddTextEntry('amgh', 'MERCEDES-BENZ E36 AMG COUPE 1995') --charger21 - AddTextEntry('charger21', 'Dodge Charger SRT 2021') + AddTextEntry('charger21', 'Dodge Charger SRT 2021') + -- 22530i + AddTextEntry('22530i', '2022 BMW 530i Series wagon ') + -- srtday20 + AddTextEntry('srtday20', 'Dodge Charger SRT DAYTONA 2020') + -- fusion18 + AddTextEntry('fusion18', '2018 Ford fusion') + -- volkssle + AddTextEntry('volkssle', '2022 volkswagen passat estate wagon') + end) \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-Vans/__resource.lua b/resources/[EGRP-CarPacks]/EGRP-Vans/__resource.lua index 7c8781765..2ab49aeec 100644 --- a/resources/[EGRP-CarPacks]/EGRP-Vans/__resource.lua +++ b/resources/[EGRP-CarPacks]/EGRP-Vans/__resource.lua @@ -330,20 +330,141 @@ data_file 'VEHICLE_LAYOUTS_FILE' 'data/58apache/dlctext.meta' data_file 'VEHICLE_VARIATION_FILE' 'data/24tacsr/carvariations.meta' data_file 'VEHICLE_LAYOUTS_FILE' 'data/24tacsr/dlctext.meta' - -- + -- 23lightlar files { - 'data/ /vehicles.meta', - 'data/ /carvariations.meta', - 'data/ /carcols.meta', - 'data/ /handling.meta', - 'data/ /vehiclelayouts.meta', + 'data/23lightlar/vehicles.meta', + 'data/23lightlar/carvariations.meta', + 'data/23lightlar/carcols.meta', + 'data/23lightlar/handling.meta', + 'data/23lightlar/vehiclelayouts.meta', } - data_file 'HANDLING_FILE' 'data/ /handling.meta' - data_file 'VEHICLE_METADATA_FILE' 'data/ /vehicles.meta' - data_file 'CARCOLS_FILE' 'data/ /carcols.meta' - data_file 'VEHICLE_VARIATION_FILE' 'data/ /carvariations.meta' - data_file 'VEHICLE_LAYOUTS_FILE' 'data/ /dlctext.meta' + data_file 'HANDLING_FILE' 'data/23lightlar/handling.meta' + data_file 'VEHICLE_METADATA_FILE' 'data/23lightlar/vehicles.meta' + data_file 'CARCOLS_FILE' 'data/23lightlar/carcols.meta' + data_file 'VEHICLE_VARIATION_FILE' 'data/23lightlar/carvariations.meta' + data_file 'VEHICLE_LAYOUTS_FILE' 'data/23lightlar/dlctext.meta' + + -- 23lightpro + files { + 'data/23lightpro/vehicles.meta', + 'data/23lightpro/carvariations.meta', + 'data/23lightpro/carcols.meta', + 'data/23lightpro/handling.meta', + 'data/23lightpro/vehiclelayouts.meta', +} + + data_file 'HANDLING_FILE' 'data/23lightpro/handling.meta' + data_file 'VEHICLE_METADATA_FILE' 'data/23lightpro/vehicles.meta' + data_file 'CARCOLS_FILE' 'data/23lightpro/carcols.meta' + data_file 'VEHICLE_VARIATION_FILE' 'data/23lightpro/carvariations.meta' + data_file 'VEHICLE_LAYOUTS_FILE' 'data/23lightpro/dlctext.meta' + + -- 85jimyoff + files { + 'data/85jimyoff/vehicles.meta', + 'data/85jimyoff/carvariations.meta', + 'data/85jimyoff/carcols.meta', + 'data/85jimyoff/handling.meta', + 'data/85jimyoff/vehiclelayouts.meta', +} + + data_file 'HANDLING_FILE' 'data/85jimyoff/handling.meta' + data_file 'VEHICLE_METADATA_FILE' 'data/85jimyoff/vehicles.meta' + data_file 'CARCOLS_FILE' 'data/85jimyoff/carcols.meta' + data_file 'VEHICLE_VARIATION_FILE' 'data/85jimyoff/carvariations.meta' + data_file 'VEHICLE_LAYOUTS_FILE' 'data/85jimyoff/dlctext.meta' + + -- glad20 + files { + 'data/glad20/vehicles.meta', + 'data/glad20/carvariations.meta', + 'data/glad20/carcols.meta', + 'data/glad20/handling.meta', + 'data/glad20/vehiclelayouts.meta', +} + + data_file 'HANDLING_FILE' 'data/glad20/handling.meta' + data_file 'VEHICLE_METADATA_FILE' 'data/glad20/vehicles.meta' + data_file 'CARCOLS_FILE' 'data/glad20/carcols.meta' + data_file 'VEHICLE_VARIATION_FILE' 'data/glad20/carvariations.meta' + data_file 'VEHICLE_LAYOUTS_FILE' 'data/glad20/dlctext.meta' + + -- 21f150 + files { + 'data/21f150/vehicles.meta', + 'data/21f150/carvariations.meta', + 'data/21f150/carcols.meta', + 'data/21f150/handling.meta', + 'data/21f150/vehiclelayouts.meta', +} + + data_file 'HANDLING_FILE' 'data/21f150/handling.meta' + data_file 'VEHICLE_METADATA_FILE' 'data/21f150/vehicles.meta' + data_file 'CARCOLS_FILE' 'data/21f150/carcols.meta' + data_file 'VEHICLE_VARIATION_FILE' 'data/21f150/carvariations.meta' + data_file 'VEHICLE_LAYOUTS_FILE' 'data/21f150/dlctext.meta' + + -- chevrst + files { + 'data/chevrst/vehicles.meta', + 'data/chevrst/carvariations.meta', + 'data/chevrst/carcols.meta', + 'data/chevrst/handling.meta', + 'data/chevrst/vehiclelayouts.meta', +} + + data_file 'HANDLING_FILE' 'data/chevrst/handling.meta' + data_file 'VEHICLE_METADATA_FILE' 'data/chevrst/vehicles.meta' + data_file 'CARCOLS_FILE' 'data/chevrst/carcols.meta' + data_file 'VEHICLE_VARIATION_FILE' 'data/chevrst/carvariations.meta' + data_file 'VEHICLE_LAYOUTS_FILE' 'data/chevrst/dlctext.meta' + + -- 21f250 + files { + 'data/21f250/vehicles.meta', + 'data/21f250/carvariations.meta', + 'data/21f250/carcols.meta', + 'data/21f250/handling.meta', + 'data/21f250/vehiclelayouts.meta', +} + + data_file 'HANDLING_FILE' 'data/21f250/handling.meta' + data_file 'VEHICLE_METADATA_FILE' 'data/21f250/vehicles.meta' + data_file 'CARCOLS_FILE' 'data/21f250/carcols.meta' + data_file 'VEHICLE_VARIATION_FILE' 'data/21f250/carvariations.meta' + data_file 'VEHICLE_LAYOUTS_FILE' 'data/21f250/dlctext.meta' + + -- 20rampw + files { + 'data/20rampw/vehicles.meta', + 'data/20rampw/carvariations.meta', + 'data/20rampw/carcols.meta', + 'data/20rampw/handling.meta', + 'data/20rampw/vehiclelayouts.meta', +} + + data_file 'HANDLING_FILE' 'data/20rampw/handling.meta' + data_file 'VEHICLE_METADATA_FILE' 'data/20rampw/vehicles.meta' + data_file 'CARCOLS_FILE' 'data/20rampw/carcols.meta' + data_file 'VEHICLE_VARIATION_FILE' 'data/20rampw/carvariations.meta' + data_file 'VEHICLE_LAYOUTS_FILE' 'data/20rampw/dlctext.meta' + + -- ram13 + files { + 'data/ram13/vehicles.meta', + 'data/ram13/carvariations.meta', + 'data/ram13/carcols.meta', + 'data/ram13/handling.meta', + 'data/ram13/vehiclelayouts.meta', +} + + data_file 'HANDLING_FILE' 'data/ram13/handling.meta' + data_file 'VEHICLE_METADATA_FILE' 'data/ram13/vehicles.meta' + data_file 'CARCOLS_FILE' 'data/ram13/carcols.meta' + data_file 'VEHICLE_VARIATION_FILE' 'data/ram13/carvariations.meta' + data_file 'VEHICLE_LAYOUTS_FILE' 'data/ram13/dlctext.meta' + client_script { 'vehicle_names.lua' diff --git a/resources/[EGRP-CarPacks]/EGRP-Vans/data/20rampw/carcols.meta b/resources/[EGRP-CarPacks]/EGRP-Vans/data/20rampw/carcols.meta new file mode 100644 index 000000000..58898404e --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Vans/data/20rampw/carcols.meta @@ -0,0 +1,633 @@ + + + + + + + + + + + + + + 135_20rampw_modkit + + MKT_SPECIAL + + + + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_BRAKES + + + + + + + VMT_BRAKES + + + + + + + VMT_BRAKES + + + + + + + VMT_GEARBOX + + + + + + + VMT_GEARBOX + + + + + + + VMT_GEARBOX + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + HORN_TRUCK + + + + VMT_HORN + + + HORN_COP + + + + VMT_HORN + + + HORN_CLOWN + + + + VMT_HORN + + + HORN_MUSICAL_1 + + + + VMT_HORN + + + HORN_MUSICAL_2 + + + + VMT_HORN + + + HORN_MUSICAL_3 + + + + VMT_HORN + + + HORN_MUSICAL_4 + + + + VMT_HORN + + + HORN_MUSICAL_5 + + + + VMT_HORN + + + HORN_SAD_TROMBONE + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_1 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_2 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_3 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_4 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_5 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_6 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_7 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_C0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_D0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_E0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_F0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_G0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_A0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_B0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_C1 + + + + VMT_HORN + + + HIPSTER_HORN_1 + + + + VMT_HORN + + + HIPSTER_HORN_2 + + + + VMT_HORN + + + HIPSTER_HORN_3 + + + + VMT_HORN + + + HIPSTER_HORN_4 + + + + VMT_HORN + + + INDEP_HORN_1 + + + + VMT_HORN + + + INDEP_HORN_2 + + + + VMT_HORN + + + INDEP_HORN_3 + + + + VMT_HORN + + + INDEP_HORN_4 + + + + VMT_HORN + + + LUXE_HORN_1 + + + + VMT_HORN + + + LUXE_HORN_2 + + + + VMT_HORN + + + LUXE_HORN_3 + + + + VMT_HORN + + + + LUXORY_HORN_1 + + + + VMT_HORN + + + + LUXURY_HORN_2 + + + + VMT_HORN + + + + LUXURY_HORN_3 + + + + VMT_HORN + + + ORGAN_HORN_LOOP_01 + + + + VMT_HORN + + + + ORGAN_HORN_LOOP_01_PREVIEW + + + + VMT_HORN + + + ORGAN_HORN_LOOP_02 + + + + VMT_HORN + + + + ORGAN_HORN_LOOP_02_PREVIEW + + + + VMT_HORN + + + LOWRIDER_HORN_1 + + + + VMT_HORN + + + + LOWRIDER_HORN_1_PREVIEW + + + + VMT_HORN + + + LOWRIDER_HORN_2 + + + + VMT_HORN + + + + LOWRIDER_HORN_2_PREVIEW + + + + VMT_HORN + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + VehicleLight_car_oldsquare + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 20rampw + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-Vans/data/20rampw/carvariations.meta b/resources/[EGRP-CarPacks]/EGRP-Vans/data/20rampw/carvariations.meta new file mode 100644 index 000000000..290c75fed --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Vans/data/20rampw/carvariations.meta @@ -0,0 +1,183 @@ + + + + + + + + + + + + + + + + 20rampw + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 0_default_modkit + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-Vans/data/20rampw/dlctext.meta b/resources/[EGRP-CarPacks]/EGRP-Vans/data/20rampw/dlctext.meta new file mode 100644 index 000000000..22bb4c390 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Vans/data/20rampw/dlctext.meta @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-Vans/data/20rampw/handling.meta b/resources/[EGRP-CarPacks]/EGRP-Vans/data/20rampw/handling.meta new file mode 100644 index 000000000..462b5e450 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Vans/data/20rampw/handling.meta @@ -0,0 +1,67 @@ + + + + + + 20RAMPW + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 440010 + 0 + 0 + AVERAGE + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-Vans/data/20rampw/vehicles.meta b/resources/[EGRP-CarPacks]/EGRP-Vans/data/20rampw/vehicles.meta new file mode 100644 index 000000000..5f472b189 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Vans/data/20rampw/vehicles.meta @@ -0,0 +1,152 @@ + + + vehshare + + + + 20rampw + 20rampw + 20RAMPW + Dodge + RAM POWERWAGON + null + null + null + null + + null + BISON + LAYOUT_BISON + BISON_COVER_OFFSET_INFO + EXPLOSION_INFO_DEFAULT + + DEFAULT_FOLLOW_VEHICLE_CAMERA + DEFAULT_THIRD_PERSON_VEHICLE_AIM_CAMERA + VEHICLE_BONNET_CAMERA_STANDARD + DEFAULT_POV_CAMERA + + + + + + + + + + + + + + + + + + + + + + + + + + + + VFXVEHICLEINFO_CAR_GENERIC + + + + + + + + + + + + + + + + + + + + + + 15.000000 + 30.000000 + 70.000000 + 140.000000 + 500.000000 + 500.000000 + + + + + + + + + + + SWANKNESS_1 + + FLAG_HAS_LIVERY FLAG_EXTRAS_REQUIRE FLAG_EXTRAS_STRONG FLAG_IS_OFFROAD_VEHICLE FLAG_IS_BULKY FLAG_HAS_INTERIOR_EXTRAS + VEHICLE_TYPE_CAR + VPT_FRONT_AND_BACK_PLATES + VDT_ZTYPE + VC_VAN + VWT_SUV + + boattrailer + trailersmall + + + trailersmall2 + + + + S_M_M_AutoShop_01 + + + + S_M_M_AutoShop_02 + + + + S_M_M_Trucker_01 + + + + + + + + + + + + WHEEL_FRONT_RIGHT_CAMERA + WHEEL_FRONT_LEFT_CAMERA + WHEEL_REAR_RIGHT_CAMERA + WHEEL_REAR_LEFT_CAMERA + + Truck + + + + + RANGER_BISON_FRONT_LEFT + VAN_RUMPO_FRONT_RIGHT + RANGER_BISON_REAR_LEFT + RANGER_BISON_REAR_RIGHT + + + + + + vehicles_bob_brown_interior + 20rampw + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-Vans/data/21f150/carcols.meta b/resources/[EGRP-CarPacks]/EGRP-Vans/data/21f150/carcols.meta new file mode 100644 index 000000000..a715fc307 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Vans/data/21f150/carcols.meta @@ -0,0 +1,633 @@ + + + + + + + + + + + + + + 135_21f150_modkit + + MKT_SPECIAL + + + + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_BRAKES + + + + + + + VMT_BRAKES + + + + + + + VMT_BRAKES + + + + + + + VMT_GEARBOX + + + + + + + VMT_GEARBOX + + + + + + + VMT_GEARBOX + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + HORN_TRUCK + + + + VMT_HORN + + + HORN_COP + + + + VMT_HORN + + + HORN_CLOWN + + + + VMT_HORN + + + HORN_MUSICAL_1 + + + + VMT_HORN + + + HORN_MUSICAL_2 + + + + VMT_HORN + + + HORN_MUSICAL_3 + + + + VMT_HORN + + + HORN_MUSICAL_4 + + + + VMT_HORN + + + HORN_MUSICAL_5 + + + + VMT_HORN + + + HORN_SAD_TROMBONE + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_1 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_2 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_3 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_4 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_5 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_6 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_7 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_C0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_D0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_E0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_F0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_G0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_A0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_B0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_C1 + + + + VMT_HORN + + + HIPSTER_HORN_1 + + + + VMT_HORN + + + HIPSTER_HORN_2 + + + + VMT_HORN + + + HIPSTER_HORN_3 + + + + VMT_HORN + + + HIPSTER_HORN_4 + + + + VMT_HORN + + + INDEP_HORN_1 + + + + VMT_HORN + + + INDEP_HORN_2 + + + + VMT_HORN + + + INDEP_HORN_3 + + + + VMT_HORN + + + INDEP_HORN_4 + + + + VMT_HORN + + + LUXE_HORN_1 + + + + VMT_HORN + + + LUXE_HORN_2 + + + + VMT_HORN + + + LUXE_HORN_3 + + + + VMT_HORN + + + + LUXORY_HORN_1 + + + + VMT_HORN + + + + LUXURY_HORN_2 + + + + VMT_HORN + + + + LUXURY_HORN_3 + + + + VMT_HORN + + + ORGAN_HORN_LOOP_01 + + + + VMT_HORN + + + + ORGAN_HORN_LOOP_01_PREVIEW + + + + VMT_HORN + + + ORGAN_HORN_LOOP_02 + + + + VMT_HORN + + + + ORGAN_HORN_LOOP_02_PREVIEW + + + + VMT_HORN + + + LOWRIDER_HORN_1 + + + + VMT_HORN + + + + LOWRIDER_HORN_1_PREVIEW + + + + VMT_HORN + + + LOWRIDER_HORN_2 + + + + VMT_HORN + + + + LOWRIDER_HORN_2_PREVIEW + + + + VMT_HORN + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + VehicleLight_car_oldsquare + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 21f150 + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-Vans/data/21f150/carvariations.meta b/resources/[EGRP-CarPacks]/EGRP-Vans/data/21f150/carvariations.meta new file mode 100644 index 000000000..c1c2fa614 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Vans/data/21f150/carvariations.meta @@ -0,0 +1,183 @@ + + + + + + + + + + + + + + + + 21f150 + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 0_default_modkit + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-Vans/data/21f150/dlctext.meta b/resources/[EGRP-CarPacks]/EGRP-Vans/data/21f150/dlctext.meta new file mode 100644 index 000000000..22bb4c390 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Vans/data/21f150/dlctext.meta @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-Vans/data/21f150/handling.meta b/resources/[EGRP-CarPacks]/EGRP-Vans/data/21f150/handling.meta new file mode 100644 index 000000000..04dffd451 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Vans/data/21f150/handling.meta @@ -0,0 +1,67 @@ + + + + + + 21F150 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 440010 + 0 + 0 + AVERAGE + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/foxlight/vehicles.meta b/resources/[EGRP-CarPacks]/EGRP-Vans/data/21f150/vehicles.meta similarity index 54% rename from resources/[EGRP-CarPacks]/EGRP-SUVs/data/foxlight/vehicles.meta rename to resources/[EGRP-CarPacks]/EGRP-Vans/data/21f150/vehicles.meta index c3a2acb9e..40fd81194 100644 --- a/resources/[EGRP-CarPacks]/EGRP-SUVs/data/foxlight/vehicles.meta +++ b/resources/[EGRP-CarPacks]/EGRP-Vans/data/21f150/vehicles.meta @@ -1,56 +1,56 @@ - + vehshare - - foxlight - foxlight - foxlight - foxlight - FORD + + 21f150 + 21f150 + 21F150 + FORD + F150XLT null null null null null - NEON - LAYOUT_RANGER - SADLER_COVER_OFFSET_INFO + SADLER + LAYOUT_BISON + BISON_COVER_OFFSET_INFO EXPLOSION_INFO_DEFAULT DEFAULT_FOLLOW_VEHICLE_CAMERA DEFAULT_THIRD_PERSON_VEHICLE_AIM_CAMERA - VEHICLE_BONNET_CAMERA_MID + VEHICLE_BONNET_CAMERA_STANDARD DEFAULT_POV_CAMERA - - - - - - - - - - - - - + + + + + + + + + + + + + - - - + + + - - - + + + - + - - + + VFXVEHICLEINFO_CAR_GENERIC @@ -59,28 +59,28 @@ - - - - + + + + - - - + + + - 500.000000 - 500.000000 - 500.000000 - 500.000000 + 15.000000 + 30.000000 + 70.000000 + 140.000000 500.000000 500.000000 - + @@ -89,13 +89,13 @@ - SWANKNESS_5 + SWANKNESS_1 - FLAG_EXTRAS_ALL FLAG_IS_OFFROAD_VEHICLE FLAG_IS_BULKY FLAG_EXTRAS_STRONG FLAG_HAS_BULLET_RESISTANT_GLASS + FLAG_EXTRAS_REQUIRE FLAG_EXTRAS_STRONG FLAG_IS_OFFROAD_VEHICLE FLAG_IS_BULKY FLAG_HAS_INTERIOR_EXTRAS VEHICLE_TYPE_CAR - VPT_BACK_PLATES + VPT_FRONT_AND_BACK_PLATES VDT_TRUCKDIGI - VC_SUV + VC_VAN VWT_SUV boattrailer @@ -104,13 +104,24 @@ trailersmall2 - + + + S_M_M_AutoShop_01 + + + + S_M_M_AutoShop_02 + + + + S_M_M_Trucker_01 + + + - - VEH_EXT_BOOT - + - + @@ -120,30 +131,22 @@ WHEEL_REAR_RIGHT_CAMERA WHEEL_REAR_LEFT_CAMERA - + Truck - RANGER_CONTENDER_FRONT_LEFT - RANGER_CONTENDER_FRONT_RIGHT - RANGER_CRUSADER_REAR_LEFT - RANGER_CRUSADER_REAR_RIGHT + RANGER_BISON_FRONT_LEFT + VAN_RUMPO_FRONT_RIGHT + RANGER_BISON_REAR_LEFT + RANGER_BISON_REAR_RIGHT - - vehshare - vehicles_race_generic - - - vehshare - vehicles_race_interior - - - vehicles_race_generic - foxlight + + vehicles_bob_brown_interior + 21f150 \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-Vans/data/21f250/carcols.meta b/resources/[EGRP-CarPacks]/EGRP-Vans/data/21f250/carcols.meta new file mode 100644 index 000000000..5ee03ab4c --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Vans/data/21f250/carcols.meta @@ -0,0 +1,633 @@ + + + + + + + + + + + + + + 135_21f250_modkit + + MKT_SPECIAL + + + + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_BRAKES + + + + + + + VMT_BRAKES + + + + + + + VMT_BRAKES + + + + + + + VMT_GEARBOX + + + + + + + VMT_GEARBOX + + + + + + + VMT_GEARBOX + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + HORN_TRUCK + + + + VMT_HORN + + + HORN_COP + + + + VMT_HORN + + + HORN_CLOWN + + + + VMT_HORN + + + HORN_MUSICAL_1 + + + + VMT_HORN + + + HORN_MUSICAL_2 + + + + VMT_HORN + + + HORN_MUSICAL_3 + + + + VMT_HORN + + + HORN_MUSICAL_4 + + + + VMT_HORN + + + HORN_MUSICAL_5 + + + + VMT_HORN + + + HORN_SAD_TROMBONE + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_1 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_2 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_3 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_4 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_5 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_6 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_7 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_C0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_D0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_E0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_F0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_G0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_A0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_B0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_C1 + + + + VMT_HORN + + + HIPSTER_HORN_1 + + + + VMT_HORN + + + HIPSTER_HORN_2 + + + + VMT_HORN + + + HIPSTER_HORN_3 + + + + VMT_HORN + + + HIPSTER_HORN_4 + + + + VMT_HORN + + + INDEP_HORN_1 + + + + VMT_HORN + + + INDEP_HORN_2 + + + + VMT_HORN + + + INDEP_HORN_3 + + + + VMT_HORN + + + INDEP_HORN_4 + + + + VMT_HORN + + + LUXE_HORN_1 + + + + VMT_HORN + + + LUXE_HORN_2 + + + + VMT_HORN + + + LUXE_HORN_3 + + + + VMT_HORN + + + + LUXORY_HORN_1 + + + + VMT_HORN + + + + LUXURY_HORN_2 + + + + VMT_HORN + + + + LUXURY_HORN_3 + + + + VMT_HORN + + + ORGAN_HORN_LOOP_01 + + + + VMT_HORN + + + + ORGAN_HORN_LOOP_01_PREVIEW + + + + VMT_HORN + + + ORGAN_HORN_LOOP_02 + + + + VMT_HORN + + + + ORGAN_HORN_LOOP_02_PREVIEW + + + + VMT_HORN + + + LOWRIDER_HORN_1 + + + + VMT_HORN + + + + LOWRIDER_HORN_1_PREVIEW + + + + VMT_HORN + + + LOWRIDER_HORN_2 + + + + VMT_HORN + + + + LOWRIDER_HORN_2_PREVIEW + + + + VMT_HORN + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + VehicleLight_car_oldsquare + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 21f250 + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-Vans/data/21f250/carvariations.meta b/resources/[EGRP-CarPacks]/EGRP-Vans/data/21f250/carvariations.meta new file mode 100644 index 000000000..ef7117d06 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Vans/data/21f250/carvariations.meta @@ -0,0 +1,183 @@ + + + + + + + + + + + + + + + + 21f250 + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 0_default_modkit + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-Vans/data/21f250/dlctext.meta b/resources/[EGRP-CarPacks]/EGRP-Vans/data/21f250/dlctext.meta new file mode 100644 index 000000000..22bb4c390 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Vans/data/21f250/dlctext.meta @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-Vans/data/21f250/handling.meta b/resources/[EGRP-CarPacks]/EGRP-Vans/data/21f250/handling.meta new file mode 100644 index 000000000..66b5d5298 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Vans/data/21f250/handling.meta @@ -0,0 +1,67 @@ + + + + + + 21F250 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 440010 + 0 + 0 + AVERAGE + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-Vans/data/21f250/vehicles.meta b/resources/[EGRP-CarPacks]/EGRP-Vans/data/21f250/vehicles.meta new file mode 100644 index 000000000..388a8c7f8 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Vans/data/21f250/vehicles.meta @@ -0,0 +1,152 @@ + + + vehshare + + + + 21f250 + 21f250 + 21F250 + FORD + F250SD + null + null + null + null + + null + SADLER + LAYOUT_BISON + BISON_COVER_OFFSET_INFO + EXPLOSION_INFO_DEFAULT + + DEFAULT_FOLLOW_VEHICLE_CAMERA + DEFAULT_THIRD_PERSON_VEHICLE_AIM_CAMERA + VEHICLE_BONNET_CAMERA_STANDARD + DEFAULT_POV_CAMERA + + + + + + + + + + + + + + + + + + + + + + + + + + + + VFXVEHICLEINFO_CAR_GENERIC + + + + + + + + + + + + + + + + + + + + + + 15.000000 + 30.000000 + 70.000000 + 140.000000 + 500.000000 + 500.000000 + + + + + + + + + + + SWANKNESS_1 + + FLAG_EXTRAS_REQUIRE FLAG_EXTRAS_STRONG FLAG_IS_OFFROAD_VEHICLE FLAG_IS_BULKY FLAG_HAS_INTERIOR_EXTRAS + VEHICLE_TYPE_CAR + VPT_FRONT_AND_BACK_PLATES + VDT_ZTYPE + VC_VAN + VWT_SUV + + boattrailer + trailersmall + + + trailersmall2 + + + + S_M_M_AutoShop_01 + + + + S_M_M_AutoShop_02 + + + + S_M_M_Trucker_01 + + + + + + + + + + + + WHEEL_FRONT_RIGHT_CAMERA + WHEEL_FRONT_LEFT_CAMERA + WHEEL_REAR_RIGHT_CAMERA + WHEEL_REAR_LEFT_CAMERA + + Truck + + + + + RANGER_BISON_FRONT_LEFT + VAN_RUMPO_FRONT_RIGHT + RANGER_BISON_REAR_LEFT + RANGER_BISON_REAR_RIGHT + + + + + + vehicles_bob_brown_interior + 21f250 + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-Vans/data/23lightlar/carcols.meta b/resources/[EGRP-CarPacks]/EGRP-Vans/data/23lightlar/carcols.meta new file mode 100644 index 000000000..ebf029c3c --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Vans/data/23lightlar/carcols.meta @@ -0,0 +1,633 @@ + + + + + + + + + + + + + + 135_23lightlar_modkit + + MKT_SPECIAL + + + + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_BRAKES + + + + + + + VMT_BRAKES + + + + + + + VMT_BRAKES + + + + + + + VMT_GEARBOX + + + + + + + VMT_GEARBOX + + + + + + + VMT_GEARBOX + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + HORN_TRUCK + + + + VMT_HORN + + + HORN_COP + + + + VMT_HORN + + + HORN_CLOWN + + + + VMT_HORN + + + HORN_MUSICAL_1 + + + + VMT_HORN + + + HORN_MUSICAL_2 + + + + VMT_HORN + + + HORN_MUSICAL_3 + + + + VMT_HORN + + + HORN_MUSICAL_4 + + + + VMT_HORN + + + HORN_MUSICAL_5 + + + + VMT_HORN + + + HORN_SAD_TROMBONE + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_1 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_2 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_3 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_4 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_5 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_6 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_7 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_C0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_D0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_E0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_F0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_G0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_A0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_B0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_C1 + + + + VMT_HORN + + + HIPSTER_HORN_1 + + + + VMT_HORN + + + HIPSTER_HORN_2 + + + + VMT_HORN + + + HIPSTER_HORN_3 + + + + VMT_HORN + + + HIPSTER_HORN_4 + + + + VMT_HORN + + + INDEP_HORN_1 + + + + VMT_HORN + + + INDEP_HORN_2 + + + + VMT_HORN + + + INDEP_HORN_3 + + + + VMT_HORN + + + INDEP_HORN_4 + + + + VMT_HORN + + + LUXE_HORN_1 + + + + VMT_HORN + + + LUXE_HORN_2 + + + + VMT_HORN + + + LUXE_HORN_3 + + + + VMT_HORN + + + + LUXORY_HORN_1 + + + + VMT_HORN + + + + LUXURY_HORN_2 + + + + VMT_HORN + + + + LUXURY_HORN_3 + + + + VMT_HORN + + + ORGAN_HORN_LOOP_01 + + + + VMT_HORN + + + + ORGAN_HORN_LOOP_01_PREVIEW + + + + VMT_HORN + + + ORGAN_HORN_LOOP_02 + + + + VMT_HORN + + + + ORGAN_HORN_LOOP_02_PREVIEW + + + + VMT_HORN + + + LOWRIDER_HORN_1 + + + + VMT_HORN + + + + LOWRIDER_HORN_1_PREVIEW + + + + VMT_HORN + + + LOWRIDER_HORN_2 + + + + VMT_HORN + + + + LOWRIDER_HORN_2_PREVIEW + + + + VMT_HORN + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + VehicleLight_car_oldsquare + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 23lightlar + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-Vans/data/23lightlar/carvariations.meta b/resources/[EGRP-CarPacks]/EGRP-Vans/data/23lightlar/carvariations.meta new file mode 100644 index 000000000..5836e1d42 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Vans/data/23lightlar/carvariations.meta @@ -0,0 +1,199 @@ + + + + + + + + + + + + + + + + 23lightlar + + + + 134 + 0 + 0 + 0 + 16 + 18 + + + + + + + + + + + + + + + 134 + 0 + 0 + 0 + 16 + 18 + + + + + + + + + + + + + + + 134 + 0 + 0 + 0 + 16 + 18 + + + + + + + + + + + + + + + 134 + 0 + 0 + 0 + 16 + 18 + + + + + + + + + + + + + + + 134 + 0 + 0 + 0 + 16 + 18 + + + + + + + + + + + + + + 134 + 0 + 0 + 0 + 16 + 18 + + + + + + + + + + + + + + + 134 + 0 + 0 + 0 + 16 + 18 + + + + + + + + + + + + + + + 134 + 0 + 0 + 0 + 16 + 18 + + + + + + + + + + + + + + + 0_default_modkit + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-Vans/data/23lightlar/dlctext.meta b/resources/[EGRP-CarPacks]/EGRP-Vans/data/23lightlar/dlctext.meta new file mode 100644 index 000000000..22bb4c390 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Vans/data/23lightlar/dlctext.meta @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-Vans/data/23lightlar/handling.meta b/resources/[EGRP-CarPacks]/EGRP-Vans/data/23lightlar/handling.meta new file mode 100644 index 000000000..9113466b9 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Vans/data/23lightlar/handling.meta @@ -0,0 +1,67 @@ + + + + + + 23LIGHTLAR + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 440010 + 0 + 0 + SPORTS_CAR + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-Vans/data/23lightlar/vehicles.meta b/resources/[EGRP-CarPacks]/EGRP-Vans/data/23lightlar/vehicles.meta new file mode 100644 index 000000000..1f259e4b0 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Vans/data/23lightlar/vehicles.meta @@ -0,0 +1,156 @@ + + + vehshare + + + + 23lightlar + 23lightlar + 23LIGHTLAR + F150 + Lightning + null + null + null + null + + null + SURGE + LAYOUT_STD_HIGHWINDOW + BISON_COVER_OFFSET_INFO + EXPLOSION_INFO_DEFAULT + + DEFAULT_FOLLOW_VEHICLE_CAMERA + DEFAULT_THIRD_PERSON_VEHICLE_AIM_CAMERA + VEHICLE_BONNET_CAMERA_STANDARD + DEFAULT_POV_CAMERA + + + + + + + + + + + + + + + + + + + + + + + + + + + + VFXVEHICLEINFO_CAR_GENERIC + + + + + + + + + + + + + + + + + + + + + + 15.000000 + 30.000000 + 70.000000 + 140.000000 + 500.000000 + 500.000000 + + + + + + + + + + + SWANKNESS_1 + + FLAG_HAS_LIVERY FLAG_IS_OFFROAD_VEHICLE FLAG_IS_BULKY FLAG_USE_FAT_INTERIOR_LIGHT FLAG_EXTRAS_RARE FLAG_PARKING_SENSORS + VEHICLE_TYPE_CAR + VPT_FRONT_AND_BACK_PLATES + VDT_TRUCKDIGI + VC_VAN + VWT_SUV + + boattrailer + trailersmall + + + trailersmall2 + + + + S_M_M_AutoShop_01 + + + + S_M_M_AutoShop_02 + + + + S_M_M_Trucker_01 + + + + + EXTRA_2 + + + + + + + EXTRA_2 + + + + WHEEL_FRONT_RIGHT_CAMERA + WHEEL_FRONT_LEFT_CAMERA + WHEEL_REAR_RIGHT_CAMERA + WHEEL_REAR_LEFT_CAMERA + + Truck + + + + + RANGER_BISON_FRONT_LEFT + VAN_RUMPO_FRONT_RIGHT + RANGER_BISON_REAR_LEFT + RANGER_BISON_REAR_RIGHT + + + + + + vehicles_bob_brown_interior + 23lightlar + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-Vans/data/23lightpro/carcols.meta b/resources/[EGRP-CarPacks]/EGRP-Vans/data/23lightpro/carcols.meta new file mode 100644 index 000000000..31aa3dd9d --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Vans/data/23lightpro/carcols.meta @@ -0,0 +1,633 @@ + + + + + + + + + + + + + + 135_23lightpro_modkit + + MKT_SPECIAL + + + + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_BRAKES + + + + + + + VMT_BRAKES + + + + + + + VMT_BRAKES + + + + + + + VMT_GEARBOX + + + + + + + VMT_GEARBOX + + + + + + + VMT_GEARBOX + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + HORN_TRUCK + + + + VMT_HORN + + + HORN_COP + + + + VMT_HORN + + + HORN_CLOWN + + + + VMT_HORN + + + HORN_MUSICAL_1 + + + + VMT_HORN + + + HORN_MUSICAL_2 + + + + VMT_HORN + + + HORN_MUSICAL_3 + + + + VMT_HORN + + + HORN_MUSICAL_4 + + + + VMT_HORN + + + HORN_MUSICAL_5 + + + + VMT_HORN + + + HORN_SAD_TROMBONE + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_1 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_2 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_3 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_4 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_5 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_6 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_7 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_C0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_D0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_E0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_F0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_G0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_A0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_B0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_C1 + + + + VMT_HORN + + + HIPSTER_HORN_1 + + + + VMT_HORN + + + HIPSTER_HORN_2 + + + + VMT_HORN + + + HIPSTER_HORN_3 + + + + VMT_HORN + + + HIPSTER_HORN_4 + + + + VMT_HORN + + + INDEP_HORN_1 + + + + VMT_HORN + + + INDEP_HORN_2 + + + + VMT_HORN + + + INDEP_HORN_3 + + + + VMT_HORN + + + INDEP_HORN_4 + + + + VMT_HORN + + + LUXE_HORN_1 + + + + VMT_HORN + + + LUXE_HORN_2 + + + + VMT_HORN + + + LUXE_HORN_3 + + + + VMT_HORN + + + + LUXORY_HORN_1 + + + + VMT_HORN + + + + LUXURY_HORN_2 + + + + VMT_HORN + + + + LUXURY_HORN_3 + + + + VMT_HORN + + + ORGAN_HORN_LOOP_01 + + + + VMT_HORN + + + + ORGAN_HORN_LOOP_01_PREVIEW + + + + VMT_HORN + + + ORGAN_HORN_LOOP_02 + + + + VMT_HORN + + + + ORGAN_HORN_LOOP_02_PREVIEW + + + + VMT_HORN + + + LOWRIDER_HORN_1 + + + + VMT_HORN + + + + LOWRIDER_HORN_1_PREVIEW + + + + VMT_HORN + + + LOWRIDER_HORN_2 + + + + VMT_HORN + + + + LOWRIDER_HORN_2_PREVIEW + + + + VMT_HORN + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + VehicleLight_car_oldsquare + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 23lightpro + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-Vans/data/23lightpro/carvariations.meta b/resources/[EGRP-CarPacks]/EGRP-Vans/data/23lightpro/carvariations.meta new file mode 100644 index 000000000..08b447e73 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Vans/data/23lightpro/carvariations.meta @@ -0,0 +1,199 @@ + + + + + + + + + + + + + + + + 23lightpro + + + + 134 + 0 + 0 + 0 + 16 + 17 + + + + + + + + + + + + + + + 134 + 0 + 0 + 0 + 16 + 17 + + + + + + + + + + + + + + + 134 + 0 + 0 + 0 + 16 + 17 + + + + + + + + + + + + + + + 134 + 0 + 0 + 0 + 16 + 17 + + + + + + + + + + + + + + + 134 + 0 + 0 + 0 + 16 + 17 + + + + + + + + + + + + + + 134 + 0 + 0 + 0 + 16 + 17 + + + + + + + + + + + + + + + 134 + 0 + 0 + 0 + 16 + 17 + + + + + + + + + + + + + + + 134 + 0 + 0 + 0 + 16 + 17 + + + + + + + + + + + + + + + 0_default_modkit + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-Vans/data/23lightpro/dlctext.meta b/resources/[EGRP-CarPacks]/EGRP-Vans/data/23lightpro/dlctext.meta new file mode 100644 index 000000000..22bb4c390 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Vans/data/23lightpro/dlctext.meta @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-Vans/data/23lightpro/handling.meta b/resources/[EGRP-CarPacks]/EGRP-Vans/data/23lightpro/handling.meta new file mode 100644 index 000000000..1124452e0 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Vans/data/23lightpro/handling.meta @@ -0,0 +1,67 @@ + + + + + + 23LIGHTPRO + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 440010 + 0 + 0 + SPORTS_CAR + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-Vans/data/23lightpro/vehicles.meta b/resources/[EGRP-CarPacks]/EGRP-Vans/data/23lightpro/vehicles.meta new file mode 100644 index 000000000..bdeb1a50d --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Vans/data/23lightpro/vehicles.meta @@ -0,0 +1,156 @@ + + + vehshare + + + + 23lightpro + 23lightpro + 23LIGHTPRO + F150 + Lightning + null + null + null + null + + null + SURGE + LAYOUT_STD_HIGHWINDOW + BISON_COVER_OFFSET_INFO + EXPLOSION_INFO_DEFAULT + + DEFAULT_FOLLOW_VEHICLE_CAMERA + DEFAULT_THIRD_PERSON_VEHICLE_AIM_CAMERA + VEHICLE_BONNET_CAMERA_STANDARD + DEFAULT_POV_CAMERA + + + + + + + + + + + + + + + + + + + + + + + + + + + + VFXVEHICLEINFO_CAR_GENERIC + + + + + + + + + + + + + + + + + + + + + + 15.000000 + 30.000000 + 70.000000 + 140.000000 + 500.000000 + 500.000000 + + + + + + + + + + + SWANKNESS_1 + + FLAG_HAS_LIVERY FLAG_IS_OFFROAD_VEHICLE FLAG_IS_BULKY FLAG_USE_FAT_INTERIOR_LIGHT FLAG_EXTRAS_RARE + VEHICLE_TYPE_CAR + VPT_FRONT_AND_BACK_PLATES + VDT_TRUCKDIGI + VC_VAN + VWT_SUV + + boattrailer + trailersmall + + + trailersmall2 + + + + S_M_M_AutoShop_01 + + + + S_M_M_AutoShop_02 + + + + S_M_M_Trucker_01 + + + + + EXTRA_2 + + + + + + + EXTRA_2 + + + + WHEEL_FRONT_RIGHT_CAMERA + WHEEL_FRONT_LEFT_CAMERA + WHEEL_REAR_RIGHT_CAMERA + WHEEL_REAR_LEFT_CAMERA + + Truck + + + + + RANGER_BISON_FRONT_LEFT + VAN_RUMPO_FRONT_RIGHT + RANGER_BISON_REAR_LEFT + RANGER_BISON_REAR_RIGHT + + + + + + vehicles_bob_brown_interior + 23lightpro + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-Vans/data/85jimyoff/carvariations.meta b/resources/[EGRP-CarPacks]/EGRP-Vans/data/85jimyoff/carvariations.meta new file mode 100644 index 000000000..45a9fecfe --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Vans/data/85jimyoff/carvariations.meta @@ -0,0 +1,199 @@ + + + + + + + + + + + + + + + + 85jimyoff + + + + 35 + 121 + 0 + 121 + 98 + 99 + + + + + + + + + + + + + + + 35 + 121 + 0 + 121 + 98 + 99 + + + + + + + + + + + + + + + 35 + 121 + 0 + 121 + 98 + 99 + + + + + + + + + + + + + + + 35 + 121 + 0 + 121 + 98 + 99 + + + + + + + + + + + + + + + 35 + 121 + 0 + 121 + 98 + 99 + + + + + + + + + + + + + + 35 + 121 + 0 + 121 + 98 + 99 + + + + + + + + + + + + + + + 35 + 121 + 0 + 121 + 98 + 99 + + + + + + + + + + + + + + + 35 + 121 + 0 + 121 + 98 + 99 + + + + + + + + + + + + + + + 0_default_modkit + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-Vans/data/85jimyoff/dlctext.meta b/resources/[EGRP-CarPacks]/EGRP-Vans/data/85jimyoff/dlctext.meta new file mode 100644 index 000000000..22bb4c390 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Vans/data/85jimyoff/dlctext.meta @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-Vans/data/85jimyoff/handling.meta b/resources/[EGRP-CarPacks]/EGRP-Vans/data/85jimyoff/handling.meta new file mode 100644 index 000000000..b47e70dec --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Vans/data/85jimyoff/handling.meta @@ -0,0 +1,67 @@ + + + + + + 85JIMYOFF + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 440010 + 0 + 0 + AVERAGE + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-Vans/data/85jimyoff/vehicles.meta b/resources/[EGRP-CarPacks]/EGRP-Vans/data/85jimyoff/vehicles.meta new file mode 100644 index 000000000..dca2d2673 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Vans/data/85jimyoff/vehicles.meta @@ -0,0 +1,156 @@ + + + vehshare + + + + 85jimyoff + 85jimyoff + 85JIMYOFF + 85Jimmy + Chevrolet + null + null + null + null + + null + BODHI2 + LAYOUT_STANDARD + BISON_COVER_OFFSET_INFO + EXPLOSION_INFO_DEFAULT + + DEFAULT_FOLLOW_VEHICLE_CAMERA + DEFAULT_THIRD_PERSON_VEHICLE_AIM_CAMERA + VEHICLE_BONNET_CAMERA_STANDARD + DEFAULT_POV_CAMERA + + + + + + + + + + + + + + + + + + + + + + + + + + + + VFXVEHICLEINFO_CAR_OFFROAD + + + + + + + + + + + + + + + + + + + + + + 15.000000 + 30.000000 + 70.000000 + 140.000000 + 500.000000 + 500.000000 + + + + + + + + + + + SWANKNESS_1 + + FLAG_HAS_LIVERY FLAG_IS_OFFROAD_VEHICLE FLAG_IS_BULKY + VEHICLE_TYPE_CAR + VPT_FRONT_AND_BACK_PLATES + VDT_ZTYPE + VC_VAN + VWT_SUV + + boattrailer + trailersmall + + + trailersmall2 + + + + S_M_M_AutoShop_01 + + + + S_M_M_AutoShop_02 + + + + S_M_M_Trucker_01 + + + + + EXTRA_2 EXTRA_3 EXTRA_4 + + + + + + + EXTRA_2 EXTRA_3 EXTRA_4 + + + + WHEEL_FRONT_RIGHT_CAMERA + WHEEL_FRONT_LEFT_CAMERA + WHEEL_REAR_RIGHT_CAMERA + WHEEL_REAR_LEFT_CAMERA + + Truck + + + + + RANGER_BISON_FRONT_LEFT + VAN_RUMPO_FRONT_RIGHT + RANGER_BISON_REAR_LEFT + RANGER_BISON_REAR_RIGHT + + + + + + vehicles_bob_brown_interior + 85jimyoff + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-Vans/data/chevrst/carcols.meta b/resources/[EGRP-CarPacks]/EGRP-Vans/data/chevrst/carcols.meta new file mode 100644 index 000000000..5f8fbf9e5 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Vans/data/chevrst/carcols.meta @@ -0,0 +1,633 @@ + + + + + + + + + + + + + + 135_chevrst_modkit + + MKT_SPECIAL + + + + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_BRAKES + + + + + + + VMT_BRAKES + + + + + + + VMT_BRAKES + + + + + + + VMT_GEARBOX + + + + + + + VMT_GEARBOX + + + + + + + VMT_GEARBOX + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + HORN_TRUCK + + + + VMT_HORN + + + HORN_COP + + + + VMT_HORN + + + HORN_CLOWN + + + + VMT_HORN + + + HORN_MUSICAL_1 + + + + VMT_HORN + + + HORN_MUSICAL_2 + + + + VMT_HORN + + + HORN_MUSICAL_3 + + + + VMT_HORN + + + HORN_MUSICAL_4 + + + + VMT_HORN + + + HORN_MUSICAL_5 + + + + VMT_HORN + + + HORN_SAD_TROMBONE + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_1 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_2 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_3 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_4 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_5 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_6 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_7 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_C0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_D0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_E0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_F0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_G0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_A0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_B0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_C1 + + + + VMT_HORN + + + HIPSTER_HORN_1 + + + + VMT_HORN + + + HIPSTER_HORN_2 + + + + VMT_HORN + + + HIPSTER_HORN_3 + + + + VMT_HORN + + + HIPSTER_HORN_4 + + + + VMT_HORN + + + INDEP_HORN_1 + + + + VMT_HORN + + + INDEP_HORN_2 + + + + VMT_HORN + + + INDEP_HORN_3 + + + + VMT_HORN + + + INDEP_HORN_4 + + + + VMT_HORN + + + LUXE_HORN_1 + + + + VMT_HORN + + + LUXE_HORN_2 + + + + VMT_HORN + + + LUXE_HORN_3 + + + + VMT_HORN + + + + LUXORY_HORN_1 + + + + VMT_HORN + + + + LUXURY_HORN_2 + + + + VMT_HORN + + + + LUXURY_HORN_3 + + + + VMT_HORN + + + ORGAN_HORN_LOOP_01 + + + + VMT_HORN + + + + ORGAN_HORN_LOOP_01_PREVIEW + + + + VMT_HORN + + + ORGAN_HORN_LOOP_02 + + + + VMT_HORN + + + + ORGAN_HORN_LOOP_02_PREVIEW + + + + VMT_HORN + + + LOWRIDER_HORN_1 + + + + VMT_HORN + + + + LOWRIDER_HORN_1_PREVIEW + + + + VMT_HORN + + + LOWRIDER_HORN_2 + + + + VMT_HORN + + + + LOWRIDER_HORN_2_PREVIEW + + + + VMT_HORN + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + VehicleLight_car_oldsquare + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + chevrst + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-Vans/data/chevrst/carvariations.meta b/resources/[EGRP-CarPacks]/EGRP-Vans/data/chevrst/carvariations.meta new file mode 100644 index 000000000..50444be49 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Vans/data/chevrst/carvariations.meta @@ -0,0 +1,183 @@ + + + + + + + + + + + + + + + + chevrst + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 0_default_modkit + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-Vans/data/chevrst/dlctext.meta b/resources/[EGRP-CarPacks]/EGRP-Vans/data/chevrst/dlctext.meta new file mode 100644 index 000000000..22bb4c390 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Vans/data/chevrst/dlctext.meta @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-Vans/data/chevrst/handling.meta b/resources/[EGRP-CarPacks]/EGRP-Vans/data/chevrst/handling.meta new file mode 100644 index 000000000..dcc5836d7 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Vans/data/chevrst/handling.meta @@ -0,0 +1,67 @@ + + + + + + CHEVRST + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 440010 + 0 + 0 + AVERAGE + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-Vans/data/chevrst/vehicles.meta b/resources/[EGRP-CarPacks]/EGRP-Vans/data/chevrst/vehicles.meta new file mode 100644 index 000000000..bbbf07a85 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Vans/data/chevrst/vehicles.meta @@ -0,0 +1,152 @@ + + + vehshare + + + + chevrst + chevrst + CHEVRST + Chevrolet + SilveradoRST + null + null + null + null + + null + SADLER + LAYOUT_BISON + BISON_COVER_OFFSET_INFO + EXPLOSION_INFO_DEFAULT + + DEFAULT_FOLLOW_VEHICLE_CAMERA + DEFAULT_THIRD_PERSON_VEHICLE_AIM_CAMERA + VEHICLE_BONNET_CAMERA_STANDARD + DEFAULT_POV_CAMERA + + + + + + + + + + + + + + + + + + + + + + + + + + + + VFXVEHICLEINFO_CAR_GENERIC + + + + + + + + + + + + + + + + + + + + + + 15.000000 + 30.000000 + 70.000000 + 140.000000 + 500.000000 + 500.000000 + + + + + + + + + + + SWANKNESS_1 + + FLAG_EXTRAS_REQUIRE FLAG_EXTRAS_STRONG FLAG_IS_OFFROAD_VEHICLE FLAG_IS_BULKY FLAG_HAS_INTERIOR_EXTRAS + VEHICLE_TYPE_CAR + VPT_FRONT_AND_BACK_PLATES + VDT_ZTYPE + VC_VAN + VWT_SUV + + boattrailer + trailersmall + + + trailersmall2 + + + + S_M_M_AutoShop_01 + + + + S_M_M_AutoShop_02 + + + + S_M_M_Trucker_01 + + + + + + + + + + + + WHEEL_FRONT_RIGHT_CAMERA + WHEEL_FRONT_LEFT_CAMERA + WHEEL_REAR_RIGHT_CAMERA + WHEEL_REAR_LEFT_CAMERA + + Truck + + + + + RANGER_BISON_FRONT_LEFT + VAN_RUMPO_FRONT_RIGHT + RANGER_BISON_REAR_LEFT + RANGER_BISON_REAR_RIGHT + + + + + + vehicles_bob_brown_interior + chevrst + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-Vans/data/glad20/carcols.meta b/resources/[EGRP-CarPacks]/EGRP-Vans/data/glad20/carcols.meta new file mode 100644 index 000000000..61cf0306a --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Vans/data/glad20/carcols.meta @@ -0,0 +1,633 @@ + + + + + + + + + + + + + + 135_glad20_modkit + + MKT_SPECIAL + + + + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_BRAKES + + + + + + + VMT_BRAKES + + + + + + + VMT_BRAKES + + + + + + + VMT_GEARBOX + + + + + + + VMT_GEARBOX + + + + + + + VMT_GEARBOX + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + HORN_TRUCK + + + + VMT_HORN + + + HORN_COP + + + + VMT_HORN + + + HORN_CLOWN + + + + VMT_HORN + + + HORN_MUSICAL_1 + + + + VMT_HORN + + + HORN_MUSICAL_2 + + + + VMT_HORN + + + HORN_MUSICAL_3 + + + + VMT_HORN + + + HORN_MUSICAL_4 + + + + VMT_HORN + + + HORN_MUSICAL_5 + + + + VMT_HORN + + + HORN_SAD_TROMBONE + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_1 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_2 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_3 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_4 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_5 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_6 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_7 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_C0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_D0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_E0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_F0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_G0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_A0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_B0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_C1 + + + + VMT_HORN + + + HIPSTER_HORN_1 + + + + VMT_HORN + + + HIPSTER_HORN_2 + + + + VMT_HORN + + + HIPSTER_HORN_3 + + + + VMT_HORN + + + HIPSTER_HORN_4 + + + + VMT_HORN + + + INDEP_HORN_1 + + + + VMT_HORN + + + INDEP_HORN_2 + + + + VMT_HORN + + + INDEP_HORN_3 + + + + VMT_HORN + + + INDEP_HORN_4 + + + + VMT_HORN + + + LUXE_HORN_1 + + + + VMT_HORN + + + LUXE_HORN_2 + + + + VMT_HORN + + + LUXE_HORN_3 + + + + VMT_HORN + + + + LUXORY_HORN_1 + + + + VMT_HORN + + + + LUXURY_HORN_2 + + + + VMT_HORN + + + + LUXURY_HORN_3 + + + + VMT_HORN + + + ORGAN_HORN_LOOP_01 + + + + VMT_HORN + + + + ORGAN_HORN_LOOP_01_PREVIEW + + + + VMT_HORN + + + ORGAN_HORN_LOOP_02 + + + + VMT_HORN + + + + ORGAN_HORN_LOOP_02_PREVIEW + + + + VMT_HORN + + + LOWRIDER_HORN_1 + + + + VMT_HORN + + + + LOWRIDER_HORN_1_PREVIEW + + + + VMT_HORN + + + LOWRIDER_HORN_2 + + + + VMT_HORN + + + + LOWRIDER_HORN_2_PREVIEW + + + + VMT_HORN + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + VehicleLight_car_oldsquare + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + glad20 + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-Vans/data/glad20/carvariations.meta b/resources/[EGRP-CarPacks]/EGRP-Vans/data/glad20/carvariations.meta new file mode 100644 index 000000000..6ead44c11 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Vans/data/glad20/carvariations.meta @@ -0,0 +1,183 @@ + + + + + + + + + + + + + + + + glad20 + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 0_default_modkit + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-Vans/data/glad20/dlctext.meta b/resources/[EGRP-CarPacks]/EGRP-Vans/data/glad20/dlctext.meta new file mode 100644 index 000000000..22bb4c390 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Vans/data/glad20/dlctext.meta @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-Vans/data/glad20/handling.meta b/resources/[EGRP-CarPacks]/EGRP-Vans/data/glad20/handling.meta new file mode 100644 index 000000000..93dfdd175 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Vans/data/glad20/handling.meta @@ -0,0 +1,67 @@ + + + + + + GLAD20 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 440010 + 0 + 0 + AVERAGE + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-Vans/data/glad20/vehicles.meta b/resources/[EGRP-CarPacks]/EGRP-Vans/data/glad20/vehicles.meta new file mode 100644 index 000000000..52ce9f2b7 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Vans/data/glad20/vehicles.meta @@ -0,0 +1,138 @@ + + + vehshare + + + + glad20 + glad20 + GLAD20 + JEEP + GLADIATOR + null + null + null + null + + null + MESA + LAYOUT_4X4 + MESA_COVER_OFFSET_INFO + EXPLOSION_INFO_DEFAULT + + FOLLOW_JEEP_CAMERA + JEEP_AIM_CAMERA + VEHICLE_BONNET_CAMERA_MID_NEAR + DEFAULT_POV_CAMERA_LOOKAROUND_MID + + + + + + + + + + + + + + + + + + + + + + + + + + + + VFXVEHICLEINFO_CAR_OFFROAD + + + + + + + + + + + + + + + + + + + + + + 15.000000 + 30.000000 + 70.000000 + 140.000000 + 500.000000 + 500.000000 + + + + + + + + + + + SWANKNESS_1 + + FLAG_EXTRAS_ALL FLAG_EXTRAS_STRONG FLAG_AVERAGE_CAR FLAG_IS_OFFROAD_VEHICLE FLAG_IS_BULKY FLAG_HAS_INTERIOR_EXTRAS + VEHICLE_TYPE_CAR + VPT_FRONT_AND_BACK_PLATES + VC_SUV + VDT_DUKES + VWT_OFFROAD + + + + + EXTRA_1 + + + + + + + EXTRA_1 + + + + WHEEL_FRONT_RIGHT_CAMERA + WHEEL_FRONT_LEFT_CAMERA + WHEEL_REAR_RIGHT_CAMERA + WHEEL_REAR_LEFT_CAMERA + + Truck + + + + + RANGER_MESA_FRONT_LEFT + VAN_SPEEDO_FRONT_RIGHT + RANGER_CRUSADER_REAR_LEFT + RANGER_CRUSADER_REAR_RIGHT + + + + + + vehicles_bob_brown_interior + glad20 + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-Vans/data/ram13/carcols.meta b/resources/[EGRP-CarPacks]/EGRP-Vans/data/ram13/carcols.meta new file mode 100644 index 000000000..c7fdb3113 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Vans/data/ram13/carcols.meta @@ -0,0 +1,633 @@ + + + + + + + + + + + + + + 135_ram13_modkit + + MKT_SPECIAL + + + + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_ENGINE + + + + + + + VMT_BRAKES + + + + + + + VMT_BRAKES + + + + + + + VMT_BRAKES + + + + + + + VMT_GEARBOX + + + + + + + VMT_GEARBOX + + + + + + + VMT_GEARBOX + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + + + + + VMT_ARMOUR + + + HORN_TRUCK + + + + VMT_HORN + + + HORN_COP + + + + VMT_HORN + + + HORN_CLOWN + + + + VMT_HORN + + + HORN_MUSICAL_1 + + + + VMT_HORN + + + HORN_MUSICAL_2 + + + + VMT_HORN + + + HORN_MUSICAL_3 + + + + VMT_HORN + + + HORN_MUSICAL_4 + + + + VMT_HORN + + + HORN_MUSICAL_5 + + + + VMT_HORN + + + HORN_SAD_TROMBONE + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_1 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_2 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_3 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_4 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_5 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_6 + + + + VMT_HORN + + + MUSICAL_HORN_BUSINESS_7 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_C0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_D0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_E0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_F0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_G0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_A0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_B0 + + + + VMT_HORN + + + DLC_BUSI2_C_MAJOR_NOTES_C1 + + + + VMT_HORN + + + HIPSTER_HORN_1 + + + + VMT_HORN + + + HIPSTER_HORN_2 + + + + VMT_HORN + + + HIPSTER_HORN_3 + + + + VMT_HORN + + + HIPSTER_HORN_4 + + + + VMT_HORN + + + INDEP_HORN_1 + + + + VMT_HORN + + + INDEP_HORN_2 + + + + VMT_HORN + + + INDEP_HORN_3 + + + + VMT_HORN + + + INDEP_HORN_4 + + + + VMT_HORN + + + LUXE_HORN_1 + + + + VMT_HORN + + + LUXE_HORN_2 + + + + VMT_HORN + + + LUXE_HORN_3 + + + + VMT_HORN + + + + LUXORY_HORN_1 + + + + VMT_HORN + + + + LUXURY_HORN_2 + + + + VMT_HORN + + + + LUXURY_HORN_3 + + + + VMT_HORN + + + ORGAN_HORN_LOOP_01 + + + + VMT_HORN + + + + ORGAN_HORN_LOOP_01_PREVIEW + + + + VMT_HORN + + + ORGAN_HORN_LOOP_02 + + + + VMT_HORN + + + + ORGAN_HORN_LOOP_02_PREVIEW + + + + VMT_HORN + + + LOWRIDER_HORN_1 + + + + VMT_HORN + + + + LOWRIDER_HORN_1_PREVIEW + + + + VMT_HORN + + + LOWRIDER_HORN_2 + + + + VMT_HORN + + + + LOWRIDER_HORN_2_PREVIEW + + + + VMT_HORN + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + VMT_SUSPENSION + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + VehicleLight_car_oldsquare + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ram13 + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-Vans/data/ram13/carvariations.meta b/resources/[EGRP-CarPacks]/EGRP-Vans/data/ram13/carvariations.meta new file mode 100644 index 000000000..fb8f7bd03 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Vans/data/ram13/carvariations.meta @@ -0,0 +1,183 @@ + + + + + + + + + + + + + + + + ram13 + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 134 + 134 + 0 + 0 + + + + + + + + + + + + + + + 0_default_modkit + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-Vans/data/ram13/dlctext.meta b/resources/[EGRP-CarPacks]/EGRP-Vans/data/ram13/dlctext.meta new file mode 100644 index 000000000..22bb4c390 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Vans/data/ram13/dlctext.meta @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-Vans/data/ram13/handling.meta b/resources/[EGRP-CarPacks]/EGRP-Vans/data/ram13/handling.meta new file mode 100644 index 000000000..cb84cc813 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Vans/data/ram13/handling.meta @@ -0,0 +1,67 @@ + + + + + + RAM13 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 440010 + 0 + 0 + AVERAGE + + + + + + + + + + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-Vans/data/ram13/vehicles.meta b/resources/[EGRP-CarPacks]/EGRP-Vans/data/ram13/vehicles.meta new file mode 100644 index 000000000..33a5bc56c --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Vans/data/ram13/vehicles.meta @@ -0,0 +1,152 @@ + + + vehshare + + + + ram13 + ram13 + RAM13 + RAM + 2500SLT + null + null + null + null + + null + SADLER + LAYOUT_BISON + BISON_COVER_OFFSET_INFO + EXPLOSION_INFO_DEFAULT + + DEFAULT_FOLLOW_VEHICLE_CAMERA + DEFAULT_THIRD_PERSON_VEHICLE_AIM_CAMERA + VEHICLE_BONNET_CAMERA_STANDARD + DEFAULT_POV_CAMERA + + + + + + + + + + + + + + + + + + + + + + + + + + + + VFXVEHICLEINFO_CAR_GENERIC + + + + + + + + + + + + + + + + + + + + + + 15.000000 + 30.000000 + 70.000000 + 140.000000 + 500.000000 + 500.000000 + + + + + + + + + + + SWANKNESS_1 + + FLAG_HAS_LIVERY FLAG_EXTRAS_REQUIRE FLAG_EXTRAS_STRONG FLAG_IS_OFFROAD_VEHICLE FLAG_IS_BULKY FLAG_HAS_INTERIOR_EXTRAS + VEHICLE_TYPE_CAR + VPT_FRONT_AND_BACK_PLATES + VDT_ZTYPE + VC_VAN + VWT_SUV + + boattrailer + trailersmall + + + trailersmall2 + + + + S_M_M_AutoShop_01 + + + + S_M_M_AutoShop_02 + + + + S_M_M_Trucker_01 + + + + + + + + + + + + WHEEL_FRONT_RIGHT_CAMERA + WHEEL_FRONT_LEFT_CAMERA + WHEEL_REAR_RIGHT_CAMERA + WHEEL_REAR_LEFT_CAMERA + + Truck + + + + + RANGER_BISON_FRONT_LEFT + VAN_RUMPO_FRONT_RIGHT + RANGER_BISON_REAR_LEFT + RANGER_BISON_REAR_RIGHT + + + + + + vehicles_bob_brown_interior + ram13 + + + \ No newline at end of file diff --git a/resources/[EGRP-CarPacks]/EGRP-Vans/stream/20rampw/20rampw.yft b/resources/[EGRP-CarPacks]/EGRP-Vans/stream/20rampw/20rampw.yft new file mode 100644 index 000000000..cf7d1f5e1 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Vans/stream/20rampw/20rampw.yft @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e478e32a71a56087a8313b0edb33a699163c8ef3f5b8c905e7e0ced64787f60 +size 6626888 diff --git a/resources/[EGRP-CarPacks]/EGRP-Vans/stream/20rampw/20rampw.ytd b/resources/[EGRP-CarPacks]/EGRP-Vans/stream/20rampw/20rampw.ytd new file mode 100644 index 000000000..d75813182 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Vans/stream/20rampw/20rampw.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5d65f051a6939e93b0399cdb299cbe8ccdaf60da20dec84756224f62e7d70d2 +size 5453810 diff --git a/resources/[EGRP-CarPacks]/EGRP-Vans/stream/20rampw/20rampw_hi.yft b/resources/[EGRP-CarPacks]/EGRP-Vans/stream/20rampw/20rampw_hi.yft new file mode 100644 index 000000000..cf7d1f5e1 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Vans/stream/20rampw/20rampw_hi.yft @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e478e32a71a56087a8313b0edb33a699163c8ef3f5b8c905e7e0ced64787f60 +size 6626888 diff --git a/resources/[EGRP-CarPacks]/EGRP-Vans/stream/21f150/21f150.yft b/resources/[EGRP-CarPacks]/EGRP-Vans/stream/21f150/21f150.yft new file mode 100644 index 000000000..6182fb832 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Vans/stream/21f150/21f150.yft @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36262f292f7d6bcbd68388318428d238a86c001ab32c990e3a859eaeaf77b9ee +size 9158680 diff --git a/resources/[EGRP-CarPacks]/EGRP-Vans/stream/21f150/21f150.ytd b/resources/[EGRP-CarPacks]/EGRP-Vans/stream/21f150/21f150.ytd new file mode 100644 index 000000000..441e91793 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Vans/stream/21f150/21f150.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48981d52e1eb15f95a0980ea01a794467d651defafa1ce7dc1edbd488fa14600 +size 7255132 diff --git a/resources/[EGRP-CarPacks]/EGRP-Vans/stream/21f150/21f150_hi.yft b/resources/[EGRP-CarPacks]/EGRP-Vans/stream/21f150/21f150_hi.yft new file mode 100644 index 000000000..6182fb832 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Vans/stream/21f150/21f150_hi.yft @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36262f292f7d6bcbd68388318428d238a86c001ab32c990e3a859eaeaf77b9ee +size 9158680 diff --git a/resources/[EGRP-CarPacks]/EGRP-Vans/stream/21f250/21f250.yft b/resources/[EGRP-CarPacks]/EGRP-Vans/stream/21f250/21f250.yft new file mode 100644 index 000000000..d74815cf7 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Vans/stream/21f250/21f250.yft @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:327c8799461e31df32e9cbc736363f58a11e4a277001be7c74e371a1763ed69b +size 7102591 diff --git a/resources/[EGRP-CarPacks]/EGRP-Vans/stream/21f250/21f250.ytd b/resources/[EGRP-CarPacks]/EGRP-Vans/stream/21f250/21f250.ytd new file mode 100644 index 000000000..e65791b1c --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Vans/stream/21f250/21f250.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5855a2c5376caaec4d3e1a6e8c147880785ad45b4ab9d3732d6650f4e1af7456 +size 5106600 diff --git a/resources/[EGRP-CarPacks]/EGRP-Vans/stream/21f250/21f250_hi.yft b/resources/[EGRP-CarPacks]/EGRP-Vans/stream/21f250/21f250_hi.yft new file mode 100644 index 000000000..d74815cf7 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Vans/stream/21f250/21f250_hi.yft @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:327c8799461e31df32e9cbc736363f58a11e4a277001be7c74e371a1763ed69b +size 7102591 diff --git a/resources/[EGRP-CarPacks]/EGRP-Vans/stream/23lightlar/23lightlar.yft b/resources/[EGRP-CarPacks]/EGRP-Vans/stream/23lightlar/23lightlar.yft new file mode 100644 index 000000000..e40a23608 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Vans/stream/23lightlar/23lightlar.yft @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00d8c4279a9c28c303e5b064b630a3ab8558bb2c0509003b0dfb45370f482457 +size 4373212 diff --git a/resources/[EGRP-CarPacks]/EGRP-Vans/stream/23lightlar/23lightlar.ytd b/resources/[EGRP-CarPacks]/EGRP-Vans/stream/23lightlar/23lightlar.ytd new file mode 100644 index 000000000..9df02c321 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Vans/stream/23lightlar/23lightlar.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:890b7a7557a9e4c336b7e5c4459b494ac98c09e54e06e30851f2e245cf66341a +size 4632092 diff --git a/resources/[EGRP-CarPacks]/EGRP-Vans/stream/23lightlar/23lightlar_hi.yft b/resources/[EGRP-CarPacks]/EGRP-Vans/stream/23lightlar/23lightlar_hi.yft new file mode 100644 index 000000000..7355107e0 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Vans/stream/23lightlar/23lightlar_hi.yft @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:876b0a24668ebd2086f04e98b14727b849426ded99ec8355e26bf1cd935f61ba +size 5864000 diff --git a/resources/[EGRP-CarPacks]/EGRP-Vans/stream/23lightpro/23lightpro.yft b/resources/[EGRP-CarPacks]/EGRP-Vans/stream/23lightpro/23lightpro.yft new file mode 100644 index 000000000..e3d913b31 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Vans/stream/23lightpro/23lightpro.yft @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8cdde9ae9c91cb7703e1578c2f282db6173438297d52fb0fae1f8ffe1740fe81 +size 4170937 diff --git a/resources/[EGRP-CarPacks]/EGRP-Vans/stream/23lightpro/23lightpro.ytd b/resources/[EGRP-CarPacks]/EGRP-Vans/stream/23lightpro/23lightpro.ytd new file mode 100644 index 000000000..471b2cc58 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Vans/stream/23lightpro/23lightpro.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e293b3672f3d899a4adec881a53f3405bb21ce8ef1ac98fb81ff15e4ab5e1e8 +size 4647272 diff --git a/resources/[EGRP-CarPacks]/EGRP-Vans/stream/23lightpro/23lightpro_hi.yft b/resources/[EGRP-CarPacks]/EGRP-Vans/stream/23lightpro/23lightpro_hi.yft new file mode 100644 index 000000000..81ea9b508 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Vans/stream/23lightpro/23lightpro_hi.yft @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7334108b40b3e67a16b00ec38aaa1cf605f8390a8cc9400d38569e4f7c06dd91 +size 5457569 diff --git a/resources/[EGRP-CarPacks]/EGRP-Vans/stream/85jimyoff/85jimyoff.yft b/resources/[EGRP-CarPacks]/EGRP-Vans/stream/85jimyoff/85jimyoff.yft new file mode 100644 index 000000000..8ba31103b --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Vans/stream/85jimyoff/85jimyoff.yft @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3bf2e272eb31f3852e65c92e3e7ed1de1cd275005f723c0828ed407f6994e188 +size 4082358 diff --git a/resources/[EGRP-CarPacks]/EGRP-Vans/stream/85jimyoff/85jimyoff.ytd b/resources/[EGRP-CarPacks]/EGRP-Vans/stream/85jimyoff/85jimyoff.ytd new file mode 100644 index 000000000..3261f4f62 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Vans/stream/85jimyoff/85jimyoff.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa8cdd8cdf02436d5b0d7261b6be56ef1b6a19d3af042fdebac0de97a0eadcbf +size 5961079 diff --git a/resources/[EGRP-CarPacks]/EGRP-Vans/stream/85jimyoff/85jimyoff_hi.yft b/resources/[EGRP-CarPacks]/EGRP-Vans/stream/85jimyoff/85jimyoff_hi.yft new file mode 100644 index 000000000..c2931f57f --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Vans/stream/85jimyoff/85jimyoff_hi.yft @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81da3e34f4d08c7e06ee0ef16cc704dd73b2b504ecc0d2f7e6b15fc0727f9e0d +size 4024295 diff --git a/resources/[EGRP-CarPacks]/EGRP-Vans/stream/chevrst/chevrst.yft b/resources/[EGRP-CarPacks]/EGRP-Vans/stream/chevrst/chevrst.yft new file mode 100644 index 000000000..5e302d078 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Vans/stream/chevrst/chevrst.yft @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cba167f15ff9a5d8d55c5d46bb362bb7d3f2a9a0197194ff5bbc7f2711881e26 +size 8926241 diff --git a/resources/[EGRP-CarPacks]/EGRP-Vans/stream/chevrst/chevrst.ytd b/resources/[EGRP-CarPacks]/EGRP-Vans/stream/chevrst/chevrst.ytd new file mode 100644 index 000000000..70c7dfaf0 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Vans/stream/chevrst/chevrst.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbe395204ed65689a85d512a45bf15dc97e75dd2ad8eb1e84b945a9c012c88d1 +size 5251489 diff --git a/resources/[EGRP-CarPacks]/EGRP-Vans/stream/chevrst/chevrst_hi.yft b/resources/[EGRP-CarPacks]/EGRP-Vans/stream/chevrst/chevrst_hi.yft new file mode 100644 index 000000000..5e302d078 --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Vans/stream/chevrst/chevrst_hi.yft @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cba167f15ff9a5d8d55c5d46bb362bb7d3f2a9a0197194ff5bbc7f2711881e26 +size 8926241 diff --git a/resources/[EGRP-CarPacks]/EGRP-Vans/stream/glad20/glad20.yft b/resources/[EGRP-CarPacks]/EGRP-Vans/stream/glad20/glad20.yft new file mode 100644 index 000000000..bb17594af --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Vans/stream/glad20/glad20.yft @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24a998150290995c634733a563893f9f7ca4e386b06dcdf3c8fc31c4100ee9d6 +size 9494861 diff --git a/resources/[EGRP-CarPacks]/EGRP-Vans/stream/glad20/glad20.ytd b/resources/[EGRP-CarPacks]/EGRP-Vans/stream/glad20/glad20.ytd new file mode 100644 index 000000000..3e8701eac --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Vans/stream/glad20/glad20.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b8dea75d7706b89ff5abfb2591db097695ce7ab8472145dbd4fa59d4f39b740 +size 3932550 diff --git a/resources/[EGRP-CarPacks]/EGRP-Vans/stream/glad20/glad20_hi.yft b/resources/[EGRP-CarPacks]/EGRP-Vans/stream/glad20/glad20_hi.yft new file mode 100644 index 000000000..bb17594af --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Vans/stream/glad20/glad20_hi.yft @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24a998150290995c634733a563893f9f7ca4e386b06dcdf3c8fc31c4100ee9d6 +size 9494861 diff --git a/resources/[EGRP-CarPacks]/EGRP-Vans/stream/ram13/ram13.yft b/resources/[EGRP-CarPacks]/EGRP-Vans/stream/ram13/ram13.yft new file mode 100644 index 000000000..dbc29074c --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Vans/stream/ram13/ram13.yft @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e3424acaf943e5b8e85b5fd5ffb2a6a68f83c5c07fa4ed30735a1127601f00f +size 5782362 diff --git a/resources/[EGRP-CarPacks]/EGRP-Vans/stream/ram13/ram13.ytd b/resources/[EGRP-CarPacks]/EGRP-Vans/stream/ram13/ram13.ytd new file mode 100644 index 000000000..abd0d25fd --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Vans/stream/ram13/ram13.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37807c8ad02894efc9727c08e461232e0f9df6f86859b4f6d7f7c3cd04537002 +size 7584528 diff --git a/resources/[EGRP-CarPacks]/EGRP-Vans/stream/ram13/ram13_hi.yft b/resources/[EGRP-CarPacks]/EGRP-Vans/stream/ram13/ram13_hi.yft new file mode 100644 index 000000000..dbc29074c --- /dev/null +++ b/resources/[EGRP-CarPacks]/EGRP-Vans/stream/ram13/ram13_hi.yft @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e3424acaf943e5b8e85b5fd5ffb2a6a68f83c5c07fa4ed30735a1127601f00f +size 5782362 diff --git a/resources/[EGRP-CarPacks]/EGRP-Vans/vehicle_names.lua b/resources/[EGRP-CarPacks]/EGRP-Vans/vehicle_names.lua index d79bb9ef7..8a60b5388 100644 --- a/resources/[EGRP-CarPacks]/EGRP-Vans/vehicle_names.lua +++ b/resources/[EGRP-CarPacks]/EGRP-Vans/vehicle_names.lua @@ -47,7 +47,25 @@ Citizen.CreateThread(function() AddTextEntry('24taclim', 'Toyota Tacoma ForceMAX Limited 2024') -- 24tacsr AddTextEntry('24tacsr', 'Toyota Tacoma SR') - -- - AddTextEntry(' ', ' ') - -end) \ No newline at end of file + -- 23lightlar + AddTextEntry('23lightlar', '2023 F150 Lightning Lariat') + -- 23lightpro + AddTextEntry('23lightpro', '2023 F150 Lightning PRO') + -- 85jimyoff + AddTextEntry('85jimyoff', '1985 GMC Jimmy 2 Dr 4X4') + -- glad20 + AddTextEntry('glad20', '2020 jEEP Gladiator') + -- 21f150 + AddTextEntry('21f150', '2021 Ford F150 PowerBoost') + -- chevrst + AddTextEntry('chevrst', '2022 Chevy Silverado single cab ') + -- 21f250 + AddTextEntry('21f250', '2021 Ford F250 Lariat') + -- 20rampw + AddTextEntry('20rampw', '2020 RAM 2500 Heavy Duty') + -- ram13 + AddTextEntry('ram13', '2013 Dodge Ram 2500 Heavy Duty 4x4') + + +end) + \ No newline at end of file diff --git a/resources/thinline_leprops/fxmanifest.lua b/resources/thinline_leprops/fxmanifest.lua new file mode 100644 index 000000000..124a8179a --- /dev/null +++ b/resources/thinline_leprops/fxmanifest.lua @@ -0,0 +1,2 @@ +fx_version 'cerulean' +game 'gta5' \ No newline at end of file diff --git a/resources/thinline_leprops/stream/p_cs_cuffs_02_s.ydr b/resources/thinline_leprops/stream/p_cs_cuffs_02_s.ydr new file mode 100644 index 000000000..4b7550010 --- /dev/null +++ b/resources/thinline_leprops/stream/p_cs_cuffs_02_s.ydr @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3eb0657e042df7fbd026cd02a7fba37fba684e06ee30fe71c292c2c59ea02a6 +size 8555738 diff --git a/resources/thinline_leprops/stream/prop_cs_cuffs_01.ydr b/resources/thinline_leprops/stream/prop_cs_cuffs_01.ydr new file mode 100644 index 000000000..a2d34e651 --- /dev/null +++ b/resources/thinline_leprops/stream/prop_cs_cuffs_01.ydr @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69f752460adbb09319a1ace81fd436293d23eb8a815820f75a8eb680bec373dd +size 8616887 diff --git a/resources/thinline_leprops/stream/prop_cs_hand_radio.ydr b/resources/thinline_leprops/stream/prop_cs_hand_radio.ydr new file mode 100644 index 000000000..0c85882ed --- /dev/null +++ b/resources/thinline_leprops/stream/prop_cs_hand_radio.ydr @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:920468ec4cd63e16148450b588ea4615b4584c3c5bd0dc966b1821f9e24d71cb +size 3660714 diff --git a/resources/thinline_leprops/stream/prop_cs_police_torch.ydr b/resources/thinline_leprops/stream/prop_cs_police_torch.ydr new file mode 100644 index 000000000..70116de30 --- /dev/null +++ b/resources/thinline_leprops/stream/prop_cs_police_torch.ydr @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74ca9b57312566bb8a4170fa757d6cbed2299c9bc49dcd8fdc7814f3c74e56e8 +size 3471476 diff --git a/resources/thinline_leprops/stream/prop_cs_police_torch_02.yft b/resources/thinline_leprops/stream/prop_cs_police_torch_02.yft new file mode 100644 index 000000000..4c40cb317 --- /dev/null +++ b/resources/thinline_leprops/stream/prop_cs_police_torch_02.yft @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0de2d68a02edb431a255d61b16ee513015018275e24e7d0456b12220048ab14c +size 3701151 diff --git a/resources/thinline_leprops/stream/prop_cs_walkie_talkie.ydr b/resources/thinline_leprops/stream/prop_cs_walkie_talkie.ydr new file mode 100644 index 000000000..fbb1eb10e --- /dev/null +++ b/resources/thinline_leprops/stream/prop_cs_walkie_talkie.ydr @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06773b456133c3b194fb6cb5e831e2d97cb6702db83538675aba506b7a54d686 +size 3654784 diff --git a/resources/tls_6360holsters/fxmanifest.lua b/resources/tls_6360holsters/fxmanifest.lua new file mode 100644 index 000000000..90d6f63ff --- /dev/null +++ b/resources/tls_6360holsters/fxmanifest.lua @@ -0,0 +1,12 @@ +-- Generated with DurtyClothTool + +fx_version 'cerulean' +game { 'gta5' } + +files { + 'mp_m_freemode_01_mp_m_tls_6360holsters.meta', + 'mp_f_freemode_01_mp_f_tls_6360holsters.meta' +} + +data_file 'SHOP_PED_APPAREL_META_FILE' 'mp_m_freemode_01_mp_m_tls_6360holsters.meta' +data_file 'SHOP_PED_APPAREL_META_FILE' 'mp_f_freemode_01_mp_f_tls_6360holsters.meta' \ No newline at end of file diff --git a/resources/tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters.meta b/resources/tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters.meta new file mode 100644 index 000000000..3d245f02c --- /dev/null +++ b/resources/tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters.meta @@ -0,0 +1,14 @@ + + + mp_f_freemode_01 + mp_f_tls_6360holsters + mp_f_freemode_01_mp_f_tls_6360holsters + SCR_CHAR_MULTIPLAYER_F + MP_CreatureMetadata_tls6360holsters + + + + + + + \ No newline at end of file diff --git a/resources/tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters.meta b/resources/tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters.meta new file mode 100644 index 000000000..bb5f44176 --- /dev/null +++ b/resources/tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters.meta @@ -0,0 +1,14 @@ + + + mp_m_freemode_01 + mp_m_tls_6360holsters + mp_m_freemode_01_mp_m_tls_6360holsters + SCR_CHAR_MULTIPLAYER + MP_CreatureMetadata_tls6360holsters + + + + + + + \ No newline at end of file diff --git a/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters.ymt b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters.ymt new file mode 100644 index 000000000..b446a6fde Binary files /dev/null and b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters.ymt differ diff --git a/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_000_u.ydd b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_000_u.ydd new file mode 100644 index 000000000..6d1f2af29 Binary files /dev/null and b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_000_u.ydd differ diff --git a/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_001_u.ydd b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_001_u.ydd new file mode 100644 index 000000000..7bc4e5442 Binary files /dev/null and b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_001_u.ydd differ diff --git a/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_002_u.ydd b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_002_u.ydd new file mode 100644 index 000000000..a43e028de Binary files /dev/null and b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_002_u.ydd differ diff --git a/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_003_u.ydd b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_003_u.ydd new file mode 100644 index 000000000..98c50073a Binary files /dev/null and b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_003_u.ydd differ diff --git a/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_004_u.ydd b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_004_u.ydd new file mode 100644 index 000000000..855714ce3 Binary files /dev/null and b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_004_u.ydd differ diff --git a/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_005_u.ydd b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_005_u.ydd new file mode 100644 index 000000000..1862b3f63 Binary files /dev/null and b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_005_u.ydd differ diff --git a/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_006_u.ydd b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_006_u.ydd new file mode 100644 index 000000000..f1c05b57c Binary files /dev/null and b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_006_u.ydd differ diff --git a/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_007_u.ydd b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_007_u.ydd new file mode 100644 index 000000000..9c3bd42c6 Binary files /dev/null and b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_007_u.ydd differ diff --git a/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_008_u.ydd b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_008_u.ydd new file mode 100644 index 000000000..7616ef9d2 Binary files /dev/null and b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_008_u.ydd differ diff --git a/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_009_u.ydd b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_009_u.ydd new file mode 100644 index 000000000..2b4b55010 Binary files /dev/null and b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_009_u.ydd differ diff --git a/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_010_u.ydd b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_010_u.ydd new file mode 100644 index 000000000..6a25a242e Binary files /dev/null and b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_010_u.ydd differ diff --git a/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_011_u.ydd b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_011_u.ydd new file mode 100644 index 000000000..e132e8aab Binary files /dev/null and b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_011_u.ydd differ diff --git a/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_012_u.ydd b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_012_u.ydd new file mode 100644 index 000000000..64e2c5cb8 Binary files /dev/null and b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_012_u.ydd differ diff --git a/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_013_u.ydd b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_013_u.ydd new file mode 100644 index 000000000..7bf7434cf Binary files /dev/null and b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_013_u.ydd differ diff --git a/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_014_u.ydd b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_014_u.ydd new file mode 100644 index 000000000..7e209caf5 Binary files /dev/null and b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_014_u.ydd differ diff --git a/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_015_u.ydd b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_015_u.ydd new file mode 100644 index 000000000..7eee76cc1 Binary files /dev/null and b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_015_u.ydd differ diff --git a/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_016_u.ydd b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_016_u.ydd new file mode 100644 index 000000000..ce91c36b5 Binary files /dev/null and b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_016_u.ydd differ diff --git a/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_017_u.ydd b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_017_u.ydd new file mode 100644 index 000000000..3dc732eba Binary files /dev/null and b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_017_u.ydd differ diff --git a/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_018_u.ydd b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_018_u.ydd new file mode 100644 index 000000000..dfd29c04d Binary files /dev/null and b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_018_u.ydd differ diff --git a/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_019_u.ydd b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_019_u.ydd new file mode 100644 index 000000000..698978bd7 Binary files /dev/null and b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_019_u.ydd differ diff --git a/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_020_u.ydd b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_020_u.ydd new file mode 100644 index 000000000..e72b246ed Binary files /dev/null and b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_020_u.ydd differ diff --git a/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_021_u.ydd b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_021_u.ydd new file mode 100644 index 000000000..fe17c91c7 Binary files /dev/null and b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_021_u.ydd differ diff --git a/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_022_u.ydd b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_022_u.ydd new file mode 100644 index 000000000..04ea60a77 Binary files /dev/null and b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_022_u.ydd differ diff --git a/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_023_u.ydd b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_023_u.ydd new file mode 100644 index 000000000..91f827bd0 Binary files /dev/null and b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_023_u.ydd differ diff --git a/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_024_u.ydd b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_024_u.ydd new file mode 100644 index 000000000..07673d84e Binary files /dev/null and b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_024_u.ydd differ diff --git a/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_025_u.ydd b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_025_u.ydd new file mode 100644 index 000000000..e792a7a30 Binary files /dev/null and b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_025_u.ydd differ diff --git a/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_026_u.ydd b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_026_u.ydd new file mode 100644 index 000000000..90c08a494 Binary files /dev/null and b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_026_u.ydd differ diff --git a/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_027_u.ydd b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_027_u.ydd new file mode 100644 index 000000000..826b1fced Binary files /dev/null and b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_027_u.ydd differ diff --git a/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_028_u.ydd b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_028_u.ydd new file mode 100644 index 000000000..3b0bcaca6 Binary files /dev/null and b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_028_u.ydd differ diff --git a/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_029_u.ydd b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_029_u.ydd new file mode 100644 index 000000000..cf5e74f8e Binary files /dev/null and b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_029_u.ydd differ diff --git a/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_030_u.ydd b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_030_u.ydd new file mode 100644 index 000000000..e7026ebc8 Binary files /dev/null and b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_030_u.ydd differ diff --git a/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_031_u.ydd b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_031_u.ydd new file mode 100644 index 000000000..c7d610bf2 Binary files /dev/null and b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_031_u.ydd differ diff --git a/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_000_a_uni.ytd b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_000_a_uni.ytd new file mode 100644 index 000000000..8373d9636 --- /dev/null +++ b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_000_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fdc63a161f9368520b1f725ff86d10eb4e63ee135d5306d859d05fc19cb4c1d8 +size 2570088 diff --git a/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_001_a_uni.ytd b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_001_a_uni.ytd new file mode 100644 index 000000000..6b20e64e0 --- /dev/null +++ b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_001_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4f347ad07e86f8afa3f57a982820b60e0cfac3c58f23256579d2d7608c1f00b +size 5042870 diff --git a/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_002_a_uni.ytd b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_002_a_uni.ytd new file mode 100644 index 000000000..6f50d6849 --- /dev/null +++ b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_002_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afde2933220e400be8197ac27122f4c95ea737015bd6b3104fa26076a92b0596 +size 3317490 diff --git a/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_003_a_uni.ytd b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_003_a_uni.ytd new file mode 100644 index 000000000..82bd1a17e --- /dev/null +++ b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_003_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a99108565d9d8e2206b94afe0bd931c03c97ab12de94afec4e9bab28fbcad2d9 +size 5780008 diff --git a/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_004_a_uni.ytd b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_004_a_uni.ytd new file mode 100644 index 000000000..8373d9636 --- /dev/null +++ b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_004_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fdc63a161f9368520b1f725ff86d10eb4e63ee135d5306d859d05fc19cb4c1d8 +size 2570088 diff --git a/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_005_a_uni.ytd b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_005_a_uni.ytd new file mode 100644 index 000000000..6b20e64e0 --- /dev/null +++ b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_005_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4f347ad07e86f8afa3f57a982820b60e0cfac3c58f23256579d2d7608c1f00b +size 5042870 diff --git a/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_006_a_uni.ytd b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_006_a_uni.ytd new file mode 100644 index 000000000..6f50d6849 --- /dev/null +++ b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_006_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afde2933220e400be8197ac27122f4c95ea737015bd6b3104fa26076a92b0596 +size 3317490 diff --git a/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_007_a_uni.ytd b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_007_a_uni.ytd new file mode 100644 index 000000000..82bd1a17e --- /dev/null +++ b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_007_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a99108565d9d8e2206b94afe0bd931c03c97ab12de94afec4e9bab28fbcad2d9 +size 5780008 diff --git a/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_008_a_uni.ytd b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_008_a_uni.ytd new file mode 100644 index 000000000..7864c8f3f --- /dev/null +++ b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_008_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7219f5ba4f6f73de164df62b2a02e84fc535ead6e70d4a59e31d29313b74297c +size 2714944 diff --git a/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_009_a_uni.ytd b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_009_a_uni.ytd new file mode 100644 index 000000000..f8bc5eeb8 --- /dev/null +++ b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_009_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7fff6a7090cf17415d5ba91e51f250554930d387973191f4ed5f3ea66377b9b +size 3789007 diff --git a/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_010_a_uni.ytd b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_010_a_uni.ytd new file mode 100644 index 000000000..490e93a71 --- /dev/null +++ b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_010_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74d7dca23959158e934ded09106a723be576cefdae3090f039b20776bf3d712f +size 3059316 diff --git a/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_011_a_uni.ytd b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_011_a_uni.ytd new file mode 100644 index 000000000..6bb5dd398 --- /dev/null +++ b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_011_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d312532b819d8e01bd51990db0d80839dc8614be698c52e4503b825329a949b +size 4131956 diff --git a/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_012_a_uni.ytd b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_012_a_uni.ytd new file mode 100644 index 000000000..d65f2531a --- /dev/null +++ b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_012_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b50941b9b4572f8e0acc80465d98f610f7964e93af988f7a069292a8601d49f +size 3381104 diff --git a/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_013_a_uni.ytd b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_013_a_uni.ytd new file mode 100644 index 000000000..33ababac9 --- /dev/null +++ b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_013_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2b1b2637cf687b5bf86d6b488b49716e04484db3ce6e94beb8a28d593e6207f +size 4454936 diff --git a/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_014_a_uni.ytd b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_014_a_uni.ytd new file mode 100644 index 000000000..05a59e939 --- /dev/null +++ b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_014_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b90c143ca8031093e219d115e9ab421a1a1fc114817940eaef8292b9810f915 +size 3748692 diff --git a/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_015_a_uni.ytd b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_015_a_uni.ytd new file mode 100644 index 000000000..e0e9043e3 --- /dev/null +++ b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_015_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97a4a6db5f81637158c609794bde0cd1907ef13c71381ff9f828488a2f7ee71d +size 4820582 diff --git a/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_016_a_uni.ytd b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_016_a_uni.ytd new file mode 100644 index 000000000..f7fd578fb --- /dev/null +++ b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_016_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e163803979c5994ad8e98c5bbcff90f18d15c9d36ca07dd788e30cb2afa6d75e +size 3259508 diff --git a/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_017_a_uni.ytd b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_017_a_uni.ytd new file mode 100644 index 000000000..c29d4f9e7 --- /dev/null +++ b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_017_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c07430e6136816ab9c4b2200c20f37e1af3269275815201d5e8e4ff14564697 +size 5714583 diff --git a/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_018_a_uni.ytd b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_018_a_uni.ytd new file mode 100644 index 000000000..d34f1a57d --- /dev/null +++ b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_018_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c459bdbe82b3caeebb82f5fb1d20be2dfe330646421f955e92836fa5b69dc517 +size 4170744 diff --git a/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_019_a_uni.ytd b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_019_a_uni.ytd new file mode 100644 index 000000000..42589382a --- /dev/null +++ b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_019_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24f16d4e20ceb531b0a2e81080d2ad4413e44f95431f1032e73d2ddeba063e1a +size 6610145 diff --git a/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_020_a_uni.ytd b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_020_a_uni.ytd new file mode 100644 index 000000000..f7fd578fb --- /dev/null +++ b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_020_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e163803979c5994ad8e98c5bbcff90f18d15c9d36ca07dd788e30cb2afa6d75e +size 3259508 diff --git a/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_021_a_uni.ytd b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_021_a_uni.ytd new file mode 100644 index 000000000..c29d4f9e7 --- /dev/null +++ b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_021_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c07430e6136816ab9c4b2200c20f37e1af3269275815201d5e8e4ff14564697 +size 5714583 diff --git a/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_022_a_uni.ytd b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_022_a_uni.ytd new file mode 100644 index 000000000..d34f1a57d --- /dev/null +++ b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_022_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c459bdbe82b3caeebb82f5fb1d20be2dfe330646421f955e92836fa5b69dc517 +size 4170744 diff --git a/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_023_a_uni.ytd b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_023_a_uni.ytd new file mode 100644 index 000000000..42589382a --- /dev/null +++ b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_023_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24f16d4e20ceb531b0a2e81080d2ad4413e44f95431f1032e73d2ddeba063e1a +size 6610145 diff --git a/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_024_a_uni.ytd b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_024_a_uni.ytd new file mode 100644 index 000000000..6a65783d9 --- /dev/null +++ b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_024_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:176ea718de17de66a415adec758a35059273e044b6cf33ccee85ea4ea7f1df9e +size 3004839 diff --git a/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_025_a_uni.ytd b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_025_a_uni.ytd new file mode 100644 index 000000000..e1180f237 --- /dev/null +++ b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_025_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a67066efd876adf6e0e5a622dfebaf3ea620694f82839edcdc5694e4ff532aff +size 4064096 diff --git a/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_026_a_uni.ytd b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_026_a_uni.ytd new file mode 100644 index 000000000..857847339 --- /dev/null +++ b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_026_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41ef86d1e89b9756d0c0d0e9bc3e030163e2e13a8237dae09124858bdbd8297f +size 3424841 diff --git a/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_027_a_uni.ytd b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_027_a_uni.ytd new file mode 100644 index 000000000..b1befab3e --- /dev/null +++ b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_027_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf71832b9b9466504a5487a6b2e083ba0a580b75c68e3b05f8a739b564331298 +size 4481646 diff --git a/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_028_a_uni.ytd b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_028_a_uni.ytd new file mode 100644 index 000000000..8deb1ad46 --- /dev/null +++ b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_028_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb4d6e9de229d70d4896835dabebe970e067fc2bdf09afb490424da9ab2729f5 +size 3670112 diff --git a/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_029_a_uni.ytd b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_029_a_uni.ytd new file mode 100644 index 000000000..a6f37d9aa --- /dev/null +++ b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_029_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9e7af83c76db3912db1085c92c96ad5300ebfd28748ff74174fb21b345e453b +size 4730616 diff --git a/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_030_a_uni.ytd b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_030_a_uni.ytd new file mode 100644 index 000000000..64ccf3949 --- /dev/null +++ b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_030_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4a962793846bf3a7e08f891aa9f678117716cf4b3a02efb89dc1dbca18c9d9c +size 4111385 diff --git a/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_031_a_uni.ytd b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_031_a_uni.ytd new file mode 100644 index 000000000..e4897ce9d --- /dev/null +++ b/resources/tls_6360holsters/stream/mp_f_freemode_01_mp_f_tls_6360holsters/mp_f_freemode_01_mp_f_tls_6360holsters^teef_diff_031_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d02a5d5ef68a195a44937cc96e4715e49e531bfbb0a7221b4d366e4c473f055 +size 5169695 diff --git a/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters.ymt b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters.ymt new file mode 100644 index 000000000..ff89e935f Binary files /dev/null and b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters.ymt differ diff --git a/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_000_u.ydd b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_000_u.ydd new file mode 100644 index 000000000..6d1f2af29 Binary files /dev/null and b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_000_u.ydd differ diff --git a/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_001_u.ydd b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_001_u.ydd new file mode 100644 index 000000000..7bc4e5442 Binary files /dev/null and b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_001_u.ydd differ diff --git a/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_002_u.ydd b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_002_u.ydd new file mode 100644 index 000000000..a43e028de Binary files /dev/null and b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_002_u.ydd differ diff --git a/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_003_u.ydd b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_003_u.ydd new file mode 100644 index 000000000..98c50073a Binary files /dev/null and b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_003_u.ydd differ diff --git a/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_004_u.ydd b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_004_u.ydd new file mode 100644 index 000000000..855714ce3 Binary files /dev/null and b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_004_u.ydd differ diff --git a/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_005_u.ydd b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_005_u.ydd new file mode 100644 index 000000000..1862b3f63 Binary files /dev/null and b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_005_u.ydd differ diff --git a/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_006_u.ydd b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_006_u.ydd new file mode 100644 index 000000000..f1c05b57c Binary files /dev/null and b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_006_u.ydd differ diff --git a/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_007_u.ydd b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_007_u.ydd new file mode 100644 index 000000000..9c3bd42c6 Binary files /dev/null and b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_007_u.ydd differ diff --git a/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_008_u.ydd b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_008_u.ydd new file mode 100644 index 000000000..be8f9f6e4 Binary files /dev/null and b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_008_u.ydd differ diff --git a/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_009_u.ydd b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_009_u.ydd new file mode 100644 index 000000000..6c3db4ca7 Binary files /dev/null and b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_009_u.ydd differ diff --git a/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_010_u.ydd b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_010_u.ydd new file mode 100644 index 000000000..2512b1a1f Binary files /dev/null and b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_010_u.ydd differ diff --git a/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_011_u.ydd b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_011_u.ydd new file mode 100644 index 000000000..7ae500aca Binary files /dev/null and b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_011_u.ydd differ diff --git a/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_012_u.ydd b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_012_u.ydd new file mode 100644 index 000000000..01c8e2ce4 Binary files /dev/null and b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_012_u.ydd differ diff --git a/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_013_u.ydd b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_013_u.ydd new file mode 100644 index 000000000..216e531c8 Binary files /dev/null and b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_013_u.ydd differ diff --git a/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_014_u.ydd b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_014_u.ydd new file mode 100644 index 000000000..692d924ce Binary files /dev/null and b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_014_u.ydd differ diff --git a/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_015_u.ydd b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_015_u.ydd new file mode 100644 index 000000000..6974ebcd6 Binary files /dev/null and b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_015_u.ydd differ diff --git a/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_016_u.ydd b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_016_u.ydd new file mode 100644 index 000000000..9bc152b32 Binary files /dev/null and b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_016_u.ydd differ diff --git a/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_017_u.ydd b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_017_u.ydd new file mode 100644 index 000000000..6a9a027fd Binary files /dev/null and b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_017_u.ydd differ diff --git a/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_018_u.ydd b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_018_u.ydd new file mode 100644 index 000000000..c2fe5088d Binary files /dev/null and b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_018_u.ydd differ diff --git a/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_019_u.ydd b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_019_u.ydd new file mode 100644 index 000000000..a8474ee0e Binary files /dev/null and b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_019_u.ydd differ diff --git a/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_020_u.ydd b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_020_u.ydd new file mode 100644 index 000000000..75125d1e1 Binary files /dev/null and b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_020_u.ydd differ diff --git a/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_021_u.ydd b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_021_u.ydd new file mode 100644 index 000000000..3eddfb316 Binary files /dev/null and b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_021_u.ydd differ diff --git a/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_022_u.ydd b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_022_u.ydd new file mode 100644 index 000000000..e921af99f Binary files /dev/null and b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_022_u.ydd differ diff --git a/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_023_u.ydd b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_023_u.ydd new file mode 100644 index 000000000..9498b16ec Binary files /dev/null and b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_023_u.ydd differ diff --git a/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_024_u.ydd b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_024_u.ydd new file mode 100644 index 000000000..03bdfd978 Binary files /dev/null and b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_024_u.ydd differ diff --git a/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_025_u.ydd b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_025_u.ydd new file mode 100644 index 000000000..eb749f484 Binary files /dev/null and b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_025_u.ydd differ diff --git a/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_026_u.ydd b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_026_u.ydd new file mode 100644 index 000000000..170565b53 Binary files /dev/null and b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_026_u.ydd differ diff --git a/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_027_u.ydd b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_027_u.ydd new file mode 100644 index 000000000..cfb73aa9a Binary files /dev/null and b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_027_u.ydd differ diff --git a/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_028_u.ydd b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_028_u.ydd new file mode 100644 index 000000000..fc4616cd9 Binary files /dev/null and b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_028_u.ydd differ diff --git a/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_029_u.ydd b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_029_u.ydd new file mode 100644 index 000000000..c97d4d934 Binary files /dev/null and b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_029_u.ydd differ diff --git a/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_030_u.ydd b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_030_u.ydd new file mode 100644 index 000000000..fa2bf710e Binary files /dev/null and b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_030_u.ydd differ diff --git a/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_031_u.ydd b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_031_u.ydd new file mode 100644 index 000000000..2746ceff8 Binary files /dev/null and b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_031_u.ydd differ diff --git a/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_000_a_uni.ytd b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_000_a_uni.ytd new file mode 100644 index 000000000..a9bb06b51 --- /dev/null +++ b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_000_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1681647298a95900992e6152a8f16df827dfbf241037d02d842fd86dde557034 +size 2591374 diff --git a/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_001_a_uni.ytd b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_001_a_uni.ytd new file mode 100644 index 000000000..03479f67c --- /dev/null +++ b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_001_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca4b270c8637ee886f410cc525c08b8041862ddd66c7a6665c085e352fa251bf +size 5067209 diff --git a/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_002_a_uni.ytd b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_002_a_uni.ytd new file mode 100644 index 000000000..79809ab3d --- /dev/null +++ b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_002_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0843e3a888829d01df40abe6c69741d1f17bc07fcb9a8a319c2352e4e824d089 +size 3343392 diff --git a/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_003_a_uni.ytd b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_003_a_uni.ytd new file mode 100644 index 000000000..b7ab6baf8 --- /dev/null +++ b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_003_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09044e072e904f454f98341965d932ae023996912c08b8bf9580d827f9a1b7bc +size 5811559 diff --git a/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_004_a_uni.ytd b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_004_a_uni.ytd new file mode 100644 index 000000000..a9bb06b51 --- /dev/null +++ b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_004_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1681647298a95900992e6152a8f16df827dfbf241037d02d842fd86dde557034 +size 2591374 diff --git a/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_005_a_uni.ytd b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_005_a_uni.ytd new file mode 100644 index 000000000..03479f67c --- /dev/null +++ b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_005_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca4b270c8637ee886f410cc525c08b8041862ddd66c7a6665c085e352fa251bf +size 5067209 diff --git a/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_006_a_uni.ytd b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_006_a_uni.ytd new file mode 100644 index 000000000..79809ab3d --- /dev/null +++ b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_006_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0843e3a888829d01df40abe6c69741d1f17bc07fcb9a8a319c2352e4e824d089 +size 3343392 diff --git a/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_007_a_uni.ytd b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_007_a_uni.ytd new file mode 100644 index 000000000..b7ab6baf8 --- /dev/null +++ b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_007_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09044e072e904f454f98341965d932ae023996912c08b8bf9580d827f9a1b7bc +size 5811559 diff --git a/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_008_a_uni.ytd b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_008_a_uni.ytd new file mode 100644 index 000000000..0684962c7 --- /dev/null +++ b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_008_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ca7bb425fc0b3cab8ebd1cbff5817875707439ad133a23a48783ba70c9b4afb +size 2714942 diff --git a/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_009_a_uni.ytd b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_009_a_uni.ytd new file mode 100644 index 000000000..c02515439 --- /dev/null +++ b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_009_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aeff3b488a83bb221e7313aa54340c36b9e285ad66e7dd92c26bbf6041deee51 +size 3789005 diff --git a/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_010_a_uni.ytd b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_010_a_uni.ytd new file mode 100644 index 000000000..c240e3bb7 --- /dev/null +++ b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_010_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b54c2003a2aa7e369220153cd619b0d34d3ae35eda8c4a71c0a965d56b20523e +size 3059314 diff --git a/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_011_a_uni.ytd b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_011_a_uni.ytd new file mode 100644 index 000000000..8df593353 --- /dev/null +++ b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_011_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b1bc89540645e4a5dd3dee3e1952b84cee125d5700cb62020bf7fd39ff6f043 +size 4131954 diff --git a/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_012_a_uni.ytd b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_012_a_uni.ytd new file mode 100644 index 000000000..8114d9801 --- /dev/null +++ b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_012_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e17389937b67795764b0a5dd1b2cb874f13dad40946d71b57f73e3f978fbbee2 +size 3381104 diff --git a/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_013_a_uni.ytd b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_013_a_uni.ytd new file mode 100644 index 000000000..8f94bdcb4 --- /dev/null +++ b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_013_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e1ac8bd4e41ac2052a3ce28f2829a1bb356c4d590cafa518d6c667e39f0c357 +size 4454937 diff --git a/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_014_a_uni.ytd b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_014_a_uni.ytd new file mode 100644 index 000000000..05e918e65 --- /dev/null +++ b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_014_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e63fd9d0e580eb92903c54e747bc557688f02ee28d38a6ce8ff3d8bfaa5740eb +size 3748692 diff --git a/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_015_a_uni.ytd b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_015_a_uni.ytd new file mode 100644 index 000000000..0c736ea83 --- /dev/null +++ b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_015_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d449d6cef5f6999e68e83865c2f43d3b9549537deb23cb640a51dd7e81b0297b +size 4820583 diff --git a/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_016_a_uni.ytd b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_016_a_uni.ytd new file mode 100644 index 000000000..f7fd578fb --- /dev/null +++ b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_016_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e163803979c5994ad8e98c5bbcff90f18d15c9d36ca07dd788e30cb2afa6d75e +size 3259508 diff --git a/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_017_a_uni.ytd b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_017_a_uni.ytd new file mode 100644 index 000000000..c29d4f9e7 --- /dev/null +++ b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_017_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c07430e6136816ab9c4b2200c20f37e1af3269275815201d5e8e4ff14564697 +size 5714583 diff --git a/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_018_a_uni.ytd b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_018_a_uni.ytd new file mode 100644 index 000000000..d34f1a57d --- /dev/null +++ b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_018_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c459bdbe82b3caeebb82f5fb1d20be2dfe330646421f955e92836fa5b69dc517 +size 4170744 diff --git a/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_019_a_uni.ytd b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_019_a_uni.ytd new file mode 100644 index 000000000..42589382a --- /dev/null +++ b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_019_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24f16d4e20ceb531b0a2e81080d2ad4413e44f95431f1032e73d2ddeba063e1a +size 6610145 diff --git a/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_020_a_uni.ytd b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_020_a_uni.ytd new file mode 100644 index 000000000..f7fd578fb --- /dev/null +++ b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_020_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e163803979c5994ad8e98c5bbcff90f18d15c9d36ca07dd788e30cb2afa6d75e +size 3259508 diff --git a/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_021_a_uni.ytd b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_021_a_uni.ytd new file mode 100644 index 000000000..c29d4f9e7 --- /dev/null +++ b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_021_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c07430e6136816ab9c4b2200c20f37e1af3269275815201d5e8e4ff14564697 +size 5714583 diff --git a/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_022_a_uni.ytd b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_022_a_uni.ytd new file mode 100644 index 000000000..d34f1a57d --- /dev/null +++ b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_022_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c459bdbe82b3caeebb82f5fb1d20be2dfe330646421f955e92836fa5b69dc517 +size 4170744 diff --git a/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_023_a_uni.ytd b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_023_a_uni.ytd new file mode 100644 index 000000000..42589382a --- /dev/null +++ b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_023_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24f16d4e20ceb531b0a2e81080d2ad4413e44f95431f1032e73d2ddeba063e1a +size 6610145 diff --git a/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_024_a_uni.ytd b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_024_a_uni.ytd new file mode 100644 index 000000000..6a65783d9 --- /dev/null +++ b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_024_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:176ea718de17de66a415adec758a35059273e044b6cf33ccee85ea4ea7f1df9e +size 3004839 diff --git a/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_025_a_uni.ytd b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_025_a_uni.ytd new file mode 100644 index 000000000..e1180f237 --- /dev/null +++ b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_025_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a67066efd876adf6e0e5a622dfebaf3ea620694f82839edcdc5694e4ff532aff +size 4064096 diff --git a/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_026_a_uni.ytd b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_026_a_uni.ytd new file mode 100644 index 000000000..857847339 --- /dev/null +++ b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_026_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41ef86d1e89b9756d0c0d0e9bc3e030163e2e13a8237dae09124858bdbd8297f +size 3424841 diff --git a/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_027_a_uni.ytd b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_027_a_uni.ytd new file mode 100644 index 000000000..b1befab3e --- /dev/null +++ b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_027_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf71832b9b9466504a5487a6b2e083ba0a580b75c68e3b05f8a739b564331298 +size 4481646 diff --git a/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_028_a_uni.ytd b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_028_a_uni.ytd new file mode 100644 index 000000000..8deb1ad46 --- /dev/null +++ b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_028_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb4d6e9de229d70d4896835dabebe970e067fc2bdf09afb490424da9ab2729f5 +size 3670112 diff --git a/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_029_a_uni.ytd b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_029_a_uni.ytd new file mode 100644 index 000000000..a6f37d9aa --- /dev/null +++ b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_029_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9e7af83c76db3912db1085c92c96ad5300ebfd28748ff74174fb21b345e453b +size 4730616 diff --git a/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_030_a_uni.ytd b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_030_a_uni.ytd new file mode 100644 index 000000000..64ccf3949 --- /dev/null +++ b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_030_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4a962793846bf3a7e08f891aa9f678117716cf4b3a02efb89dc1dbca18c9d9c +size 4111385 diff --git a/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_031_a_uni.ytd b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_031_a_uni.ytd new file mode 100644 index 000000000..e4897ce9d --- /dev/null +++ b/resources/tls_6360holsters/stream/mp_m_freemode_01_mp_m_tls_6360holsters/mp_m_freemode_01_mp_m_tls_6360holsters^teef_diff_031_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d02a5d5ef68a195a44937cc96e4715e49e531bfbb0a7221b4d366e4c473f055 +size 5169695 diff --git a/resources/tls_aedutybelt/fxmanifest.lua b/resources/tls_aedutybelt/fxmanifest.lua new file mode 100644 index 000000000..a97916748 --- /dev/null +++ b/resources/tls_aedutybelt/fxmanifest.lua @@ -0,0 +1,12 @@ +-- Generated with DurtyClothTool + +fx_version 'cerulean' +game { 'gta5' } + +files { + 'mp_m_freemode_01_mp_m_tls_aedutybelt.meta', + 'mp_f_freemode_01_mp_f_tls_aedutybelt.meta' +} + +data_file 'SHOP_PED_APPAREL_META_FILE' 'mp_m_freemode_01_mp_m_tls_aedutybelt.meta' +data_file 'SHOP_PED_APPAREL_META_FILE' 'mp_f_freemode_01_mp_f_tls_aedutybelt.meta' \ No newline at end of file diff --git a/resources/tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt.meta b/resources/tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt.meta new file mode 100644 index 000000000..bc76ca8d0 --- /dev/null +++ b/resources/tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt.meta @@ -0,0 +1,14 @@ + + + mp_f_freemode_01 + mp_f_tls_aedutybelt + mp_f_freemode_01_mp_f_tls_aedutybelt + SCR_CHAR_MULTIPLAYER_F + MP_CreatureMetadata_tlsaedutybelt + + + + + + + \ No newline at end of file diff --git a/resources/tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt.meta b/resources/tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt.meta new file mode 100644 index 000000000..5155948fe --- /dev/null +++ b/resources/tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt.meta @@ -0,0 +1,14 @@ + + + mp_m_freemode_01 + mp_m_tls_aedutybelt + mp_m_freemode_01_mp_m_tls_aedutybelt + SCR_CHAR_MULTIPLAYER + MP_CreatureMetadata_tlsaedutybelt + + + + + + + \ No newline at end of file diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt.ymt b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt.ymt new file mode 100644 index 000000000..569ab9ea1 Binary files /dev/null and b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt.ymt differ diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_000_u.ydd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_000_u.ydd new file mode 100644 index 000000000..2da404259 Binary files /dev/null and b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_000_u.ydd differ diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_001_u.ydd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_001_u.ydd new file mode 100644 index 000000000..ac0caeb31 Binary files /dev/null and b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_001_u.ydd differ diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_002_u.ydd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_002_u.ydd new file mode 100644 index 000000000..69eca8e35 Binary files /dev/null and b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_002_u.ydd differ diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_003_u.ydd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_003_u.ydd new file mode 100644 index 000000000..a114c474b Binary files /dev/null and b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_003_u.ydd differ diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_004_u.ydd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_004_u.ydd new file mode 100644 index 000000000..82d8aa635 Binary files /dev/null and b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_004_u.ydd differ diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_005_u.ydd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_005_u.ydd new file mode 100644 index 000000000..3dd497eae Binary files /dev/null and b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_005_u.ydd differ diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_006_u.ydd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_006_u.ydd new file mode 100644 index 000000000..707668e49 Binary files /dev/null and b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_006_u.ydd differ diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_007_u.ydd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_007_u.ydd new file mode 100644 index 000000000..3b05233e9 Binary files /dev/null and b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_007_u.ydd differ diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_008_u.ydd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_008_u.ydd new file mode 100644 index 000000000..89dcc8e7d Binary files /dev/null and b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_008_u.ydd differ diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_009_u.ydd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_009_u.ydd new file mode 100644 index 000000000..bae2d2052 Binary files /dev/null and b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_009_u.ydd differ diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_010_u.ydd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_010_u.ydd new file mode 100644 index 000000000..9ea02d733 Binary files /dev/null and b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_010_u.ydd differ diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_011_u.ydd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_011_u.ydd new file mode 100644 index 000000000..93daeb0e2 Binary files /dev/null and b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_011_u.ydd differ diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_012_u.ydd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_012_u.ydd new file mode 100644 index 000000000..880b3a5af Binary files /dev/null and b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_012_u.ydd differ diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_013_u.ydd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_013_u.ydd new file mode 100644 index 000000000..ec160035c Binary files /dev/null and b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_013_u.ydd differ diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_014_u.ydd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_014_u.ydd new file mode 100644 index 000000000..aa3c707bb Binary files /dev/null and b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_014_u.ydd differ diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_015_u.ydd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_015_u.ydd new file mode 100644 index 000000000..ef43572d1 Binary files /dev/null and b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_015_u.ydd differ diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_016_u.ydd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_016_u.ydd new file mode 100644 index 000000000..de34a31de Binary files /dev/null and b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_016_u.ydd differ diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_017_u.ydd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_017_u.ydd new file mode 100644 index 000000000..a52b25f5e Binary files /dev/null and b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_017_u.ydd differ diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_018_u.ydd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_018_u.ydd new file mode 100644 index 000000000..a6f55785a Binary files /dev/null and b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_018_u.ydd differ diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_019_u.ydd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_019_u.ydd new file mode 100644 index 000000000..8066b1d82 Binary files /dev/null and b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_019_u.ydd differ diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_020_u.ydd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_020_u.ydd new file mode 100644 index 000000000..4b238829c Binary files /dev/null and b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_020_u.ydd differ diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_021_u.ydd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_021_u.ydd new file mode 100644 index 000000000..7e808ae1c Binary files /dev/null and b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_021_u.ydd differ diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_022_u.ydd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_022_u.ydd new file mode 100644 index 000000000..206ecce2e Binary files /dev/null and b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_022_u.ydd differ diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_023_u.ydd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_023_u.ydd new file mode 100644 index 000000000..1964c949c Binary files /dev/null and b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_023_u.ydd differ diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_024_u.ydd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_024_u.ydd new file mode 100644 index 000000000..8d5bdbf48 Binary files /dev/null and b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_024_u.ydd differ diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_025_u.ydd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_025_u.ydd new file mode 100644 index 000000000..e9637df22 Binary files /dev/null and b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_025_u.ydd differ diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_026_u.ydd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_026_u.ydd new file mode 100644 index 000000000..c1226d0b5 Binary files /dev/null and b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_026_u.ydd differ diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_027_u.ydd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_027_u.ydd new file mode 100644 index 000000000..68d78681a Binary files /dev/null and b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_027_u.ydd differ diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_028_u.ydd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_028_u.ydd new file mode 100644 index 000000000..a5a1905b7 Binary files /dev/null and b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_028_u.ydd differ diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_029_u.ydd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_029_u.ydd new file mode 100644 index 000000000..bc590922f Binary files /dev/null and b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_029_u.ydd differ diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_030_u.ydd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_030_u.ydd new file mode 100644 index 000000000..79f6b1954 Binary files /dev/null and b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_030_u.ydd differ diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_031_u.ydd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_031_u.ydd new file mode 100644 index 000000000..fabb5b18f Binary files /dev/null and b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_031_u.ydd differ diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_032_u.ydd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_032_u.ydd new file mode 100644 index 000000000..29f4df3b0 Binary files /dev/null and b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_032_u.ydd differ diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_033_u.ydd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_033_u.ydd new file mode 100644 index 000000000..1d0a7d23c Binary files /dev/null and b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_033_u.ydd differ diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_034_u.ydd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_034_u.ydd new file mode 100644 index 000000000..ef4970ec6 Binary files /dev/null and b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_034_u.ydd differ diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_035_u.ydd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_035_u.ydd new file mode 100644 index 000000000..836dff9b9 Binary files /dev/null and b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_035_u.ydd differ diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_036_u.ydd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_036_u.ydd new file mode 100644 index 000000000..488a48540 Binary files /dev/null and b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_036_u.ydd differ diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_037_u.ydd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_037_u.ydd new file mode 100644 index 000000000..06a8eb072 Binary files /dev/null and b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_037_u.ydd differ diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_038_u.ydd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_038_u.ydd new file mode 100644 index 000000000..976abaa1b Binary files /dev/null and b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_038_u.ydd differ diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_039_u.ydd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_039_u.ydd new file mode 100644 index 000000000..0645ee18a Binary files /dev/null and b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_039_u.ydd differ diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_040_u.ydd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_040_u.ydd new file mode 100644 index 000000000..047ad47c7 Binary files /dev/null and b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_040_u.ydd differ diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_041_u.ydd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_041_u.ydd new file mode 100644 index 000000000..8f1e41253 Binary files /dev/null and b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_041_u.ydd differ diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_042_u.ydd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_042_u.ydd new file mode 100644 index 000000000..4f0bce6eb Binary files /dev/null and b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_042_u.ydd differ diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_043_u.ydd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_043_u.ydd new file mode 100644 index 000000000..4374f234c Binary files /dev/null and b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_043_u.ydd differ diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_000_a_uni.ytd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_000_a_uni.ytd new file mode 100644 index 000000000..e24f84201 --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_000_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2aaba10f737a483cf64cd2977cdd5e34ea1121118cbb4099c4e4fd1e3b346cb +size 6302079 diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_000_b_uni.ytd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_000_b_uni.ytd new file mode 100644 index 000000000..4e30b2afe --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_000_b_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88f3e2743b661e0aaf4d4b58ff870519d869e26ac051edcdf510a21d2eedb8c6 +size 8699601 diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_001_a_uni.ytd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_001_a_uni.ytd new file mode 100644 index 000000000..e5f5c027b --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_001_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44a4d716ffae62dfacef4c3dab395dcfc4462165de1361a3189b019f8c214afe +size 5615743 diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_002_a_uni.ytd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_002_a_uni.ytd new file mode 100644 index 000000000..2c1dd1c03 --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_002_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84213a965d68f293b53175a704d030c3f62f26b3351ebf3644ec15091778e11e +size 5932821 diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_002_b_uni.ytd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_002_b_uni.ytd new file mode 100644 index 000000000..d65b5d6e7 --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_002_b_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db9a8f81b03be7c1725a5f0b91ad6f29d8cbc2912d128fda809cc12926bc7fde +size 8329866 diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_003_a_uni.ytd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_003_a_uni.ytd new file mode 100644 index 000000000..14bd85453 --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_003_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ee5ecb29f1a01d4215ae5d7c5981efbb6fd2fd7e6680bc4b967038654071f28 +size 5845782 diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_003_b_uni.ytd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_003_b_uni.ytd new file mode 100644 index 000000000..8e2f2c94c --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_003_b_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f91218d407944f53eae24dd3a4513add2e3b88853dd6550a508eac079642fd1 +size 8236889 diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_004_a_uni.ytd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_004_a_uni.ytd new file mode 100644 index 000000000..d47c2fc38 --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_004_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c3daedf78213c1cea93adadb0067aa12da3443057b5648bc80bbd967ef8858d +size 6024684 diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_004_b_uni.ytd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_004_b_uni.ytd new file mode 100644 index 000000000..7ac5068ce --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_004_b_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d00bf5735a1acb7ab873d1e34580cc6d94ceb30dd24f7d7de8af37cf5a9faa54 +size 8397729 diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_005_a_uni.ytd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_005_a_uni.ytd new file mode 100644 index 000000000..efa1f9fa7 --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_005_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc3492d969d0031daab9eea4ae32c567beb69899ba6b33c15c468b8951d68799 +size 5327895 diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_006_a_uni.ytd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_006_a_uni.ytd new file mode 100644 index 000000000..a9cb8b572 --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_006_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd5dd28af3349a4fe1f90b9ed59a943f5a9b2718c035e38f1070c347c7ab4c0f +size 5655454 diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_006_b_uni.ytd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_006_b_uni.ytd new file mode 100644 index 000000000..7350a6b54 --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_006_b_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aece50b77a8dbc86e71b607f2785492d53d3d744ce869fcf651309e9ea58a714 +size 8028000 diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_007_a_uni.ytd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_007_a_uni.ytd new file mode 100644 index 000000000..2bb74011d --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_007_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5f5956189842fc9ae984f1d444341e9d81bc33c476a2023d31f1728fede91c2 +size 5568948 diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_007_b_uni.ytd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_007_b_uni.ytd new file mode 100644 index 000000000..7f6560c32 --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_007_b_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e095d83025288eea6dae3ce9be54a9e3bea17478fa4a54a75e2b12f470180d4 +size 7934733 diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_008_a_uni.ytd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_008_a_uni.ytd new file mode 100644 index 000000000..a58c30eec --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_008_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5b90f8c066203e99d49780a4feb8a8b8de9dbaef088a68d1478e53a28385705 +size 5180222 diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_009_a_uni.ytd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_009_a_uni.ytd new file mode 100644 index 000000000..4eaf84006 --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_009_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9725d7f0e0c1e818bda61236c617ce27ccd1bf26dd60a54886db5951e14adace +size 4718523 diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_010_a_uni.ytd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_010_a_uni.ytd new file mode 100644 index 000000000..56e018829 --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_010_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aef783c74399525f491cb66dd722b478634f5e3ee90f44f6d2db16454f5d957b +size 5514888 diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_010_b_uni.ytd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_010_b_uni.ytd new file mode 100644 index 000000000..9d9ee74ca --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_010_b_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ccaa6b9bf23ae7edf57835094f9741fdf6cdf66f3c8e1bb34aa31798a19fff0 +size 7870115 diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_011_a_uni.ytd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_011_a_uni.ytd new file mode 100644 index 000000000..fa438b074 --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_011_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0746538e5ca35edec25f72e4b7ff5da949d75f0be73a5e7ef053491ef7844b1e +size 4810416 diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_012_a_uni.ytd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_012_a_uni.ytd new file mode 100644 index 000000000..326f5f095 --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_012_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95bcf44dd4b832350fbd1711703fe1331a835c91a481c5c8d92b2442b28b014e +size 5813880 diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_012_b_uni.ytd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_012_b_uni.ytd new file mode 100644 index 000000000..496cef614 --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_012_b_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:093d4277248af52d5380ced85c9a6e50bc35851c4c828cc86406768a7ef808a4 +size 8237995 diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_013_a_uni.ytd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_013_a_uni.ytd new file mode 100644 index 000000000..264aa6d01 --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_013_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26c221b7968a3711438b320e51c7e9399f60cd0be5077dfeebe22ccfe911ff50 +size 5138554 diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_014_a_uni.ytd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_014_a_uni.ytd new file mode 100644 index 000000000..25c777477 --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_014_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4d5c3f7f72f52e88dea8d19408a20714b233adf970044edf4fc35adc9dadc0a +size 5444103 diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_014_b_uni.ytd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_014_b_uni.ytd new file mode 100644 index 000000000..5e0a14a46 --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_014_b_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42b604a7fd8b9e3431c68d960f8d9262babaeb71cd5b7004112b2cb5895345b3 +size 7865306 diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_015_a_uni.ytd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_015_a_uni.ytd new file mode 100644 index 000000000..e8bcbfb34 --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_015_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc774cfbdd1f3deed9471f10955891016a215286106d01f14353db68ceba9320 +size 5752566 diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_015_b_uni.ytd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_015_b_uni.ytd new file mode 100644 index 000000000..f79b10e4c --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_015_b_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fdd69cb2a54a2fe07737673d9f713dbcf99a532da5b0f28977693c2cc811769 +size 8157024 diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_016_a_uni.ytd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_016_a_uni.ytd new file mode 100644 index 000000000..81ecd76a9 --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_016_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24f6ef39838fc209148fd827456570ddd191e9877ca02e18128a52209ec286e0 +size 5065317 diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_017_a_uni.ytd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_017_a_uni.ytd new file mode 100644 index 000000000..66456eafa --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_017_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:744635433a01323245572315948c11e4b961a4acefe93161292e9e95e2984461 +size 5381279 diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_017_b_uni.ytd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_017_b_uni.ytd new file mode 100644 index 000000000..efd98215f --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_017_b_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bbc2a9a2b1f0d4b6d7556ff819fcaa2f5af7fb387bc4d684d6cece584040cba6 +size 7784895 diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_018_a_uni.ytd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_018_a_uni.ytd new file mode 100644 index 000000000..3e5f315b0 --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_018_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f354fc31eb3390c92ccf94be75d798ef8a8f9d2aaa5803d8828832feea976b1 +size 6379238 diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_019_a_uni.ytd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_019_a_uni.ytd new file mode 100644 index 000000000..322439cd5 --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_019_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a68180f1e45ea6389a725f9ed6e3baf851854103537632ef01ff9ef44dc69b5 +size 6034713 diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_020_a_uni.ytd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_020_a_uni.ytd new file mode 100644 index 000000000..031ab907a --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_020_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df1555184311e5e63de62140ca910e7e058b8ccd161c9551a2660f534ce99ac4 +size 5916026 diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_021_a_uni.ytd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_021_a_uni.ytd new file mode 100644 index 000000000..80150e8c7 --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_021_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:856b8876f3ef705c5ae1c469f7b80f68274ad6b182e2ea606d54c2b9f5253c64 +size 4968535 diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_022_a_uni.ytd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_022_a_uni.ytd new file mode 100644 index 000000000..941821efc --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_022_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f90d145e005919a405602552bcf170180b3edf887d7671bcba2b39c78baf7236 +size 6834256 diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_022_b_uni.ytd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_022_b_uni.ytd new file mode 100644 index 000000000..db181219b --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_022_b_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4814170642ec26e5f68b2c554732e0bacb72aea60ab8862c4a6197cf5b6f8a7b +size 9266002 diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_023_a_uni.ytd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_023_a_uni.ytd new file mode 100644 index 000000000..5ba78b2a4 --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_023_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73f88ab1b9f4a59b0d054d48d444d6ddf14a56a53646554ddbe18665fec0d834 +size 6157120 diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_024_a_uni.ytd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_024_a_uni.ytd new file mode 100644 index 000000000..c2a772a7b --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_024_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06e8ba2feb1a800e1c50d8bc57d77d7ea6c75fede2f9f8ba8d9d1e50801049e8 +size 6465818 diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_024_b_uni.ytd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_024_b_uni.ytd new file mode 100644 index 000000000..0f5aca0fa --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_024_b_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75688090e7818258a304906b10dc083740a728c8248c287cec8ec35d6e7a5810 +size 8896836 diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_025_a_uni.ytd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_025_a_uni.ytd new file mode 100644 index 000000000..d2eeae8de --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_025_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a71bbf4bd4fc3d72332699f04e218adf8bda1dddbf4b4a5ba21c900c0b1aa60c +size 6377848 diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_025_b_uni.ytd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_025_b_uni.ytd new file mode 100644 index 000000000..5d5c70b07 --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_025_b_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e05880835d9e69a0adc59c058704d7aca0e34154ea151649d218ef741d75a05f +size 8807165 diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_026_a_uni.ytd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_026_a_uni.ytd new file mode 100644 index 000000000..0933fc7fe --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_026_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06ec9eeb24443ad6774a066ecdf2d9ced6296bc7e88dfdba5aa9ce6352981b79 +size 6526949 diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_026_b_uni.ytd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_026_b_uni.ytd new file mode 100644 index 000000000..61ef02e3b --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_026_b_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ed98ba42c15c9b4bb1caf0960993c5deecf5f646f558be6d717f343cd6308e9 +size 8935576 diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_027_a_uni.ytd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_027_a_uni.ytd new file mode 100644 index 000000000..17747bd06 --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_027_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50066e5f9ade1d708d12782f45f11fefeed3c2e9314c948250296e58e1c709c2 +size 5840880 diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_028_a_uni.ytd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_028_a_uni.ytd new file mode 100644 index 000000000..985538e17 --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_028_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c0abbfcb2a53ce0a365b6eb48d4977d7856e6c1e4745eecc66bedc505c24de0 +size 6159016 diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_028_b_uni.ytd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_028_b_uni.ytd new file mode 100644 index 000000000..f92db5fca --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_028_b_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7ddf60a81b76acc6de8f9b4718f7e3dd82ad72f85de86f35a91839152bfe7ac +size 8566117 diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_029_a_uni.ytd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_029_a_uni.ytd new file mode 100644 index 000000000..bc03ec78f --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_029_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f396ebf8b28c993d4e3d0bc5ce8a3519fa8c86172438de4d30609e9905955c6 +size 6071792 diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_029_b_uni.ytd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_029_b_uni.ytd new file mode 100644 index 000000000..99441805a --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_029_b_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:860d84c8fb9aab4756260ed8cb25931c9a3d09d3e97adb85b0276ddbededbb54 +size 8477864 diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_030_a_uni.ytd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_030_a_uni.ytd new file mode 100644 index 000000000..a9c3e978a --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_030_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca2fd27662534631b14a4a9007f7714c04472d0c48e1f252a95ddab6e913f454 +size 5844464 diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_031_a_uni.ytd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_031_a_uni.ytd new file mode 100644 index 000000000..9a83ffc02 --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_031_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36480b0b786c57e820b4adf7e5fd2a69c4087a5325e74a79b2c992dfcf8c20c6 +size 5382544 diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_032_a_uni.ytd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_032_a_uni.ytd new file mode 100644 index 000000000..585be7cef --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_032_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fcda2561636411a5d5aca5cc63e3afee59c7087279c2c0de4352af3cebc531f +size 5924405 diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_032_b_uni.ytd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_032_b_uni.ytd new file mode 100644 index 000000000..79933d1d8 --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_032_b_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b147f19a00ea2d552aa7adc0699be48594086e48015ba5d2b401b41172384b35 +size 8307627 diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_033_a_uni.ytd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_033_a_uni.ytd new file mode 100644 index 000000000..c0b26a223 --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_033_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4f4a5e1ed56532c37a432818cb5d1a3aef27fb66913da8c09db2e3e0d335a2c +size 5223605 diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_034_a_uni.ytd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_034_a_uni.ytd new file mode 100644 index 000000000..e1aa6a347 --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_034_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b8acbdfbc0374a0fccb6a428547afae5d3d51a8dc425f26979e6ec31494c396 +size 6284520 diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_034_b_uni.ytd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_034_b_uni.ytd new file mode 100644 index 000000000..c62c24abe --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_034_b_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60ff28a632ccef35737144155fa50093cf3e107cc8ca248bc18badbb84c7acf1 +size 8749624 diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_035_a_uni.ytd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_035_a_uni.ytd new file mode 100644 index 000000000..41cc377bc --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_035_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91144f3c5c2779201c2f08f28ec72f1b1ef55ef63a4208eee91f8a2622704617 +size 5616044 diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_036_a_uni.ytd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_036_a_uni.ytd new file mode 100644 index 000000000..931d8d9f5 --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_036_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20b448e2724613cc8022daa8513ded64fd77e80f83d668dbf4341a6f3d16d32d +size 5914300 diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_036_b_uni.ytd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_036_b_uni.ytd new file mode 100644 index 000000000..83caeffd5 --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_036_b_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79935f30182bb7bfff7c9ef8f99473053b8d57c46db9d5ab4e8c1a39ceb585f9 +size 8377867 diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_037_a_uni.ytd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_037_a_uni.ytd new file mode 100644 index 000000000..298b89a9b --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_037_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:546be7691a6af2f43caeb940c57074c7ff6dd5374e4f8fac8d3525b39b58696a +size 6041784 diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_037_b_uni.ytd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_037_b_uni.ytd new file mode 100644 index 000000000..e70dc26e5 --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_037_b_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9387da2a27edc2ba9e8aca13b7824e8d0bbf2ba36993d8e3918ab4c489c171f2 +size 8466568 diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_038_a_uni.ytd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_038_a_uni.ytd new file mode 100644 index 000000000..8221190e0 --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_038_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e03dc33d3c70b767a3c7fc6ce6ab56f792c331b89c9600323e07c845cc09f817 +size 5360711 diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_039_a_uni.ytd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_039_a_uni.ytd new file mode 100644 index 000000000..8f5d4082a --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_039_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a4302ee1ac15547de0d5847f9d3995a6138785508ccc84d3cc6fe2f5eea423f +size 5672647 diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_039_b_uni.ytd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_039_b_uni.ytd new file mode 100644 index 000000000..c4fd4eba8 --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_039_b_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b52f2b7bc20a45698034288db8c74926d0922658b41ce7819fc0f3061898c1df +size 8095424 diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_040_a_uni.ytd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_040_a_uni.ytd new file mode 100644 index 000000000..4f496e10e --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_040_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbad7bda85efb029b86136d4ded80c7ae14137cb9d5f617dc112326a94077652 +size 7229755 diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_041_a_uni.ytd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_041_a_uni.ytd new file mode 100644 index 000000000..4de107deb --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_041_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ab6eef41626d83bd173cbdfd1132d57c0936084bc0ef300d0249339af8c6dd9 +size 6888567 diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_042_a_uni.ytd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_042_a_uni.ytd new file mode 100644 index 000000000..a29ca14be --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_042_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca2633b2cf5465bbccdb1440bd941a664bc9cf68039eb8705ca1a7f997c74f79 +size 6762359 diff --git a/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_043_a_uni.ytd b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_043_a_uni.ytd new file mode 100644 index 000000000..08da4bb2b --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_f_freemode_01_mp_f_tls_aedutybelt/mp_f_freemode_01_mp_f_tls_aedutybelt^accs_diff_043_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70b168a0c87e5c58f24f38d966d83112bd8cc823adcfd4571325afd37e7e2a0c +size 5600493 diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt.ymt b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt.ymt new file mode 100644 index 000000000..14f4bcab0 Binary files /dev/null and b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt.ymt differ diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_000_u.ydd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_000_u.ydd new file mode 100644 index 000000000..b77b90f16 Binary files /dev/null and b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_000_u.ydd differ diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_001_u.ydd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_001_u.ydd new file mode 100644 index 000000000..b462b6bd9 Binary files /dev/null and b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_001_u.ydd differ diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_002_u.ydd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_002_u.ydd new file mode 100644 index 000000000..56ef0609e Binary files /dev/null and b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_002_u.ydd differ diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_003_u.ydd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_003_u.ydd new file mode 100644 index 000000000..5d71cb861 Binary files /dev/null and b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_003_u.ydd differ diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_004_u.ydd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_004_u.ydd new file mode 100644 index 000000000..9e91dfd7a Binary files /dev/null and b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_004_u.ydd differ diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_005_u.ydd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_005_u.ydd new file mode 100644 index 000000000..0aa65a559 Binary files /dev/null and b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_005_u.ydd differ diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_006_u.ydd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_006_u.ydd new file mode 100644 index 000000000..1d20dcf75 Binary files /dev/null and b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_006_u.ydd differ diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_007_u.ydd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_007_u.ydd new file mode 100644 index 000000000..6de58d80f Binary files /dev/null and b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_007_u.ydd differ diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_008_u.ydd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_008_u.ydd new file mode 100644 index 000000000..f97051c40 Binary files /dev/null and b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_008_u.ydd differ diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_009_u.ydd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_009_u.ydd new file mode 100644 index 000000000..ca9c92c99 Binary files /dev/null and b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_009_u.ydd differ diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_010_u.ydd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_010_u.ydd new file mode 100644 index 000000000..ec76a4f80 Binary files /dev/null and b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_010_u.ydd differ diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_011_u.ydd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_011_u.ydd new file mode 100644 index 000000000..3550524d9 Binary files /dev/null and b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_011_u.ydd differ diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_012_u.ydd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_012_u.ydd new file mode 100644 index 000000000..5370dd576 Binary files /dev/null and b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_012_u.ydd differ diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_013_u.ydd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_013_u.ydd new file mode 100644 index 000000000..160f726b2 Binary files /dev/null and b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_013_u.ydd differ diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_014_u.ydd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_014_u.ydd new file mode 100644 index 000000000..2660533a9 Binary files /dev/null and b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_014_u.ydd differ diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_015_u.ydd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_015_u.ydd new file mode 100644 index 000000000..93c78eac6 Binary files /dev/null and b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_015_u.ydd differ diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_016_u.ydd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_016_u.ydd new file mode 100644 index 000000000..bdb5cbcce Binary files /dev/null and b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_016_u.ydd differ diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_017_u.ydd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_017_u.ydd new file mode 100644 index 000000000..bce13d4ed Binary files /dev/null and b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_017_u.ydd differ diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_018_u.ydd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_018_u.ydd new file mode 100644 index 000000000..6eff71705 Binary files /dev/null and b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_018_u.ydd differ diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_019_u.ydd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_019_u.ydd new file mode 100644 index 000000000..f0b119995 Binary files /dev/null and b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_019_u.ydd differ diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_020_u.ydd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_020_u.ydd new file mode 100644 index 000000000..0943cb82b Binary files /dev/null and b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_020_u.ydd differ diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_021_u.ydd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_021_u.ydd new file mode 100644 index 000000000..31f92345b Binary files /dev/null and b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_021_u.ydd differ diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_022_u.ydd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_022_u.ydd new file mode 100644 index 000000000..e1660278d Binary files /dev/null and b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_022_u.ydd differ diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_023_u.ydd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_023_u.ydd new file mode 100644 index 000000000..b9754f1a3 Binary files /dev/null and b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_023_u.ydd differ diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_024_u.ydd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_024_u.ydd new file mode 100644 index 000000000..a54403d45 Binary files /dev/null and b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_024_u.ydd differ diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_025_u.ydd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_025_u.ydd new file mode 100644 index 000000000..146f75c5f Binary files /dev/null and b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_025_u.ydd differ diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_026_u.ydd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_026_u.ydd new file mode 100644 index 000000000..aed281dc4 Binary files /dev/null and b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_026_u.ydd differ diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_027_u.ydd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_027_u.ydd new file mode 100644 index 000000000..710d636b1 Binary files /dev/null and b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_027_u.ydd differ diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_028_u.ydd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_028_u.ydd new file mode 100644 index 000000000..56139841b Binary files /dev/null and b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_028_u.ydd differ diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_029_u.ydd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_029_u.ydd new file mode 100644 index 000000000..c9ae62ffb Binary files /dev/null and b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_029_u.ydd differ diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_030_u.ydd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_030_u.ydd new file mode 100644 index 000000000..4b52099ee Binary files /dev/null and b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_030_u.ydd differ diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_031_u.ydd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_031_u.ydd new file mode 100644 index 000000000..bea0070b3 Binary files /dev/null and b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_031_u.ydd differ diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_032_u.ydd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_032_u.ydd new file mode 100644 index 000000000..f73b3a232 Binary files /dev/null and b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_032_u.ydd differ diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_033_u.ydd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_033_u.ydd new file mode 100644 index 000000000..6ce9efc51 Binary files /dev/null and b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_033_u.ydd differ diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_034_u.ydd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_034_u.ydd new file mode 100644 index 000000000..b92b25815 Binary files /dev/null and b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_034_u.ydd differ diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_035_u.ydd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_035_u.ydd new file mode 100644 index 000000000..11fe98714 Binary files /dev/null and b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_035_u.ydd differ diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_036_u.ydd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_036_u.ydd new file mode 100644 index 000000000..b6280c461 Binary files /dev/null and b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_036_u.ydd differ diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_037_u.ydd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_037_u.ydd new file mode 100644 index 000000000..1045fe639 Binary files /dev/null and b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_037_u.ydd differ diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_038_u.ydd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_038_u.ydd new file mode 100644 index 000000000..26502df74 Binary files /dev/null and b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_038_u.ydd differ diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_039_u.ydd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_039_u.ydd new file mode 100644 index 000000000..3a66d8df1 Binary files /dev/null and b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_039_u.ydd differ diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_040_u.ydd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_040_u.ydd new file mode 100644 index 000000000..6007d3e26 Binary files /dev/null and b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_040_u.ydd differ diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_041_u.ydd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_041_u.ydd new file mode 100644 index 000000000..e0fffe08d Binary files /dev/null and b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_041_u.ydd differ diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_042_u.ydd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_042_u.ydd new file mode 100644 index 000000000..9d1bd7e49 Binary files /dev/null and b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_042_u.ydd differ diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_043_u.ydd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_043_u.ydd new file mode 100644 index 000000000..2667108e3 Binary files /dev/null and b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_043_u.ydd differ diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_000_a_uni.ytd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_000_a_uni.ytd new file mode 100644 index 000000000..e24f84201 --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_000_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2aaba10f737a483cf64cd2977cdd5e34ea1121118cbb4099c4e4fd1e3b346cb +size 6302079 diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_000_b_uni.ytd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_000_b_uni.ytd new file mode 100644 index 000000000..4e30b2afe --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_000_b_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88f3e2743b661e0aaf4d4b58ff870519d869e26ac051edcdf510a21d2eedb8c6 +size 8699601 diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_001_a_uni.ytd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_001_a_uni.ytd new file mode 100644 index 000000000..e5f5c027b --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_001_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44a4d716ffae62dfacef4c3dab395dcfc4462165de1361a3189b019f8c214afe +size 5615743 diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_002_a_uni.ytd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_002_a_uni.ytd new file mode 100644 index 000000000..2c1dd1c03 --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_002_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84213a965d68f293b53175a704d030c3f62f26b3351ebf3644ec15091778e11e +size 5932821 diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_002_b_uni.ytd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_002_b_uni.ytd new file mode 100644 index 000000000..d65b5d6e7 --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_002_b_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db9a8f81b03be7c1725a5f0b91ad6f29d8cbc2912d128fda809cc12926bc7fde +size 8329866 diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_003_a_uni.ytd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_003_a_uni.ytd new file mode 100644 index 000000000..14bd85453 --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_003_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ee5ecb29f1a01d4215ae5d7c5981efbb6fd2fd7e6680bc4b967038654071f28 +size 5845782 diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_003_b_uni.ytd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_003_b_uni.ytd new file mode 100644 index 000000000..8e2f2c94c --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_003_b_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f91218d407944f53eae24dd3a4513add2e3b88853dd6550a508eac079642fd1 +size 8236889 diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_004_a_uni.ytd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_004_a_uni.ytd new file mode 100644 index 000000000..d47c2fc38 --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_004_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c3daedf78213c1cea93adadb0067aa12da3443057b5648bc80bbd967ef8858d +size 6024684 diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_004_b_uni.ytd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_004_b_uni.ytd new file mode 100644 index 000000000..7ac5068ce --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_004_b_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d00bf5735a1acb7ab873d1e34580cc6d94ceb30dd24f7d7de8af37cf5a9faa54 +size 8397729 diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_005_a_uni.ytd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_005_a_uni.ytd new file mode 100644 index 000000000..efa1f9fa7 --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_005_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc3492d969d0031daab9eea4ae32c567beb69899ba6b33c15c468b8951d68799 +size 5327895 diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_006_a_uni.ytd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_006_a_uni.ytd new file mode 100644 index 000000000..a9cb8b572 --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_006_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd5dd28af3349a4fe1f90b9ed59a943f5a9b2718c035e38f1070c347c7ab4c0f +size 5655454 diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_006_b_uni.ytd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_006_b_uni.ytd new file mode 100644 index 000000000..7350a6b54 --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_006_b_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aece50b77a8dbc86e71b607f2785492d53d3d744ce869fcf651309e9ea58a714 +size 8028000 diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_007_a_uni.ytd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_007_a_uni.ytd new file mode 100644 index 000000000..2bb74011d --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_007_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5f5956189842fc9ae984f1d444341e9d81bc33c476a2023d31f1728fede91c2 +size 5568948 diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_007_b_uni.ytd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_007_b_uni.ytd new file mode 100644 index 000000000..7f6560c32 --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_007_b_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e095d83025288eea6dae3ce9be54a9e3bea17478fa4a54a75e2b12f470180d4 +size 7934733 diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_008_a_uni.ytd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_008_a_uni.ytd new file mode 100644 index 000000000..a58c30eec --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_008_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5b90f8c066203e99d49780a4feb8a8b8de9dbaef088a68d1478e53a28385705 +size 5180222 diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_009_a_uni.ytd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_009_a_uni.ytd new file mode 100644 index 000000000..4eaf84006 --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_009_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9725d7f0e0c1e818bda61236c617ce27ccd1bf26dd60a54886db5951e14adace +size 4718523 diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_010_a_uni.ytd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_010_a_uni.ytd new file mode 100644 index 000000000..56e018829 --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_010_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aef783c74399525f491cb66dd722b478634f5e3ee90f44f6d2db16454f5d957b +size 5514888 diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_010_b_uni.ytd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_010_b_uni.ytd new file mode 100644 index 000000000..9d9ee74ca --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_010_b_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ccaa6b9bf23ae7edf57835094f9741fdf6cdf66f3c8e1bb34aa31798a19fff0 +size 7870115 diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_011_a_uni.ytd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_011_a_uni.ytd new file mode 100644 index 000000000..fa438b074 --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_011_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0746538e5ca35edec25f72e4b7ff5da949d75f0be73a5e7ef053491ef7844b1e +size 4810416 diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_012_a_uni.ytd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_012_a_uni.ytd new file mode 100644 index 000000000..326f5f095 --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_012_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95bcf44dd4b832350fbd1711703fe1331a835c91a481c5c8d92b2442b28b014e +size 5813880 diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_012_b_uni.ytd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_012_b_uni.ytd new file mode 100644 index 000000000..d9597f8ab --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_012_b_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:681bcbaad4c968c7ce5b30817f8e4e94f4f0be2acf367dbc36908ed8f3a9d407 +size 8237998 diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_013_a_uni.ytd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_013_a_uni.ytd new file mode 100644 index 000000000..264aa6d01 --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_013_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26c221b7968a3711438b320e51c7e9399f60cd0be5077dfeebe22ccfe911ff50 +size 5138554 diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_014_a_uni.ytd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_014_a_uni.ytd new file mode 100644 index 000000000..25c777477 --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_014_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4d5c3f7f72f52e88dea8d19408a20714b233adf970044edf4fc35adc9dadc0a +size 5444103 diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_014_b_uni.ytd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_014_b_uni.ytd new file mode 100644 index 000000000..5e0a14a46 --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_014_b_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42b604a7fd8b9e3431c68d960f8d9262babaeb71cd5b7004112b2cb5895345b3 +size 7865306 diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_015_a_uni.ytd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_015_a_uni.ytd new file mode 100644 index 000000000..e8bcbfb34 --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_015_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc774cfbdd1f3deed9471f10955891016a215286106d01f14353db68ceba9320 +size 5752566 diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_015_b_uni.ytd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_015_b_uni.ytd new file mode 100644 index 000000000..f79b10e4c --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_015_b_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fdd69cb2a54a2fe07737673d9f713dbcf99a532da5b0f28977693c2cc811769 +size 8157024 diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_016_a_uni.ytd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_016_a_uni.ytd new file mode 100644 index 000000000..81ecd76a9 --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_016_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24f6ef39838fc209148fd827456570ddd191e9877ca02e18128a52209ec286e0 +size 5065317 diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_017_a_uni.ytd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_017_a_uni.ytd new file mode 100644 index 000000000..66456eafa --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_017_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:744635433a01323245572315948c11e4b961a4acefe93161292e9e95e2984461 +size 5381279 diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_017_b_uni.ytd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_017_b_uni.ytd new file mode 100644 index 000000000..05fafee6a --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_017_b_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8af82b9c5baa803243e747a09391d1ba9c8cc1f95a1e234c2594d35df66d111 +size 7784897 diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_018_a_uni.ytd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_018_a_uni.ytd new file mode 100644 index 000000000..3e5f315b0 --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_018_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f354fc31eb3390c92ccf94be75d798ef8a8f9d2aaa5803d8828832feea976b1 +size 6379238 diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_019_a_uni.ytd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_019_a_uni.ytd new file mode 100644 index 000000000..322439cd5 --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_019_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a68180f1e45ea6389a725f9ed6e3baf851854103537632ef01ff9ef44dc69b5 +size 6034713 diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_020_a_uni.ytd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_020_a_uni.ytd new file mode 100644 index 000000000..031ab907a --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_020_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df1555184311e5e63de62140ca910e7e058b8ccd161c9551a2660f534ce99ac4 +size 5916026 diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_021_a_uni.ytd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_021_a_uni.ytd new file mode 100644 index 000000000..80150e8c7 --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_021_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:856b8876f3ef705c5ae1c469f7b80f68274ad6b182e2ea606d54c2b9f5253c64 +size 4968535 diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_022_a_uni.ytd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_022_a_uni.ytd new file mode 100644 index 000000000..869b248e0 --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_022_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:415db33b5d8335fa427f65f16531312074201fe728ce1d44a01e89c2eb31c1dc +size 6834255 diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_022_b_uni.ytd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_022_b_uni.ytd new file mode 100644 index 000000000..aa76b8636 --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_022_b_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:536f45f5f6cc07ac8bf6a2f59836dc409c8c73dfe87628b05eda7cd68cba9df4 +size 9266000 diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_023_a_uni.ytd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_023_a_uni.ytd new file mode 100644 index 000000000..22b6022a1 --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_023_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5df2cba8b1a25687b0cf11539fb25ac0b3f27f4c1ba4e5e198edb53cf3dc6e5 +size 6157119 diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_024_a_uni.ytd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_024_a_uni.ytd new file mode 100644 index 000000000..b666f5c94 --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_024_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36be5119a5a99d9b2fccc15b8404327168417e8d36a0b92f6fd57d0b39d50365 +size 6465817 diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_024_b_uni.ytd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_024_b_uni.ytd new file mode 100644 index 000000000..eeba113af --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_024_b_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa441cdb3e0c9a93d5a2aaecb3880fe4cf2967d5faafb97443cc4c7a7aa1410d +size 8896835 diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_025_a_uni.ytd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_025_a_uni.ytd new file mode 100644 index 000000000..4f242ce3a --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_025_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bb085d3b542e758b9f6559108081084118b26f9f03797f8631fe1cddd7c1e07 +size 6377850 diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_025_b_uni.ytd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_025_b_uni.ytd new file mode 100644 index 000000000..d07d4a351 --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_025_b_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1839c42e8cf0048539eb623dfe1bad1f4bc3ba0d077270398b3bbf63e79e36bc +size 8807163 diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_026_a_uni.ytd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_026_a_uni.ytd new file mode 100644 index 000000000..55ee1e485 --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_026_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85213f90c0ad1680adab1cc438f7c7795c15218e1cfea7ab51bae4285b0c6b65 +size 6526949 diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_026_b_uni.ytd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_026_b_uni.ytd new file mode 100644 index 000000000..cf98091c3 --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_026_b_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b452bb2b627f6cb6b0ca0028df69391d0f278cf2a271af2dcba331eebd48624b +size 8935576 diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_027_a_uni.ytd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_027_a_uni.ytd new file mode 100644 index 000000000..679db9474 --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_027_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:348365f54e360edc99c252f9da0b3c058d42ddb8deb012054e2fc755655d7fb6 +size 5840880 diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_028_a_uni.ytd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_028_a_uni.ytd new file mode 100644 index 000000000..0af8d97fd --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_028_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6af937c7b9df14527e80c76014f446d60665a6eca0364c86bb6edd539827779 +size 6159015 diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_028_b_uni.ytd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_028_b_uni.ytd new file mode 100644 index 000000000..418c1a81b --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_028_b_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f0f4b4cb1508f44b544c9630eabb75e30ed5ff548f5bf63ce3087ed15219b12 +size 8566116 diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_029_a_uni.ytd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_029_a_uni.ytd new file mode 100644 index 000000000..814ba1ee3 --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_029_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05fe65d9199918095feba09ae76870774f9fb36d790aeda8adaf54ce9e119902 +size 6071791 diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_029_b_uni.ytd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_029_b_uni.ytd new file mode 100644 index 000000000..798a93ec7 --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_029_b_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64829a7c4c9e9c486a0162b50ea287a73e5be53c4c2d0bd62d0563f946d3a9ab +size 8477864 diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_030_a_uni.ytd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_030_a_uni.ytd new file mode 100644 index 000000000..db48264f0 --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_030_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3106ebba0e84962d6ed69049a8fa80902afb1043a50327447997a84b0164e7ec +size 5844464 diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_031_a_uni.ytd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_031_a_uni.ytd new file mode 100644 index 000000000..4d362a35d --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_031_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f00c4f888ef696e1e0d2a0088c2ff2b5c67a56ec06902e7ae9157b4251b7cefd +size 5382543 diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_032_a_uni.ytd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_032_a_uni.ytd new file mode 100644 index 000000000..8e4f150fe --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_032_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26498e828a3be011f1ad8f5b65a596ce486a0785ce04a22c88600df69aa00c37 +size 5924405 diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_032_b_uni.ytd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_032_b_uni.ytd new file mode 100644 index 000000000..890d9e78c --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_032_b_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02c31894bb273fdbb2af9b9f4051f424112b6b03b154a2df127d619ee39b9a70 +size 8283819 diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_033_a_uni.ytd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_033_a_uni.ytd new file mode 100644 index 000000000..361a71f93 --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_033_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d22c3f2ce7289df9a0ce1e8d7c25ecfd74fe1bf6e314eb85859720b19895a9ba +size 5223604 diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_034_a_uni.ytd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_034_a_uni.ytd new file mode 100644 index 000000000..e1aa6a347 --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_034_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b8acbdfbc0374a0fccb6a428547afae5d3d51a8dc425f26979e6ec31494c396 +size 6284520 diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_034_b_uni.ytd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_034_b_uni.ytd new file mode 100644 index 000000000..aca0173da --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_034_b_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c96a6202b3507dc1b8cc9e577dc67850e542e9987f8d6a0c665e6457b2685a2 +size 8749627 diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_035_a_uni.ytd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_035_a_uni.ytd new file mode 100644 index 000000000..41cc377bc --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_035_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91144f3c5c2779201c2f08f28ec72f1b1ef55ef63a4208eee91f8a2622704617 +size 5616044 diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_036_a_uni.ytd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_036_a_uni.ytd new file mode 100644 index 000000000..931d8d9f5 --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_036_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20b448e2724613cc8022daa8513ded64fd77e80f83d668dbf4341a6f3d16d32d +size 5914300 diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_036_b_uni.ytd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_036_b_uni.ytd new file mode 100644 index 000000000..83caeffd5 --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_036_b_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79935f30182bb7bfff7c9ef8f99473053b8d57c46db9d5ab4e8c1a39ceb585f9 +size 8377867 diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_037_a_uni.ytd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_037_a_uni.ytd new file mode 100644 index 000000000..298b89a9b --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_037_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:546be7691a6af2f43caeb940c57074c7ff6dd5374e4f8fac8d3525b39b58696a +size 6041784 diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_037_b_uni.ytd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_037_b_uni.ytd new file mode 100644 index 000000000..e70dc26e5 --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_037_b_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9387da2a27edc2ba9e8aca13b7824e8d0bbf2ba36993d8e3918ab4c489c171f2 +size 8466568 diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_038_a_uni.ytd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_038_a_uni.ytd new file mode 100644 index 000000000..8221190e0 --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_038_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e03dc33d3c70b767a3c7fc6ce6ab56f792c331b89c9600323e07c845cc09f817 +size 5360711 diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_039_a_uni.ytd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_039_a_uni.ytd new file mode 100644 index 000000000..8f5d4082a --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_039_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a4302ee1ac15547de0d5847f9d3995a6138785508ccc84d3cc6fe2f5eea423f +size 5672647 diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_039_b_uni.ytd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_039_b_uni.ytd new file mode 100644 index 000000000..21c6e751c --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_039_b_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48b0d48f7c274f011861b056dc942a3bd2d5886777ae2fdbd5e7ec086dfb3776 +size 8095426 diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_040_a_uni.ytd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_040_a_uni.ytd new file mode 100644 index 000000000..4f496e10e --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_040_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbad7bda85efb029b86136d4ded80c7ae14137cb9d5f617dc112326a94077652 +size 7229755 diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_041_a_uni.ytd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_041_a_uni.ytd new file mode 100644 index 000000000..4de107deb --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_041_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ab6eef41626d83bd173cbdfd1132d57c0936084bc0ef300d0249339af8c6dd9 +size 6888567 diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_042_a_uni.ytd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_042_a_uni.ytd new file mode 100644 index 000000000..a29ca14be --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_042_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca2633b2cf5465bbccdb1440bd941a664bc9cf68039eb8705ca1a7f997c74f79 +size 6762359 diff --git a/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_043_a_uni.ytd b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_043_a_uni.ytd new file mode 100644 index 000000000..08da4bb2b --- /dev/null +++ b/resources/tls_aedutybelt/stream/mp_m_freemode_01_mp_m_tls_aedutybelt/mp_m_freemode_01_mp_m_tls_aedutybelt^accs_diff_043_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70b168a0c87e5c58f24f38d966d83112bd8cc823adcfd4571325afd37e7e2a0c +size 5600493 diff --git a/resources/tls_motorolapack/fxmanifest.lua b/resources/tls_motorolapack/fxmanifest.lua new file mode 100644 index 000000000..672ae68f2 --- /dev/null +++ b/resources/tls_motorolapack/fxmanifest.lua @@ -0,0 +1,12 @@ +-- Generated with DurtyClothTool + +fx_version 'cerulean' +game { 'gta5' } + +files { + 'mp_m_freemode_01_mp_m_tls_motorolapack.meta', + 'mp_f_freemode_01_mp_f_tls_motorolapack.meta' +} + +data_file 'SHOP_PED_APPAREL_META_FILE' 'mp_m_freemode_01_mp_m_tls_motorolapack.meta' +data_file 'SHOP_PED_APPAREL_META_FILE' 'mp_f_freemode_01_mp_f_tls_motorolapack.meta' \ No newline at end of file diff --git a/resources/tls_motorolapack/mp_f_freemode_01_mp_f_tls_motorolapack.meta b/resources/tls_motorolapack/mp_f_freemode_01_mp_f_tls_motorolapack.meta new file mode 100644 index 000000000..eec865ffa --- /dev/null +++ b/resources/tls_motorolapack/mp_f_freemode_01_mp_f_tls_motorolapack.meta @@ -0,0 +1,14 @@ + + + mp_f_freemode_01 + mp_f_tls_motorolapack + mp_f_freemode_01_mp_f_tls_motorolapack + SCR_CHAR_MULTIPLAYER_F + MP_CreatureMetadata_tlsmotorolapack + + + + + + + \ No newline at end of file diff --git a/resources/tls_motorolapack/mp_m_freemode_01_mp_m_tls_motorolapack.meta b/resources/tls_motorolapack/mp_m_freemode_01_mp_m_tls_motorolapack.meta new file mode 100644 index 000000000..b45537adc --- /dev/null +++ b/resources/tls_motorolapack/mp_m_freemode_01_mp_m_tls_motorolapack.meta @@ -0,0 +1,14 @@ + + + mp_m_freemode_01 + mp_m_tls_motorolapack + mp_m_freemode_01_mp_m_tls_motorolapack + SCR_CHAR_MULTIPLAYER + MP_CreatureMetadata_tlsmotorolapack + + + + + + + \ No newline at end of file diff --git a/resources/tls_motorolapack/stream/mp_f_freemode_01_mp_f_tls_motorolapack.ymt b/resources/tls_motorolapack/stream/mp_f_freemode_01_mp_f_tls_motorolapack.ymt new file mode 100644 index 000000000..5d072638e Binary files /dev/null and b/resources/tls_motorolapack/stream/mp_f_freemode_01_mp_f_tls_motorolapack.ymt differ diff --git a/resources/tls_motorolapack/stream/mp_f_freemode_01_mp_f_tls_motorolapack/mp_f_freemode_01_mp_f_tls_motorolapack^task_000_u.ydd b/resources/tls_motorolapack/stream/mp_f_freemode_01_mp_f_tls_motorolapack/mp_f_freemode_01_mp_f_tls_motorolapack^task_000_u.ydd new file mode 100644 index 000000000..2c135fd90 Binary files /dev/null and b/resources/tls_motorolapack/stream/mp_f_freemode_01_mp_f_tls_motorolapack/mp_f_freemode_01_mp_f_tls_motorolapack^task_000_u.ydd differ diff --git a/resources/tls_motorolapack/stream/mp_f_freemode_01_mp_f_tls_motorolapack/mp_f_freemode_01_mp_f_tls_motorolapack^task_001_u.ydd b/resources/tls_motorolapack/stream/mp_f_freemode_01_mp_f_tls_motorolapack/mp_f_freemode_01_mp_f_tls_motorolapack^task_001_u.ydd new file mode 100644 index 000000000..c9cf904d1 Binary files /dev/null and b/resources/tls_motorolapack/stream/mp_f_freemode_01_mp_f_tls_motorolapack/mp_f_freemode_01_mp_f_tls_motorolapack^task_001_u.ydd differ diff --git a/resources/tls_motorolapack/stream/mp_f_freemode_01_mp_f_tls_motorolapack/mp_f_freemode_01_mp_f_tls_motorolapack^task_002_u.ydd b/resources/tls_motorolapack/stream/mp_f_freemode_01_mp_f_tls_motorolapack/mp_f_freemode_01_mp_f_tls_motorolapack^task_002_u.ydd new file mode 100644 index 000000000..eac70764a Binary files /dev/null and b/resources/tls_motorolapack/stream/mp_f_freemode_01_mp_f_tls_motorolapack/mp_f_freemode_01_mp_f_tls_motorolapack^task_002_u.ydd differ diff --git a/resources/tls_motorolapack/stream/mp_f_freemode_01_mp_f_tls_motorolapack/mp_f_freemode_01_mp_f_tls_motorolapack^task_003_u.ydd b/resources/tls_motorolapack/stream/mp_f_freemode_01_mp_f_tls_motorolapack/mp_f_freemode_01_mp_f_tls_motorolapack^task_003_u.ydd new file mode 100644 index 000000000..083749165 Binary files /dev/null and b/resources/tls_motorolapack/stream/mp_f_freemode_01_mp_f_tls_motorolapack/mp_f_freemode_01_mp_f_tls_motorolapack^task_003_u.ydd differ diff --git a/resources/tls_motorolapack/stream/mp_f_freemode_01_mp_f_tls_motorolapack/mp_f_freemode_01_mp_f_tls_motorolapack^task_004_u.ydd b/resources/tls_motorolapack/stream/mp_f_freemode_01_mp_f_tls_motorolapack/mp_f_freemode_01_mp_f_tls_motorolapack^task_004_u.ydd new file mode 100644 index 000000000..c4b5c6fed Binary files /dev/null and b/resources/tls_motorolapack/stream/mp_f_freemode_01_mp_f_tls_motorolapack/mp_f_freemode_01_mp_f_tls_motorolapack^task_004_u.ydd differ diff --git a/resources/tls_motorolapack/stream/mp_f_freemode_01_mp_f_tls_motorolapack/mp_f_freemode_01_mp_f_tls_motorolapack^task_005_u.ydd b/resources/tls_motorolapack/stream/mp_f_freemode_01_mp_f_tls_motorolapack/mp_f_freemode_01_mp_f_tls_motorolapack^task_005_u.ydd new file mode 100644 index 000000000..8109879a6 Binary files /dev/null and b/resources/tls_motorolapack/stream/mp_f_freemode_01_mp_f_tls_motorolapack/mp_f_freemode_01_mp_f_tls_motorolapack^task_005_u.ydd differ diff --git a/resources/tls_motorolapack/stream/mp_f_freemode_01_mp_f_tls_motorolapack/mp_f_freemode_01_mp_f_tls_motorolapack^task_006_u.ydd b/resources/tls_motorolapack/stream/mp_f_freemode_01_mp_f_tls_motorolapack/mp_f_freemode_01_mp_f_tls_motorolapack^task_006_u.ydd new file mode 100644 index 000000000..73123b171 Binary files /dev/null and b/resources/tls_motorolapack/stream/mp_f_freemode_01_mp_f_tls_motorolapack/mp_f_freemode_01_mp_f_tls_motorolapack^task_006_u.ydd differ diff --git a/resources/tls_motorolapack/stream/mp_f_freemode_01_mp_f_tls_motorolapack/mp_f_freemode_01_mp_f_tls_motorolapack^task_007_u.ydd b/resources/tls_motorolapack/stream/mp_f_freemode_01_mp_f_tls_motorolapack/mp_f_freemode_01_mp_f_tls_motorolapack^task_007_u.ydd new file mode 100644 index 000000000..c575291da Binary files /dev/null and b/resources/tls_motorolapack/stream/mp_f_freemode_01_mp_f_tls_motorolapack/mp_f_freemode_01_mp_f_tls_motorolapack^task_007_u.ydd differ diff --git a/resources/tls_motorolapack/stream/mp_f_freemode_01_mp_f_tls_motorolapack/mp_f_freemode_01_mp_f_tls_motorolapack^task_008_u.ydd b/resources/tls_motorolapack/stream/mp_f_freemode_01_mp_f_tls_motorolapack/mp_f_freemode_01_mp_f_tls_motorolapack^task_008_u.ydd new file mode 100644 index 000000000..722a88b45 Binary files /dev/null and b/resources/tls_motorolapack/stream/mp_f_freemode_01_mp_f_tls_motorolapack/mp_f_freemode_01_mp_f_tls_motorolapack^task_008_u.ydd differ diff --git a/resources/tls_motorolapack/stream/mp_f_freemode_01_mp_f_tls_motorolapack/mp_f_freemode_01_mp_f_tls_motorolapack^task_diff_000_a_uni.ytd b/resources/tls_motorolapack/stream/mp_f_freemode_01_mp_f_tls_motorolapack/mp_f_freemode_01_mp_f_tls_motorolapack^task_diff_000_a_uni.ytd new file mode 100644 index 000000000..ccdb21796 --- /dev/null +++ b/resources/tls_motorolapack/stream/mp_f_freemode_01_mp_f_tls_motorolapack/mp_f_freemode_01_mp_f_tls_motorolapack^task_diff_000_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:946a4d3de760276249872f54b6305787146b29673503ae7f127f6be686f7e511 +size 2216776 diff --git a/resources/tls_motorolapack/stream/mp_f_freemode_01_mp_f_tls_motorolapack/mp_f_freemode_01_mp_f_tls_motorolapack^task_diff_001_a_uni.ytd b/resources/tls_motorolapack/stream/mp_f_freemode_01_mp_f_tls_motorolapack/mp_f_freemode_01_mp_f_tls_motorolapack^task_diff_001_a_uni.ytd new file mode 100644 index 000000000..b894d418b --- /dev/null +++ b/resources/tls_motorolapack/stream/mp_f_freemode_01_mp_f_tls_motorolapack/mp_f_freemode_01_mp_f_tls_motorolapack^task_diff_001_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1116d3cf1d6e8dae6de7253baed1c42e916ff4422148a022803489d8b93c06d3 +size 3754364 diff --git a/resources/tls_motorolapack/stream/mp_f_freemode_01_mp_f_tls_motorolapack/mp_f_freemode_01_mp_f_tls_motorolapack^task_diff_002_a_uni.ytd b/resources/tls_motorolapack/stream/mp_f_freemode_01_mp_f_tls_motorolapack/mp_f_freemode_01_mp_f_tls_motorolapack^task_diff_002_a_uni.ytd new file mode 100644 index 000000000..026d36338 --- /dev/null +++ b/resources/tls_motorolapack/stream/mp_f_freemode_01_mp_f_tls_motorolapack/mp_f_freemode_01_mp_f_tls_motorolapack^task_diff_002_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:723a25fbc82346e7a16ef0b72aa68db21724cdfb7cd2f5c99f8e8aab5e542a79 +size 2216775 diff --git a/resources/tls_motorolapack/stream/mp_f_freemode_01_mp_f_tls_motorolapack/mp_f_freemode_01_mp_f_tls_motorolapack^task_diff_003_a_uni.ytd b/resources/tls_motorolapack/stream/mp_f_freemode_01_mp_f_tls_motorolapack/mp_f_freemode_01_mp_f_tls_motorolapack^task_diff_003_a_uni.ytd new file mode 100644 index 000000000..bc6c17ba4 --- /dev/null +++ b/resources/tls_motorolapack/stream/mp_f_freemode_01_mp_f_tls_motorolapack/mp_f_freemode_01_mp_f_tls_motorolapack^task_diff_003_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e0bc5fdc0ba82552b0a7c2e11d1bb4c323e4e9614017257ae539c8ffca70b3e +size 3754364 diff --git a/resources/tls_motorolapack/stream/mp_f_freemode_01_mp_f_tls_motorolapack/mp_f_freemode_01_mp_f_tls_motorolapack^task_diff_004_a_uni.ytd b/resources/tls_motorolapack/stream/mp_f_freemode_01_mp_f_tls_motorolapack/mp_f_freemode_01_mp_f_tls_motorolapack^task_diff_004_a_uni.ytd new file mode 100644 index 000000000..038c72da0 --- /dev/null +++ b/resources/tls_motorolapack/stream/mp_f_freemode_01_mp_f_tls_motorolapack/mp_f_freemode_01_mp_f_tls_motorolapack^task_diff_004_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0db14ae09d3edaad0fa5cfec66da50241bb518c0bbface05a6ecc646f271a95c +size 2225619 diff --git a/resources/tls_motorolapack/stream/mp_f_freemode_01_mp_f_tls_motorolapack/mp_f_freemode_01_mp_f_tls_motorolapack^task_diff_005_a_uni.ytd b/resources/tls_motorolapack/stream/mp_f_freemode_01_mp_f_tls_motorolapack/mp_f_freemode_01_mp_f_tls_motorolapack^task_diff_005_a_uni.ytd new file mode 100644 index 000000000..63556a389 --- /dev/null +++ b/resources/tls_motorolapack/stream/mp_f_freemode_01_mp_f_tls_motorolapack/mp_f_freemode_01_mp_f_tls_motorolapack^task_diff_005_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de5d44f27b181eb58cfa19796a064ff23c4dd2f4c3789f278a7b1b2a100d7745 +size 3762384 diff --git a/resources/tls_motorolapack/stream/mp_f_freemode_01_mp_f_tls_motorolapack/mp_f_freemode_01_mp_f_tls_motorolapack^task_diff_006_a_uni.ytd b/resources/tls_motorolapack/stream/mp_f_freemode_01_mp_f_tls_motorolapack/mp_f_freemode_01_mp_f_tls_motorolapack^task_diff_006_a_uni.ytd new file mode 100644 index 000000000..d487b23f6 --- /dev/null +++ b/resources/tls_motorolapack/stream/mp_f_freemode_01_mp_f_tls_motorolapack/mp_f_freemode_01_mp_f_tls_motorolapack^task_diff_006_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37c07644423a57a64110f8de9667c0850912c717a282082e034d16370b319956 +size 2225540 diff --git a/resources/tls_motorolapack/stream/mp_f_freemode_01_mp_f_tls_motorolapack/mp_f_freemode_01_mp_f_tls_motorolapack^task_diff_007_a_uni.ytd b/resources/tls_motorolapack/stream/mp_f_freemode_01_mp_f_tls_motorolapack/mp_f_freemode_01_mp_f_tls_motorolapack^task_diff_007_a_uni.ytd new file mode 100644 index 000000000..6f1ecc740 --- /dev/null +++ b/resources/tls_motorolapack/stream/mp_f_freemode_01_mp_f_tls_motorolapack/mp_f_freemode_01_mp_f_tls_motorolapack^task_diff_007_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ad2260b059c54e10867083762d192fa6b578a4a39cd0ac2f1f9b268fc7201a3 +size 3762123 diff --git a/resources/tls_motorolapack/stream/mp_f_freemode_01_mp_f_tls_motorolapack/mp_f_freemode_01_mp_f_tls_motorolapack^task_diff_008_a_uni.ytd b/resources/tls_motorolapack/stream/mp_f_freemode_01_mp_f_tls_motorolapack/mp_f_freemode_01_mp_f_tls_motorolapack^task_diff_008_a_uni.ytd new file mode 100644 index 000000000..690836d62 --- /dev/null +++ b/resources/tls_motorolapack/stream/mp_f_freemode_01_mp_f_tls_motorolapack/mp_f_freemode_01_mp_f_tls_motorolapack^task_diff_008_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f68b1afd4d5b868fa077f9021547d69b8661d63ea3c961ba46a42aafab977629 +size 1817009 diff --git a/resources/tls_motorolapack/stream/mp_m_freemode_01_mp_m_tls_motorolapack.ymt b/resources/tls_motorolapack/stream/mp_m_freemode_01_mp_m_tls_motorolapack.ymt new file mode 100644 index 000000000..e91c06e93 Binary files /dev/null and b/resources/tls_motorolapack/stream/mp_m_freemode_01_mp_m_tls_motorolapack.ymt differ diff --git a/resources/tls_motorolapack/stream/mp_m_freemode_01_mp_m_tls_motorolapack/mp_m_freemode_01_mp_m_tls_motorolapack^task_000_u.ydd b/resources/tls_motorolapack/stream/mp_m_freemode_01_mp_m_tls_motorolapack/mp_m_freemode_01_mp_m_tls_motorolapack^task_000_u.ydd new file mode 100644 index 000000000..ccece7029 Binary files /dev/null and b/resources/tls_motorolapack/stream/mp_m_freemode_01_mp_m_tls_motorolapack/mp_m_freemode_01_mp_m_tls_motorolapack^task_000_u.ydd differ diff --git a/resources/tls_motorolapack/stream/mp_m_freemode_01_mp_m_tls_motorolapack/mp_m_freemode_01_mp_m_tls_motorolapack^task_001_u.ydd b/resources/tls_motorolapack/stream/mp_m_freemode_01_mp_m_tls_motorolapack/mp_m_freemode_01_mp_m_tls_motorolapack^task_001_u.ydd new file mode 100644 index 000000000..74821e520 Binary files /dev/null and b/resources/tls_motorolapack/stream/mp_m_freemode_01_mp_m_tls_motorolapack/mp_m_freemode_01_mp_m_tls_motorolapack^task_001_u.ydd differ diff --git a/resources/tls_motorolapack/stream/mp_m_freemode_01_mp_m_tls_motorolapack/mp_m_freemode_01_mp_m_tls_motorolapack^task_002_u.ydd b/resources/tls_motorolapack/stream/mp_m_freemode_01_mp_m_tls_motorolapack/mp_m_freemode_01_mp_m_tls_motorolapack^task_002_u.ydd new file mode 100644 index 000000000..347471cff Binary files /dev/null and b/resources/tls_motorolapack/stream/mp_m_freemode_01_mp_m_tls_motorolapack/mp_m_freemode_01_mp_m_tls_motorolapack^task_002_u.ydd differ diff --git a/resources/tls_motorolapack/stream/mp_m_freemode_01_mp_m_tls_motorolapack/mp_m_freemode_01_mp_m_tls_motorolapack^task_003_u.ydd b/resources/tls_motorolapack/stream/mp_m_freemode_01_mp_m_tls_motorolapack/mp_m_freemode_01_mp_m_tls_motorolapack^task_003_u.ydd new file mode 100644 index 000000000..40f753a44 Binary files /dev/null and b/resources/tls_motorolapack/stream/mp_m_freemode_01_mp_m_tls_motorolapack/mp_m_freemode_01_mp_m_tls_motorolapack^task_003_u.ydd differ diff --git a/resources/tls_motorolapack/stream/mp_m_freemode_01_mp_m_tls_motorolapack/mp_m_freemode_01_mp_m_tls_motorolapack^task_004_u.ydd b/resources/tls_motorolapack/stream/mp_m_freemode_01_mp_m_tls_motorolapack/mp_m_freemode_01_mp_m_tls_motorolapack^task_004_u.ydd new file mode 100644 index 000000000..671e17eb8 Binary files /dev/null and b/resources/tls_motorolapack/stream/mp_m_freemode_01_mp_m_tls_motorolapack/mp_m_freemode_01_mp_m_tls_motorolapack^task_004_u.ydd differ diff --git a/resources/tls_motorolapack/stream/mp_m_freemode_01_mp_m_tls_motorolapack/mp_m_freemode_01_mp_m_tls_motorolapack^task_005_u.ydd b/resources/tls_motorolapack/stream/mp_m_freemode_01_mp_m_tls_motorolapack/mp_m_freemode_01_mp_m_tls_motorolapack^task_005_u.ydd new file mode 100644 index 000000000..1dde766f0 Binary files /dev/null and b/resources/tls_motorolapack/stream/mp_m_freemode_01_mp_m_tls_motorolapack/mp_m_freemode_01_mp_m_tls_motorolapack^task_005_u.ydd differ diff --git a/resources/tls_motorolapack/stream/mp_m_freemode_01_mp_m_tls_motorolapack/mp_m_freemode_01_mp_m_tls_motorolapack^task_006_u.ydd b/resources/tls_motorolapack/stream/mp_m_freemode_01_mp_m_tls_motorolapack/mp_m_freemode_01_mp_m_tls_motorolapack^task_006_u.ydd new file mode 100644 index 000000000..869407596 Binary files /dev/null and b/resources/tls_motorolapack/stream/mp_m_freemode_01_mp_m_tls_motorolapack/mp_m_freemode_01_mp_m_tls_motorolapack^task_006_u.ydd differ diff --git a/resources/tls_motorolapack/stream/mp_m_freemode_01_mp_m_tls_motorolapack/mp_m_freemode_01_mp_m_tls_motorolapack^task_007_u.ydd b/resources/tls_motorolapack/stream/mp_m_freemode_01_mp_m_tls_motorolapack/mp_m_freemode_01_mp_m_tls_motorolapack^task_007_u.ydd new file mode 100644 index 000000000..021c143a3 Binary files /dev/null and b/resources/tls_motorolapack/stream/mp_m_freemode_01_mp_m_tls_motorolapack/mp_m_freemode_01_mp_m_tls_motorolapack^task_007_u.ydd differ diff --git a/resources/tls_motorolapack/stream/mp_m_freemode_01_mp_m_tls_motorolapack/mp_m_freemode_01_mp_m_tls_motorolapack^task_008_u.ydd b/resources/tls_motorolapack/stream/mp_m_freemode_01_mp_m_tls_motorolapack/mp_m_freemode_01_mp_m_tls_motorolapack^task_008_u.ydd new file mode 100644 index 000000000..ecbcb5d3c Binary files /dev/null and b/resources/tls_motorolapack/stream/mp_m_freemode_01_mp_m_tls_motorolapack/mp_m_freemode_01_mp_m_tls_motorolapack^task_008_u.ydd differ diff --git a/resources/tls_motorolapack/stream/mp_m_freemode_01_mp_m_tls_motorolapack/mp_m_freemode_01_mp_m_tls_motorolapack^task_diff_000_a_uni.ytd b/resources/tls_motorolapack/stream/mp_m_freemode_01_mp_m_tls_motorolapack/mp_m_freemode_01_mp_m_tls_motorolapack^task_diff_000_a_uni.ytd new file mode 100644 index 000000000..ccdb21796 --- /dev/null +++ b/resources/tls_motorolapack/stream/mp_m_freemode_01_mp_m_tls_motorolapack/mp_m_freemode_01_mp_m_tls_motorolapack^task_diff_000_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:946a4d3de760276249872f54b6305787146b29673503ae7f127f6be686f7e511 +size 2216776 diff --git a/resources/tls_motorolapack/stream/mp_m_freemode_01_mp_m_tls_motorolapack/mp_m_freemode_01_mp_m_tls_motorolapack^task_diff_001_a_uni.ytd b/resources/tls_motorolapack/stream/mp_m_freemode_01_mp_m_tls_motorolapack/mp_m_freemode_01_mp_m_tls_motorolapack^task_diff_001_a_uni.ytd new file mode 100644 index 000000000..b894d418b --- /dev/null +++ b/resources/tls_motorolapack/stream/mp_m_freemode_01_mp_m_tls_motorolapack/mp_m_freemode_01_mp_m_tls_motorolapack^task_diff_001_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1116d3cf1d6e8dae6de7253baed1c42e916ff4422148a022803489d8b93c06d3 +size 3754364 diff --git a/resources/tls_motorolapack/stream/mp_m_freemode_01_mp_m_tls_motorolapack/mp_m_freemode_01_mp_m_tls_motorolapack^task_diff_002_a_uni.ytd b/resources/tls_motorolapack/stream/mp_m_freemode_01_mp_m_tls_motorolapack/mp_m_freemode_01_mp_m_tls_motorolapack^task_diff_002_a_uni.ytd new file mode 100644 index 000000000..026d36338 --- /dev/null +++ b/resources/tls_motorolapack/stream/mp_m_freemode_01_mp_m_tls_motorolapack/mp_m_freemode_01_mp_m_tls_motorolapack^task_diff_002_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:723a25fbc82346e7a16ef0b72aa68db21724cdfb7cd2f5c99f8e8aab5e542a79 +size 2216775 diff --git a/resources/tls_motorolapack/stream/mp_m_freemode_01_mp_m_tls_motorolapack/mp_m_freemode_01_mp_m_tls_motorolapack^task_diff_003_a_uni.ytd b/resources/tls_motorolapack/stream/mp_m_freemode_01_mp_m_tls_motorolapack/mp_m_freemode_01_mp_m_tls_motorolapack^task_diff_003_a_uni.ytd new file mode 100644 index 000000000..bc6c17ba4 --- /dev/null +++ b/resources/tls_motorolapack/stream/mp_m_freemode_01_mp_m_tls_motorolapack/mp_m_freemode_01_mp_m_tls_motorolapack^task_diff_003_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e0bc5fdc0ba82552b0a7c2e11d1bb4c323e4e9614017257ae539c8ffca70b3e +size 3754364 diff --git a/resources/tls_motorolapack/stream/mp_m_freemode_01_mp_m_tls_motorolapack/mp_m_freemode_01_mp_m_tls_motorolapack^task_diff_004_a_uni.ytd b/resources/tls_motorolapack/stream/mp_m_freemode_01_mp_m_tls_motorolapack/mp_m_freemode_01_mp_m_tls_motorolapack^task_diff_004_a_uni.ytd new file mode 100644 index 000000000..038c72da0 --- /dev/null +++ b/resources/tls_motorolapack/stream/mp_m_freemode_01_mp_m_tls_motorolapack/mp_m_freemode_01_mp_m_tls_motorolapack^task_diff_004_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0db14ae09d3edaad0fa5cfec66da50241bb518c0bbface05a6ecc646f271a95c +size 2225619 diff --git a/resources/tls_motorolapack/stream/mp_m_freemode_01_mp_m_tls_motorolapack/mp_m_freemode_01_mp_m_tls_motorolapack^task_diff_005_a_uni.ytd b/resources/tls_motorolapack/stream/mp_m_freemode_01_mp_m_tls_motorolapack/mp_m_freemode_01_mp_m_tls_motorolapack^task_diff_005_a_uni.ytd new file mode 100644 index 000000000..63556a389 --- /dev/null +++ b/resources/tls_motorolapack/stream/mp_m_freemode_01_mp_m_tls_motorolapack/mp_m_freemode_01_mp_m_tls_motorolapack^task_diff_005_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de5d44f27b181eb58cfa19796a064ff23c4dd2f4c3789f278a7b1b2a100d7745 +size 3762384 diff --git a/resources/tls_motorolapack/stream/mp_m_freemode_01_mp_m_tls_motorolapack/mp_m_freemode_01_mp_m_tls_motorolapack^task_diff_006_a_uni.ytd b/resources/tls_motorolapack/stream/mp_m_freemode_01_mp_m_tls_motorolapack/mp_m_freemode_01_mp_m_tls_motorolapack^task_diff_006_a_uni.ytd new file mode 100644 index 000000000..d487b23f6 --- /dev/null +++ b/resources/tls_motorolapack/stream/mp_m_freemode_01_mp_m_tls_motorolapack/mp_m_freemode_01_mp_m_tls_motorolapack^task_diff_006_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37c07644423a57a64110f8de9667c0850912c717a282082e034d16370b319956 +size 2225540 diff --git a/resources/tls_motorolapack/stream/mp_m_freemode_01_mp_m_tls_motorolapack/mp_m_freemode_01_mp_m_tls_motorolapack^task_diff_007_a_uni.ytd b/resources/tls_motorolapack/stream/mp_m_freemode_01_mp_m_tls_motorolapack/mp_m_freemode_01_mp_m_tls_motorolapack^task_diff_007_a_uni.ytd new file mode 100644 index 000000000..6f1ecc740 --- /dev/null +++ b/resources/tls_motorolapack/stream/mp_m_freemode_01_mp_m_tls_motorolapack/mp_m_freemode_01_mp_m_tls_motorolapack^task_diff_007_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ad2260b059c54e10867083762d192fa6b578a4a39cd0ac2f1f9b268fc7201a3 +size 3762123 diff --git a/resources/tls_motorolapack/stream/mp_m_freemode_01_mp_m_tls_motorolapack/mp_m_freemode_01_mp_m_tls_motorolapack^task_diff_008_a_uni.ytd b/resources/tls_motorolapack/stream/mp_m_freemode_01_mp_m_tls_motorolapack/mp_m_freemode_01_mp_m_tls_motorolapack^task_diff_008_a_uni.ytd new file mode 100644 index 000000000..690836d62 --- /dev/null +++ b/resources/tls_motorolapack/stream/mp_m_freemode_01_mp_m_tls_motorolapack/mp_m_freemode_01_mp_m_tls_motorolapack^task_diff_008_a_uni.ytd @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f68b1afd4d5b868fa077f9021547d69b8661d63ea3c961ba46a42aafab977629 +size 1817009 diff --git a/resources/vMenu/config/addons.json b/resources/vMenu/config/addons.json index 380d67ed8..c7df7ca13 100644 --- a/resources/vMenu/config/addons.json +++ b/resources/vMenu/config/addons.json @@ -482,7 +482,47 @@ "e350car", "24taclim", "24tacsr", + "22jeeplar", + "jeep20", + "02tahoe", + "80fj60", + "23tesla", + "23teslahc", + "23subur", + "19yukon", + "23santastd", + "23ev6", + "23santa", + "23jeepwag3", + "23esv", + "23esvsp", + "21yuk", + "23hornetrt", + "rover130v8", + "22jeep", + "15expxlt", + "19yukonslt", + "21bro", + "21dura", + "rav4hyb", + "23blazerppv", + "22macgt", + "24mustgtstd", + "23lightlar", + "23lightpro", + "85jimyoff", + "glad20", + "21f150", + "chevrst", + "21f250", + "20rampw", + "ram13", + "22530i", + "srtday20", + "fusion18", + "volkssle", " ", + ], "peds": [ diff --git a/server.cfg b/server.cfg index 8fe88b2c8..f8e8ac380 100644 --- a/server.cfg +++ b/server.cfg @@ -208,6 +208,13 @@ ensure holster ensure eup-stream ensure eup-ui ensure PaletoPDEUP +ensure tls_aedutybelt +ensure thinline_leprops +ensure tls_motorolapack +ensure tls_6360holsters +ensure BetterFlashlight +ensure +ensure ensure firehydrant ensure JPets