Jump to content
The Dark Mod Forums

Fan Mission: Iris by WellingtonCrab [TDM 2.10 Required] (2022/02/13)


Wellingtoncrab

Iris - Connections Contest Scoring  

63 members have voted

  1. 1. Story Quality and Theme (Stars)

    • 5
      44
    • 4
      15
    • 3
      4
    • 2
      0
    • 1
      0
  2. 2. Gameplay Quality (Stars)

    • 5
      52
    • 4
      9
    • 3
      1
    • 2
      1
    • 1
      0
  3. 3. Visual Quality (Stars)

    • 5
      60
    • 4
      3
    • 3
      0
    • 2
      0
    • 1
      0


Recommended Posts

Hi. I'm new to TDM and Thief in general. Started playing Iris a couple of days back. I love everything about the mission. There were a couple of bugs, though.

In the starter area there's a niche with a desk and some readable and a chest with bombs and arrows. The guard that goes there started walking angrily into the wall.

Second bug was in Grimkirk. There's a

Spoiler

hidden passage that is shown only through the magical glasses. The guys I  Grimkirk spotted me and ran through the door inside the hidden area. 

And anyway, great experience overall. I loved everything, including the 

Spoiler

secrets of the void, the somewhat melancholic storytelling about a man that got something from the abandoned house for nostalgia's sake. 

Loved every inch of it :)

Edited by Keruah
  • Like 1
  • Thanks 1
Link to comment
Share on other sites

2 hours ago, Cotillion said:

Currently playing this great mission! One question I have is:

 

  Hide contents

Does the snake lockpick replace both normal ones or do I still need one of them?

 

Hi @Cotillion, thanks for playing!

Spoiler

Either lock pick is not required to complete the mission, but you can find both the triangle and snake pick in the mission and they both have uses.

 

-=  IRIS  =-    ♦    = SLL =

Link to comment
Share on other sites

The "peculiar lenses" don't work for me.
Neither the ones I bought, nor the second ones I found in some tower.

Every CInventoryItem (C++ object) stores pointer to entity in m_Item.
In my case, this pointer is dead, i.e. it points to an entity which was removed some time ago.
I guess for the glasses to work, it should point to the "atdm:xray_glasses" entity.

The reason why it works for some people is either because the glasses don't die for them, or because they die but not completely and no other entity created afterwards takes its entity number.

So the main question is: who kills the glasses entity and why?

UPDATE: Just to add some more detail.
I think I'm playing clean latest version with latest TDM beta.

I got lost pretty quickly, so I completed all the objectives and explored most of the map first. Then I returned to the starting area and went to buy a sword. There I noticed the glasses, bought them and tried to use them instantly: they did not work. Then I explored some more and found second glasses in the tower + a piece of advice to use them. Now I have two items, but they don't work anyway.

  • Thanks 1
Link to comment
Share on other sites

3 hours ago, stgatilov said:

Every CInventoryItem (C++ object) stores pointer to entity in m_Item.
In my case, this pointer is dead, i.e. it points to an entity which was removed some time ago.
I guess for the glasses to work, it should point to the "atdm:xray_glasses" entity.

If I understand correctly it sounds like something is basically removing the actual glasses entity from game so the inventory item points at nothing?

Looking at the scripts this is the area where I see handling of the xray glasses overlapping with with other inventory items - basically it keeps the current inventory item as glasses after picking up other inventory objects so you don't have to constantly scroll through the inventory to to enable/disable them. 

Not sure if something is going haywire here:

