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


Thread Rating:
  • 4 Vote(s) - 3 Average
  • 1
  • 2
  • 3
  • 4
  • 5
how to make floor break when u go to a certain area
victorkim890(KimmyChimmy) Offline
Senior Member

Posts: 316
Threads: 1
Joined: Jun 2014
Reputation: 1
#41
RE: how to make floor break when u go to a certain area

how to make the grunt still spawn after he kills you?
how to get tat blue screen when u solved a puzzle?

(06-23-2014, 04:35 AM)Romulator Wrote: Is the player actually looking at the bookshelf when it falls? If not, you can make it look like it falls just by having another bookshelf in the desired position and calling the SetEntityActive() code - disabling the original and applying the fallen one.

tats wat i meant ty

(This post was last modified: 06-23-2014, 08:12 AM by victorkim890(KimmyChimmy).)
06-23-2014, 07:53 AM
Find
Romulator Offline
Not Tech Support ;-)

Posts: 3,628
Threads: 63
Joined: Jan 2013
Reputation: 195
#42
RE: how to make floor break when u go to a certain area

(06-23-2014, 07:53 AM)victorkim890(KimmyChimmy) Wrote: how to make the grunt still spawn after he kills you?
This can be done with checkpoints. I don't know how to use them fully, but this should help: https://wiki.frictionalgames.com/doku.ph...riptarea_s


(06-23-2014, 07:53 AM)victorkim890(KimmyChimmy) Wrote: how to get tat blue screen when u solved a puzzle?

That would be a GiveSanity code.
Use either:
PHP Code: (Select All)
GiveSanityBoost(); 
OR
PHP Code: (Select All)
GiveSanityBoostSmall(); 

Discord: Romulator#0001
[Image: 3f6f01a904.png]
06-23-2014, 10:01 AM
Find
victorkim890(KimmyChimmy) Offline
Senior Member

Posts: 316
Threads: 1
Joined: Jun 2014
Reputation: 1
#43
RE: how to make floor break when u go to a certain area

how to make the grunt go follow a path and disapear. i tried to do it but it didnt work

06-23-2014, 12:21 PM
Find
Romulator Offline
Not Tech Support ;-)

Posts: 3,628
Threads: 63
Joined: Jan 2013
Reputation: 195
#44
RE: how to make floor break when u go to a certain area

What part are you having trouble with?

Discord: Romulator#0001
[Image: 3f6f01a904.png]
06-23-2014, 12:26 PM
Find
victorkim890(KimmyChimmy) Offline
Senior Member

Posts: 316
Threads: 1
Joined: Jun 2014
Reputation: 1
#45
RE: how to make floor break when u go to a certain area

the grunt doesnt follow the path. it just stays right there in one spot unless i go near it and itll start chasing me

im trying to do tat thing in tat custom story la caza the grunt just ignores everything and just follows the path

(This post was last modified: 06-23-2014, 12:48 PM by victorkim890(KimmyChimmy).)
06-23-2014, 12:38 PM
Find
DnALANGE Offline
Banned

Posts: 1,549
Threads: 73
Joined: Jan 2012
#46
RE: how to make floor break when u go to a certain area

Make PATROL NODES in your level editor.
Then go to your script (hps) and add these (if you want you can add the AddEnemyPatrolNoded OnStart if you want the enemy to move as the map starts):
PHP Code: (Select All)
AddEnemyPatrolNode("Yourmonster_1""PathNodeArea_1"0"");
AddEnemyPatrolNode("Yourmonster_1""PathNodeArea_2"0"");
AddEnemyPatrolNode("Yourmonster_1""PathNodeArea_3"0""); 
--
Do you have this or understand this?
---
At the end of the last patrol node easely add a SCRIPTAREA and name it : RemovemyEnemy :
PHP Code: (Select All)
AddEntityCollideCallback("Yourmonster_1""RemovemyEnemy""JustRemovethePatrollingEnemy"true1); 
SCRIPT:
PHP Code: (Select All)
void JustRemovethePatrollingEnemy(string &in asParentstring &in asChildint alState)
{
SetEntityActive("Yourmonster_1"false);

(This post was last modified: 06-23-2014, 12:58 PM by DnALANGE.)
06-23-2014, 12:52 PM
Find
victorkim890(KimmyChimmy) Offline
Senior Member

Posts: 316
Threads: 1
Joined: Jun 2014
Reputation: 1
#47
RE: how to make floor break when u go to a certain area

Ty figured it out

06-23-2014, 02:11 PM
Find
DnALANGE Offline
Banned

Posts: 1,549
Threads: 73
Joined: Jan 2012
#48
RE: how to make floor break when u go to a certain area

Your welcome.
for any other questions you might change the treadname..
just so we know it is another issue.
06-23-2014, 08:31 PM
Find
victorkim890(KimmyChimmy) Offline
Senior Member

Posts: 316
Threads: 1
Joined: Jun 2014
Reputation: 1
#49
RE: how to make floor break when u go to a certain area

ill see

(This post was last modified: 06-23-2014, 09:52 PM by victorkim890(KimmyChimmy).)
06-23-2014, 08:51 PM
Find
victorkim890(KimmyChimmy) Offline
Senior Member

Posts: 316
Threads: 1
Joined: Jun 2014
Reputation: 1
#50
RE: how to make floor break when u go to a certain area

how do u do tat intro in abnormal pitchblack custom story?

06-23-2014, 10:35 PM
Find




Users browsing this thread: 1 Guest(s)