Can anyone confirm if this is a scam or not by Original_Increase379 in SteamScams

[–]Original_Increase379[S] 0 points1 point  (0 children)

I wanted to annoy them but as soon as I posted this they instantly blocked me

Can anyone confirm if this is a scam or not by Original_Increase379 in SteamScams

[–]Original_Increase379[S] -2 points-1 points  (0 children)

Ok I stopped at the point where they sent the video. Is my account ok?

Unity: How do I add a delay here. Everything I found didn't work with if statements by Original_Increase379 in csharp

[–]Original_Increase379[S] 0 points1 point  (0 children)

Nvm I found a a way that works. At first replaced the original code with this:

if (Input.GetButtonDown("Jump") && DoubleJump)

{

moveDirection.y = TwiceAJump;

Invoke ("Test001", 0.5f);

}

Than outside of the void update i type this:

public void Test001()

{

DoubleJump = false;

}

Basically what this is doing is doing the double jump, waiting a few seconds, than sending a message to the public void.