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


Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
How to make a 'friendly' monster in Amnesia?
Arklancer Offline
Junior Member

Posts: 10
Threads: 4
Joined: Feb 2013
Reputation: 0
#1
How to make a 'friendly' monster in Amnesia?

I've been wondering if there's a way to make a monster where it doesn't attack you nor do you lose any sanity looking at it.

I know disabling the triggers and going into the user variables will make it not attack you but is there a way to look at it without losing sanity?
02-24-2013, 04:11 PM
Find
Arklancer Offline
Junior Member

Posts: 10
Threads: 4
Joined: Feb 2013
Reputation: 0
#2
RE: How to make a 'friendly' monster in Amnesia?

(02-24-2013, 04:16 PM)Robosprog Wrote: Only in a full/isolated full conversion. And that would require editing game.cfg and stuff.

What specifically is a full/isolated full conversion?
02-24-2013, 06:28 PM
Find
OriginalUsername Offline
Posting Freak

Posts: 896
Threads: 42
Joined: Feb 2013
Reputation: 34
#3
RE: How to make a 'friendly' monster in Amnesia?

There is a script though: SetEnemyDisableTriggers(string& asName, bool abX);
That way it won't attack you, but you'll still lose sanity. The only way to do that is editing it in the model editor. I don't know how, you should just look up a tutorial or something
(This post was last modified: 02-24-2013, 10:06 PM by OriginalUsername.)
02-24-2013, 07:15 PM
Find
Arklancer Offline
Junior Member

Posts: 10
Threads: 4
Joined: Feb 2013
Reputation: 0
#4
RE: How to make a 'friendly' monster in Amnesia?

(02-24-2013, 07:15 PM)Smoke Wrote: There is a script though: SetEnemyDisableTriggers(string& asName, bool abX);
That way it won't attack you, but you'll still lose sanity. The only way to do that is editing it in the model editor. I don't know why, you should just look up a tutorial or something

I checked in the model editor and i haven't seen anything dealing with disabling sanity.
02-24-2013, 07:22 PM
Find
Knusper. Offline
Member

Posts: 58
Threads: 7
Joined: Feb 2013
Reputation: 2
#5
RE: How to make a 'friendly' monster in Amnesia?

here I had the same question:
http://www.frictionalgames.com/forum/thread-20463.html

example:

void latern(string &in asName, int alCount)
{
RemoveItem("lantern_1");
SetEntityActive("servant_grunt_1", true);
SetEnemyDisableTriggers("servant_grunt_1", true); //monster off
AddEnemyPatrolNode("servant_grunt_1", "PathNodeArea_1", 0, "Idle");
AddEnemyPatrolNode("servant_grunt_1", "PathNodeArea_2", 0, "Idle");
}


you have to set path nodes for the monster!!!

but thats only the way to make the enemy not to attac you...
(This post was last modified: 02-24-2013, 09:35 PM by Knusper..)
02-24-2013, 09:31 PM
Find
Your Computer Offline
SCAN ME!

Posts: 3,456
Threads: 32
Joined: Jul 2011
Reputation: 235
#6
RE: How to make a 'friendly' monster in Amnesia?

(02-24-2013, 09:31 PM)Knusper. Wrote: here I had the same question:

It's not the same question. Editing game.cfg is the only way to prevent sanity loss from monsters (but the screen effect will remain).

Tutorials: From Noob to Pro
02-24-2013, 09:34 PM
Website Find
NaxEla Offline
Senior Member

Posts: 415
Threads: 5
Joined: Dec 2012
Reputation: 28
#7
RE: How to make a 'friendly' monster in Amnesia?

Also, keep in mind that what Your Computer said will affect ALL the enemies, not just one.

In Ruins [WIP]
02-24-2013, 09:36 PM
Find
Arklancer Offline
Junior Member

Posts: 10
Threads: 4
Joined: Feb 2013
Reputation: 0
#8
RE: How to make a 'friendly' monster in Amnesia?

(02-24-2013, 09:36 PM)NaxEla Wrote: Also, keep in mind that what Your Computer said will affect ALL the enemies, not just one.

Where precisely in the cfg file do I need to go to get rid of sanity when looking at a monster?
02-24-2013, 10:19 PM
Find




Users browsing this thread: 1 Guest(s)