So I've been working on my own autogen program. After looking around the forms I've noticed that people think autogen is bad and that you can get banned for it. I want to autogen wheelie/speedghost tracks, not import images. If I say that a track is autogen in the title can i still get banned?
thats not possible. you cant get banned for autogen. autogen tracks are still tracks. they may be unpopular but its impossible to get banned from it unless the autogen makes hurtful or nsfw content
Sure, import random lineList = "" lastLineRight = 18 lastLineRightVertical = 1 def genLine(): global lineList global lastLineRight global lastLineRightVertical l1 = lastLineRight lastLineRight = random.randint((lastLineRight + 150), (lastLineRight + 200)) v1 = lastLineRightVertical lastLineRightVertical = random.randint((lastLineRightVertical - 50), (lastLineRightVertical - 40)) line = str(l1) + " " + str(v1) + "i " + str(lastLineRight) + " " + str(lastLineRightVertical) + "i" if lineList != "": lineList = lineList + "," + line else: lineList = line print("How many lines would you like in your autogen?") linesNum = int(input()) x = 0 while x < linesNum: genLine() x = x + 1 if x == linesNum: print ("-18 1i 18 1i," + lineList + "##")
here is your updated one: import random lineList = "" lastLineRight = 18 lastLineRightVertical = 1 def genLine(): global lineList global lastLineRight global lastLineRightVertical l1 = lastLineRight lastLineRight = random.randint((lastLineRight + 150), (lastLineRight + 200)) v1 = lastLineRightVertical lastLineRightVertical = random.randint((lastLineRightVertical - 50), (lastLineRightVertical - 40)) line = str(l1) + " " + str(v1) + "i " + str(lastLineRight) + " " + str(lastLineRightVertical) + "i" if lineList != "": lineList = lineList + "," + line else: lineList = line print("How many lines would you like in your autogen?") linesNum = int(input()) x = 0 while x < linesNum: genLine() x = x + 1 if x == linesNum: print ("-18 1i 18 1i," + lineList + "##")