Aculaud 0 Posted March 22, 2002 How can i adjust the height that my parachute falls from? I tried the flyinheight command, and it doesnt seem to be responding to that Share this post Link to post Share on other sites
RED 0 Posted March 22, 2002 Use the setpos command in the init box : </span><table border="0" align="center" width="95%" cellpadding="3" cellspacing="1"><tr><td>Code Sample </td></tr><tr><td id="CODE">this setpos [this select 0, this select 1, (this select 2) + 100]<span id='postcolor'> Just change the + 100 to how ever high you want to start from. RED Share this post Link to post Share on other sites
wamingo 1 Posted March 22, 2002 RED's intentions are completely right, it just needs a tiny correction... getpos is required for the first two coordinates, the last, Z, coordinate does not need to be read. </span><table border="0" align="center" width="95%" cellpadding="3" cellspacing="1"><tr><td>Code Sample </td></tr><tr><td id="CODE"> this setpos [getpos this select 0, getpos this select 1, 100] <span id='postcolor'> Share this post Link to post Share on other sites