zukov 489 Posted March 19, 2014 i didn't see in editor, how to spawn it in game? thanks in advance Share this post Link to post Share on other sites
papanowel 120 Posted March 19, 2014 Place a gamelogic somewhere (where you want your sub to appear) and then write this the init file: _submarine = "Submarine_01_F" createVehicle (position this); Share this post Link to post Share on other sites
Wiki 1558 Posted March 19, 2014 And how to make it stay, let's say -30 meters? Everytime I spawn it, it comes to surface. Share this post Link to post Share on other sites
zukov 489 Posted March 19, 2014 Place a gamelogic somewhere (where you want your sub to appear) and then write this the init file: _submarine = "Submarine_01_F" createVehicle (position this); Thanks!! Share this post Link to post Share on other sites
papanowel 120 Posted March 20, 2014 Everytime I spawn it, it comes to surface. Modify the elevation (in meter) of the gamelogic ;) Share this post Link to post Share on other sites
Tankbuster 1744 Posted March 21, 2014 Modify the elevation (in meter) of the gamelogic ;) If you mean in the editor, don't forget that negative elevations are ignored. Share this post Link to post Share on other sites
Heinrich Kramer 172 Posted March 21, 2014 If you mean in the editor, don't forget that negative elevations are ignored. no, theyre not. they proceed until they find the end of the terrain height, so, negative elevations are only possible under water Correction: it seems like they are ignored for gamelogics Share this post Link to post Share on other sites
papanowel 120 Posted March 21, 2014 If you mean in the editor, don't forget that negative elevations are ignored. Too bad :/ Share this post Link to post Share on other sites
Humay 10 Posted April 6, 2014 The problem is that the submarine doesn't dive- it is a boat and will try to get up even if you spawn it underwater. In my mission I used the enableSimulation command to keep it underwater. Share this post Link to post Share on other sites
Tankbuster 1744 Posted April 7, 2014 Setvelocity can make it dive. Share this post Link to post Share on other sites