Home   Help Search Login Register  

Author Topic: from 120 km/h to 0 km/h  (Read 9383 times)

0 Members and 1 Guest are viewing this topic.

Plizkin

  • Guest
from 120 km/h to 0 km/h
« on: 13 Mar 2003, 16:00:20 »
Hi there,
Is it possible to create a script which slows down an airplane from some speed to zero? ???

e.g.:

A C130 wants to land on an air craft carrier. The c130 is one mile from landing. It travels at 120 km/h. To not fall down it needs to catch the hook. Because there are no hooks in Operation Flashpoint it has to be scripted down from 120 km/h to 0 km/h.

Summary:
Slowing down an airplane to 0 km/h. Is that possible?

p.s.: When is the american air craft carrier completed? I am waiting for it since 7 months.  ???

Ace

  • Guest
Re:from 120 km/h to 0 km/h
« Reply #1 on: 13 Mar 2003, 16:56:20 »
Try plane setvelocity [0,0,0]

Offline toadlife

  • OFPEC Old Skool
  • Former Staff
  • ****
  • Official OFP Editing Center Toad
    • toadlife.net
Re:from 120 km/h to 0 km/h
« Reply #2 on: 13 Mar 2003, 18:33:44 »
C-130's can land on aircraft carriers? :o
"Whenever you want information on the 'net, don't ask a question; just post a wrong answer." -- Cancer Omega.

Offline WizzyWig

  • Members
  • *
  • Mod Maker
    • Oblivion Promotions
Re:from 120 km/h to 0 km/h
« Reply #3 on: 13 Mar 2003, 18:45:11 »
do u have a aircraft carrier if so give me a link please

Offline Artak

  • The old beanbag shaker
  • Former Staff
  • ****
  • You want to talk about it, yes?
    • OFP Team Finlanders
Re:from 120 km/h to 0 km/h
« Reply #4 on: 13 Mar 2003, 19:05:22 »
Quote
Try plane setvelocity [0,0,0]

that prolly won't work, because it does nothing. it sets no velocity.

What you'd want to do is set some negative velocity on the plane.

Fool around with this:

plane setVelocity [-200*(sin(getDir plane)),-200*(cos(getDir plane)),0]

« Last Edit: 13 Mar 2003, 19:05:43 by Artak »
Not all is lost.

Offline toadlife

  • OFPEC Old Skool
  • Former Staff
  • ****
  • Official OFP Editing Center Toad
    • toadlife.net
Re:from 120 km/h to 0 km/h
« Reply #5 on: 13 Mar 2003, 21:42:42 »
Actually, I think setvelcocity [0,0,0] would work. Let us know if it does or doesn't.
"Whenever you want information on the 'net, don't ask a question; just post a wrong answer." -- Cancer Omega.

Iwesshome

  • Guest
Re:from 120 km/h to 0 km/h
« Reply #6 on: 13 Mar 2003, 21:50:08 »
Now I am confused....

Quote
Actually, I think setvelcocity [0,0,0] would work. Let us know if it does or doesn't.


If my plane is traveling 120Km and I want it to go to 80km what would it that look like?

Also vise versa....

Offline toadlife

  • OFPEC Old Skool
  • Former Staff
  • ****
  • Official OFP Editing Center Toad
    • toadlife.net
Re:from 120 km/h to 0 km/h
« Reply #7 on: 13 Mar 2003, 23:12:06 »
try this:

