So can somebody help me, i`m trying to add weapon, and items from the RHS mod to Epoch loot-table.
I have the classnames for the RHS, and found the CfgLootTable, but what confuses me is that there are so many classes, like:
class Rifle
{
items[] = {
{ { "AKM_EPOCH", "weapon" }, 3 },
{ { "sr25_epoch", "weapon" }, 4 },
{ { "Rifle_arifle_Katiba_F", "CfgLootTable" }, 5 },
{ { "Rifle_arifle_MX_GL_F", "CfgLootTable" }, 6 },
{ { "Rifle_l85a2_epoch", "CfgLootTable" }, 6 },
{ { "m4a3_EPOCH", "weapon" }, 7 },
{ { "Rifle_m16_EPOCH", "CfgLootTable" }, 7 },
{ { "Rifle_arifle_Mk20_F", "CfgLootTable" }, 8 },
{ { "Rifle_arifle_TRG21_F", "CfgLootTable" }, 8 },
{ { "arifle_SDAR_F", "weapon" }, 9 },
{ { "Rollins_F", "weapon" }, 9 },
{ { "SMG_01_F", "weapon" }, 9 },
{ { "SMG_02_F", "weapon" }, 9 },
{ { "hgun_PDW2000_F", "weapon" }, 10 }
};
};
class Rifle_l85a2_epoch
{
items[] = {
{ { "l85a2_epoch", "weapon" }, 1 },
{ { "l85a2_pink_epoch", "weapon" }, 1 },
{ { "l85a2_ugl_epoch", "weapon" }, 1 }
};
};
with this you have the class rifle, but why is the rifle l85a2 in another? i mean that confuses me, where do i need to add the classes? It sounds noobish, but just can that somebody explain, i would appreciate. Cheers!
or, just create a new class called rhs_weapons and add all weapons in that class?