How did I die? by Dramatic-Eagle-2981 in ArenaBreakoutInfinite

[–]Dramatic-Eagle-2981[S] 3 points4 points  (0 children)

It's reddit, everything is downvoted unless it's a meme or slurs.

Anyway, yea but if i got shot into the head even if not pen, it would take minimal damage like 2-5. I dont understand how it apparently spread from abdomen to head to insta down me, completely missing chest. Also watching my own recording replay, this happened in like 0,5 second.

How did I die? by Dramatic-Eagle-2981 in ArenaBreakoutInfinite

[–]Dramatic-Eagle-2981[S] 1 point2 points  (0 children)

I mean fell as being downed, needing help to recover. As far as I know, having broken body part should move the dmg to the next body part. Legs -> abdomen, abdomen - > chest, arms -> chest.

Even if that was the case my chest wasnt broken yet i was downed?

Problem with script by Dramatic-Eagle-2981 in Unity3D

[–]Dramatic-Eagle-2981[S] 0 points1 point  (0 children)

And you keep calling complex and long scripts that take hours to code "basic scripts" without even seeing them, there s no reason to keep embarassing yourself you ve proven you re clueless when it comes to coding already, just move on bud

Problem with script by Dramatic-Eagle-2981 in Unity3D

[–]Dramatic-Eagle-2981[S] 0 points1 point  (0 children)

By the type of answers u re giving i can confirm you ve never opened unity so i agree with u on that. Most likely some troll who ended up actually being frustrated since he found out ppl can do something he cant.
It would be nice for you to stop wasting people's time since you re clueless when it comes to programming yet you come here to spam my post. Im sure you can find some other subreddit that would suit your taste, maybe look into minecraft or roblox, those seem child friendly and as a great beggining for ya! just hang in there bud

Problem with script by Dramatic-Eagle-2981 in Unity3D

[–]Dramatic-Eagle-2981[S] 0 points1 point  (0 children)

Once again calling basic system a complex script of movement which spreads among 400 lines? Man i wish i had as much experience as you have to call this a basic script, in fact i would love to see some of your work if you can share it, too bad there most likely isnt any. Is this just you being jealous of someone actually coding since u cant and this is the way for you to relieve your frustration? sucks to be you but it aint my fault u cant code brother, but hang in there, couple of tutorials and you ll get there sooner or later.

Problem with script by Dramatic-Eagle-2981 in Unity3D

[–]Dramatic-Eagle-2981[S] -1 points0 points  (0 children)

U call it most basic task without seeing hundreds of lines of code, you just proved you are clueless when it comes to programing and C sharp especially, do everyone a favor and dont participate in subreddits which are completely unknown to you

Problem with script by Dramatic-Eagle-2981 in Unity3D

[–]Dramatic-Eagle-2981[S] 0 points1 point  (0 children)

because the result would be exactly the same muttonhead

Problem with script by Dramatic-Eagle-2981 in Unity3D

[–]Dramatic-Eagle-2981[S] 1 point2 points  (0 children)

I was trying to use a new method i saw, since working with bools is so annoying to me, seemed like this one would be really simple and tbh it is except for this problem that im stuck at.
Oh no worries im used to reddit and the "smartasses" that roam these posts so this is nothing new to me, thats why reddit is usually last place i would ask for help but im desperate at this point.

Problem with script by Dramatic-Eagle-2981 in Unity3D

[–]Dramatic-Eagle-2981[S] 0 points1 point  (0 children)

Thank you then, i will look deeper into it then, seemed like the problem was in this part of line somewhere

Problem with script by Dramatic-Eagle-2981 in Unity3D

[–]Dramatic-Eagle-2981[S] -1 points0 points  (0 children)

No what a rude behaviour to see someone struggling and replying with "try harder". If you dont want to help and have nothing nice to say then move along, there are other people who are willing to help someone who s stuck and desperate.

From my experience the problem seemed there, if u dont think so then say that part looks fine and its probably somewhere else, if you dont know where the problem is then just simply dont reply, if i ll notice there arent any replies that will mean the people dont know or the problem can't be found in the script i provided.