What this will do, is set the velocity of the plane to half of its current velocity, by dividing each of its velocity vectors (or whatvere they're called) by two....

Code: [Select]
_vel = velocity plane
_velx = _vel select 0
_vely = _vel select 1
_velz = _vel select 2
plane setvelocity [(_velx / 2),(_vely / 2),(_velz / 2)]

If you wanted to double the plane's velocity you would multiply instead of divide, like so...

Code: [Select]
_vel = velocity plane
_velx = _vel select 0
_vely = _vel select 1
_velz = _vel select 2
plane setvelocity [(_velx * 2),(_vely * 2),(_velz * 2)]

Here is an example (from memory) of a peice of code I used in a "nitro boost" script for vehicles....

Code: [Select]
_vehicle = vehicle (_this select 1)

#nitroboost
_vehicle setvelocity [(velocity _vehicle select 0) * 1.1,(velocity _vehicle select 1) * 1.1,(velocity _vehicle select 2) * 1.1]
?_time > 3:exit
~0.1
goto "nitroboost"

This peice of code was started via an action and would multiply the player's vehicles velocity by 1.1 over and over for 3 seconds. I was semi realistic.


To specifically answer your question:

OK 120/80 = 1.5
So your goal velocity is 120/1.5 (80)
CHeck this out. YOU would initiate like so:

[vehicle,goalspeed,rateofchange] exec "changevel.sqs"

[airplane1,0,0.05] exec "changevel.sqs"

Code: [Select]
_vehicle = _this select 0
_goal = _this select 1
_rate = _this select 2
_speed = speed _vehicle
_ratio = _speed / _goal
?_speed > _goal:goto "slowdown"
goto "speedup"


#slowdown
_vehicle setvelocity [(velocity _vehicle select 0) / 1.05,(velocity _vehicle select 1) / 1.05,(velocity _vehicle select 2) / 1.05]
~rate
?speed _vehicle < _goal:exit
goto "slowdown"


#speedup
_vehicle setvelocity [(velocity _vehicle select 0) * 1.05,(velocity _vehicle select 1) * 1.05,(velocity _vehicle select 2) * 1.05]
~rate
?speed _vehicle > _goal:exit
goto "speedup"
« Last Edit: 13 Mar 2003, 23:53:55 by toadlife »
"Whenever you want information on the 'net, don't ask a question; just post a wrong answer." -- Cancer Omega.

Iwesshome

  • Guest
Re:from 120 km/h to 0 km/h
« Reply #8 on: 13 Mar 2003, 23:43:03 »
Dosen't sound to complicated.... well here goes.

Offline toadlife

  • OFPEC Old Skool
  • Former Staff
  • ****
  • Official OFP Editing Center Toad
    • toadlife.net
Re:from 120 km/h to 0 km/h
« Reply #9 on: 13 Mar 2003, 23:55:17 »
BTW, I found a bug in that last script I posted. I never ested it so there are probably more bugs. If you can't get it to work then Ill tst it out later.
"Whenever you want information on the 'net, don't ask a question; just post a wrong answer." -- Cancer Omega.

Offline toadlife

  • OFPEC Old Skool
  • Former Staff
  • ****
  • Official OFP Editing Center Toad
    • toadlife.net
Re:from 120 km/h to 0 km/h
« Reply #10 on: 14 Mar 2003, 03:48:29 »
This script will work as a landing hook simulator or a catapult simulator for Aircraft Carriers.

It is executed like so:

[vehicle,desiredspeed,rateofchange] exec "changevel.sqs"

If you wanted to simulate a landinghook for a plane named "tomcat", then you would inistialize it something like this:

[tomcat,0,0.2] exec "changevel.sqs"

If you wanted to simulate a catapult for a plane named "tomcat", then you would initialize it something like this:

[tomcat,200,0.2] exec "changevel.sqs"


Code: [Select]
_vehicle = _this select 0
_goal = _this select 1
_rate = _this select 2
_speed = speed _vehicle
?_speed > _goal:goto "slowdown"
goto "speedup"


#slowdown
_vehicle setvelocity [(velocity _vehicle select 0) / 1.05,(velocity _vehicle select 1) / 1.05,(velocity _vehicle select 2) / 1.05]
~_rate
?speed _vehicle <= _goal:exit
goto "slowdown"


#speedup
_vehicle setvelocity [(velocity _vehicle select 0) * 1.05,(velocity _vehicle select 1) * 1.05,(velocity _vehicle select 2) * 1.05]
~_rate
?speed _vehicle >= _goal:exit
goto "speedup"
"Whenever you want information on the 'net, don't ask a question; just post a wrong answer." -- Cancer Omega.

Offline Chris Death

  • Former Staff
  • ****
  • Finally Death's gonna get ya
    • OFPEC
Re:from 120 km/h to 0 km/h
« Reply #11 on: 14 Mar 2003, 07:49:02 »
Not sure, if this info below may help aswell here

SUMA himself explained 3 new entries which came
with the 1.90 patch:

Code: [Select]
There are several new config entries for planes in 1.90 that could help addon creators, especially for planes that are much smaller or bigger than the default OFP planes:

Code Sample  
landingSpeed = 0;
flapsFrictionCoef = 0.5;
wheelSteeringSensitivity = 1.0;
 


landingSpeed

This entry tell AI autopilot what speed it should use when landing. It does not determine stall or landing speed, it is used to inform AI what the landing speed is. If zero (default) is given, landing speed is calculated as:

landingSpeed = max(maxSpeed/3, 120 km/h)

flapsFrictionCoef

This tells how much friction flaps cause when fully applied. Total airplane friction is modified as follows.

result_friction = air_friction * ( 1+ flap_state*flapsFrictionCoef)

wheelSteeringSensitivity

Use this to make airplane more or less steerable when taxiing. Bigger means value - smaller turn radius possible.

Using those entries will not cause any problem when addon is used with older OFP version, and it will improve addon in 1.90.

--------------
Ondrej Spanel, BIS Lead Programmer

And here's the link to the thread at BIS forum:

http://www.flashpoint1985.com/cgi-bin/ikonboard301/ikonboard.cgi?act=ST;f=51;t=24371

~S~ CD
« Last Edit: 14 Mar 2003, 07:52:02 by Chris Death »
Dont argue with idiots....they will bring you down to their level and beat you there with experience.

How to use Waypoint type Scripted

Plizkin

  • Guest
Re:from 120 km/h to 0 km/H
« Reply #12 on: 14 Mar 2003, 15:49:41 »
as much I know can C130`s land on aircraft carriers.    ;)

Plizkin

  • Guest
Re:from 120 km/h to 0 km/h
« Reply #13 on: 14 Mar 2003, 16:50:54 »
here is a link for the Aircraft carrier (Its not finished, so please, please help  :'(them !) :

http://www.angelsofchaos.com/modules.php?op=modload&name=News&file=article&sid=50&mode=thread&order=0&thold=0


p.s: Can someone tell me, how to make that fuckin damn shit Links ?  ;D

Offline Ranger

  • Members
  • *
  • Hoo-ah!
Re:from 120 km/h to 0 km/h
« Reply #14 on: 14 Mar 2003, 18:06:40 »
I'm pretty certain that C-130s are too big to land on carriers, but I have no data to back up my claim.

In any event, I think you should leave out the adjustment to the z-velocity in those scripts.  Afterall, the arrester hook does not make the plane stop moving vertically, eh?
Ranger

Offline toadlife

  • OFPEC Old Skool
  • Former Staff
  • ****
  • Official OFP Editing Center Toad
    • toadlife.net
Re:from 120 km/h to 0 km/h
« Reply #15 on: 14 Mar 2003, 19:26:10 »
In any event, I think you should leave out the adjustment to the z-velocity in those scripts.  Afterall, the arrester hook does not make the plane stop moving vertically, eh?

Yeah you could probably remove that, but in my testing it seemed totally realistic. I have a demo mission that I should post. If you come down to hard and the "hook" catches you, the z velocity adjustment doesn't help - you still blow up. :P

I set my test mission up so that the hook will only activate if your altitude is 2 meters or lower.

"Whenever you want information on the 'net, don't ask a question; just post a wrong answer." -- Cancer Omega.

Offline Sui

  • Former Staff
  • ****
    • OFPEC
Re:from 120 km/h to 0 km/h
« Reply #16 on: 14 Mar 2003, 23:18:54 »
LOL ;D

Large transport aircraft (such as a C-130) can't land on carriers I'm afraid (though maybe they can in OFP :))

It's not a question of runway length (as you've got arrester cables and the catapult), it's a question of landing gear strength.

All aircraft used in carrier ops have to have heavily reinforced landing gear to withstand take-offs and landings. The larger (Heavier) the aircraft, the stronger the landing gear has to be...

The forces acting on a C-130's gear if it tried to land on a carrier would be incredible ;)

Plizkin

  • Guest
Re:from 120 km/h to 0 km/h
« Reply #17 on: 17 Mar 2003, 14:51:45 »
hey toadlife,

Simulate a landinghook:

[tomcat,0,0.2] exec "changevel.sqs"

Simulate a catapult:

[tomcat,200,0.2] exec "changevel.sqs"


SCRIPT:
=======================================================

_vehicle = _this select 0
_goal = _this select 1
_rate = _this select 2
_speed = speed _vehicle
?_speed > _goal:goto "slowdown"
goto "speedup"


#slowdown
_vehicle setvelocity [(velocity _vehicle select 0) / 1.05,(velocity _vehicle select 1) / 1.05,(velocity _vehicle select 2) / 1.05]
~_rate
?speed _vehicle <= _goal:exit
goto "slowdown"


#speedup
_vehicle setvelocity [(velocity _vehicle select 0) * 1.05,(velocity _vehicle select 1) * 1.05,(velocity _vehicle select 2) * 1.05]
~_rate
?speed _vehicle >= _goal:exit
goto "speedup"
=======================================================

Sorry, this script don`t work. There is a error. I think, my computer don`t know the word "setvelocity".
=======================================================

p.s.:  So much I know, they will first relase the Aircaft carrier from the World War 2, then the American Aircaft carrier. Fuck, I`m waiting motherfuckin 7 month for it. They ever said, yeees, tomorow we`ll relase it. But the next day they said the same shit.

Okay my friends, please make a script without errors or a script with words, which my computer know ! Or I need a new config.bin (Sorry for my shitty english)  ;D

Offline toadlife

  • OFPEC Old Skool
  • Former Staff
  • ****
  • Official OFP Editing Center Toad
    • toadlife.net
Re:from 120 km/h to 0 km/h
« Reply #18 on: 18 Mar 2003, 02:18:38 »
Sorry, this script don`t work. There is a error. I think, my computer don`t know the word "setvelocity".

It does too work. I tested that script thouroghly before I pasted it in. I can check in again.
"Whenever you want information on the 'net, don't ask a question; just post a wrong answer." -- Cancer Omega.

Offline toadlife

  • OFPEC Old Skool
  • Former Staff
  • ****
  • Official OFP Editing Center Toad
    • toadlife.net
Re:from 120 km/h to 0 km/h
« Reply #19 on: 18 Mar 2003, 02:43:10 »
Here is an example mission. You start of in an A-10 directly south of the landing strip on the tip of everon. You must touch down right at the beggining of the landing strip or the hook will not catch you.

After succesfully landing and stopping, taxi forward a bit and the same script will catapult you to 200 knots.

Little hints will tell you when the landing hook and catapult are activated.

"Whenever you want information on the 'net, don't ask a question; just post a wrong answer." -- Cancer Omega.

Plizkin

  • Guest
Re:from 120 km/h to 0 km/h
« Reply #20 on: 20 Mar 2003, 15:41:31 »
which version are you using ? I`m using v1.75 ! Could you send me your "config.bin" and "resource.bin", please ? Maybe it works then. ??? I try it, THERE IS A ERROR >:(. Belive me. If I fly in the trigger, I can just read your hint "Landing hook activated" or "Catapult activated".

Plizkin

  • Guest
Re:from 120 km/h to 0 km/h
« Reply #21 on: 20 Mar 2003, 15:59:01 »
if you tell me, how to upload pic`s, then I can show my screenshot with the error.  ;D

Offline Chris Death

  • Former Staff
  • ****
  • Finally Death's gonna get ya
    • OFPEC
Re:from 120 km/h to 0 km/h
« Reply #22 on: 20 Mar 2003, 17:37:00 »
Quote
which version are you using ? I`m using v1.75 !

lol - why don't you upgrade to a version, where setvelocity
command is supported?

Code: [Select]
vehicle setVelocity [x, z, y]
Operand types:
    vehicle: Object
    [x, z, y]: Array
Compatibility:
    Version 1.8 required.
Type of returned value:
    Nothing
Description:
    Set velocity (speed vector) of vehicle.


especially watch this line: Version 1.8 required.

~S~ CD
« Last Edit: 20 Mar 2003, 17:37:58 by Chris Death »
Dont argue with idiots....they will bring you down to their level and beat you there with experience.

How to use Waypoint type Scripted

Offline toadlife

  • OFPEC Old Skool
  • Former Staff
  • ****
  • Official OFP Editing Center Toad
    • toadlife.net
Re:from 120 km/h to 0 km/h
« Reply #23 on: 21 Mar 2003, 06:49:56 »
LMAO!!!
"Whenever you want information on the 'net, don't ask a question; just post a wrong answer." -- Cancer Omega.

Plizkin

  • Guest
Re:from 120 km/h to 0 km/h
« Reply #24 on: 21 Mar 2003, 15:00:54 »
could you make a mission, please ? I`m too stupid to do that   :-\

Offline Chris Death

  • Former Staff
  • ****
  • Finally Death's gonna get ya
    • OFPEC
Re:from 120 km/h to 0 km/h
« Reply #25 on: 21 Mar 2003, 15:16:07 »
Quote
could you make a mission, please ? I`m too stupid to do that  

Does this mean you've already upgraded to a version
higher than 1.75?  ;)

~S~ CD
Dont argue with idiots....they will bring you down to their level and beat you there with experience.

How to use Waypoint type Scripted

Plizkin

  • Guest
Re:from 120 km/h to 0 km/h
« Reply #26 on: 21 Mar 2003, 15:19:30 »
no, its 1.75 yet

Offline Chris Death

  • Former Staff
  • ****
  • Finally Death's gonna get ya
    • OFPEC
Re:from 120 km/h to 0 km/h
« Reply #27 on: 21 Mar 2003, 15:51:48 »
Then read again reply #22

~S~ CD
Dont argue with idiots....they will bring you down to their level and beat you there with experience.

How to use Waypoint type Scripted

Offline granQ

  • Contributing Member
  • **
    • Anrop.se
Re:from 120 km/h to 0 km/h
« Reply #28 on: 22 Mar 2003, 13:42:50 »
thanks toadlife, i hope you don't mind if i use this script in a addon?

Just remove the "z" lowering and it will be almost perfect for my "crashstop". Just gonna see if i can do a nice splash effect with the drop commando.
Cura Posterior

Offline toadlife

  • OFPEC Old Skool
  • Former Staff
  • ****
  • Official OFP Editing Center Toad
    • toadlife.net
Re:from 120 km/h to 0 km/h
« Reply #29 on: 22 Mar 2003, 22:16:29 »
thanks toadlife, i hope you don't mind if i use this script in a addon?


Please do. You may have to tweak it a bit, as I didn't do a whole heck of alot of testing on it, but it's a good 'proof of concept' script.  :thumbsup:
"Whenever you want information on the 'net, don't ask a question; just post a wrong answer." -- Cancer Omega.

Kaboom

  • Guest
Re:from 120 km/h to 0 km/h
« Reply #30 on: 23 Mar 2003, 21:12:48 »
A little bit off-topic, but if you think a C-130 can't land on an aircraft carrier, then you should have a look at

http://www.theaviationzone.com/factsheets/c130_forrestal.asp#videos

It contains a landing and a takeoff video of an US Navy experiment that shows that even a C-130 can land on and start from aircraft carriers. There's also some very interesting information on this site on that experiment as well.

Have fun,
-Kaboom

Offline Sui

  • Former Staff
  • ****
    • OFPEC
Re:from 120 km/h to 0 km/h
« Reply #31 on: 24 Mar 2003, 01:11:20 »
Well I never....

Looks like I was wrong... ;D
but I don't think they'd be able to operate it off a carrier regularly without replacing the landing gear at every 100 hour check! ;)

