PDA

View Full Version : 3 gunners in a helicopter?



madmedic
Sep 16 2007, 02:48
Can a helicopter have a gunner sitting in the co-pilot seat, AND have the two door gunner positions?

RKSL-Rock
Sep 16 2007, 05:11
Yes its possible. You have to define custom sources fo the turrest but it works. I had a 3 turret Lynx and Merlin working a while ago.

madmedic
Sep 16 2007, 06:11
Yes its possible.  You have to define custom sources fo the turrest but it works.  I had a 3 turret Lynx and Merlin working a while ago.
Awesome...thanks

So, would the proxies be like this? : "gunner01" (in copilot seat), "gunner02", and "gunner03" (in the turrets)

This will help me out greatly, if I can make a sort of "psuedo co-pilot" by putting a gunner in the copilot seat and give him radar, but no weapons. (which would make him kind of like an RIO)

RN Malboeuf
Sep 16 2007, 07:55
Helicopter can have any amount of working turrets , but don't try to do the same trick with planes http://forums.bistudio.com/oldsmileys/wink_o.gif

RKSL-Rock
Sep 17 2007, 05:40
Yes its possible.  You have to define custom sources for the turrets but it works.  I had a 3 turret Lynx and Merlin working a while ago.
Awesome...thanks

So, would the proxies be like this? : "gunner01" (in copilot seat), "gunner02", and "gunner03" (in the turrets)

This will help me out greatly, if I can make a sort of "psuedo co-pilot" by putting a gunner in the copilot seat and give him radar, but no weapons. (which would make him kind of like an RIO)

Helicopter can have any amount of working turrets , but try to do the same trick with planes http://forums.bistudio.com/oldsmileys/wink_o.gif
It works on pretty much anything.  The RKSL Herc has 6 crew positions.
<ul>
- Pilot
- Co-Pilot (Gunner 01)
- Flight Engineer (Gunner 02)
- Load Master (Gunner 03)
- Left Door Loadmaster (Gunner 04)
- Right Door Loadmaster (Gunner 05)[/list]

<table border="0" align="center" width="95%" cellpadding="0" cellspacing="0"><tr><td>Code Sample </td></tr><tr><td id="CODE">
class Turrets
{
class MainTurret &#58; NewTurret
{
body = &#34;&#34;;
gun = &#34;&#34;;
gunnerName = &#34;CoPilot&#34;;
commanding = -1;
memoryPointsGetInGunner = &#34;pos gunner&#34;;
memoryPointsGetInGunnerDir = &#34;pos gunner dir&#34;;
weapons&#91;&#93; = {};
magazines&#91;&#93; = {};
castGunnerShadow = true;
viewGunnerShadow = true;
gunnerAction = &#34;UH60_Pilot&#34;;
gunnerInAction = &#34;UH60_Pilot&#34;;
};
class EngTurret &#58; MainTurret
{
gunnerName = &#34;Flight Engineer&#34;;
proxyIndex = 2;
};
class LoadieTurret &#58; MainTurret
{
gunnerName = &#34;Load Master&#34;;
proxyIndex = 3;
};
class LeftDoorLoadie &#58; MainTurret
{
gunnerName = &#34;Left Door Loadmaster&#34;;
proxyIndex = 4;
};
class RightDoorLoadie &#58; MainTurret
{
gunnerName = &#34;Right Door Loadmaster&#34;;
proxyIndex = 5;
};
};
[/QUOTE]

RN Malboeuf
Sep 17 2007, 05:54
i agree you can add any amout of turrets, but from your config i see you haven&#39;t tried to make them fire http://forums.bistudio.com/oldsmileys/wink_o.gif try -it won&#39;t work correctly

RKSL-Rock
Sep 17 2007, 06:06
i agree you can add any amout of turrets, but from your config i see you haven&#39;t tried to make them fire http://forums.bistudio.com/oldsmileys/wink_o.gif try -it won&#39;t work correctly
Then you aren&#39;t defining the weapons and source properly in the model or config.

RN Malboeuf
Sep 17 2007, 13:58
Quote[/b] ]Then you aren&#39;t defining the weapons and source properly in the model or config.
false. have you ever tried ? please do not report what you haven&#39;t tried by yourself http://forums.bistudio.com/oldsmileys/wink_o.gif

madmedic
Sep 18 2007, 13:52
Yes its possible.  You have to define custom sources for the turrets but it works.  I had a 3 turret Lynx and Merlin working a while ago.
Awesome...thanks

So, would the proxies be like this? : "gunner01" (in copilot seat), "gunner02", and "gunner03" (in the turrets)

This will help me out greatly, if I can make a sort of "psuedo co-pilot" by putting a gunner in the copilot seat and give him radar, but no weapons. (which would make him kind of like an RIO)

Helicopter can have any amount of working turrets , but try to do the same trick with planes http://forums.bistudio.com/oldsmileys/wink_o.gif
It works on pretty much anything.  The RKSL Herc has 6 crew positions.
<ul>
- Pilot
- Co-Pilot (Gunner 01)
- Flight Engineer (Gunner 02)
- Load Master (Gunner 03)
- Left Door Loadmaster (Gunner 04)
- Right Door Loadmaster (Gunner 05)[/list]

