Dismiss Notice
Hey Guest,
If you are interested in ghosting, the Ghosting Awards for January 2025 has just been announced:

Click here to check it out!

Autogen

Discussion in 'Anything and everything Free Rider' started by LightningBerk, Jan 15, 2020.

  1. LightningBerk

    LightningBerk Casual Member

    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?
     
  2. Polarized

    Polarized Well-Known Member Official Author

    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
     
    Logeton likes this.
  3. GREEN_DOWNHILL

    GREEN_DOWNHILL Well-Known Member Official Author

  4. HackerAlertIsMad

    HackerAlertIsMad Active Member Official Author

    Can I take a look at the autogen script.?
     
    Zenblade likes this.
  5. BrandonBishop50

    BrandonBishop50 FRHD News Team Official Author

    this is false. here is something from m1.c3, one of the original generator makers:
     
    FIREBEATS likes this.
  6. GREEN_DOWNHILL

    GREEN_DOWNHILL Well-Known Member Official Author

    what if we just asked stig now that could have changed
     
  7. BIG_SHlT

    BIG_SHlT Well-Known Member

    If we get banned then sat
    s our problem not that I want to get banned by doing this but still..
     
    Last edited: Jan 15, 2020
  8. GREEN_DOWNHILL

    GREEN_DOWNHILL Well-Known Member Official Author

    Char We need your help
     
  9. BIG_SHlT

    BIG_SHlT Well-Known Member

    Yes Char enlighten us ...
     
  10. HackerAlertIsMad

    HackerAlertIsMad Active Member Official Author

    mR..A please enlighten us!
     
    Zenblade likes this.
  11. iNooby

    iNooby FRHD News Team

    snails.
     
  12. Polarized

    Polarized Well-Known Member Official Author

  13. LightningBerk

    LightningBerk Casual Member

    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 + "##")
     
  14. LightningBerk

    LightningBerk Casual Member



    its not very good yet
     
  15. Pirahna

    Pirahna Active Member Official Author

    it doesnt work when you run it. after the colon, it says unexpected indented line.
     
  16. Pirahna

    Pirahna Active Member Official Author

    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 + "##")
     
  17. BIG_SHlT

    BIG_SHlT Well-Known Member

    i dont get it , what do u do with this/ how do you do it?
     
  18. HackerAlertIsMad

    HackerAlertIsMad Active Member Official Author

    What programming language is that in?
     
    Zenblade likes this.
  19. LightningBerk

    LightningBerk Casual Member

  20. BIG_SHlT

    BIG_SHlT Well-Known Member

    How do u use it ???
     

Share This Page