Sniper_Panther 0 Posted October 15, 2002 i need a mission to do in mission editor cause im running out of ideas anyone got any? p.s if this is in the wrong forums could you move it to the right forums Share this post Link to post Share on other sites
Spitfire 0 Posted October 15, 2002 Well, you could always please us old Knight Rider fans and do a K.I.T.T. -mission around the Turbo Boost & Jump -scripts I did yesterday with the new setVelocity command http://www.angelfire.com/weird2/spitfire/ofp.html Share this post Link to post Share on other sites
ACES_KEVIN 0 Posted October 15, 2002 Mind explainin tose commands to me in PM EMAIL anything im interested in what ya speakin of. Id ask ya to do it here but them Moderators are how do i say it. touchy wit were u put anything a lil off topic. Kevin Share this post Link to post Share on other sites
Spitfire 0 Posted October 15, 2002 Nah, as long as we are speaking of mission editing the mods don't mind... Â First of all, velocity in OFP is a vector (like it should, unlike speed which is an absolute value), so basically you have to deal with 3 components in 3d space. _velocityvector = velocity car; returns the three components in an array called _velocityvector. It might look something like this: [10,50,5]. The first two values are velocity components in the X-Y plane and the third one is the vertical velocity component. That is, if it's positive the vehicle moves up and if it's negative it moves down. You can separate the components like you usually do in OFP: _x = velocity car select 0; _y = velocity car select 1; _z = velocity car select 2; Now you can easily use them in another setVelocity command like this: car setVelocity [_x * 10, _y * 10, _z + 20]; This line makes the car move 10 times as fast as it was, and additionally gives it a vertical speed component of 20m/s which means it'll jump up high! Hope this clears it up for you. Share this post Link to post Share on other sites
walker 0 Posted October 15, 2002 Hi Sniper_Panther Setvelocity most useful for aircraft carriers you can make steam catapults and arrestor wires with it. For a mission designer we are looking for some for the chain of command. PM me and I have a vast list of missions to create! Kind Regards walker Share this post Link to post Share on other sites
FidelKGB 0 Posted October 15, 2002 Good hint is download some missions and play them for time and you get inspiration. Share this post Link to post Share on other sites
Sniper_Panther 0 Posted October 15, 2002 uhhhhhh wrong ideas guys im talking about ME maken a mission without any addons like example ill make a mission of black hawk down somethen like that Share this post Link to post Share on other sites
Balschoiw 0 Posted October 16, 2002 for the suggestions the nice guys made you wont need any addons. It´s only the use of scripting commands. Share this post Link to post Share on other sites
jakerod 254 Posted October 17, 2002 Make a James Bond style mission... Have a Black Op with a Steyr Aug attack that factory to stop a bomb from being made or something... Or have a big firefight in Lipany i think the name is with the russians vs the West. Share this post Link to post Share on other sites
Ixian 0 Posted October 17, 2002 There isnt very many sniper missions out there and the ones that are out basically suck. Maybe you can make a kick ass sniper mission worth playing. Share this post Link to post Share on other sites