Thank you so much!! I might update this project in the future.
Space Cow Code
Creator of
Recent community posts
This chaos multiplayer party game was created in one month while I juggled graduating high school and working a part time job. After barelygetting the game to a playable state, I forced my friends to play it at my birthday party. You can now play the "Birthday build" of Un-Friendly Fire here!!
\/ \/ \/ \/
Un-friendly Fire by Space Cow Code
What my friends thought....
scores 1-10 1 being amazing and 10 being horrible.
4.7
3.5
4
2.3

I will be posting a video in the near future.
Amazing game. I would recommend making the turn meter not go down while you're colliding by making it go down biased on the distance you have moved. this will make the movement feel less punishing.
the code could go somthing like this
if (x != last_x) {
last_x = x;
turn -= mathAbs(last_x - x);
} ;
if (y != last_y ){
last_y = y;
turn -= mathAbs(last_y - y);
} ;
this will still do a vary similar thing but when you move against the wall and are moving slower it won't make your turn meter go down as much
Also, if you want to play a good game, I made hear is the link to my current project. https://gamejolt.com/games/Puzletun/885491 ps. the current version might be broken







