Maurdekye 10 Posted August 25, 2014 In a recent mission I made, I placed some crates with custom weapons and items in them using this code; clearItemCargo this; clearWeaponCargo this; clearBackPackCargo this; clearMagazineCargo this; this addItemCargo ["FirstAidKit", 40]; this addItemCargo ["Medikit", 4]; When I play the mission I can see the custom items just fine, but when I play with my friend he just sees the default contents of the crate, as though the code wasn't run. I can still remove the items and drop them on the ground for him to pick up, but he can't remove them from the crate. Share this post Link to post Share on other sites
L3TUC3 32 Posted August 25, 2014 Working as intended. Use addItemCargoGlobal instead. https://community.bistudio.com/wiki/addItemCargoGlobal Share this post Link to post Share on other sites
Maurdekye 10 Posted August 25, 2014 Why is there a different command for it? Share this post Link to post Share on other sites
cuel 25 Posted August 25, 2014 Why is there a different command for it? Becuase sometimes you want to add stuff locally. Domination did this, every player had 1 of every weapon in his crate. Share this post Link to post Share on other sites
Kerc Kasha 102 Posted August 25, 2014 Why is there a different command for it? sometimes you don't want all clients seeing an object. Share this post Link to post Share on other sites