Fulqrum Publishing Home   |   Register   |   Today Posts   |   Members   |   UserCP   |   Calendar   |   Search   |   FAQ

Go Back   Official Fulqrum Publishing forum > Fulqrum Publishing > IL-2 Sturmovik: Cliffs of Dover > Technical threads > Controls threads

Controls threads Everything about controls in CoD

Reply
 
Thread Tools Display Modes
  #281  
Old 02-28-2011, 04:47 PM
blampars blampars is offline
Approved Member
 
Join Date: Aug 2010
Posts: 109
Default

Quote:
Originally Posted by ElAurens View Post
My CH gear for IL2 is configured with the in game interface.

It was easy, which the CH Contol Monitor certainly is not, and I don't have another program running in the background.
The only problem with configuring it in game is you effectively limit yourself to 1 mode for your buttons, not to mention shift buttons which I find even more useful than modes. Granted there are a lot of buttons to use, but it's nice to have modes IMO.

CH Control Manager doesn't have to run in the background. When you download your map to your devices, you can close CH CM. The map is on/in your devices at that point.

If you decide at some point that you wanna experiment more with modes/shift keys and CH CM, I can give you my command file so you don't have to set one up yourself.

cheers,
-b
Reply With Quote
  #282  
Old 02-28-2011, 06:34 PM
Majo Majo is offline
Approved Member
 
Join Date: Oct 2009
Posts: 113
Default If I could anyone can...

I highly recommend to give this a try:

http://www.ch-hangar.com/files/Docs/..._Guide_III.pdf
Edit, if you have some problems with acrobat...
http://simhq.net/downloads/technology/CM_D3.zip

It is like always, if nothing works read the manual and here you have a quite good manual. You might think that what you have is enough; still there are plenty of possibilities still to be discovered.

If I could anyone can.

Salutes Majo.

Last edited by Majo; 02-28-2011 at 06:42 PM.
Reply With Quote
  #283  
Old 03-04-2011, 10:55 PM
SsSsSsSsSnake SsSsSsSsSnake is offline
Approved Member
 
Join Date: Nov 2009
Location: England
Posts: 288
Default

absolutely love the pedals,so smooth after using either stick or throttle for rudder,
Reply With Quote
  #284  
Old 03-04-2011, 11:09 PM
Sauf Sauf is offline
Approved Member
 
Join Date: Oct 2010
Posts: 436
Default

I ordered my saitek combat rudders last night, hopefully get them this week if they have in stock. It says on the stores site that they do but i have been bitten to many times to bekieve them. Now to start some serious saving for a warthog to go with them.
After reading the reviews im more than ever aware now of the slack and difficulty aiming with my x52, even though i have various things, bits of cd, matchsticks ect, stuffed in to try and stiffen the tension.

Cheers
Reply With Quote
  #285  
Old 03-05-2011, 05:59 AM
SsSsSsSsSnake SsSsSsSsSnake is offline
Approved Member
 
Join Date: Nov 2009
Location: England
Posts: 288
Smile

lol Sauf, i found that with the x52,hope you get your peds quickly
Reply With Quote
  #286  
Old 03-05-2011, 07:56 AM
Hecke
Guest
 
Posts: n/a
Default

Quote:
Originally Posted by Sauf View Post
I ordered my saitek combat rudders last night, hopefully get them this week if they have in stock.
Cheers
Could you please make a little "review" of them. I'm also thinking of buying them but there seem to be no reviews in the internet yet.
Thx in advance
Reply With Quote
  #287  
Old 03-05-2011, 08:21 AM
Sauf Sauf is offline
Approved Member
 
Join Date: Oct 2010
Posts: 436
Default

Quote:
Originally Posted by Hecke View Post
Could you please make a little "review" of them. I'm also thinking of buying them but there seem to be no reviews in the internet yet.
Thx in advance
Np mate, i found the same problem, will post thoughts when i get them.
Reply With Quote
  #288  
Old 03-05-2011, 08:43 PM
madrebel madrebel is offline
Approved Member
 
Join Date: Feb 2011
Posts: 85
Default

Quote:
Originally Posted by ghodan View Post
But i dont like the CH pro throttle: Almost no resistance and flat travel.And no rotary's.
this
Code:
//---------------------------------------------------------------
//Mini Stick Rotary TRIM
//---------------------------------------------------------------

// Rudder Iinitial Centering
IF( FIRSTSCAN ) THEN
CMS.A2 = 128;
CMS.A1 = 128;
A1 = 128; //CONTROL VALUE FOR CMS.A2 (128 TO 0)
A2 = 128; //CONTROL VALUE FOR CMS.A2 (128 TO 255)
A3 = 128; //CONTROL VALUE FOR CMS.A1 (128 TO 0)
A4 = 128; //CONTROL VALUE FOR CMS.A1 (128 TO 255)
A10 = 50; // THIS IS THE INCREMENTAL FACTOR FOR Y AXIS. THE HIGHER THE SLOWER MOVEMENT THRU AXIS
ENDIF