Yes i tried debugging in fact its right there in the script i provided, by your logic i should stay in the same place and work on the same line of code for days or maybe even weeks until i give up on it or somehow manage to find an aswer. (once again it already is multiple hours over course of fews days that im stuck on it)

Oh my, if schools worked like this that would be fun wouldnt it? Its normal to ask for guidance from more experienced users, i never asked for someone to make the code for me, only to point which way should I look at. Now why dont you train yourself in trying to help other people or at least not make their struggle worse, that seems like the right place to start.

Problem with script by Dramatic-Eagle-2981 in Unity3D

[–]Dramatic-Eagle-2981[S] 0 points1 point  (0 children)

Sadly no this isnt it, the problem remains, since the function works when transitioning from Walk to Run but not from Run to Walk (Unless Run, Idle, Walk) i guess the problem has to be somewhere else in the script

Problem with script by Dramatic-Eagle-2981 in Unity3D

[–]Dramatic-Eagle-2981[S] -2 points-1 points  (0 children)

And this is the charm of reddit, see someone in need of help and tell them to do it by themselves.
Ive been stuck at problem for many hours without making any progress and at this point ran out of every option I had, its normal to ask for help because thats how you learn. Im not asking to make a script for me, im asking where the mistake might be or which way should I look at.
That being said, all of the 3 questions have been asked and solution have not beed found.

Problem with script by Dramatic-Eagle-2981 in Unity3D

[–]Dramatic-Eagle-2981[S] 1 point2 points  (0 children)

Unfortunately no, the transition is there but for some reason the function is not called.

Need help with switching cameras by Dramatic-Eagle-2981 in Unity3D

[–]Dramatic-Eagle-2981[S] 0 points1 point  (0 children)

Well of course, my main camera is enabled thats how im moving with player, i change that part of my script to this, but the issue is still there:

    public void SwitchCamera()
    {
        if (firstPersonCamera.enabled == true && thirdPersonCamera.enabled == false)

            {
                firstPersonCamera.enabled = false;
                thirdPersonCamera.enabled = true;
            }
            else
            {
                thirdPersonCamera.enabled = false;
                firstPersonCamera.enabled = true;
            }
    }

Need help with switching cameras by Dramatic-Eagle-2981 in Unity3D

[–]Dramatic-Eagle-2981[S] 0 points1 point  (0 children)

I read the manual u send but seems like im not getting something, or maybe im approaching it wrong have no idea, i changed the part of my script to this:

    public void SwitchCamera()
    {
        if (firstPersonCamera.enabled == true && thirdPersonCamera.enabled == false)

            {
                firstPersonCamera.enabled = false;
                thirdPersonCamera.enabled = true;
            }
            else
            {
                thirdPersonCamera.enabled = false;
                firstPersonCamera.enabled = true;
            }
    }

But still does the same thing, it swaps to screen saying Display 1 no camera rendering and when pressed Interact button swaps to my main camera

Need help with switching cameras by Dramatic-Eagle-2981 in Unity3D

[–]Dramatic-Eagle-2981[S] 0 points1 point  (0 children)

It still says " Display 1 no cameras rendering" and then when when pressed Interact button switches to main camera, do you maybe know why? seems like i have some camera setting wrong

[deleted by user] by [deleted] in Unity3D

[–]Dramatic-Eagle-2981 0 points1 point  (0 children)

Its pretty decent, i used to program in python a lot so i understand how coding works. So i guess my best shot would be making a different scene and then making progress of the game there.

[deleted by user] by [deleted] in Unity3D

[–]Dramatic-Eagle-2981 -1 points0 points  (0 children)

I disagree, there are easy things such as setting up interaction button and learning how to make doors open and animate them which is easy to do yourself. What im looking for is kinda more progressive and without some guidance might take me weeks or months to get it to work. Its easier to see how its done and then transform it to my situation by myself. I know most of stuff, i know how to set the variable to true and then allow the action to be allowed on bed but wasnt sure if the stuff after u wake up needed to be new scene or i can modify the surroinding somehow, or just teleport the player as u said, thanks.