<table border="0" align="center" width="95%" cellpadding="0" cellspacing="0"><tr><td>Code Sample </td></tr><tr><td id="CODE">
class Turrets
{
class MainTurret &#58; NewTurret
{
body = &#34;&#34;;
gun = &#34;&#34;;
gunnerName = &#34;CoPilot&#34;;
commanding = -1;
memoryPointsGetInGunner = &#34;pos gunner&#34;;
memoryPointsGetInGunnerDir = &#34;pos gunner dir&#34;;
weapons&#91;&#93; = {};
magazines&#91;&#93; = {};
castGunnerShadow = true;
viewGunnerShadow = true;
gunnerAction = &#34;UH60_Pilot&#34;;
gunnerInAction = &#34;UH60_Pilot&#34;;
};
class EngTurret &#58; MainTurret
{
gunnerName = &#34;Flight Engineer&#34;;
proxyIndex = 2;
};
class LoadieTurret &#58; MainTurret
{
gunnerName = &#34;Load Master&#34;;
proxyIndex = 3;
};
class LeftDoorLoadie &#58; MainTurret
{
gunnerName = &#34;Left Door Loadmaster&#34;;
proxyIndex = 4;
};
class RightDoorLoadie &#58; MainTurret
{
gunnerName = &#34;Right Door Loadmaster&#34;;
proxyIndex = 5;
};
};
[/QUOTE]
Thank you so much...That is exactly the information I was looking for.

Is there any way to configure it so the player can choose which turret he gets in?...or switch between the different turrets?

RN Malboeuf
Sep 18 2007, 19:38
look for compartment parameter;)

madmedic
Sep 19 2007, 01:36
look for compartment parameter;)
Look where?

RKSL-Rock
Sep 19 2007, 01:45
look for compartment parameter;)
Look where?
You wont need to worry about the conpartment parameter if you use the code i showed you above.  Its assumed that it one compartment as default which means you can switch between positions by default using the action menu providing that the other positions are not already occupied.

When you try to get in instead of just clicking at the icon scroll through the action menu and you can choose your position.



Quote[/b] ]Then you aren&#39;t defining the weapons and source properly in the model or config.
false. have you ever tried ? please do not report what you haven&#39;t tried by yourself  http://forums.bistudio.com/oldsmileys/wink_o.gif
Having gone back and taken a look at my original AC-130 (ArmA 1.0/1.02) test bed and confirmed it with Suma, I have to apologise.  I obviously hadn’t noticed the problem with the guns.  But please try to be less patronising next time.

BraTTy
Sep 19 2007, 03:42
So what your saying is that turrets on planes still are not possible?

CSJ
Sep 19 2007, 03:45
Total BUMMER hey BraTTy http://forums.bistudio.com/oldsmileys/mad_o.gif

RKSL-Rock
Sep 19 2007, 03:54
So what your saying is that turrets on planes still are not possible?
You can add them and the gunner can move the turret in first person view.  BUT they can only fire along the axis of the plane.

To quote Suma directly:


Quote[/b] ]...turret support for [fixed wing] aircraft is very incomplete. Weapon positions and directions are not considered from turrets, but from the main body instead.

BraTTy
Sep 19 2007, 05:16
Well thank you for that info. I kinda figured they still weren&#39;t working.
I will concentrate on my character animations then (liking the new o2)
Might still build a fighter or two anyways

my rants:
Its pouring my mojo down the drain

WTH a chopper tilts more than a plane.You can have multiple turrets on that?

How medieval ... turrets on planes were common pre-WW1 until they figured out they could shoot through the props, Then the fighter plane was born.All war planes before then had to have a tailgunner for protection

Oh well, I may still muck with it someday
Thanks for your work involved

RN Malboeuf
Sep 19 2007, 05:44
So what your saying is that turrets on planes still are not possible?

Quote[/b] ]...turret support for [fixed wing] aircraft is very incomplete. Weapon positions and directions are not considered from turrets, but from the main body instead.
any info we can get it fixed ?
http://bugs.armed-assault.net/view.php?id=2739
sign up http://forums.bistudio.com/oldsmileys/smile_o.gif

shinRaiden
Sep 19 2007, 18:39
Not likely, don&#39;t waste your time. It goes into some really esoteric stuff relating to simulated speeds and frame calculations.

RKSL-Rock
Sep 19 2007, 19:16
Not likely, don&#39;t waste your time. It goes into some really esoteric stuff relating to simulated speeds and frame calculations.
Now there is a positive attitude if i ever heard one.

shinRaiden
Sep 20 2007, 00:01
I was referring to the requests to pester the dev&#39;s about this matter. I don&#39;t remember where I saw the discussion, and it was probably internal, but &#39;switching the code on&#39; introduces all sorts of weirdness due to frame rate calculations.

My point in bringing this up is that like with the demands for destructible buildings, there&#39;s all sorts of &#39;nice-to-have&#39; things that when you turn them on makes the entire system go &#39;squiffy&#39;. Remember, you don&#39;t have the liberty of concurrency in virtual simulations, so even microsecond linear latencies in simulation make the results go bonkers.

That&#39;s not to say that it should be just ignored and buried. Far from it, I think it would be a particularly delightful addition - working properly. But I also think that there are much higher priorities, and the community needs to be realistic and pragmatic before they go off pestering people about every last item.

Pathetic_Berserker
Sep 20 2007, 10:28
I was curious, could this idea be &#39;tricked up&#39; using a helo config?

RKSL-Rock
Sep 20 2007, 14:35
I was curious, could this idea be &#39;tricked up&#39; using a helo config?
Not using a helo config no. At least not in any meaningful way i can think of. But discussion are underway to find a way around it.

RN Malboeuf
Sep 20 2007, 14:50
Quote[/b] ]I was curious, could this idea be &#39;tricked up&#39; using a helo config?
1. try to force helo to fly like a plane
2. try to force helo to land like a plane (more difficult then the first one)