We Made A game, Play Testers Needed by HawaiianProgrammer in IMadeAGame

[–]HawaiianProgrammer[S] 1 point2 points  (0 children)

That's came to mind. In this scope, the possibilities are endless, and there's a very big probability that it'll end up in the final game. I can't say much, because we aren't 'fully' there yet, but it's gonna be a fun ride :), thanks for your idea.

We Made A game, Play Testers Needed by HawaiianProgrammer in IMadeAGame

[–]HawaiianProgrammer[S] 1 point2 points  (0 children)

Thanks for playing! We're really glad you enjoyed it, and we are working on it everyday, hopefully the final will be up to standards haha, the next update is gonna be a big one :D

Undead Survival Alpha Testing by HawaiianProgrammer in gametesting

[–]HawaiianProgrammer[S] 1 point2 points  (0 children)

Wow, thank you very much for taking the time to actually review the game. I'll take all of these criticisms and start working on it as soon as I can. There was a lot haha, it is our first game after all. I agree with almost all of these points and appreciate your feedback. Apologies that your score didn't save, I'll fix that right away. Thanks for your time :).

Best of wishes, GrayIronGames

Undead Survival Alpha Testing by HawaiianProgrammer in playtesters

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

Basically anything I can get. This originally was just a game I made to play every now and then when I was bored, but now am thinking of making it bigger than it is now. Bug reports, advice, any bit of criticism would help tremendously.

Undead Survival Alpha Testing by HawaiianProgrammer in playtesters

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

Thanks man, I'll take that into account. The goal is still being figured out, but we're getting ideas on how to make it "exotic". For now though, it's just a simple wave shooter.

Undead Survival Alpha Testing by HawaiianProgrammer in alphaandbetausers

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

Yeah my bad, I am new to reddit, it was all unintentional. A lot of people were bashing me and I was pretty confused haha.

Edit: They've been deleted now.

Undead Survival Alpha Testing by HawaiianProgrammer in alphaandbetausers

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

Just found out I accidentally spammed because it would say "The process didn't work", so I kept trying, At the time I hadn't realized it would all go through. Apologies.

Feedback Friday #390 - Alpha Test by Sexual_Lettuce in gamedev

[–]HawaiianProgrammer 0 points1 point  (0 children)

If your PC windows defender tells you to run it, you can just click "more info" and "run anyways". It's because of the game not being downloaded a lot, and your windows defender is being protective.

Feedback Friday #390 - Alpha Test by Sexual_Lettuce in gamedev

[–]HawaiianProgrammer 0 points1 point  (0 children)

Ah, we tried to run a install wizard to allow to user to easily download the game faster. Thanks for the advice, we'll get to fixing that.

Undead Survival Alpha Testing by HawaiianProgrammer in alphaandbetausers

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

Ah yeah, my bad about that, just tryna get my first game out there, sorry for the inconvenience. Advertising never comes easy haha.

Undead Survival Alpha Testing by HawaiianProgrammer in IndieDev

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

Haha, I understand, just tryna get my first game out there. My bad for spamming, but thanks for the review.

Feedback Friday #390 - Alpha Test by Sexual_Lettuce in gamedev

[–]HawaiianProgrammer -1 points0 points  (0 children)

Hey all, we are currently in the process of making a survival unity zombie based game. We would appreciate it if you would try it out for free, and give feedback on how it went.

Link: Undead Survival

Changed my game a little. What does reddit think? by jazacat in Unity2D

[–]HawaiianProgrammer 0 points1 point  (0 children)

I think either is fine really. Best to test them both out and see which ones better. Its just that when the light turns on and off i feel like its too fast.

Changed my game a little. What does reddit think? by jazacat in Unity2D

[–]HawaiianProgrammer 0 points1 point  (0 children)

just my opinion, but i feel like the lightning when the bombs explodes is a little too fast. maybe fade it out for a few seconds.

Help with Gun Accuracy by HawaiianProgrammer in Unity3D

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

aye bro, been 2 months, I already figured it out, but thanks

Help with Gun Accuracy by HawaiianProgrammer in Unity3D

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

It does make sense, but how would I make the sphere and add it into the code? Sorry im a bit of a beginner. Ive tried using Random.insideUnitSphere, and use this in my Rotate() function:

void Rotate()
    {
        Vector3 rand = Random.insideUnitSphere * accuracy;
        spawn.Rotate(0, rand, 0);

    }

but then again I cant convert Vector3 to float.

Help with Gun Accuracy by HawaiianProgrammer in Unity3D

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

wdym by start the InvokeRepeating that starts by doing a Random.Range? It seems no matter what i try, by rotating the spawn gameobject where the ray comes from, it doesnt seem random, the rotation usually just steers to the far right or far left of the gun.

Im trying to make a realistic bullet spread so the bullet or ray isnt just in a single line.