├── .github └── FUNDING.yml ├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── anticheat └── server │ └── sAnticheat.lua ├── cells ├── client │ └── cCells.lua ├── server │ └── sCells.lua └── shared │ └── shCells.lua ├── character └── client │ ├── MeleeActions │ ├── MeleeActionRock.lua │ └── MeleeActionStoneHatchet.lua │ ├── cActionDefinitions.lua │ ├── cAnimationController.lua │ ├── cEquippedItems.lua │ ├── cHUD.lua │ ├── cMovement.lua │ ├── cPlayerVisuals.lua │ └── cPlayerVisualsList.lua ├── config └── shared │ └── RustConfig.lua ├── discord-rich-presence ├── client │ └── DiscordRichPresence.lua └── server │ └── sDiscordRichPresence.lua ├── environment └── client │ └── cEnvironmentDefaults.lua ├── fxmanifest.lua ├── icon.png ├── info ├── client │ └── PauseMenuEdits.lua └── server │ └── ServerInfo.lua ├── install-submodules.sh ├── inventory ├── client │ ├── cDroppedItems.lua │ ├── cInventory.lua │ ├── cSurvivalHUD.lua │ └── ui │ │ └── index.html ├── package.json ├── server │ ├── UID.lua │ ├── sInventory.lua │ ├── sInventoryManager.lua │ ├── sInventoryTypeEnum.lua │ ├── sItem.lua │ ├── sItemCommands.lua │ ├── sItemDrops.lua │ ├── sPlayerInventory.lua │ ├── sPlayerInventoryConfig.lua │ └── sStack.lua ├── shared │ └── shItemData.lua ├── src │ ├── images │ │ ├── default.png │ │ ├── drop.png │ │ ├── eat.png │ │ ├── hand.png │ │ ├── health.png │ │ ├── thirst.png │ │ └── transparent.png │ ├── js │ │ ├── App.js │ │ ├── CharacterView.js │ │ ├── CraftingView.js │ │ ├── DragItem.js │ │ ├── Hotbar.js │ │ ├── InventoryView.js │ │ ├── Item.js │ │ ├── ItemInfo.js │ │ ├── LookAtItemView.js │ │ ├── LootView.js │ │ ├── MainInventory.js │ │ ├── OOF.js │ │ ├── SurvivalHUD.js │ │ ├── constants │ │ │ ├── ColoredAttributes.js │ │ │ ├── ContainerType.js │ │ │ ├── Images.js │ │ │ ├── InventorySections.js │ │ │ └── Views.js │ │ ├── index.js │ │ └── locale │ │ │ ├── common.js │ │ │ └── en-US.js │ └── styles │ │ ├── app.scss │ │ ├── character_view.scss │ │ ├── crafting.scss │ │ ├── drag_item.scss │ │ ├── hotbar.scss │ │ ├── inventory.scss │ │ ├── item.scss │ │ ├── item_info.scss │ │ ├── look_at_item_view.scss │ │ ├── loot_view.scss │ │ ├── main_inventory.scss │ │ ├── reset.css │ │ └── survival_hud.scss ├── webpack.common.js ├── webpack.dev.js └── webpack.prod.js ├── loadscreen └── client │ ├── Loadscreen.lua │ └── html │ ├── index.html │ ├── script.js │ └── style.css ├── resources ├── client │ └── cResourceManager.lua ├── server │ ├── resource_data │ │ ├── cells │ │ │ └── empty │ │ └── raw │ │ │ ├── barrel │ │ │ ├── Entities_prop_barrel_01a.txt │ │ │ ├── Entities_prop_barrel_02a.txt │ │ │ ├── Entities_prop_barrel_02b.txt │ │ │ ├── Entities_prop_barrel_03a.txt │ │ │ ├── Entities_prop_barrel_03d.txt │ │ │ ├── Entities_prop_barrel_exp_01a.txt │ │ │ ├── Entities_prop_barrel_exp_01c.txt │ │ │ ├── Entities_prop_barrel_pile_01.txt │ │ │ ├── Entities_prop_barrel_pile_02.txt │ │ │ ├── Entities_prop_barrel_pile_03.txt │ │ │ ├── Entities_prop_barrel_pile_04.txt │ │ │ ├── Entities_prop_barrel_pile_05.txt │ │ │ ├── Entities_prop_bin_01a.txt │ │ │ ├── Entities_prop_bin_02a.txt │ │ │ ├── Entities_prop_bin_03a.txt │ │ │ ├── Entities_prop_bin_04a.txt │ │ │ ├── Entities_prop_bin_05a.txt │ │ │ ├── Entities_prop_bin_06a.txt │ │ │ ├── Entities_prop_bin_07a.txt │ │ │ ├── Entities_prop_bin_07b.txt │ │ │ ├── Entities_prop_bin_07c.txt │ │ │ ├── Entities_prop_bin_07d.txt │ │ │ ├── Entities_prop_bin_08a.txt │ │ │ ├── Entities_prop_bin_08open.txt │ │ │ ├── Entities_prop_bin_09a.txt │ │ │ ├── Entities_prop_bin_10a.txt │ │ │ ├── Entities_prop_bin_10b.txt │ │ │ ├── Entities_prop_bin_11a.txt │ │ │ ├── Entities_prop_bin_11b.txt │ │ │ ├── Entities_prop_bin_12a.txt │ │ │ ├── Entities_prop_bin_13a.txt │ │ │ ├── Entities_prop_bin_14a.txt │ │ │ ├── Entities_prop_bin_14b.txt │ │ │ ├── Entities_prop_bin_beach_01a.txt │ │ │ ├── Entities_prop_bin_beach_01d.txt │ │ │ ├── Entities_prop_bin_delpiero.txt │ │ │ ├── Entities_prop_bin_delpiero_b.txt │ │ │ ├── Entities_prop_dumpster_01a.txt │ │ │ ├── Entities_prop_dumpster_02a.txt │ │ │ ├── Entities_prop_dumpster_02b.txt │ │ │ ├── Entities_prop_dumpster_3a.txt │ │ │ ├── Entities_prop_dumpster_4a.txt │ │ │ ├── Entities_prop_dumpster_4b.txt │ │ │ ├── Entities_prop_recyclebin_01a.txt │ │ │ ├── Entities_prop_recyclebin_02_c.txt │ │ │ ├── Entities_prop_recyclebin_02_d.txt │ │ │ ├── Entities_prop_recyclebin_02a.txt │ │ │ ├── Entities_prop_recyclebin_02b.txt │ │ │ ├── Entities_prop_recyclebin_04_a.txt │ │ │ ├── Entities_prop_recyclebin_04_b.txt │ │ │ ├── Entities_prop_recyclebin_05_a.txt │ │ │ ├── Entities_prop_skid_trolley_1.txt │ │ │ └── Entities_prop_skid_trolley_2.txt │ │ │ ├── metal │ │ │ ├── Entities_prop_rub_buswreck_01.txt │ │ │ ├── Entities_prop_rub_buswreck_03.txt │ │ │ ├── Entities_prop_rub_buswreck_06.txt │ │ │ ├── Entities_prop_rub_carwreck_10.txt │ │ │ ├── Entities_prop_rub_carwreck_11.txt │ │ │ ├── Entities_prop_rub_carwreck_12.txt │ │ │ ├── Entities_prop_rub_carwreck_13.txt │ │ │ ├── Entities_prop_rub_carwreck_14.txt │ │ │ ├── Entities_prop_rub_carwreck_15.txt │ │ │ ├── Entities_prop_rub_carwreck_16.txt │ │ │ ├── Entities_prop_rub_carwreck_17.txt │ │ │ ├── Entities_prop_rub_carwreck_2.txt │ │ │ ├── Entities_prop_rub_carwreck_3.txt │ │ │ ├── Entities_prop_rub_carwreck_5.txt │ │ │ ├── Entities_prop_rub_carwreck_7.txt │ │ │ ├── Entities_prop_rub_carwreck_8.txt │ │ │ ├── Entities_prop_rub_carwreck_9.txt │ │ │ ├── Entities_prop_rub_generator.txt │ │ │ ├── Entities_prop_rub_scrap_02.txt │ │ │ ├── Entities_prop_rub_scrap_03.txt │ │ │ ├── Entities_prop_rub_scrap_04.txt │ │ │ ├── Entities_prop_rub_scrap_05.txt │ │ │ ├── Entities_prop_rub_scrap_06.txt │ │ │ ├── Entities_prop_rub_scrap_07.txt │ │ │ ├── Entities_prop_rub_trukwreck_1.txt │ │ │ ├── Entities_prop_rub_trukwreck_2.txt │ │ │ ├── Entities_prop_rub_wreckage_3.txt │ │ │ ├── Entities_prop_rub_wreckage_4.txt │ │ │ ├── Entities_prop_rub_wreckage_5.txt │ │ │ ├── Entities_prop_rub_wreckage_6.txt │ │ │ ├── Entities_prop_rub_wreckage_7.txt │ │ │ ├── Entities_prop_rub_wreckage_8.txt │ │ │ └── Entities_prop_rub_wreckage_9.txt │ │ │ ├── stone │ │ │ ├── Entities_ch1_01_beachrck_a.txt │ │ │ ├── Entities_ch1_01_beachrck_a_lod.txt │ │ │ ├── Entities_ch1_01_beachrck_b.txt │ │ │ ├── Entities_ch1_01_beachrck_b_lod.txt │ │ │ ├── Entities_ch1_01_beachrck_c.txt │ │ │ ├── Entities_ch1_01_beachrck_c_lod.txt │ │ │ ├── Entities_ch1_01_beachrck_d.txt │ │ │ ├── Entities_ch1_01_beachrck_d_lod.txt │ │ │ ├── Entities_ch1_01_beachrck_e.txt │ │ │ ├── Entities_ch1_01_beachrck_e_lod.txt │ │ │ ├── Entities_ch1_01_beachrck_f.txt │ │ │ ├── Entities_ch1_01_beachrck_f_lod.txt │ │ │ ├── Entities_ch1_01_beachrck_g.txt │ │ │ ├── Entities_ch1_01_beachrck_g_lod.txt │ │ │ ├── Entities_ch1_01_beachrck_h.txt │ │ │ ├── Entities_ch1_01_beachrck_h_lod.txt │ │ │ ├── Entities_ch1_01_beachrck_i.txt │ │ │ ├── Entities_ch1_01_beachrck_i_lod.txt │ │ │ ├── Entities_ch1_01_beachrck_j.txt │ │ │ ├── Entities_ch1_01_beachrck_j_lod.txt │ │ │ ├── Entities_cs_x_rublrga.txt │ │ │ ├── Entities_cs_x_rublrgb.txt │ │ │ ├── Entities_cs_x_rublrgc.txt │ │ │ ├── Entities_cs_x_rublrgd.txt │ │ │ ├── Entities_cs_x_rublrge.txt │ │ │ ├── Entities_cs_x_rubmeda.txt │ │ │ ├── Entities_cs_x_rubmedb.txt │ │ │ ├── Entities_cs_x_rubmedc.txt │ │ │ ├── Entities_cs_x_rubmedd.txt │ │ │ ├── Entities_cs_x_rubmede.txt │ │ │ ├── Entities_cs_x_rubsmla.txt │ │ │ ├── Entities_cs_x_rubsmlb.txt │ │ │ ├── Entities_cs_x_rubsmlc.txt │ │ │ ├── Entities_cs_x_rubsmld.txt │ │ │ ├── Entities_cs_x_rubsmle.txt │ │ │ ├── Entities_cs_x_rubweea.txt │ │ │ ├── Entities_cs_x_rubweec.txt │ │ │ ├── Entities_cs_x_rubweed.txt │ │ │ ├── Entities_cs_x_rubweee.txt │ │ │ ├── Entities_cs_x_weesmlb.txt │ │ │ ├── Entities_csx_coastbigroc01_.txt │ │ │ ├── Entities_csx_coastbigroc02_.txt │ │ │ ├── Entities_csx_coastbigroc03_.txt │ │ │ ├── Entities_csx_coastbigroc05_.txt │ │ │ ├── Entities_csx_coastboulder_00_.txt │ │ │ ├── Entities_csx_coastboulder_01_.txt │ │ │ ├── Entities_csx_coastboulder_02_.txt │ │ │ ├── Entities_csx_coastboulder_03_.txt │ │ │ ├── Entities_csx_coastboulder_04_.txt │ │ │ ├── Entities_csx_coastboulder_05_.txt │ │ │ ├── Entities_csx_coastboulder_06_.txt │ │ │ ├── Entities_csx_coastboulder_07_.txt │ │ │ ├── Entities_csx_coastrok1_.txt │ │ │ ├── Entities_csx_coastrok2_.txt │ │ │ ├── Entities_csx_coastrok3_.txt │ │ │ ├── Entities_csx_coastrok4_.txt │ │ │ ├── Entities_csx_coastsmalrock_01_.txt │ │ │ ├── Entities_csx_coastsmalrock_02_.txt │ │ │ ├── Entities_csx_coastsmalrock_03_.txt │ │ │ ├── Entities_csx_coastsmalrock_04_.txt │ │ │ ├── Entities_csx_coastsmalrock_05_.txt │ │ │ ├── Entities_csx_rvrbldr_biga_.txt │ │ │ ├── Entities_csx_rvrbldr_bigb_.txt │ │ │ ├── Entities_csx_rvrbldr_bigc_.txt │ │ │ ├── Entities_csx_rvrbldr_bigd_.txt │ │ │ ├── Entities_csx_rvrbldr_bige_.txt │ │ │ ├── Entities_csx_rvrbldr_meda_.txt │ │ │ ├── Entities_csx_rvrbldr_medb_.txt │ │ │ ├── Entities_csx_rvrbldr_medc_.txt │ │ │ ├── Entities_csx_rvrbldr_medd_.txt │ │ │ ├── Entities_csx_rvrbldr_mede_.txt │ │ │ ├── Entities_csx_rvrbldr_smla_.txt │ │ │ ├── Entities_csx_rvrbldr_smlb_.txt │ │ │ ├── Entities_csx_rvrbldr_smlc_.txt │ │ │ ├── Entities_csx_rvrbldr_smld_.txt │ │ │ ├── Entities_csx_rvrbldr_smle_.txt │ │ │ ├── Entities_csx_seabed_bldr1_.txt │ │ │ ├── Entities_csx_seabed_bldr2_.txt │ │ │ ├── Entities_csx_seabed_bldr3_.txt │ │ │ ├── Entities_csx_seabed_bldr4_.txt │ │ │ ├── Entities_csx_seabed_bldr5_.txt │ │ │ ├── Entities_csx_seabed_bldr6_.txt │ │ │ ├── Entities_csx_seabed_bldr7_.txt │ │ │ ├── Entities_csx_seabed_bldr8_.txt │ │ │ ├── Entities_csx_seabed_rock1_.txt │ │ │ ├── Entities_csx_seabed_rock2_.txt │ │ │ ├── Entities_csx_seabed_rock3_.txt │ │ │ ├── Entities_csx_seabed_rock4_.txt │ │ │ ├── Entities_csx_seabed_rock5_.txt │ │ │ ├── Entities_csx_seabed_rock6_.txt │ │ │ ├── Entities_csx_seabed_rock7_.txt │ │ │ ├── Entities_csx_seabed_rock8_.txt │ │ │ ├── Entities_csx_searocks_02.txt │ │ │ ├── Entities_csx_searocks_03.txt │ │ │ ├── Entities_csx_searocks_04.txt │ │ │ ├── Entities_csx_searocks_05.txt │ │ │ ├── Entities_csx_searocks_06.txt │ │ │ ├── Entities_prop_rock_1_a.txt │ │ │ ├── Entities_prop_rock_1_b.txt │ │ │ ├── Entities_prop_rock_1_c.txt │ │ │ ├── Entities_prop_rock_1_d.txt │ │ │ ├── Entities_prop_rock_1_e.txt │ │ │ ├── Entities_prop_rock_1_f.txt │ │ │ ├── Entities_prop_rock_1_g.txt │ │ │ ├── Entities_prop_rock_1_h.txt │ │ │ ├── Entities_prop_rock_1_i.txt │ │ │ ├── Entities_prop_rock_2_a.txt │ │ │ ├── Entities_prop_rock_2_c.txt │ │ │ ├── Entities_prop_rock_2_d.txt │ │ │ ├── Entities_prop_rock_2_f.txt │ │ │ ├── Entities_prop_rock_2_g.txt │ │ │ ├── Entities_prop_rock_3_a.txt │ │ │ ├── Entities_prop_rock_3_b.txt │ │ │ ├── Entities_prop_rock_3_c.txt │ │ │ ├── Entities_prop_rock_3_d.txt │ │ │ ├── Entities_prop_rock_3_e.txt │ │ │ ├── Entities_prop_rock_3_f.txt │ │ │ ├── Entities_prop_rock_3_g.txt │ │ │ ├── Entities_prop_rock_3_h.txt │ │ │ ├── Entities_prop_rock_3_i.txt │ │ │ ├── Entities_prop_rock_3_j.txt │ │ │ ├── Entities_prop_rock_4_a.txt │ │ │ ├── Entities_prop_rock_4_b.txt │ │ │ ├── Entities_prop_rock_4_big.txt │ │ │ ├── Entities_prop_rock_4_big2.txt │ │ │ ├── Entities_prop_rock_4_c.txt │ │ │ ├── Entities_prop_rock_4_c_2.txt │ │ │ ├── Entities_prop_rock_4_cl_1.txt │ │ │ ├── Entities_prop_rock_4_cl_2.txt │ │ │ ├── Entities_prop_rock_4_d.txt │ │ │ ├── Entities_prop_rock_4_e.txt │ │ │ ├── Entities_prop_rock_5_a.txt │ │ │ ├── Entities_prop_rock_5_b.txt │ │ │ ├── Entities_prop_rock_5_c.txt │ │ │ ├── Entities_prop_rock_5_d.txt │ │ │ ├── Entities_prop_rock_5_e.txt │ │ │ ├── Entities_rock_4_cl_2_1.txt │ │ │ └── Entities_rock_4_cl_2_2.txt │ │ │ └── wood │ │ │ ├── Entities_prop_bush_lrg_02.txt │ │ │ ├── Entities_prop_bush_lrg_02b.txt │ │ │ ├── Entities_prop_bush_lrg_04b.txt │ │ │ ├── Entities_prop_bush_lrg_04c.txt │ │ │ ├── Entities_prop_bush_lrg_04d.txt │ │ │ ├── Entities_prop_bush_neat_01.txt │ │ │ ├── Entities_prop_bush_neat_02.txt │ │ │ ├── Entities_prop_bush_neat_08.txt │ │ │ ├── Entities_prop_cactus_01a.txt │ │ │ ├── Entities_prop_cactus_01b.txt │ │ │ ├── Entities_prop_cactus_01c.txt │ │ │ ├── Entities_prop_cactus_01d.txt │ │ │ ├── Entities_prop_cactus_01e.txt │ │ │ ├── Entities_prop_cactus_02.txt │ │ │ ├── Entities_prop_cactus_03.txt │ │ │ ├── Entities_prop_desert_iron_01.txt │ │ │ ├── Entities_prop_fan_palm_01a.txt │ │ │ ├── Entities_prop_joshua_tree_01a.txt │ │ │ ├── Entities_prop_joshua_tree_01b.txt │ │ │ ├── Entities_prop_joshua_tree_01c.txt │ │ │ ├── Entities_prop_joshua_tree_01d.txt │ │ │ ├── Entities_prop_joshua_tree_01e.txt │ │ │ ├── Entities_prop_joshua_tree_02a.txt │ │ │ ├── Entities_prop_joshua_tree_02b.txt │ │ │ ├── Entities_prop_joshua_tree_02c.txt │ │ │ ├── Entities_prop_joshua_tree_02d.txt │ │ │ ├── Entities_prop_joshua_tree_02e.txt │ │ │ ├── Entities_prop_palm_fan_02_a.txt │ │ │ ├── Entities_prop_palm_fan_03_b.txt │ │ │ ├── Entities_prop_palm_fan_03_c.txt │ │ │ ├── Entities_prop_palm_fan_03_d.txt │ │ │ ├── Entities_prop_palm_fan_04_d.txt │ │ │ ├── Entities_prop_palm_huge_01a.txt │ │ │ ├── Entities_prop_palm_med_01a.txt │ │ │ ├── Entities_prop_palm_med_01b.txt │ │ │ ├── Entities_prop_palm_med_01c.txt │ │ │ ├── Entities_prop_palm_med_01d.txt │ │ │ ├── Entities_prop_palm_sm_01a.txt │ │ │ ├── Entities_prop_palm_sm_01d.txt │ │ │ ├── Entities_prop_palm_sm_01e.txt │ │ │ ├── Entities_prop_palm_sm_01f.txt │ │ │ ├── Entities_prop_plant_palm_01a.txt │ │ │ ├── Entities_prop_plant_palm_01c.txt │ │ │ ├── Entities_prop_pot_plant_03a.txt │ │ │ ├── Entities_prop_rio_del_01.txt │ │ │ ├── Entities_prop_rus_olive.txt │ │ │ ├── Entities_prop_rus_olive_wint.txt │ │ │ ├── Entities_prop_s_pine_dead_01.txt │ │ │ ├── Entities_prop_tree_birch_01.txt │ │ │ ├── Entities_prop_tree_birch_02.txt │ │ │ ├── Entities_prop_tree_birch_03.txt │ │ │ ├── Entities_prop_tree_birch_03b.txt │ │ │ ├── Entities_prop_tree_birch_04.txt │ │ │ ├── Entities_prop_tree_cedar_02.txt │ │ │ ├── Entities_prop_tree_cedar_03.txt │ │ │ ├── Entities_prop_tree_cedar_04.txt │ │ │ ├── Entities_prop_tree_cedar_s_01.txt │ │ │ ├── Entities_prop_tree_cedar_s_02.txt │ │ │ ├── Entities_prop_tree_cedar_s_04.txt │ │ │ ├── Entities_prop_tree_cedar_s_05.txt │ │ │ ├── Entities_prop_tree_cedar_s_06.txt │ │ │ ├── Entities_prop_tree_cypress_01.txt │ │ │ ├── Entities_prop_tree_eng_oak_01.txt │ │ │ ├── Entities_prop_tree_eucalip_01.txt │ │ │ ├── Entities_prop_tree_fallen_01.txt │ │ │ ├── Entities_prop_tree_fallen_02.txt │ │ │ ├── Entities_prop_tree_fallen_pine_01.txt │ │ │ ├── Entities_prop_tree_jacada_01.txt │ │ │ ├── Entities_prop_tree_jacada_02.txt │ │ │ ├── Entities_prop_tree_lficus_02.txt │ │ │ ├── Entities_prop_tree_lficus_03.txt │ │ │ ├── Entities_prop_tree_lficus_05.txt │ │ │ ├── Entities_prop_tree_lficus_06.txt │ │ │ ├── Entities_prop_tree_log_01.txt │ │ │ ├── Entities_prop_tree_log_02.txt │ │ │ ├── Entities_prop_tree_maple_02.txt │ │ │ ├── Entities_prop_tree_maple_03.txt │ │ │ ├── Entities_prop_tree_mquite_01.txt │ │ │ ├── Entities_prop_tree_oak_01.txt │ │ │ ├── Entities_prop_tree_olive_01.txt │ │ │ ├── Entities_prop_tree_pine_01.txt │ │ │ ├── Entities_prop_tree_pine_02.txt │ │ │ ├── Entities_prop_tree_stump_01.txt │ │ │ ├── Entities_prop_veg_crop_tr_01.txt │ │ │ ├── Entities_prop_veg_crop_tr_02.txt │ │ │ ├── Entities_prop_w_r_cedar_01.txt │ │ │ ├── Entities_prop_w_r_cedar_dead.txt │ │ │ ├── Entities_test_tree_cedar_trunk_001.txt │ │ │ ├── Entities_test_tree_forest_trunk_01.txt │ │ │ └── Entities_test_tree_forest_trunk_04.txt │ └── sResourceManager.lua └── shared │ └── shResourceData.lua ├── sounds └── client │ ├── Sounds.lua │ └── ui │ ├── index.html │ └── script.js ├── spawnmanager ├── client │ ├── cRemovePedClothesExtension.lua │ └── cSpawnManager.lua └── server │ ├── sPlayerSpawnExtension.lua │ └── sSpawnManager.lua └── submodule-update.sh /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [benank] 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/README.md -------------------------------------------------------------------------------- /anticheat/server/sAnticheat.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/anticheat/server/sAnticheat.lua -------------------------------------------------------------------------------- /cells/client/cCells.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/cells/client/cCells.lua -------------------------------------------------------------------------------- /cells/server/sCells.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/cells/server/sCells.lua -------------------------------------------------------------------------------- /cells/shared/shCells.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/cells/shared/shCells.lua -------------------------------------------------------------------------------- /character/client/MeleeActions/MeleeActionRock.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/character/client/MeleeActions/MeleeActionRock.lua -------------------------------------------------------------------------------- /character/client/MeleeActions/MeleeActionStoneHatchet.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/character/client/MeleeActions/MeleeActionStoneHatchet.lua -------------------------------------------------------------------------------- /character/client/cActionDefinitions.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/character/client/cActionDefinitions.lua -------------------------------------------------------------------------------- /character/client/cAnimationController.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/character/client/cAnimationController.lua -------------------------------------------------------------------------------- /character/client/cEquippedItems.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/character/client/cEquippedItems.lua -------------------------------------------------------------------------------- /character/client/cHUD.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/character/client/cHUD.lua -------------------------------------------------------------------------------- /character/client/cMovement.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/character/client/cMovement.lua -------------------------------------------------------------------------------- /character/client/cPlayerVisuals.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/character/client/cPlayerVisuals.lua -------------------------------------------------------------------------------- /character/client/cPlayerVisualsList.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/character/client/cPlayerVisualsList.lua -------------------------------------------------------------------------------- /config/shared/RustConfig.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/config/shared/RustConfig.lua -------------------------------------------------------------------------------- /discord-rich-presence/client/DiscordRichPresence.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/discord-rich-presence/client/DiscordRichPresence.lua -------------------------------------------------------------------------------- /discord-rich-presence/server/sDiscordRichPresence.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/discord-rich-presence/server/sDiscordRichPresence.lua -------------------------------------------------------------------------------- /environment/client/cEnvironmentDefaults.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/environment/client/cEnvironmentDefaults.lua -------------------------------------------------------------------------------- /fxmanifest.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/fxmanifest.lua -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/icon.png -------------------------------------------------------------------------------- /info/client/PauseMenuEdits.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/info/client/PauseMenuEdits.lua -------------------------------------------------------------------------------- /info/server/ServerInfo.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/info/server/ServerInfo.lua -------------------------------------------------------------------------------- /install-submodules.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/install-submodules.sh -------------------------------------------------------------------------------- /inventory/client/cDroppedItems.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/inventory/client/cDroppedItems.lua -------------------------------------------------------------------------------- /inventory/client/cInventory.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/inventory/client/cInventory.lua -------------------------------------------------------------------------------- /inventory/client/cSurvivalHUD.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/inventory/client/cSurvivalHUD.lua -------------------------------------------------------------------------------- /inventory/client/ui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/inventory/client/ui/index.html -------------------------------------------------------------------------------- /inventory/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/inventory/package.json -------------------------------------------------------------------------------- /inventory/server/UID.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/inventory/server/UID.lua -------------------------------------------------------------------------------- /inventory/server/sInventory.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/inventory/server/sInventory.lua -------------------------------------------------------------------------------- /inventory/server/sInventoryManager.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/inventory/server/sInventoryManager.lua -------------------------------------------------------------------------------- /inventory/server/sInventoryTypeEnum.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/inventory/server/sInventoryTypeEnum.lua -------------------------------------------------------------------------------- /inventory/server/sItem.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/inventory/server/sItem.lua -------------------------------------------------------------------------------- /inventory/server/sItemCommands.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/inventory/server/sItemCommands.lua -------------------------------------------------------------------------------- /inventory/server/sItemDrops.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/inventory/server/sItemDrops.lua -------------------------------------------------------------------------------- /inventory/server/sPlayerInventory.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/inventory/server/sPlayerInventory.lua -------------------------------------------------------------------------------- /inventory/server/sPlayerInventoryConfig.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/inventory/server/sPlayerInventoryConfig.lua -------------------------------------------------------------------------------- /inventory/server/sStack.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/inventory/server/sStack.lua -------------------------------------------------------------------------------- /inventory/shared/shItemData.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/inventory/shared/shItemData.lua -------------------------------------------------------------------------------- /inventory/src/images/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/inventory/src/images/default.png -------------------------------------------------------------------------------- /inventory/src/images/drop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/inventory/src/images/drop.png -------------------------------------------------------------------------------- /inventory/src/images/eat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/inventory/src/images/eat.png -------------------------------------------------------------------------------- /inventory/src/images/hand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/inventory/src/images/hand.png -------------------------------------------------------------------------------- /inventory/src/images/health.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/inventory/src/images/health.png -------------------------------------------------------------------------------- /inventory/src/images/thirst.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/inventory/src/images/thirst.png -------------------------------------------------------------------------------- /inventory/src/images/transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/inventory/src/images/transparent.png -------------------------------------------------------------------------------- /inventory/src/js/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/inventory/src/js/App.js -------------------------------------------------------------------------------- /inventory/src/js/CharacterView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/inventory/src/js/CharacterView.js -------------------------------------------------------------------------------- /inventory/src/js/CraftingView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/inventory/src/js/CraftingView.js -------------------------------------------------------------------------------- /inventory/src/js/DragItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/inventory/src/js/DragItem.js -------------------------------------------------------------------------------- /inventory/src/js/Hotbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/inventory/src/js/Hotbar.js -------------------------------------------------------------------------------- /inventory/src/js/InventoryView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/inventory/src/js/InventoryView.js -------------------------------------------------------------------------------- /inventory/src/js/Item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/inventory/src/js/Item.js -------------------------------------------------------------------------------- /inventory/src/js/ItemInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/inventory/src/js/ItemInfo.js -------------------------------------------------------------------------------- /inventory/src/js/LookAtItemView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/inventory/src/js/LookAtItemView.js -------------------------------------------------------------------------------- /inventory/src/js/LootView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/inventory/src/js/LootView.js -------------------------------------------------------------------------------- /inventory/src/js/MainInventory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/inventory/src/js/MainInventory.js -------------------------------------------------------------------------------- /inventory/src/js/OOF.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/inventory/src/js/OOF.js -------------------------------------------------------------------------------- /inventory/src/js/SurvivalHUD.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/inventory/src/js/SurvivalHUD.js -------------------------------------------------------------------------------- /inventory/src/js/constants/ColoredAttributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/inventory/src/js/constants/ColoredAttributes.js -------------------------------------------------------------------------------- /inventory/src/js/constants/ContainerType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/inventory/src/js/constants/ContainerType.js -------------------------------------------------------------------------------- /inventory/src/js/constants/Images.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/inventory/src/js/constants/Images.js -------------------------------------------------------------------------------- /inventory/src/js/constants/InventorySections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/inventory/src/js/constants/InventorySections.js -------------------------------------------------------------------------------- /inventory/src/js/constants/Views.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/inventory/src/js/constants/Views.js -------------------------------------------------------------------------------- /inventory/src/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/inventory/src/js/index.js -------------------------------------------------------------------------------- /inventory/src/js/locale/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/inventory/src/js/locale/common.js -------------------------------------------------------------------------------- /inventory/src/js/locale/en-US.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/inventory/src/js/locale/en-US.js -------------------------------------------------------------------------------- /inventory/src/styles/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/inventory/src/styles/app.scss -------------------------------------------------------------------------------- /inventory/src/styles/character_view.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/inventory/src/styles/character_view.scss -------------------------------------------------------------------------------- /inventory/src/styles/crafting.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inventory/src/styles/drag_item.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/inventory/src/styles/drag_item.scss -------------------------------------------------------------------------------- /inventory/src/styles/hotbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/inventory/src/styles/hotbar.scss -------------------------------------------------------------------------------- /inventory/src/styles/inventory.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/inventory/src/styles/inventory.scss -------------------------------------------------------------------------------- /inventory/src/styles/item.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/inventory/src/styles/item.scss -------------------------------------------------------------------------------- /inventory/src/styles/item_info.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/inventory/src/styles/item_info.scss -------------------------------------------------------------------------------- /inventory/src/styles/look_at_item_view.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/inventory/src/styles/look_at_item_view.scss -------------------------------------------------------------------------------- /inventory/src/styles/loot_view.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/inventory/src/styles/loot_view.scss -------------------------------------------------------------------------------- /inventory/src/styles/main_inventory.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/inventory/src/styles/main_inventory.scss -------------------------------------------------------------------------------- /inventory/src/styles/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/inventory/src/styles/reset.css -------------------------------------------------------------------------------- /inventory/src/styles/survival_hud.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/inventory/src/styles/survival_hud.scss -------------------------------------------------------------------------------- /inventory/webpack.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/inventory/webpack.common.js -------------------------------------------------------------------------------- /inventory/webpack.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/inventory/webpack.dev.js -------------------------------------------------------------------------------- /inventory/webpack.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/inventory/webpack.prod.js -------------------------------------------------------------------------------- /loadscreen/client/Loadscreen.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/loadscreen/client/Loadscreen.lua -------------------------------------------------------------------------------- /loadscreen/client/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/loadscreen/client/html/index.html -------------------------------------------------------------------------------- /loadscreen/client/html/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/loadscreen/client/html/script.js -------------------------------------------------------------------------------- /loadscreen/client/html/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/loadscreen/client/html/style.css -------------------------------------------------------------------------------- /resources/client/cResourceManager.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/client/cResourceManager.lua -------------------------------------------------------------------------------- /resources/server/resource_data/cells/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/server/resource_data/raw/barrel/Entities_prop_barrel_01a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/barrel/Entities_prop_barrel_01a.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/barrel/Entities_prop_barrel_02a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/barrel/Entities_prop_barrel_02a.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/barrel/Entities_prop_barrel_02b.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/barrel/Entities_prop_barrel_02b.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/barrel/Entities_prop_barrel_03a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/barrel/Entities_prop_barrel_03a.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/barrel/Entities_prop_barrel_03d.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/barrel/Entities_prop_barrel_03d.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/barrel/Entities_prop_barrel_exp_01a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/barrel/Entities_prop_barrel_exp_01a.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/barrel/Entities_prop_barrel_exp_01c.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/barrel/Entities_prop_barrel_exp_01c.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/barrel/Entities_prop_barrel_pile_01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/barrel/Entities_prop_barrel_pile_01.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/barrel/Entities_prop_barrel_pile_02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/barrel/Entities_prop_barrel_pile_02.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/barrel/Entities_prop_barrel_pile_03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/barrel/Entities_prop_barrel_pile_03.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/barrel/Entities_prop_barrel_pile_04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/barrel/Entities_prop_barrel_pile_04.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/barrel/Entities_prop_barrel_pile_05.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/barrel/Entities_prop_barrel_pile_05.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/barrel/Entities_prop_bin_01a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/barrel/Entities_prop_bin_01a.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/barrel/Entities_prop_bin_02a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/barrel/Entities_prop_bin_02a.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/barrel/Entities_prop_bin_03a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/barrel/Entities_prop_bin_03a.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/barrel/Entities_prop_bin_04a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/barrel/Entities_prop_bin_04a.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/barrel/Entities_prop_bin_05a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/barrel/Entities_prop_bin_05a.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/barrel/Entities_prop_bin_06a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/barrel/Entities_prop_bin_06a.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/barrel/Entities_prop_bin_07a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/barrel/Entities_prop_bin_07a.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/barrel/Entities_prop_bin_07b.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/barrel/Entities_prop_bin_07b.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/barrel/Entities_prop_bin_07c.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/barrel/Entities_prop_bin_07c.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/barrel/Entities_prop_bin_07d.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/barrel/Entities_prop_bin_07d.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/barrel/Entities_prop_bin_08a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/barrel/Entities_prop_bin_08a.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/barrel/Entities_prop_bin_08open.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/barrel/Entities_prop_bin_08open.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/barrel/Entities_prop_bin_09a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/barrel/Entities_prop_bin_09a.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/barrel/Entities_prop_bin_10a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/barrel/Entities_prop_bin_10a.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/barrel/Entities_prop_bin_10b.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/barrel/Entities_prop_bin_10b.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/barrel/Entities_prop_bin_11a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/barrel/Entities_prop_bin_11a.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/barrel/Entities_prop_bin_11b.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/barrel/Entities_prop_bin_11b.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/barrel/Entities_prop_bin_12a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/barrel/Entities_prop_bin_12a.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/barrel/Entities_prop_bin_13a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/barrel/Entities_prop_bin_13a.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/barrel/Entities_prop_bin_14a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/barrel/Entities_prop_bin_14a.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/barrel/Entities_prop_bin_14b.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/barrel/Entities_prop_bin_14b.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/barrel/Entities_prop_bin_beach_01a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/barrel/Entities_prop_bin_beach_01a.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/barrel/Entities_prop_bin_beach_01d.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/barrel/Entities_prop_bin_beach_01d.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/barrel/Entities_prop_bin_delpiero.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/barrel/Entities_prop_bin_delpiero.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/barrel/Entities_prop_bin_delpiero_b.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/barrel/Entities_prop_bin_delpiero_b.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/barrel/Entities_prop_dumpster_01a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/barrel/Entities_prop_dumpster_01a.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/barrel/Entities_prop_dumpster_02a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/barrel/Entities_prop_dumpster_02a.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/barrel/Entities_prop_dumpster_02b.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/barrel/Entities_prop_dumpster_02b.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/barrel/Entities_prop_dumpster_3a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/barrel/Entities_prop_dumpster_3a.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/barrel/Entities_prop_dumpster_4a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/barrel/Entities_prop_dumpster_4a.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/barrel/Entities_prop_dumpster_4b.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/barrel/Entities_prop_dumpster_4b.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/barrel/Entities_prop_recyclebin_01a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/barrel/Entities_prop_recyclebin_01a.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/barrel/Entities_prop_recyclebin_02_c.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/barrel/Entities_prop_recyclebin_02_c.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/barrel/Entities_prop_recyclebin_02_d.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/barrel/Entities_prop_recyclebin_02_d.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/barrel/Entities_prop_recyclebin_02a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/barrel/Entities_prop_recyclebin_02a.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/barrel/Entities_prop_recyclebin_02b.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/barrel/Entities_prop_recyclebin_02b.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/barrel/Entities_prop_recyclebin_04_a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/barrel/Entities_prop_recyclebin_04_a.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/barrel/Entities_prop_recyclebin_04_b.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/barrel/Entities_prop_recyclebin_04_b.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/barrel/Entities_prop_recyclebin_05_a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/barrel/Entities_prop_recyclebin_05_a.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/barrel/Entities_prop_skid_trolley_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/barrel/Entities_prop_skid_trolley_1.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/barrel/Entities_prop_skid_trolley_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/barrel/Entities_prop_skid_trolley_2.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/metal/Entities_prop_rub_buswreck_01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/metal/Entities_prop_rub_buswreck_01.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/metal/Entities_prop_rub_buswreck_03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/metal/Entities_prop_rub_buswreck_03.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/metal/Entities_prop_rub_buswreck_06.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/metal/Entities_prop_rub_buswreck_06.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/metal/Entities_prop_rub_carwreck_10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/metal/Entities_prop_rub_carwreck_10.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/metal/Entities_prop_rub_carwreck_11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/metal/Entities_prop_rub_carwreck_11.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/metal/Entities_prop_rub_carwreck_12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/metal/Entities_prop_rub_carwreck_12.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/metal/Entities_prop_rub_carwreck_13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/metal/Entities_prop_rub_carwreck_13.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/metal/Entities_prop_rub_carwreck_14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/metal/Entities_prop_rub_carwreck_14.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/metal/Entities_prop_rub_carwreck_15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/metal/Entities_prop_rub_carwreck_15.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/metal/Entities_prop_rub_carwreck_16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/metal/Entities_prop_rub_carwreck_16.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/metal/Entities_prop_rub_carwreck_17.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/metal/Entities_prop_rub_carwreck_17.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/metal/Entities_prop_rub_carwreck_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/metal/Entities_prop_rub_carwreck_2.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/metal/Entities_prop_rub_carwreck_3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/metal/Entities_prop_rub_carwreck_3.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/metal/Entities_prop_rub_carwreck_5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/metal/Entities_prop_rub_carwreck_5.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/metal/Entities_prop_rub_carwreck_7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/metal/Entities_prop_rub_carwreck_7.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/metal/Entities_prop_rub_carwreck_8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/metal/Entities_prop_rub_carwreck_8.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/metal/Entities_prop_rub_carwreck_9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/metal/Entities_prop_rub_carwreck_9.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/metal/Entities_prop_rub_generator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/metal/Entities_prop_rub_generator.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/metal/Entities_prop_rub_scrap_02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/metal/Entities_prop_rub_scrap_02.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/metal/Entities_prop_rub_scrap_03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/metal/Entities_prop_rub_scrap_03.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/metal/Entities_prop_rub_scrap_04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/metal/Entities_prop_rub_scrap_04.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/metal/Entities_prop_rub_scrap_05.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/metal/Entities_prop_rub_scrap_05.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/metal/Entities_prop_rub_scrap_06.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/metal/Entities_prop_rub_scrap_06.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/metal/Entities_prop_rub_scrap_07.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/metal/Entities_prop_rub_scrap_07.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/metal/Entities_prop_rub_trukwreck_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/metal/Entities_prop_rub_trukwreck_1.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/metal/Entities_prop_rub_trukwreck_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/metal/Entities_prop_rub_trukwreck_2.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/metal/Entities_prop_rub_wreckage_3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/metal/Entities_prop_rub_wreckage_3.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/metal/Entities_prop_rub_wreckage_4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/metal/Entities_prop_rub_wreckage_4.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/metal/Entities_prop_rub_wreckage_5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/metal/Entities_prop_rub_wreckage_5.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/metal/Entities_prop_rub_wreckage_6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/metal/Entities_prop_rub_wreckage_6.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/metal/Entities_prop_rub_wreckage_7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/metal/Entities_prop_rub_wreckage_7.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/metal/Entities_prop_rub_wreckage_8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/metal/Entities_prop_rub_wreckage_8.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/metal/Entities_prop_rub_wreckage_9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/metal/Entities_prop_rub_wreckage_9.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_ch1_01_beachrck_a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_ch1_01_beachrck_a.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_ch1_01_beachrck_a_lod.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_ch1_01_beachrck_a_lod.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_ch1_01_beachrck_b.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_ch1_01_beachrck_b.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_ch1_01_beachrck_b_lod.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_ch1_01_beachrck_b_lod.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_ch1_01_beachrck_c.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_ch1_01_beachrck_c.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_ch1_01_beachrck_c_lod.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_ch1_01_beachrck_c_lod.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_ch1_01_beachrck_d.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_ch1_01_beachrck_d.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_ch1_01_beachrck_d_lod.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_ch1_01_beachrck_d_lod.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_ch1_01_beachrck_e.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_ch1_01_beachrck_e.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_ch1_01_beachrck_e_lod.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_ch1_01_beachrck_e_lod.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_ch1_01_beachrck_f.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_ch1_01_beachrck_f.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_ch1_01_beachrck_f_lod.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_ch1_01_beachrck_f_lod.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_ch1_01_beachrck_g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_ch1_01_beachrck_g.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_ch1_01_beachrck_g_lod.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_ch1_01_beachrck_g_lod.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_ch1_01_beachrck_h.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_ch1_01_beachrck_h.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_ch1_01_beachrck_h_lod.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_ch1_01_beachrck_h_lod.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_ch1_01_beachrck_i.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_ch1_01_beachrck_i.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_ch1_01_beachrck_i_lod.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_ch1_01_beachrck_i_lod.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_ch1_01_beachrck_j.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_ch1_01_beachrck_j.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_ch1_01_beachrck_j_lod.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_ch1_01_beachrck_j_lod.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_cs_x_rublrga.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_cs_x_rublrga.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_cs_x_rublrgb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_cs_x_rublrgb.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_cs_x_rublrgc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_cs_x_rublrgc.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_cs_x_rublrgd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_cs_x_rublrgd.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_cs_x_rublrge.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_cs_x_rublrge.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_cs_x_rubmeda.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_cs_x_rubmeda.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_cs_x_rubmedb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_cs_x_rubmedb.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_cs_x_rubmedc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_cs_x_rubmedc.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_cs_x_rubmedd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_cs_x_rubmedd.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_cs_x_rubmede.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_cs_x_rubmede.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_cs_x_rubsmla.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_cs_x_rubsmla.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_cs_x_rubsmlb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_cs_x_rubsmlb.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_cs_x_rubsmlc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_cs_x_rubsmlc.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_cs_x_rubsmld.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_cs_x_rubsmld.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_cs_x_rubsmle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_cs_x_rubsmle.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_cs_x_rubweea.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_cs_x_rubweea.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_cs_x_rubweec.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_cs_x_rubweec.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_cs_x_rubweed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_cs_x_rubweed.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_cs_x_rubweee.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_cs_x_rubweee.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_cs_x_weesmlb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_cs_x_weesmlb.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_csx_coastbigroc01_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_csx_coastbigroc01_.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_csx_coastbigroc02_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_csx_coastbigroc02_.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_csx_coastbigroc03_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_csx_coastbigroc03_.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_csx_coastbigroc05_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_csx_coastbigroc05_.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_csx_coastboulder_00_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_csx_coastboulder_00_.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_csx_coastboulder_01_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_csx_coastboulder_01_.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_csx_coastboulder_02_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_csx_coastboulder_02_.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_csx_coastboulder_03_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_csx_coastboulder_03_.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_csx_coastboulder_04_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_csx_coastboulder_04_.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_csx_coastboulder_05_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_csx_coastboulder_05_.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_csx_coastboulder_06_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_csx_coastboulder_06_.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_csx_coastboulder_07_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_csx_coastboulder_07_.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_csx_coastrok1_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_csx_coastrok1_.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_csx_coastrok2_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_csx_coastrok2_.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_csx_coastrok3_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_csx_coastrok3_.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_csx_coastrok4_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_csx_coastrok4_.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_csx_coastsmalrock_01_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_csx_coastsmalrock_01_.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_csx_coastsmalrock_02_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_csx_coastsmalrock_02_.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_csx_coastsmalrock_03_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_csx_coastsmalrock_03_.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_csx_coastsmalrock_04_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_csx_coastsmalrock_04_.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_csx_coastsmalrock_05_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_csx_coastsmalrock_05_.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_csx_rvrbldr_biga_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_csx_rvrbldr_biga_.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_csx_rvrbldr_bigb_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_csx_rvrbldr_bigb_.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_csx_rvrbldr_bigc_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_csx_rvrbldr_bigc_.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_csx_rvrbldr_bigd_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_csx_rvrbldr_bigd_.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_csx_rvrbldr_bige_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_csx_rvrbldr_bige_.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_csx_rvrbldr_meda_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_csx_rvrbldr_meda_.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_csx_rvrbldr_medb_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_csx_rvrbldr_medb_.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_csx_rvrbldr_medc_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_csx_rvrbldr_medc_.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_csx_rvrbldr_medd_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_csx_rvrbldr_medd_.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_csx_rvrbldr_mede_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_csx_rvrbldr_mede_.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_csx_rvrbldr_smla_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_csx_rvrbldr_smla_.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_csx_rvrbldr_smlb_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_csx_rvrbldr_smlb_.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_csx_rvrbldr_smlc_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_csx_rvrbldr_smlc_.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_csx_rvrbldr_smld_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_csx_rvrbldr_smld_.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_csx_rvrbldr_smle_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_csx_rvrbldr_smle_.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_csx_seabed_bldr1_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_csx_seabed_bldr1_.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_csx_seabed_bldr2_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_csx_seabed_bldr2_.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_csx_seabed_bldr3_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_csx_seabed_bldr3_.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_csx_seabed_bldr4_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_csx_seabed_bldr4_.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_csx_seabed_bldr5_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_csx_seabed_bldr5_.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_csx_seabed_bldr6_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_csx_seabed_bldr6_.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_csx_seabed_bldr7_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_csx_seabed_bldr7_.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_csx_seabed_bldr8_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_csx_seabed_bldr8_.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_csx_seabed_rock1_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_csx_seabed_rock1_.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_csx_seabed_rock2_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_csx_seabed_rock2_.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_csx_seabed_rock3_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_csx_seabed_rock3_.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_csx_seabed_rock4_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_csx_seabed_rock4_.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_csx_seabed_rock5_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_csx_seabed_rock5_.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_csx_seabed_rock6_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_csx_seabed_rock6_.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_csx_seabed_rock7_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_csx_seabed_rock7_.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_csx_seabed_rock8_.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_csx_seabed_rock8_.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_csx_searocks_02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_csx_searocks_02.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_csx_searocks_03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_csx_searocks_03.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_csx_searocks_04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_csx_searocks_04.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_csx_searocks_05.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_csx_searocks_05.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_csx_searocks_06.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_csx_searocks_06.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_prop_rock_1_a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_prop_rock_1_a.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_prop_rock_1_b.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_prop_rock_1_b.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_prop_rock_1_c.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_prop_rock_1_c.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_prop_rock_1_d.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_prop_rock_1_d.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_prop_rock_1_e.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_prop_rock_1_e.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_prop_rock_1_f.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_prop_rock_1_f.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_prop_rock_1_g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_prop_rock_1_g.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_prop_rock_1_h.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_prop_rock_1_h.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_prop_rock_1_i.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_prop_rock_1_i.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_prop_rock_2_a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_prop_rock_2_a.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_prop_rock_2_c.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_prop_rock_2_c.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_prop_rock_2_d.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_prop_rock_2_d.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_prop_rock_2_f.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_prop_rock_2_f.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_prop_rock_2_g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_prop_rock_2_g.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_prop_rock_3_a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_prop_rock_3_a.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_prop_rock_3_b.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_prop_rock_3_b.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_prop_rock_3_c.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_prop_rock_3_c.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_prop_rock_3_d.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_prop_rock_3_d.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_prop_rock_3_e.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_prop_rock_3_e.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_prop_rock_3_f.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_prop_rock_3_f.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_prop_rock_3_g.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_prop_rock_3_g.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_prop_rock_3_h.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_prop_rock_3_h.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_prop_rock_3_i.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_prop_rock_3_i.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_prop_rock_3_j.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_prop_rock_3_j.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_prop_rock_4_a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_prop_rock_4_a.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_prop_rock_4_b.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_prop_rock_4_b.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_prop_rock_4_big.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_prop_rock_4_big.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_prop_rock_4_big2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_prop_rock_4_big2.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_prop_rock_4_c.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_prop_rock_4_c.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_prop_rock_4_c_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_prop_rock_4_c_2.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_prop_rock_4_cl_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_prop_rock_4_cl_1.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_prop_rock_4_cl_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_prop_rock_4_cl_2.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_prop_rock_4_d.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_prop_rock_4_d.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_prop_rock_4_e.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_prop_rock_4_e.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_prop_rock_5_a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_prop_rock_5_a.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_prop_rock_5_b.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_prop_rock_5_b.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_prop_rock_5_c.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_prop_rock_5_c.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_prop_rock_5_d.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_prop_rock_5_d.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_prop_rock_5_e.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_prop_rock_5_e.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_rock_4_cl_2_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_rock_4_cl_2_1.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/stone/Entities_rock_4_cl_2_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/stone/Entities_rock_4_cl_2_2.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/wood/Entities_prop_bush_lrg_02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/wood/Entities_prop_bush_lrg_02.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/wood/Entities_prop_bush_lrg_02b.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/wood/Entities_prop_bush_lrg_02b.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/wood/Entities_prop_bush_lrg_04b.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/wood/Entities_prop_bush_lrg_04b.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/wood/Entities_prop_bush_lrg_04c.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/wood/Entities_prop_bush_lrg_04c.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/wood/Entities_prop_bush_lrg_04d.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/wood/Entities_prop_bush_lrg_04d.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/wood/Entities_prop_bush_neat_01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/wood/Entities_prop_bush_neat_01.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/wood/Entities_prop_bush_neat_02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/wood/Entities_prop_bush_neat_02.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/wood/Entities_prop_bush_neat_08.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/wood/Entities_prop_bush_neat_08.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/wood/Entities_prop_cactus_01a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/wood/Entities_prop_cactus_01a.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/wood/Entities_prop_cactus_01b.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/wood/Entities_prop_cactus_01b.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/wood/Entities_prop_cactus_01c.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/wood/Entities_prop_cactus_01c.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/wood/Entities_prop_cactus_01d.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/wood/Entities_prop_cactus_01d.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/wood/Entities_prop_cactus_01e.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/wood/Entities_prop_cactus_01e.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/wood/Entities_prop_cactus_02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/wood/Entities_prop_cactus_02.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/wood/Entities_prop_cactus_03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/wood/Entities_prop_cactus_03.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/wood/Entities_prop_desert_iron_01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/wood/Entities_prop_desert_iron_01.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/wood/Entities_prop_fan_palm_01a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/wood/Entities_prop_fan_palm_01a.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/wood/Entities_prop_joshua_tree_01a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/wood/Entities_prop_joshua_tree_01a.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/wood/Entities_prop_joshua_tree_01b.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/wood/Entities_prop_joshua_tree_01b.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/wood/Entities_prop_joshua_tree_01c.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/wood/Entities_prop_joshua_tree_01c.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/wood/Entities_prop_joshua_tree_01d.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/wood/Entities_prop_joshua_tree_01d.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/wood/Entities_prop_joshua_tree_01e.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/wood/Entities_prop_joshua_tree_01e.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/wood/Entities_prop_joshua_tree_02a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/wood/Entities_prop_joshua_tree_02a.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/wood/Entities_prop_joshua_tree_02b.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/wood/Entities_prop_joshua_tree_02b.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/wood/Entities_prop_joshua_tree_02c.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/wood/Entities_prop_joshua_tree_02c.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/wood/Entities_prop_joshua_tree_02d.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/wood/Entities_prop_joshua_tree_02d.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/wood/Entities_prop_joshua_tree_02e.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/wood/Entities_prop_joshua_tree_02e.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/wood/Entities_prop_palm_fan_02_a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/wood/Entities_prop_palm_fan_02_a.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/wood/Entities_prop_palm_fan_03_b.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/wood/Entities_prop_palm_fan_03_b.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/wood/Entities_prop_palm_fan_03_c.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/wood/Entities_prop_palm_fan_03_c.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/wood/Entities_prop_palm_fan_03_d.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/wood/Entities_prop_palm_fan_03_d.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/wood/Entities_prop_palm_fan_04_d.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/wood/Entities_prop_palm_fan_04_d.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/wood/Entities_prop_palm_huge_01a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/wood/Entities_prop_palm_huge_01a.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/wood/Entities_prop_palm_med_01a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/wood/Entities_prop_palm_med_01a.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/wood/Entities_prop_palm_med_01b.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/wood/Entities_prop_palm_med_01b.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/wood/Entities_prop_palm_med_01c.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/wood/Entities_prop_palm_med_01c.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/wood/Entities_prop_palm_med_01d.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/wood/Entities_prop_palm_med_01d.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/wood/Entities_prop_palm_sm_01a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/wood/Entities_prop_palm_sm_01a.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/wood/Entities_prop_palm_sm_01d.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/wood/Entities_prop_palm_sm_01d.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/wood/Entities_prop_palm_sm_01e.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/wood/Entities_prop_palm_sm_01e.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/wood/Entities_prop_palm_sm_01f.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/wood/Entities_prop_palm_sm_01f.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/wood/Entities_prop_plant_palm_01a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/wood/Entities_prop_plant_palm_01a.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/wood/Entities_prop_plant_palm_01c.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/wood/Entities_prop_plant_palm_01c.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/wood/Entities_prop_pot_plant_03a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/wood/Entities_prop_pot_plant_03a.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/wood/Entities_prop_rio_del_01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/wood/Entities_prop_rio_del_01.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/wood/Entities_prop_rus_olive.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/wood/Entities_prop_rus_olive.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/wood/Entities_prop_rus_olive_wint.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/wood/Entities_prop_rus_olive_wint.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/wood/Entities_prop_s_pine_dead_01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/wood/Entities_prop_s_pine_dead_01.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/wood/Entities_prop_tree_birch_01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/wood/Entities_prop_tree_birch_01.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/wood/Entities_prop_tree_birch_02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/wood/Entities_prop_tree_birch_02.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/wood/Entities_prop_tree_birch_03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/wood/Entities_prop_tree_birch_03.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/wood/Entities_prop_tree_birch_03b.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/wood/Entities_prop_tree_birch_03b.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/wood/Entities_prop_tree_birch_04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/wood/Entities_prop_tree_birch_04.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/wood/Entities_prop_tree_cedar_02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/wood/Entities_prop_tree_cedar_02.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/wood/Entities_prop_tree_cedar_03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/wood/Entities_prop_tree_cedar_03.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/wood/Entities_prop_tree_cedar_04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/wood/Entities_prop_tree_cedar_04.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/wood/Entities_prop_tree_cedar_s_01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/wood/Entities_prop_tree_cedar_s_01.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/wood/Entities_prop_tree_cedar_s_02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/wood/Entities_prop_tree_cedar_s_02.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/wood/Entities_prop_tree_cedar_s_04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/wood/Entities_prop_tree_cedar_s_04.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/wood/Entities_prop_tree_cedar_s_05.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/wood/Entities_prop_tree_cedar_s_05.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/wood/Entities_prop_tree_cedar_s_06.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/wood/Entities_prop_tree_cedar_s_06.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/wood/Entities_prop_tree_cypress_01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/wood/Entities_prop_tree_cypress_01.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/wood/Entities_prop_tree_eng_oak_01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/wood/Entities_prop_tree_eng_oak_01.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/wood/Entities_prop_tree_eucalip_01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/wood/Entities_prop_tree_eucalip_01.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/wood/Entities_prop_tree_fallen_01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/wood/Entities_prop_tree_fallen_01.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/wood/Entities_prop_tree_fallen_02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/wood/Entities_prop_tree_fallen_02.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/wood/Entities_prop_tree_fallen_pine_01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/wood/Entities_prop_tree_fallen_pine_01.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/wood/Entities_prop_tree_jacada_01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/wood/Entities_prop_tree_jacada_01.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/wood/Entities_prop_tree_jacada_02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/wood/Entities_prop_tree_jacada_02.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/wood/Entities_prop_tree_lficus_02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/wood/Entities_prop_tree_lficus_02.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/wood/Entities_prop_tree_lficus_03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/wood/Entities_prop_tree_lficus_03.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/wood/Entities_prop_tree_lficus_05.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/wood/Entities_prop_tree_lficus_05.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/wood/Entities_prop_tree_lficus_06.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/wood/Entities_prop_tree_lficus_06.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/wood/Entities_prop_tree_log_01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/wood/Entities_prop_tree_log_01.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/wood/Entities_prop_tree_log_02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/wood/Entities_prop_tree_log_02.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/wood/Entities_prop_tree_maple_02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/wood/Entities_prop_tree_maple_02.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/wood/Entities_prop_tree_maple_03.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/wood/Entities_prop_tree_maple_03.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/wood/Entities_prop_tree_mquite_01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/wood/Entities_prop_tree_mquite_01.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/wood/Entities_prop_tree_oak_01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/wood/Entities_prop_tree_oak_01.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/wood/Entities_prop_tree_olive_01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/wood/Entities_prop_tree_olive_01.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/wood/Entities_prop_tree_pine_01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/wood/Entities_prop_tree_pine_01.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/wood/Entities_prop_tree_pine_02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/wood/Entities_prop_tree_pine_02.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/wood/Entities_prop_tree_stump_01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/wood/Entities_prop_tree_stump_01.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/wood/Entities_prop_veg_crop_tr_01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/wood/Entities_prop_veg_crop_tr_01.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/wood/Entities_prop_veg_crop_tr_02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/wood/Entities_prop_veg_crop_tr_02.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/wood/Entities_prop_w_r_cedar_01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/wood/Entities_prop_w_r_cedar_01.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/wood/Entities_prop_w_r_cedar_dead.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/wood/Entities_prop_w_r_cedar_dead.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/wood/Entities_test_tree_cedar_trunk_001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/wood/Entities_test_tree_cedar_trunk_001.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/wood/Entities_test_tree_forest_trunk_01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/wood/Entities_test_tree_forest_trunk_01.txt -------------------------------------------------------------------------------- /resources/server/resource_data/raw/wood/Entities_test_tree_forest_trunk_04.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/resource_data/raw/wood/Entities_test_tree_forest_trunk_04.txt -------------------------------------------------------------------------------- /resources/server/sResourceManager.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/server/sResourceManager.lua -------------------------------------------------------------------------------- /resources/shared/shResourceData.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/resources/shared/shResourceData.lua -------------------------------------------------------------------------------- /sounds/client/Sounds.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/sounds/client/Sounds.lua -------------------------------------------------------------------------------- /sounds/client/ui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/sounds/client/ui/index.html -------------------------------------------------------------------------------- /sounds/client/ui/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/sounds/client/ui/script.js -------------------------------------------------------------------------------- /spawnmanager/client/cRemovePedClothesExtension.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/spawnmanager/client/cRemovePedClothesExtension.lua -------------------------------------------------------------------------------- /spawnmanager/client/cSpawnManager.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/spawnmanager/client/cSpawnManager.lua -------------------------------------------------------------------------------- /spawnmanager/server/sPlayerSpawnExtension.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/spawnmanager/server/sPlayerSpawnExtension.lua -------------------------------------------------------------------------------- /spawnmanager/server/sSpawnManager.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/spawnmanager/server/sSpawnManager.lua -------------------------------------------------------------------------------- /submodule-update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paradigm-MP/fivem-rust-gamemode/HEAD/submodule-update.sh --------------------------------------------------------------------------------