Nicoman35 2 Posted May 24, 2022 I am trying to create and attach a backpack to a vehicle. _backpack = "B_Bergen_dgtl_F" createVehicle position player; _backpack attachTo [cursorObject, [0.32, -0.3, 0.65], "OtocVelitele"]; Somehow, this does not work. Can anyone tell me what I am doing wrong? Share this post Link to post Share on other sites
dreadedentity 278 Posted May 24, 2022 You need to create "WeaponHolder" then add backpack to it 1 Share this post Link to post Share on other sites
sarogahtyp 1108 Posted May 24, 2022 _weaponHolder = "WeaponHolderSimulated" createVehicle [0,0,0]; _weaponHolder addBackpackCargoGlobal ["B_Bergen_dgtl_F", 1]; _weaponHolder attachTo [cursorObject, [0.32, -0.3, 0.65], "OtocVelitele"]; not tested 1 Share this post Link to post Share on other sites
Nicoman35 2 Posted May 24, 2022 *no* Ok, it worked. Many thanks guys. Share this post Link to post Share on other sites