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
Few questions
Essen Offline
Junior Member

Posts: 23
Threads: 2
Joined: Jul 2011
Reputation: 0
#20
RE: Few questions

(04-30-2013, 06:57 AM)JustAnotherPlayer Wrote:
(04-30-2013, 06:09 AM)Essen Wrote:
(04-29-2013, 09:17 PM)BeeKayK Wrote: Sure Smile What kind of effects are we talking about?

Something like, how to explain it, basically, character would remember some scenes of what he went through, like it was suggested by Chaser earlier. It woule be his memories. I would need some suiting colors and all that.

Also, how to do these cutscenes you talk about? Isn't it needed to make new map and place all the places I want the character to go through in it to avoid loading of the maps?

This is required to make the screen albeit dark red. For black and white, you need a FC if I'm not mistaken.
PHP Code: (Select All)
FadeSepiaColorTo(float afAmountfloat afSpeed); 
afAmount - Intensity (Default is 0)
afSpeed - Time in seconds until it's full effect.

--
You don't have to make new maps. Just create new areas in a level and make the player to teleport to that area. Here's how.
Please note that they have to be called first.

PHP Code: (Select All)
void OnStart()
{
///Add Command here
}

void //FUNCTION//(//string//)
{
FadeOut(0.8f);
SetPlayerActive(false);
TeleportPlayer("StartPos"); //StartPos is the starting position in the area. It's the PlayerStartArea.
AddTimer(""3.0f"FadeIn"); //Change 3.0f to how long you want the unconcusf to endure. Definitely didn't said that one right.
}

void FadeIn(string &in asTimer)
{
FadeIn(1.0f);
//Insert the Sepia thing here.


Can't it to work, keep getting the "Unexpected end of file" error. There might be a problem with that(//string//) part, I tried to put "" into it, then leave it blank, but still nothing.

Quote:Yea, with the basic settings you can fade the sepia colors. Makes everything redish.
You can fade the screen in and out.
You can turn the head of the character to any degree you want.
You can force the player to stand, crouch, look at something, walk, or make the actual player unable to control.
You can make the blurry effect that happens when you look at a monster.
You can make a fading blurry effect that looks a little like Motionblur, but it's not the same. This one is much slower.
You can teleport the player. This is good when you make a transition/intro/outro. First fade out the screen, then teleport the player, then fade in.

Most information about how to use them are actually already given in the EngineScripts.

How do you make player to walk forward actually? I found script "MovePlayerForward" on wiki, in EngineScripts, however, didn't quite get it.
(This post was last modified: 05-01-2013, 08:17 AM by Essen.)
05-01-2013, 08:16 AM
Find


Messages In This Thread
Few questions - by Essen - 04-27-2013, 04:39 PM
RE: Few questions - by OriginalUsername - 04-27-2013, 06:15 PM
RE: Few questions - by FlawlessHappiness - 04-27-2013, 10:51 PM
RE: Few questions - by Marshall2906 - 04-28-2013, 01:40 AM
RE: Few questions - by PutraenusAlivius - 04-28-2013, 02:34 AM
RE: Few questions - by Essen - 04-28-2013, 03:18 AM
RE: Few questions - by PutraenusAlivius - 04-28-2013, 03:29 AM
RE: Few questions - by Tomato Cat - 04-28-2013, 05:36 AM
RE: Few questions - by The chaser - 04-28-2013, 11:36 AM
RE: Few questions - by Essen - 04-28-2013, 01:27 PM
RE: Few questions - by Essen - 04-29-2013, 03:06 PM
RE: Few questions - by FlawlessHappiness - 04-29-2013, 04:56 PM
RE: Few questions - by The chaser - 04-29-2013, 05:04 PM
RE: Few questions - by Essen - 04-29-2013, 05:56 PM
RE: Few questions - by The chaser - 04-29-2013, 07:52 PM
RE: Few questions - by FlawlessHappiness - 04-29-2013, 09:17 PM
RE: Few questions - by Essen - 04-30-2013, 06:09 AM
RE: Few questions - by PutraenusAlivius - 04-30-2013, 06:57 AM
RE: Few questions - by Essen - 05-01-2013, 08:16 AM
RE: Few questions - by PutraenusAlivius - 05-01-2013, 11:34 AM
RE: Few questions - by FlawlessHappiness - 05-01-2013, 12:09 PM
RE: Few questions - by FlawlessHappiness - 04-30-2013, 02:51 PM
RE: Few questions - by The chaser - 05-01-2013, 11:29 AM
RE: Few questions - by Essen - 05-01-2013, 12:41 PM
RE: Few questions - by The chaser - 05-01-2013, 02:01 PM
RE: Few questions - by FlawlessHappiness - 05-01-2013, 02:16 PM
RE: Few questions - by Essen - 05-01-2013, 04:23 PM
RE: Few questions - by The chaser - 05-01-2013, 09:48 PM
RE: Few questions - by Essen - 05-02-2013, 04:51 PM
RE: Few questions - by The chaser - 05-03-2013, 01:22 PM
RE: Few questions - by Essen - 05-04-2013, 01:46 AM



Users browsing this thread: 1 Guest(s)