hi!! i have no idea what i'm doing and i would like to have some of an idea what i'm doing. Handholding through the learning process would be nice. So far i know nothing and i would like to know at least something while i'm still in the concept part of my game lol. I am aimless, i have no main goals, i'm just kind of sitting here with a plan and no idea how to make it happen. 
#i have no idea whats going on and i dont even know what a script is
25 messages · Page 1 of 1 (latest)
I think i forgetted to mention the face that i do want and plan to make a game in the title oopsie
Sounds like you've never written any code before........
I have not
Wait i did actually write some very rudimentary code in the little scratch game they give you in elementary
This
if yk basics of python and some concepts of oop pygame ce might be a good option im not sure what kind of game u r trying to make here
I have no knowledge of python
And i'm trying to make a farming game. Kindaa like stardew and kinda like cozy grove and also a bit my own ideas
only scratch?
Thats the only one i've ever used 
its not rlly an uphill task to learn the basics of python u js gotta invest the time in it try making a brand name generator where u ask user for their pet name and the city they live in and combine them both to get ur band name
by doing that u might learn how to get user input and String Concatenation
color = input("whats ur fav color? ")
print("i hate " + color + " color")
i cant rlly think of a good example
x = "Hello"
y = "World"
z = x + " " + y # z is a new string object
print(z) # Hello World
thats another one
Okay! Thank you : )