Plizkin

  • Guest
Re:from 120 km/h to 0 km/h
« Reply #32 on: 25 Mar 2003, 15:18:23 »
you see ? I`m right. 8)

But whats with the MISSION ?
I like a MISSSSSSSIIIIIOOOOOONNNNNN !
WIIIIIIITTHHHHH THE SCRIIIIIIIPTTTT !!!
please.     :P
v1.75
« Last Edit: 25 Mar 2003, 15:19:07 by Plizkin »

Plizkin

  • Guest
Re:from 120 km/h to 0 km/h
« Reply #33 on: 25 Mar 2003, 15:23:09 »
do you know, why I won`t update my OFP ?
alsoooo:
I`ve more than 511 AddOns in my AddOns folder. If I update    
my OFP, I can delete them.
If I mustnÂ't delete them, please, please give me a link for update
1.75 to 1.85, or which version you`re ever using...  :-\

Offline Chris Death

  • Former Staff
  • ****
  • Finally Death's gonna get ya
    • OFPEC
Re:from 120 km/h to 0 km/h
« Reply #34 on: 25 Mar 2003, 15:26:00 »
Plizkin
1) You don't need to delete your addons, when upgrading
to a higher version.

2) A link to where you can get the latest patch (1.91)
you will find on the very first page at OFPEC