// dirty workaround to stop the inventory from changing away from the xray glasses if the player picks up loot or items while wearing them
void playertools_xray_glasses::loot_loop()
{
    string frobHighlighted;
    string selectedCurrent;
    string selectedPrevious;

    while( wearing_xray_glasses )
    {
        selectedCurrent = $player1.getCurInvItemEntity().getKey("classname");
        if( $player1.getFrobbed() )    frobHighlighted = $player1.getFrobbed().getKey("classname");

        // has the inventory switched away from the xray glasses?
        if ( selectedCurrent != selectedPrevious && selectedPrevious == getKey("classname") )
        {
            // has it switched because the player has frobbed an item or some loot?
            if( selectedCurrent == frobHighlighted
            ||  selectedCurrent == "atdm:inv_loot_info_item" )
            {
                sys.wait(0.65);
                
                // if the player still has that item selected, switch back to the xray glasses
                if( selectedCurrent == $player1.getCurInvItemEntity().getKey("classname") && wearing_xray_glasses )
                {
                    $player1.setCurInvItem( getKey("inv_name") );    //switch back to the xray glasses
                }
            }
        }

        selectedPrevious = selectedCurrent;

        sys.waitFrame();
    }
}    

-=  IRIS  =-    ♦    = SLL =

Link to comment
Share on other sites

I don't see anything here that could kill an entity.

By the way, I also remembered that this mission does not allow to customize FOV.
I accidentally had 95 degrees and noticed that my view is glitching when I grab some item.
It turned out that my FOV is hardlocked to 90 degrees, but when I grab some items it temporarily returns to player setting.

 

Link to comment
Share on other sites

That bug has been around for over a decade though.

In some missions, changing FOV in console would only work when frobbing an item.

I always assumed it was a bug in the game, but it's possible it's a bug in certain missions due to scripting. But I've definitely encountered it a LONNNNNNNG time ago.

I always assumed I'd taste like boot leather.

 

Link to comment
Share on other sites

5 minutes ago, stgatilov said:

By the way, I also remembered that this mission does not allow to customize FOV.

I know of no reason why it wouldn't - the xray glasses are really the only thing that does any kind of screen effect. There is no FOV slider in the game so it was not tested admittedly.

7 minutes ago, stgatilov said:

I don't see anything here that could kill an entity.

I am not recalling anything really that interacts with the players inventory directly in the mission. Dropping the glasses with "Drop Inv. Item" and reacquiring them doesn't restore the item to the players inventory either I am guessing?

-=  IRIS  =-    ♦    = SLL =

Link to comment
Share on other sites

4 minutes ago, Wellingtoncrab said:

I know of no reason why it wouldn't - the xray glasses are really the only thing that does any kind of screen effect. There is no FOV slider in the game so it was not tested admittedly.

I am not recalling anything really that interacts with the players inventory directly in the mission. Dropping the glasses with "Drop Inv. Item" and reacquiring them doesn't restore the item to the players inventory either I am guessing?

 

What? There's been an FOV slider in the game for years now.

  • Haha 1

I always assumed I'd taste like boot leather.

 

Link to comment
Share on other sites

8 minutes ago, Wellingtoncrab said:

I am not recalling anything really that interacts with the players inventory directly in the mission. Dropping the glasses with "Drop Inv. Item" and reacquiring them doesn't restore the item to the players inventory either I am guessing?

The previous reporter who had non-working glasses said game crashes on drop.
The same happens for me.

As you might guess, most of the code expects the entity of the inventory item to be alive.
Anyway, I don't think it is possibled to drop inventory item if it has no entity, because logically it should just put this entity back into the world. If it's dead, it can kill the inv. item, but I don't think it can resurrect the entity.

  • Thanks 1
Link to comment
Share on other sites

20 minutes ago, stgatilov said:

If it's dead, it can kill the inv. item, but I don't think it can resurrect the entity.

I guess I want to be sure I understand the context of entity "death" - both purchasing the glasses and picking them up adds a atdm:xray_glasses item to the players inventory. You mentioned basically the inventory slot which should be the be pointing at atdm:xray_glasses is pointing at nothing

So it probably got "killed":

-In the process of being added to inventory (in this case it was a purchase)

-Upon the first attempt at using it (it sounds like it immediately did not work)

-Or in the very small window in between

Unless the entity in an inventory slot can be "dead" prior to it ever being added?