A20 = 0; // Y AXIS
A30 = 0; // X AXIS

IF ([JS2.A2-128 < 0]) THEN A20 = -1* (JS2.A2 - 128);
ELSE
A20 = (JS2.A2-128); // Y AXIS
ENDIF

IF ([JS2.A1-128 < 0]) THEN A30 = -1* (JS2.A1-128);
ELSE
A30 = (JS2.A1-128); //X AXIS
ENDIF
// Y AXIS
IF ([A20 > A30]) THEN
CMS.A1 = CMS.A1;
SEQUENCE
WHILE ([JS2.A2 < A1] AND [JS2.A2 <=121]);
IF ([CMS.A2 + (JS2.A2 - 128)/A10 < 0]) THEN CMS.A2 = 0;
ELSE
CMS.A2= CMS.A2 + (JS2.A2 - 128)/A10;
ENDIF
delay(1);
IF ([JS2.A2 >= 121] AND [JS2.A2 < 135]) THEN
A1=0;
ELSE
IF ([JS2.A2 > A1]) THEN A1 = A1;
ELSE
A1= JS2.A2;
ENDIF
ENDIF
ENDSEQUENCE
A1=128;
SEQUENCE
WHILE ([JS2.A2 > A2] AND [JS2.A2 >= 135]);
IF ([CMS.A2 + (JS2.A2 - 128)/A10 > 255]) THEN CMS.A2 = 255;
ELSE
CMS.A2= CMS.A2 + (JS2.A2 - 128)/A10;
ENDIF
delay(1);
IF ([JS2.A2 >= 121] AND [JS2.A2 <= 135]) THEN
A2= 255;
ELSE
IF ([JS2.A2 < A2]) THEN A2 = A2;
ELSE
A2= JS2.A2;
ENDIF
ENDIF
ENDSEQUENCE
A2=128;
ENDIF
// X AXIS
IF ([A20 < A30]) THEN
CMS.A2 = CMS.A2;
SEQUENCE
WHILE ([JS2.A1 < A3] AND [JS2.A1 <=121]);
IF ([CMS.A1 + (JS2.A1 - 128)/A10 < 0]) THEN CMS.A1 = 0;
ELSE
CMS.A1= CMS.A1 + (JS2.A1 - 128)/A10;
ENDIF
delay(1);
IF ([JS2.A1 >= 121] AND [JS2.A1 < 135]) THEN
A3=0;
ELSE
IF ([JS2.A1 > A1]) THEN A3 = A3;
ELSE
A3= JS2.A1;
ENDIF
ENDIF
ENDSEQUENCE
A3=128;
SEQUENCE
WHILE ([JS2.A1 > A4] AND [JS2.A1 >= 135]);
IF ([CMS.A1 + (JS2.A1 - 128)/A10 > 255]) THEN CMS.A1 = 255;
ELSE
CMS.A1= CMS.A1 + (JS2.A1 - 128)/A10;
ENDIF
delay(1);
IF ([JS2.A1 >= 121] AND [JS2.A1 <= 135]) THEN
A4= 255;
ELSE
IF ([JS2.A1 < A2]) THEN A4 = A4;
ELSE
A4= JS2.A1;
ENDIF
ENDIF
ENDSEQUENCE
A4=128;
ENDIF


if (js1.b10) then cms.a2 = 128;  //button to center axis 2
endif

if (js1.b8) then cms.a1 = 128;   //button to center axis 1
endif
turns the mini stick into basically a two way rotary. you need to set a decent sized dead band as the mini sticks are notoriously bad at centering but this is just as responsive as my old x45s rotaries. the other thing you need to do is unmap the ministick completely (dx axis = none) then go into the cms controls tab and set cms 1 and cms 2 as cm device1 axis', mine are set to U and V axis.

everyone always complains about the rotaries, well, the above gives you rotaries.
Reply With Quote
  #289  
Old 03-05-2011, 08:52 PM
SsSsSsSsSnake SsSsSsSsSnake is offline
Approved Member
 
Join Date: Nov 2009
Location: England
Posts: 288
Default

thanks for that but i dont understand where all that goes?
Reply With Quote
  #290  
Old 03-05-2011, 09:17 PM
madrebel madrebel is offline
Approved Member
 
Join Date: Feb 2011
Posts: 85
Default

Quote:
Originally Posted by blampars View Post
Combatstick tab, mode 1, dx device drop down menu, CM Device 1.
Pro Pedals tab, mode 1, dx device drop down menu, CM Device 2.
Throttle tab, Mode 1, dx device drop down menu, CM Device 3.
why do this when you can create one logical controller?

you can combine the stick, throttle, and pedals all into CM device 1. Doing this allows the mode functionality to really shine too as it triples your options.
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 10:30 AM.


Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright © 2007 Fulqrum Publishing. All rights reserved.