www.ofpec.com

~S~ CD
Dont argue with idiots....they will bring you down to their level and beat you there with experience.

How to use Waypoint type Scripted

Plizkin

  • Guest
Re:from 120 km/h to 0 km/h
« Reply #35 on: 25 Mar 2003, 15:32:25 »
I mustn`t ?  That`s fuckin coooool  ;D
But, can I use them then, yet ?
Aaand, you promise ?

Aaand, which version are you using ?
« Last Edit: 25 Mar 2003, 16:29:23 by Plizkin »

Offline Chris Death

  • Former Staff
  • ****
  • Finally Death's gonna get ya
    • OFPEC
Re:from 120 km/h to 0 km/h
« Reply #36 on: 25 Mar 2003, 16:29:36 »
I won't promise you anything  ;)

I can only tell you what i've read and experienced for
myself: addons aren't causing problems when it comes to
patches.

I also won't promise anything because i don't know what else
you were doing with your OFP.

But what i can promise you is:

If you make a backup-copy of your actual OperationFlashopint
folder (to somewhere else on your harddisk), you can do everything you want with your OFP because you still have
a working backup beside  ;)

~S~ CD
Dont argue with idiots....they will bring you down to their level and beat you there with experience.

How to use Waypoint type Scripted

Plizkin

  • Guest