-=  IRIS  =-    ♦    = SLL =

Link to comment
Share on other sites

  • 2 months later...

This is just amazing! I'm a latecomer to TDM and have only tried out a few FMs. I didn't think anything could ever approach the immersive experience of The Painter's Wife, until now. Tip of a HUGE hat to Wellingtoncrab and their team for what must have been an enormous labor of love!

Now to a request for some help re. House Ursine:

Spoiler

I have stared at the portrait in the steward's room until I'm seeing spots, with every combination of specs, lanterns, candles, standing on chairs, leaning left and right, and every video tweak in the Settings menu. Using the specs, I can see the creature appearing over the portrait (brings to mind "From Beyond" - NICE), and I can make out a few brownish smudges that might be the bloody scrawl previously mentioned, but I'm convinced that no amount of eye crossing is going to reveal the vault combination for me. Perhaps something with my display. It would feel like a defeat for me to noclip through the door. A little help?  - Cheers!

 

  • Like 1
Link to comment
Share on other sites

@Grey Mauser thanks for taking the time to play! I am glad to hear you are enjoying it.

14 minutes ago, Grey Mauser said:

 

  Hide contents

I have stared at the portrait in the steward's room until I'm seeing spots, with every combination of specs, lanterns, candles, standing on chairs, leaning left and right, and every video tweak in the Settings menu. Using the specs, I can see the creature appearing over the portrait (brings to mind "From Beyond" - NICE), and I can make out a few brownish smudges that might be the bloody scrawl previously mentioned, but I'm convinced that no amount of eye crossing is going to reveal the vault combination for me. Perhaps something with my display. It would feel like a defeat for me to noclip through the door. A little help?  - Cheers!

 

Yeah at some point the glasses effect became much more subtle than it was during development and this should probably get fixed at some point. It seems near impossible for a lot of players to make out.

Spoiler

Try looking in the bottom left corner of the portrait with the lantern on and see if you can make something out.

 

  • Like 1

-=  IRIS  =-    ♦    = SLL =

Link to comment
Share on other sites

@Wellingtoncrab - thanks for the fast response!

Spoiler

Now I see it! I'd stared at the area of the face forever (I'll be seeing that in my dreams - shudder) and had convinced myself that I knew where it was but just couldn't resolve the image, so I couldn't even see the rest of the portrait. A mind is a terrible thing . . .

Thanks again for all your hard work - I'm looking forward to driving on with this FM!

  • Like 1
Link to comment
Share on other sites

5 hours ago, Grey Mauser said:

This is just amazing! I'm a latecomer to TDM and have only tried out a few FMs. I didn't think anything could ever approach the immersive experience of The Painter's Wife, until now.

Iris is one of the very best, for sure.

  • Like 1
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.


  • Recent Status Updates

    • nbohr1more

      Was checking out old translation packs and decided to fire up TDM 1.07. Rightful Property with sub-20 FPS areas yay! ( same areas run at 180FPS with cranked eye candy on 2.12 )
      · 2 replies
    • taffernicus

      i am so euphoric to see new FMs keep coming out and I am keen to try it out in my leisure time, then suddenly my PC is spouting a couple of S.M.A.R.T errors...
      tbf i cannot afford myself to miss my network emulator image file&progress, important ebooks, hyper-v checkpoint & hyper-v export and the precious thief & TDM gamesaves. Don't fall yourself into & lay your hands on crappy SSD
       
      · 3 replies
    • OrbWeaver

      Does anyone actually use the Normalise button in the Surface inspector? Even after looking at the code I'm not quite sure what it's for.
      · 7 replies
    • Ansome

      Turns out my 15th anniversary mission idea has already been done once or twice before! I've been beaten to the punch once again, but I suppose that's to be expected when there's over 170 FMs out there, eh? I'm not complaining though, I love learning new tricks and taking inspiration from past FMs. Best of luck on your own fan missions!
      · 4 replies
×
×
  • Create New...