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
Script Help Monster Help :O
Straxedix Offline
Senior Member

Posts: 426
Threads: 52
Joined: Mar 2014
Reputation: 5
#1
Rainbow  Monster Help :O

Hii Smile

Again me muahahahahahhaah

Big Grin

I need help how to make monster run faster if anyone know

And one more think when pick up key (what i have) and spawn monster (what i have done) to look in monster for long time like 5 sec he can't run,move just stay in the one place

So:
-Need help with:
-Monster to run faster
-When pick key to look at monster without any moving

03-22-2014, 03:14 PM
Find
DnALANGE Offline
Banned

Posts: 1,549
Threads: 73
Joined: Jan 2012
#2
RE: Monster Help :O

First thing! WHY are you making so many treads?
We are helping in the other one..
-
As far as i see..
You have so little experience with Amnesia + Editors + scripting...
IF i will explane you might not understand.
i will try this time.
-
FOR THE MONSTER RUN FASTER:
go to : Modeleditor \ open the enemy you want to run faster. then,
go to : SETTING \ UserdefinedVariables \ and there you can set up the speeds and LOADS of other things.
for YOU, you need to change this :
Quote:RUN_FORWARDSPEED : change that into what YOU want.
and
RUN_FORWARDACC : change that also a little.
---
You might also change the 2 walkspeeds { if you want offcourse, NOT needed for you i guess.. }:
WALK_FORWARDSPEED
and
WALK_FORWARDACC
-
VERY IMPORTEND!!!
Save as ( go to you custom story and make a folder called Enemy. save it there with ANOTHER NAME!
For example EnemyStrax.
do NOT OVERWRITE the Original monster or you will have all monsters run fast in your Original Amnesia.
---
for the Look monster thing:
Quote:SetPlayerActive(false);
AddTimer("", 5.0f, "Walkagain");
StartPlayerLookAt("YOURMONSTERNAME", 5.0f, 5.0f, "");

void Walkagain(string &in asTimer)
{
SetPlayerActive(true);
StopPlayerLookAt();
}

EDIT:
IF you are using a CUSTOM monster,
you will need to put the WHOLE MONSTER FOLDER in YOUR custom story \ enemy's
There might be people who do not have that monster { for NON amnesia monsters only }
(This post was last modified: 03-22-2014, 03:52 PM by DnALANGE.)
03-22-2014, 03:26 PM
Find
Straxedix Offline
Senior Member

Posts: 426
Threads: 52
Joined: Mar 2014
Reputation: 5
#3
RE: Monster Help :O

When pick up the key i need next

SetPlayerActive(false);
AddTimer("", 5.0f, "Walkagain");
StartPlayerLookAt("YOURMONSTERNAME", 5.0f, 5.0f, "");

void Walkagain(string &in asTimer)
{
SetPlayerActive(true);
StopPlayerLookAt();
}

can edit pls other works thanks Big Grin

03-22-2014, 04:05 PM
Find
DnALANGE Offline
Banned

Posts: 1,549
Threads: 73
Joined: Jan 2012
#4
RE: Monster Help :O

You will OWE me a REP +++ for all this for me. Joking hehee Wink
-
Example :
Quote:OnStart
SetEntityPlayerInteractCallback("YOURKEY", "YOURSCRIPT", true);
-
void YOURSCRIPT(string &in asItem)
{
SetPlayerActive(false);
AddTimer("", 5.0f, "Walkagain");
StartPlayerLookAt("YOURMONSTERNAME", 5.0f, 5.0f, "");
}
(This post was last modified: 03-22-2014, 04:19 PM by DnALANGE.)
03-22-2014, 04:13 PM
Find
Straxedix Offline
Senior Member

Posts: 426
Threads: 52
Joined: Mar 2014
Reputation: 5
#5
RE: Monster Help :O

I solve it just add when void ActivateMonster is it working now you are best i would give you and somethingridi... and Mudbil and a lot other karma but as you see i never gain any karma xD so i can't give you Sad

03-22-2014, 04:16 PM
Find
DnALANGE Offline
Banned

Posts: 1,549
Threads: 73
Joined: Jan 2012
#6
RE: Monster Help :O

Your welcome.
You can give us REPUTATION.
But that is fine.
Good luck with your story.
03-22-2014, 04:18 PM
Find
Straxedix Offline
Senior Member

Posts: 426
Threads: 52
Joined: Mar 2014
Reputation: 5
#7
RE: Monster Help :O

I give you Karma :OOO

03-22-2014, 04:32 PM
Find
Straxedix Offline
Senior Member

Posts: 426
Threads: 52
Joined: Mar 2014
Reputation: 5
#8
RE: Monster Help :O

And thanks ^.^

03-22-2014, 08:41 PM
Find




Users browsing this thread: 1 Guest(s)