Re:from 120 km/h to 0 km/h
« Reply #37 on: 25 Mar 2003, 17:18:00 »
 okay, lets try v1.91, yeeeehhaaaaaaaa   8)

Offline Sui

  • Former Staff
  • ****
    • OFPEC
Re:from 120 km/h to 0 km/h
« Reply #38 on: 26 Mar 2003, 00:41:02 »
Plizkin,

Could you please stop posting crap?

A page and a half of please's is compeltely unnecessary ::)

Plizkin

  • Guest
Re:from 120 km/h to 0 km/h
« Reply #39 on: 27 Mar 2003, 15:33:09 »
Thank you, Chris Death and toadlife ! You make me really happy !
My next problem is: (I know, thats not the right thread, but...)

i made a music addon. I saved it as a .pbo. and put it in my AddOns folder. Furthermore i put a Description.ext there. It doesn`t work. So i put a config.cpp in it.. The problem is, i cannot use it in the editor. What do i have to do to use it in the Editor?   ???
« Last Edit: 27 Mar 2003, 15:34:53 by Plizkin »

Offline CBFASI

  • Contributing Member
  • **
  • Endure All
    • CBFASI's Homepage
Re:from 120 km/h to 0 km/h
« Reply #40 on: 17 May 2003, 22:10:37 »
Well Toadlife, your Arrestor and Catapult scripting works great...

A few requests (if its possible that is!)

The Catapult
Can it be made that when you hit the catapult trigger it asks for you to lock on, then asks for you to launch??.
It coudl say when locked to the Catapult stop you from movign even if at fullpower, so like the real things your at fullpower as you take off, when released that is.
This idea would solve a problem in that anything that hits the trigger gets catapulted, looks a bit funny if you not in a plane..

Also, an idea for the Arrestor wires..
Possibly having a larger range trigger that as you to put you hook down (I know it wont visually at this time), and the arrestors would only work if a hook was down, also if the hook is still down after you land you cannot move..
This would mean that aircarft could roll over the arrestor wires without them getting 'caught'


Oh Yes... Some piccies.

These are trials on my new (older) version of HMS Hermes, using the scripts that Toadlife has created.

Take off..


Landing..
(The two guys are used as ils for long range approaches, they parrellel to landing run)


Opps.. Low speed takeoff after effect....


During these trials I used the COC swimmer to ensure that even if I ditched I could return to the carrier.

CBF Shipbuilding

Pliskin

  • Guest
Re:from 120 km/h to 0 km/h
« Reply #41 on: 19 May 2003, 15:13:33 »
its under the water, isn`t it ? Like the LSD.

