Facebook Twitter YouTube Frictional Games | Forum | Privacy Policy | Dev Blog | Dev Wiki | Support | Gametee


Thread Rating:
  • 2 Vote(s) - 4.5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Disabling Monster Effects
Adny Offline
Posting Freak

Posts: 1,766
Threads: 6
Joined: Mar 2012
Reputation: 173
#11
RE: Disabling Monster Effects

There are 2-3 types of blockboxes; experiment with the different kinds.

I rate it 3 memes.
09-09-2012, 06:54 PM
Find
Damascus Rose Offline
Posting Freak

Posts: 1,107
Threads: 22
Joined: Mar 2012
Reputation: 24
#12
RE: Disabling Monster Effects

Nope, I've tried both block boxes, big size and small, doesn't work. Are you sure that this is possible? Should I just try to give a solid object a transparent texture and then place it in between, would that work?

[Image: damascusrose2.png]
09-09-2012, 09:40 PM
Find
Kreekakon Offline
Pick a god and pray!

Posts: 3,063
Threads: 70
Joined: Mar 2012
Reputation: 124
#13
RE: Disabling Monster Effects

(09-09-2012, 09:40 PM)Damascus Rose Wrote: Nope, I've tried both block boxes, big size and small, doesn't work. Are you sure that this is possible? Should I just try to give a solid object a transparent texture and then place it in between, would that work?
I did something similar in my mod with a see through glass texture. Enemies cannot see through those, so I assume it should work.

[Image: Tv0YgQb.gif]
Image by BandyGrass
(This post was last modified: 09-09-2012, 09:58 PM by Kreekakon.)
09-09-2012, 09:58 PM
Find
The chaser Offline
Posting Freak

Posts: 2,486
Threads: 76
Joined: Jun 2012
Reputation: 113
#14
RE: Disabling Monster Effects

Have you tried invisible box mass?

THE OTHERWORLD (WIP)
[Image: k6vbdhu]

Aculy iz dolan.
09-09-2012, 11:15 PM
Find
Robby Offline
Posting Freak

Posts: 2,549
Threads: 38
Joined: Jun 2009
Reputation: 47
#15
RE: Disabling Monster Effects

I once tried that with a sewer grate. I could see the monster, but he couldn't see me. And the vision blur wasn't there.

Infrequently active. Don't expect an immediate response. Best to contact me at a different locale. If I create a thread, expect me to be quite active.
09-10-2012, 07:35 AM
Website Find
Damascus Rose Offline
Posting Freak

Posts: 1,107
Threads: 22
Joined: Mar 2012
Reputation: 24
#16
RE: Disabling Monster Effects

(09-09-2012, 11:15 PM)The chaser Wrote: Have you tried invisible box mass?
What do you mean?

[Image: damascusrose2.png]
09-13-2012, 10:07 PM
Find
Varrsharighall Offline
Junior Member

Posts: 6
Threads: 1
Joined: Sep 2012
Reputation: 0
#17
RE: Disabling Monster Effects

Try to open in notepad file called game.cfg (in Amnesia/redist/config).
There are several values. Try to change few:

<Player_General

FlashbackRadialBlurSize = "0.09"   // to "0.0"
FlashbackRadialBlurStartDist = "0.3"   // to "0.0"

<Player_Sanity
NearEnemyDecrease = "0.3"   // to "0.0"

There are much more about darkness, enemies, critters, increasing and decreasing values. Yet, I still cannot remove blur vision completely by this; perhaps someone else will find solutionWink

EDIT

Oh right, I think I resolve this so far. Just delete shader called posteffect_radial_blur_frag.glsl in Amnesia/redist/core/shaders. Don't forget to make back up of this file!! Blurring effect is remove completely. I notice no issues so far (but be careful).
(This post was last modified: 09-14-2012, 08:04 PM by Varrsharighall.)
09-14-2012, 06:11 PM
Find
The chaser Offline
Posting Freak

Posts: 2,486
Threads: 76
Joined: Jun 2012
Reputation: 113
#18
RE: Disabling Monster Effects

(09-13-2012, 10:07 PM)Damascus Rose Wrote:
(09-09-2012, 11:15 PM)The chaser Wrote: Have you tried invisible box mass?
What do you mean?
There is a block box mass. Maybe that one works.

THE OTHERWORLD (WIP)
[Image: k6vbdhu]

Aculy iz dolan.
09-14-2012, 08:32 PM
Find
Damascus Rose Offline
Posting Freak

Posts: 1,107
Threads: 22
Joined: Mar 2012
Reputation: 24
#19
RE: Disabling Monster Effects

Varrsharighall, that requires editing the main amnesia files and I want it to work in a cs, which wouldn't work. Thanks for helping though.

And chaser, that box does not work either.

Can anyone help me find out how to make an invisible box as an entity and put it in the game? I'm having some trouble with this and the tutorial I've found isn't really helping..

[Image: damascusrose2.png]
(This post was last modified: 09-15-2012, 04:55 PM by Damascus Rose.)
09-15-2012, 04:49 PM
Find
crisosphinx Offline
Senior Member

Posts: 501
Threads: 5
Joined: Apr 2012
Reputation: 24
#20
RE: Disabling Monster Effects

(09-15-2012, 04:49 PM)Damascus Rose Wrote: Varrsharighall, that requires editing the main amnesia files and I want it to work in a cs, which wouldn't work. Thanks for helping though.

And chaser, that box does not work either.

Can anyone help me find out how to make an invisible box as an entity and put it in the game? I'm having some trouble with this and the tutorial I've found isn't really helping..
Just make a model that has no textures. That should be easy enough. It's how they did it in amnesia, if I recall.

EDIT: I just checked the model. The Waterlurker has a .dae (which is a sphere) and a .dds (which is probably nothing more than an alpha map). Alpha maps (in layman's terms) make things visible or invisible. You should reference that file. Open it up, see how it's been created. ;]

EDIT2: It's a normal map with nothing on it.

Try this file. I made a large wall type .dae. The only texture it has is the one that the waterlurker used. The mass has uv's (even though it honestly doesn't need to have any). No diffuse, no spec.

However, the mat is a translucent mat with a normal map, which is what the waterlurker used, is plain. I also included the .mb file incase you wanted to edit it for some reason. It should work (my model viewer broke this morning) and the editor works great with it.

Let me know if you have success!

[attachment=3367]

Animation and Rig questions -> crisosphinx@yahoo.com

3D Generalist. Notable work on FG Forums - The Great Work, Five Magics and Cowards Debt.
(This post was last modified: 09-15-2012, 06:06 PM by crisosphinx.)
09-15-2012, 05:44 PM
Find




Users browsing this thread: 1 Guest(s)