Search the Community
Showing results for tags 'custom weapons'.
Found 3 results
-
DOWNLOAD page Pictures This work is licensed under a Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International License.
- 514 replies
-
- 17
-
- barsenal
- custom weapons
-
(and 2 more)
Tagged with:
-
________________________________________________________________________________________________________________________________________________ Pictures __________________________________________________ Join the discussion here and see more of the upcoming content. __________________________________________________ Updated - January 31, 2017 Content __________________________________________________ Steam Workshop Project Infinite v0.8 Project Infinite - All in one v0.8 This work is licensed under a Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International License.
- 152 replies
-
- 18
-
- barsenal
- bnaes arsenal
-
(and 3 more)
Tagged with:
-
Heya there guys, i am building my mission with my custom weapons in it which are saved in a seperate PBO however when i try to search them up in the editor they are not listed in the weapons and if i change the classname in the mission.sqm to my custom classnames it simply says that it cannot find the vehicle class. now i tried makign a vehicle class and then putting all the vehicle class in the weapons config however they still do not show. any1 got an idea ? the weaponconfig is an HPP file which comes together in a CPP both the sample of the hpp and cpp are attached below. Weapons.hpp class hlc_rifle_m4m203; class ST1_SL_M4: hlc_rifle_m4m203 { displayName = M4A1 - M203; vehicleclass = "ST1_Weapons"; class LinkedItems { class LinkedItemsOptic { slot = "CowsSlot"; item = "FHQ_optic_ACOG"; }; class LinkedItemsAcc { slot = "CowsSlot"; item = "CUP_acc_ANPEQ_2"; } class LinkedItemsMuzzle { slot = "MuzzleSlot"; item = "muzzle_snds_M"; }; }; }; and the config.cpp: class CfgPatches { class ST1_Units { weapons[] = { "ST1_SL_M4" }; requiredVersion = 0.1; }; }; class CfgFactionClasses { class ST1 { displayname = "Seal Team 1"; author = "Eliree"; priority = 1; side = 1; }; }; class CfgVehicleClasses { class ST1_Weapons { displayName = "Weapons"; } }; class CfgWeapons { #include "Weapons\Weapons.hpp" }; class CfgVehicles { class B_Soldier_base_F; class B_Soldier_F; #include "Weapons\Weapons.hpp" is this in the config or is it in the mission ? cause i can't see mto find it