I  know that and I fuckin hate it ! >:(  

Offline CBFASI

  • Contributing Member
  • **
  • Endure All
    • CBFASI's Homepage
Re:from 120 km/h to 0 km/h
« Reply #42 on: 19 May 2003, 18:13:58 »
The plane I used to take off is underwater.. yes (if thats what you mean)
CBF Shipbuilding

Offline KevBaz

  • Members
  • *
Re:from 120 km/h to 0 km/h
« Reply #43 on: 19 May 2003, 19:49:29 »

Pliskin

  • Guest
Re:from 120 km/h to 0 km/h
« Reply #44 on: 20 May 2003, 15:02:33 »
KevBaz his Carrier doesn`t sink. But, is it the same carrier ?



ps.  When you`ll relase USS Hermes ?

Offline KevBaz

  • Members
  • *
Re:from 120 km/h to 0 km/h
« Reply #45 on: 20 May 2003, 15:20:12 »
i dont get what u mean by the carrier sinking.....


also its HMS not USS as its British carrier, and erm well its our m8 www.flashpoint1982.co.uk :D

Pliskin

  • Guest
Re:from 120 km/h to 0 km/h
« Reply #46 on: 20 May 2003, 17:28:18 »
Sorry. I mean   HMS , and not USS .
Please don`t kill me now, let me alive.  ;)


And, I`ve got some question again:
1.) How many Planes can it Carry ?
2.) How many Soldier can it Carry ?
3.) How many Car`s can it Carry ?
4.) Can the AI`s land on it ?



DONÂ'T FORGET:  ITÂ'S     HMS

« Last Edit: 20 May 2003, 17:35:57 by Pliskin »

Offline CBFASI

  • Contributing Member
  • **
  • Endure All
    • CBFASI's Homepage
Re:from 120 km/h to 0 km/h
« Reply #47 on: 20 May 2003, 18:09:43 »
Hermes is out (if you hadn't already noticed...)

It uses the scripts that Toadlife has made to great affect..

http://www.ofpec.com/yabbse/index.php?board=14;action=display;threadid=9622;start=0;boardseen=1
CBF Shipbuilding