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
Multiple Issues Help JumpScares
Kreekakon Offline
Pick a god and pray!

Posts: 3,063
Threads: 70
Joined: Mar 2012
Reputation: 124
#7
RE: JumpScares

Here's how to make teleporting naked guys:

Pu a human corpse in the editor where you want it (Set it inactive), and also put a script area (Call it scarearea) in the map where you want it to activate the flying naked guy. Name other things as you see below, and mess around with values to get your desired effect.

void OnStart()
{
AddEntityCollideCallback("Player", "scarearea", "jesus", true, 1);
}

void jesus(string &in asParent, string &in asChild, int alState)
{
SetEntityActive("jesusnamehere", true);
AddPropForce("jesusnamehere", 0, 0, -9000, "world");
PlaySoundAtEntity("", "noiseyouwanthere.snt", "Player", 0, false);
}


Although I've given you the means to do such a scare, I'd strongly, strongly suggest that if you want to make a serious custom story, you do not use the flying jesus scare. Just use it during your practice with the level editor if you have too.

I'd even go as far to say that you shouldn't add jumpscares without proper build-up to them. Like some have said before, add scares only if they are within the context of the story, and not out of place.

[Image: Tv0YgQb.gif]
Image by BandyGrass
(This post was last modified: 09-14-2012, 06:43 AM by Kreekakon.)
09-14-2012, 06:41 AM
Find


Messages In This Thread
JumpScares - by Katarýýnaa - 09-13-2012, 09:57 PM
RE: JumpScares - by i3670 - 09-13-2012, 10:03 PM
RE: JumpScares - by Katarýýnaa - 09-13-2012, 10:11 PM
RE: JumpScares - by i3670 - 09-13-2012, 10:19 PM
RE: JumpScares - by Katarýýnaa - 09-13-2012, 10:22 PM
RE: JumpScares - by CorinthianMerchant - 09-13-2012, 10:30 PM
RE: JumpScares - by Kreekakon - 09-14-2012, 06:41 AM
RE: JumpScares - by FlawlessHappiness - 09-14-2012, 06:57 AM
RE: JumpScares - by Kreekakon - 09-14-2012, 06:58 AM
RE: JumpScares - by Robby - 09-14-2012, 07:35 AM
RE: JumpScares - by Mine Turtle - 09-14-2012, 08:13 AM
RE: JumpScares - by The chaser - 09-14-2012, 09:30 AM
RE: JumpScares - by Robby - 09-14-2012, 09:33 AM
RE: JumpScares - by The chaser - 09-14-2012, 10:01 AM
RE: JumpScares - by Robby - 09-14-2012, 10:22 AM
RE: JumpScares - by The chaser - 09-14-2012, 10:27 AM
RE: JumpScares - by Robby - 09-14-2012, 10:28 AM
RE: JumpScares - by The chaser - 09-14-2012, 11:20 AM
RE: JumpScares - by Robby - 09-14-2012, 11:47 AM
RE: JumpScares - by The chaser - 09-14-2012, 11:56 AM
RE: JumpScares - by Robby - 09-14-2012, 11:56 AM



Users browsing this thread: 1 Guest(s)