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


Thread Rating:
  • 2 Vote(s) - 3 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Script Help I would very much like some help please!
Traggey Offline
is mildly amused

Posts: 3,257
Threads: 74
Joined: Feb 2012
Reputation: 185
#21
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
Find
Straxedix Offline
Senior Member

Posts: 426
Threads: 52
Joined: Mar 2014
Reputation: 5
#22
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!
PHP Code: (Select All)
void OnStart()
{
    
SetPlayerActive(false);
    
FadeOut(0);
    
FadePlayerRollTo(652020);
    
MovePlayerHeadPos(-1, -0.45, -1.1201);
    
AddTimer("activate_plater"3"FadeIn");
    
SetLightVisible("BoxLight_1"false);
    
FadeImageTrailTo(31);
    
FadeRadialBlurTo(0.41);
}





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(01);
   
MovePlayerHeadPos(-0.5, -0.2, -1.122);
   
FadePlayerRollTo(01.7500);
   
AddTimer("ActivatePlayer"2"WakeUp");
   }

   else if (
timer_name == "ActivatePlayer")
   {
   
MovePlayerHeadPos(00022);
   
SetPlayerActive(true);
   }




so what is problem i see like there is no problem and no box message with some problem Sad

So anyone ????

(This post was last modified: 05-15-2014, 03:34 PM by Straxedix.)
03-24-2014, 03:24 PM
Find
Straxedix Offline
Senior Member

Posts: 426
Threads: 52
Joined: Mar 2014
Reputation: 5
#23
RE: I would very much like some help please!

Ugh it's bump cuz New Posts was deleted so no one see my thread Sad

(This post was last modified: 03-24-2014, 04:47 PM by Straxedix.)
03-24-2014, 04:47 PM
Find
Straxedix Offline
Senior Member

Posts: 426
Threads: 52
Joined: Mar 2014
Reputation: 5
#24
RE: I would very much like some help please!

BUMP!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

03-25-2014, 01:15 PM
Find
Mudbill Offline
Muderator

Posts: 3,881
Threads: 59
Joined: Apr 2013
Reputation: 179
#25
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
Find
PutraenusAlivius Offline
Posting Freak

Posts: 4,713
Threads: 75
Joined: Dec 2012
Reputation: 119
#26
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
Find
Straxedix Offline
Senior Member

Posts: 426
Threads: 52
Joined: Mar 2014
Reputation: 5
#27
RE: I would very much like some help please!

So can you two take a look ^.^ pleaaseeee

03-25-2014, 03:34 PM
Find
Mudbill Offline
Muderator

Posts: 3,881
Threads: 59
Joined: Apr 2013
Reputation: 179
#28
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
Find
Straxedix Offline
Senior Member

Posts: 426
Threads: 52
Joined: Mar 2014
Reputation: 5
#29
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
Find
SilentStriker Offline
Posting Freak

Posts: 950
Threads: 26
Joined: Jul 2011
Reputation: 43
#30
RE: I would very much like some help please!

FadeRadialBlurTo(float afSize, float afSpeed); is not set to zero?

PHP Code: (Select All)
void OnStart()
{
SetPlayerActive(false);
FadeOut(0);
FadePlayerRollTo(652020);
MovePlayerHeadPos(-1, -0.45, -1.1201);
AddTimer("activate_plater"3"FadeIn");
SetLightVisible("BoxLight_1"false);
FadeImageTrailTo(31);
FadeRadialBlurTo(0.41);
}

Just add it to:

else if (
timer_name == "ActivatePlayer")
{
MovePlayerHeadPos(00022);
FadeRadialBlurTo(01);
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
Find




Users browsing this thread: 1 Guest(s)