MFG4Ever 13 Posted September 12, 2014 Hi. So one of my fellow clan-members and I, mostly him, have been working on a training map for our group. Everything has been going well, until he wanted to add some CQB buildings. He found a template on Armaholic, and picked out a few out the houses from it. However when we try to test it on a MP server, the pallets, which serve as a floor, on some of the buildings, they simply dissapear. We've tried looking at different solutions through the init line of the pallets, but no matter what we've done so far, the either dissapear into thin air, or simply fall down. Our guess is, that we're overlooking some simple line of code, that will make the pallets stay where they are in MP, so my question to the community is, what are we doing wrong? These are some of the things we've tried so far: 1. this enableSimulation false; in the init line of the pallets 2. this setPos [getPos this select 0, getPos this select 1, 2.5]; 3. a combination of 1+2 Hopefully some of the skilled modders, coders, missionmakers etc. will be able to shed some light on our little problem. Share this post Link to post Share on other sites
gulozwood 10 Posted September 12, 2014 Hi, in MP you have to use enableSimulationGlobal. Share this post Link to post Share on other sites
terox 316 Posted September 12, 2014 You need to put some security guards around the training camp, those Altis civvies will steal anything not bolted down when our offline Share this post Link to post Share on other sites
MFG4Ever 13 Posted September 12, 2014 You need to put some security guards around the training camp, those Altis civvies will steal anything not bolted down when our offline Haha.. I'll keep that in mind ;) ---------- Post added at 18:47 ---------- Previous post was at 18:44 ---------- Hi, in MP you have to use enableSimulationGlobal. Thanks, will pass it along, and hopefully it'll work Share this post Link to post Share on other sites
MFG4Ever 13 Posted September 13, 2014 Well the enableSimulationGlobal didn't work as expected, the pallets are still gone. Share this post Link to post Share on other sites
Harzach 2517 Posted September 13, 2014 setPos and its variants don't guarantee that the object in question will stay in that position. I always use attachTo instead (in conjunction with this addEventHandler ["handleDamage", {0}];). It can be a little time-consuming to get placement correct, but the end result is both figuratively and literally bulletproof. Obviously you want to skip the event handler if you want bullet penetration or other damage to be possible. Share this post Link to post Share on other sites
MFG4Ever 13 Posted September 13, 2014 setPos and its variants don't guarantee that the object in question will stay in that position. I always use attachTo instead (in conjunction with this addEventHandler ["handleDamage", {0}];). It can be a little time-consuming to get placement correct, but the end result is both figuratively and literally bulletproof. Yeah we were kinda leaning that way ourselves, even if it is, as you say, time consuming. Oh well, as long as the end result is good ;) Share this post Link to post Share on other sites
killzone_kid 1331 Posted September 13, 2014 works for me what is your init? Share this post Link to post Share on other sites
MFG4Ever 13 Posted September 13, 2014 (edited) -- Edit -- Edited September 13, 2014 by MFG4Ever misunderstood previous question Share this post Link to post Share on other sites
killzone_kid 1331 Posted September 13, 2014 Sorry, what is your init line to position the pallets? Share this post Link to post Share on other sites
MFG4Ever 13 Posted September 13, 2014 (edited) Right now it's only: this enableSimulationGlobal false and the height is set at 5.1 Edited September 14, 2014 by MFG4Ever corrected wrong use of brackets Share this post Link to post Share on other sites
654wak654 25 Posted September 13, 2014 (edited) The brackets around are just to highlight the "false" right? If you're doing it like the original thread it should work, but did you start putting the false in brackets when you switched to Global one? That might be the thing. You don't set it to false in brackets, that is a String type of value, and can be anything like "MFG4Ever" or "654wak654". The command enableSimulationGlobal takes Boolean value, which can be just true, or false. The exact init line whould be: this enableSimulationGlobal false; Edited September 13, 2014 by 654wak654 Share this post Link to post Share on other sites
MFG4Ever 13 Posted September 13, 2014 Yeah sorry, the brackets are not supposed to be there. Well I know it should work, and we are able to see the pallets when we approach the CQB house, but after about 10 seconds they dissapear, which is very strange. Share this post Link to post Share on other sites