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
Script Help Script Help
Knusper. Offline
Member

Posts: 58
Threads: 7
Joined: Feb 2013
Reputation: 2
#31
RE: check if active/ string to int/ etc.

Ok. i will set this to a thread where i post my problems of this special map (I have lots...)
I hope thats ok.

So, now Maybe you know slender. My map will be like slender.
I am now searching for a way to get that "Flicker".
I hope you know what I mean.
Is there a way with screen effects or PS or anything???

No one knows, how "I" goes.
03-26-2013, 09:46 PM
Find
Adrianis Offline
Senior Member

Posts: 620
Threads: 6
Joined: Feb 2012
Reputation: 27
#32
RE: Script Help

Not sure what you mean, sorry, I know of Slender but never played/watched any of that stuff. Maybe if you link to a video that shows the kind of thing you mean?

03-27-2013, 02:03 PM
Find
Knusper. Offline
Member

Posts: 58
Threads: 7
Joined: Feb 2013
Reputation: 2
#33
RE: Script Help

Its the moving picture like when your tv is broken:
http://i.computer-bild.de/imgs/4/4/1/9/6...cdeb5e.jpg
http://img834.imageshack.us/img834/2329/...chnee3.gif

No one knows, how "I" goes.
03-27-2013, 02:21 PM
Find
No Author Offline
Posting Freak

Posts: 962
Threads: 10
Joined: Jun 2012
Reputation: 13
#34
RE: Script Help

I think it's impossible to do that

[Image: the-cabin-in-the-woods-masked-people.jpg]
03-27-2013, 02:24 PM
Find
PutraenusAlivius Offline
Posting Freak

Posts: 4,713
Threads: 75
Joined: Dec 2012
Reputation: 119
#35
RE: Script Help

(03-27-2013, 02:24 PM)No Author Wrote: I think it's impossible to do that

It's possible, but hard (/////THAT'S WHAT SHE SAID.).
1. Make a custom decal
2. Change the directory in the (I DON'T KNOW WHAT IT IS) to your custom decal
3. Change settings.
4. ???
5. PROFIT
joking, not to be taken seriously. For the static thing, PM YourComputer.

"Veni, vidi, vici."
"I came, I saw, I conquered."
03-27-2013, 03:04 PM
Find
Knusper. Offline
Member

Posts: 58
Threads: 7
Joined: Feb 2013
Reputation: 2
#36
RE: Script Help

hm, i will see what is possible.
Here the next problem Tongue :
void nomove(string &in asTimer)
{
    if(IsInArea == true)
    {
        int i;
        i = LastArea[1];
        PlaySoundAtEntity("", "Slender_tod.snt", "Player", 0, false);
        SetPlayerActive(false);
        StartPlayerLookAt("Slender_" + i, 1, 1.5, "Dead");
    }
}

void Dead(string &in asTimer)
{
    FadeOut(0.3);
    SetPlayerHealth(0);
    //Flicker + Sound
}

Here It works until startplayerlookat.
You are unable to move but then the cam isnt moving to look at slender.
What about this?

No one knows, how "I" goes.
03-28-2013, 03:01 PM
Find
PutraenusAlivius Offline
Posting Freak

Posts: 4,713
Threads: 75
Joined: Dec 2012
Reputation: 119
#37
RE: Script Help

Is it named "Slender_" in the Level Editor?

"Veni, vidi, vici."
"I came, I saw, I conquered."
03-28-2013, 03:07 PM
Find
Knusper. Offline
Member

Posts: 58
Threads: 7
Joined: Feb 2013
Reputation: 2
#38
RE: Script Help

Its named "Slender_5" for example. Or "Slender_2".
With
int i;
i = LastArea[1];
I find out the number of the slender.
Here is where i have lastarea declared:
string LastArea = "00";
void InArea(string &in asParent, string &in asChild, int alState)
{
    string areanumber1 = StringSub(asChild, 11, 2);
    int i;
    i = (areanumber1[0] -48) *10 + areanumber1[1] -48;       
    AddDebugMessage(Slender_active, false);
    if (Slender_active[i-1] == 1 + 48)
    {
        AddDebugMessage("InArea > if statement executing", false);
        IsInArea = true;
        LastArea = areanumber1;
        //////////////////PlaySoundAtEntity("", "SlenderFLICKER.snt", "Player", 0, false);
        AddTimer("mov", 2, "nomove");
    }
    
}

No one knows, how "I" goes.
(This post was last modified: 03-28-2013, 03:15 PM by Knusper..)
03-28-2013, 03:15 PM
Find
PutraenusAlivius Offline
Posting Freak

Posts: 4,713
Threads: 75
Joined: Dec 2012
Reputation: 119
#39
RE: Script Help

If you have multiple slenders, use an index sign like this.
StartPlayerLookAt("Slender_*" + i, 1, 1.5, "Dead");
It means anything that have the beginning Slender_ will be considered.

"Veni, vidi, vici."
"I came, I saw, I conquered."
03-28-2013, 03:21 PM
Find
Knusper. Offline
Member

Posts: 58
Threads: 7
Joined: Feb 2013
Reputation: 2
#40
RE: Script Help

But you should only look at the slender in witch area you are.
So slender_1 is in area Scriptarea01.
thats why i wrote
int i;
i = LastArea[1];
StartPlayerLookAt("Slender_" + i, 1, 1.5, "Dead");

(here lastarea is the one you are in)

No one knows, how "I" goes.
03-28-2013, 04:56 PM
Find




Users browsing this thread: 1 Guest(s)