26 lines
2.3 KiB
Python
26 lines
2.3 KiB
Python
|
import clipboard
|
|||
|
|
|||
|
intro = """
|
|||
|
|
|||
|
██╗ ██╗ █████╗ ███╗ ██╗██╗████████╗██╗ ██╗
|
|||
|
██║ ██║██╔══██╗████╗ ██║██║╚══██╔══╝╚██╗ ██╔╝
|
|||
|
██║ ██║███████║██╔██╗ ██║██║ ██║ ╚████╔╝
|
|||
|
╚██╗ ██╔╝██╔══██║██║╚██╗██║██║ ██║ ╚██╔╝
|
|||
|
╚████╔╝ ██║ ██║██║ ╚████║██║ ██║ ██║
|
|||
|
╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═══╝╚═╝ ╚═╝ ╚═╝
|
|||
|
|
|||
|
"""
|
|||
|
|
|||
|
print(intro)
|
|||
|
|
|||
|
server = input("Server invite:")
|
|||
|
invite = input("new invite name:")
|
|||
|
|
|||
|
vanity = "discοrd.gg/" + invite + "||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||" + server
|
|||
|
clipboard.copy(vanity)
|
|||
|
|
|||
|
print('Copied to clipboard!')
|
|||
|
|
|||
|
input()
|
|||
|
print()
|