Traggey
is mildly amused
Posts: 3,257
Threads: 74
Joined: Feb 2012
Reputation:
185
RE: Wtf ??? Never srsly never see this!!!! (this thread make me MAD)
There, I fixed that thread title for you.
03-23-2014, 11:04 PM
Straxedix
Senior Member
Posts: 426
Threads: 52
Joined: Mar 2014
Reputation:
5
RE: I would very much like some help please!
Ok i made it to player not go forward backward like idi*t and i make he go forwards but now when i move you can see triple :O
Spoiler below!
void OnStart () { SetPlayerActive ( false ); FadeOut ( 0 ); FadePlayerRollTo ( 65 , 20 , 20 ); MovePlayerHeadPos (- 1 , - 0.45 , - 1.1 , 20 , 1 ); AddTimer ( "activate_plater" , 3 , "FadeIn" ); SetLightVisible ( "BoxLight_1" , false ); FadeImageTrailTo ( 3 , 1 ); FadeRadialBlurTo ( 0.4 , 1 ); } and void FadeIn ( string & in timer_name ) { FadeIn ( 2 ); AddTimer ( "Start" , 2 , "WakeUp" ); } void WakeUp ( string & in timer_name ) { if ( timer_name == "Start" ) { SetLightVisible ( "BoxLight_1" , true ); AddTimer ( "MoveHead" , 1 , "WakeUp" ); } else if ( timer_name == "MoveHead" ) { FadeImageTrailTo ( 0 , 1 ); MovePlayerHeadPos (- 0.5 , - 0.2 , - 1.1 , 2 , 2 ); FadePlayerRollTo ( 0 , 1.7 , 500 ); AddTimer ( "ActivatePlayer" , 2 , "WakeUp" ); } else if ( timer_name == "ActivatePlayer" ) { MovePlayerHeadPos ( 0 , 0 , 0 , 2 , 2 ); SetPlayerActive ( true ); } }
so what is problem i see like there is no problem and no box message with some problem
So anyone ????
(This post was last modified: 05-15-2014, 03:34 PM by Straxedix .)
03-24-2014, 03:24 PM
Straxedix
Senior Member
Posts: 426
Threads: 52
Joined: Mar 2014
Reputation:
5
RE: I would very much like some help please!
Ugh it's bump cuz New Posts was deleted so no one see my thread
(This post was last modified: 03-24-2014, 04:47 PM by Straxedix .)
03-24-2014, 04:47 PM
Straxedix
Senior Member
Posts: 426
Threads: 52
Joined: Mar 2014
Reputation:
5
RE: I would very much like some help please!
BUMP!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
03-25-2014, 01:15 PM
Mudbill
Muderator
Posts: 3,881
Threads: 59
Joined: Apr 2013
Reputation:
179
RE: I would very much like some help please!
You don't need to bump when the thread is still near the top of the page. Most likely people viewed it but didn't have anything to comment. Bumping now will only make them revisit it.
03-25-2014, 02:35 PM
PutraenusAlivius
Posting Freak
Posts: 4,713
Threads: 75
Joined: Dec 2012
Reputation:
119
RE: I would very much like some help please!
Please stop bumping. It's really unnecessary.
"Veni, vidi, vici."
"I came, I saw, I conquered."
03-25-2014, 02:51 PM
Straxedix
Senior Member
Posts: 426
Threads: 52
Joined: Mar 2014
Reputation:
5
RE: I would very much like some help please!
So can you two take a look ^.^ pleaaseeee
03-25-2014, 03:34 PM
Mudbill
Muderator
Posts: 3,881
Threads: 59
Joined: Apr 2013
Reputation:
179
RE: I would very much like some help please!
What do you even mean when you say "you see triple"? I don't see anything wrong with the script at a glance.
03-25-2014, 04:24 PM
Straxedix
Senior Member
Posts: 426
Threads: 52
Joined: Mar 2014
Reputation:
5
RE: I would very much like some help please!
Problem is like when you are on floor and you see like two pictures then waking up move head up like circle that kind of picture is always it's hard to explain
03-25-2014, 09:13 PM
SilentStriker
Posting Freak
Posts: 950
Threads: 26
Joined: Jul 2011
Reputation:
43
RE: I would very much like some help please!
FadeRadialBlurTo(float afSize, float afSpeed); is not set to zero?
void OnStart () { SetPlayerActive ( false ); FadeOut ( 0 ); FadePlayerRollTo ( 65 , 20 , 20 ); MovePlayerHeadPos (- 1 , - 0.45 , - 1.1 , 20 , 1 ); AddTimer ( "activate_plater" , 3 , "FadeIn" ); SetLightVisible ( "BoxLight_1" , false ); FadeImageTrailTo ( 3 , 1 ); FadeRadialBlurTo ( 0.4 , 1 ); } Just add it to : else if ( timer_name == "ActivatePlayer" ) { MovePlayerHeadPos ( 0 , 0 , 0 , 2 , 2 ); FadeRadialBlurTo ( 0 , 1 ); SetPlayerActive ( true ); }
Is that your problem?
(This post was last modified: 03-25-2014, 09:33 PM by SilentStriker .)
03-25-2014, 09:31 PM