Special Aircraft Service

Please login or register.

Login with username, password and session length
Advanced search  
Pages: [1]   Go Down

Author Topic: Tropical question.  (Read 258 times)

0 Members and 1 Guest are viewing this topic.

Old_DaD

  • member
  • Offline Offline
  • Posts: 447
  • Fully engaged in the war on senior moments.
Tropical question.
« on: April 16, 2024, 11:36:59 AM »

Hello, a very good day/evening etc to all,
On cbi maps, or indeed other PTO, Asia maps .. are some aircraft, like Hurricane for instance, supposed to appear with their tropical filters?
Did they all have to have trop filters to operate in those theatres?
Understandably the desert aircraft would need their filters, but in far east jungle tropics?
Sorry in advance for this ignorance.
 
Logged

Frankiek

  • SAS Team
  • member
  • Offline Offline
  • Posts: 2325
Re: Tropical question.
« Reply #1 on: April 16, 2024, 01:04:01 PM »

Up to 409 we had only three types of maps: summer, winter and desert therefore several PTO maps from the old days are classified as desert and that is why you will see the tropical filter showing in the pacific and CBI. From 4.10 onward additional theaters like PTO, CBI, ETO were added.   
Logged

Old_DaD

  • member
  • Offline Offline
  • Posts: 447
  • Fully engaged in the war on senior moments.
Re: Tropical question.
« Reply #2 on: April 17, 2024, 01:29:28 AM »

Thanks Frankiek,
Only that I chose a  QMB mission, using the Burma map, and the Hurricane MKIIb didn't have it's trop filter attached. I thought that it would automatically be there, when desert, CBI, Pacific maps are used and that skin type is used.
Was the stock Hurricane MkIIb.
Ok.
Logged

Trav

  • member
  • Offline Offline
  • Posts: 24
Re: Tropical question.
« Reply #3 on: April 17, 2024, 01:54:28 AM »

As Frankiek says, the map selection isn't perfect. That's why Knochenlutscher has made independent trop versions of the Hurricanes and Spits, along with incorporating some excellent 3d improvements.
Logged

Old_DaD

  • member
  • Offline Offline
  • Posts: 447
  • Fully engaged in the war on senior moments.
Re: Tropical question.
« Reply #4 on: April 17, 2024, 12:35:12 PM »

Thanks.
I have those in my #WAW, and they are very good indeed .
Shame there are no other skins for them.
Logged

Knochenlutscher

  • Flying Ass Clown #10
  • Modder
  • member
  • Offline Offline
  • Posts: 4481
  • aka Segfej
Re: Tropical question.
« Reply #5 on: April 22, 2024, 12:26:31 PM »

The Filter Types show up on Desert Maps.

Code: [Select]
        if(com.maddox.il2.ai.World.cur().camouflage == 2)
            hierMesh().chunkVisible("filter", true);
        else
            hierMesh().chunkVisible("filter", false);

Code: [Select]
    public void setCamouflage(java.lang.String s)
    {
        if("SUMMER".equalsIgnoreCase(s))
            camouflage = 0;
        else
        if("WINTER".equalsIgnoreCase(s))
            camouflage = 1;
        else
        if("DESERT".equalsIgnoreCase(s))
            camouflage = 2;
        else
        if("PACIFIC".equalsIgnoreCase(s))
            camouflage = 3;
        else
        if("ETO".equalsIgnoreCase(s))
            camouflage = 4;
        else
        if("MTO".equalsIgnoreCase(s))
            camouflage = 5;
        else
        if("CBI".equalsIgnoreCase(s))
            camouflage = 6;
        else
            camouflage = 0;

Code: [Select]
com\maddox\il2\ai\World.class
Logged
Wiseman : "Did you speak the exact words?" Ash : "Look, maybe I didn't say every single little tiny syllable, no. But basically I said them, yeah."
Pages: [1]   Go Up
 

Page created in 0.071 seconds with 25 queries.