READTHESCROLL Posted August 2, 2015 Report Share Posted August 2, 2015 How do you rotate cargo nets and helipads? You cant select them for some strange reason.. Is there another trick to this? Link to comment Share on other sites More sharing options...
MrEnzO Posted August 2, 2015 Report Share Posted August 2, 2015 What I do is place down a other object. Then I go in notepad++ and put in the helipad or cargo nets name instead. Save it and open again. READTHESCROLL 1 Link to comment Share on other sites More sharing options...
READTHESCROLL Posted August 2, 2015 Author Report Share Posted August 2, 2015 That is a damn good idea sir. That sounds perfect. Link to comment Share on other sites More sharing options...
Heinz Posted July 10, 2017 Report Share Posted July 10, 2017 How can I set a command with the M3Editor? e.g, a texture on billboard like this: this allowdamage false; this setObjectTexture [0,"textures\logo.jpg"]; Link to comment Share on other sites More sharing options...
DirtySanchez Posted July 13, 2017 Report Share Posted July 13, 2017 @Heinz After exporting the custom props, you can look at the code that spawns it. It is usually at the bottom of the export and is a loop like this: { code is in here to spawn in the props from the array. and you can squeeze the below example somewhere in here to do what you would like :) } forEach _props; You can then do an if/then on the classname of the object such as the Land_Billboard_F if(_propClassName isEqualTo "Land_BillBoard_F")then{ lowdamage false; this setObjectTexture [0,"textures\logo.jpg"]; }; Link to comment Share on other sites More sharing options...
Heinz Posted July 17, 2017 Report Share Posted July 17, 2017 @Endowed Many Thanks! =) Link to comment Share on other sites More sharing options...
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now