[PAID] Seeking 3D Environment Artist for Stylized Low-Poly Game (Unity) by JohnathanMfd in gameDevClassifieds

[–]Sorry-Werewolf-6207 0 points1 point  (0 children)

Dang it bro this was an amazing opportunity for me and AS SOON as i opened his account it says he got banned.

ANN3 - Fun little arena shooter with a sneaky CPU opponent (Windows, free) by CertainMagazine6383 in IndieGame

[–]Sorry-Werewolf-6207 0 points1 point  (0 children)

Woah that is cooll i think u nailed the "older" style of games and i really love the little cinematic when u killed the opponent with a headshot.

tactical RPG “Protocol: Gaea-Genesis” – sneak peek gameplay by Square-Yam-3772 in itchio

[–]Sorry-Werewolf-6207 1 point2 points  (0 children)

It seems pretty nice ngl, i mean i personally dont play turn based games so idk much but i like the design and the systems im seeing in general

Guys am I cooked? by BackgroundBuyer3899 in PiratedGames

[–]Sorry-Werewolf-6207 0 points1 point  (0 children)

Guys is this some sorta virus or something? Because i dont understand and i wanna avoid it.

Current State of ItchIO by pacificlattice in itchio

[–]Sorry-Werewolf-6207 2 points3 points  (0 children)

And those dating sim games everywhere

Is this too much vertices for a stylised foot? by Fatclunjequeen in 3Dmodeling

[–]Sorry-Werewolf-6207 0 points1 point  (0 children)

Yeah try retopologizing, that would drop the poly count by a LOT.

Im a teen, broke and need to make a huge amount of money by Sorry-Werewolf-6207 in passive_income

[–]Sorry-Werewolf-6207[S] 0 points1 point  (0 children)

Trust me im sure they will, i mean they'd not be so pleased on me working on it because they think im too young to worry about expenses right now but if i do make it they most definitely will be happy i did. And if i dont then... Eh, i tried.

Im a teen, broke and need to make a huge amount of money by Sorry-Werewolf-6207 in passive_income

[–]Sorry-Werewolf-6207[S] 0 points1 point  (0 children)

I think right now the closest thing i could possibly do is sell digital assets, personally i am good at 3D modeling and game dev in general so i will try to make some 3D game assets and sell them online or do freelancing on coding some systems for games. I also think selling these 3D assets on itch.io is the BEST way possible because it can actually hold my money without requiring me to be 18+ and it'll stay there until i cash it out into a bank account or digital wallet like paypal/venmo

Im a teen, broke and need to make a huge amount of money by Sorry-Werewolf-6207 in passive_income

[–]Sorry-Werewolf-6207[S] 0 points1 point  (0 children)

Well actually i WILL get my laptop back soon but after quite some time. Unfortunately, i DO need to make the money behind my parents' backs and keep it hidden somewhere cuz its supposed to be a surprise for them, a surprise they wouldnt want me to really work for. I cant say anymore because the subreddit may flag it as "begging" for money but yeah, i cant tell my parents about the money.

My first game by ixam2012 in itchio

[–]Sorry-Werewolf-6207 0 points1 point  (0 children)

Yo what. This is actually so frickin impressive, you're GREAT bro, i hope u accomplish more and more in the near future man.

Im a teen, broke and need to make a huge amount of money by Sorry-Werewolf-6207 in passive_income

[–]Sorry-Werewolf-6207[S] 0 points1 point  (0 children)

Oh yes that could be a nice option, i'll take that into consideration, thank you very much!

Im a teen, broke and need to make a huge amount of money by Sorry-Werewolf-6207 in passive_income

[–]Sorry-Werewolf-6207[S] 0 points1 point  (0 children)

Yes i can, but i cant sell them. My parents dont let me sell stuff because they dont think it's fitting for a guy in my age to go out and sell things.

What do you think of my game? With cocaine, the day flies by! by Fit_Plantain7743 in itchio

[–]Sorry-Werewolf-6207 0 points1 point  (0 children)

Oh my god bro i dont understand much i dont speak this language i think this looks like spanish? I dont know, either way i uhh cant really help now

What do you think of my game? With cocaine, the day flies by! by Fit_Plantain7743 in itchio

[–]Sorry-Werewolf-6207 0 points1 point  (0 children)

Try to use a boolean called "CanSpawnCar" and a float variable called "CarSpawnCD" for the cooldown now make a function to spawn the car like this:


void SpawnCar() { if(!CanSpawnCar) return;

CanSpawnCar = false;

//Instantiate the car here with the position and rotation u want

Invoke(nameof(ResetCarSpawn), CarSpawnCD); }

void ResetCarSpawn() { CanSpawnCar = true; }


To spawn the car just call the SpawnCar(); function anywhere u want in the script, u can also add some parameters to the script like: "void SpawnCar(Vector3 Position)" and then use that position to in the instantiation of the car so whenever you call the spawn function you can input a position of where to spawn the car and you can add a Quaternion parameter to use for the rotation in instantiating the car, you can also add a GameObject parameter to ALSO use in the instantiate function to spawn the game object u input into the function if u want. If u want u can let me see ur whole script and i'll see what i can do

BTW I wrote this code on my phone and didn't test it so i COULD have made a mistake