[BOFU2017] Options [BGA]
Frums
00:00
Level Leaderboard
Lagging? Disable animations here:
2
Options [PLAYER 2]
@KaiKoKenzooie
import time

def display_menu():
print("\nOPTIONS MENU")
print("1. Play Song")
print("2. Display Song Information")
print("3. Adjust Volume")
print("4. Change Equalizer Settings")
print("5. Exit")
print()

def play_song():
print("\nPlaying 'Options' by Frums...")
# Simulate playing the song
time.sleep(2)
print("Song playback complete.\n")

def display_song_info():
print("\nSong Information:")
print("Title: Options")
print("Artist: Frums")
print("Genre: VAPOR")
print("Album: BOFU2017")
print("Team: SEMICOLON")
print("Release Date: 2017")
print()

def adjust_volume():
volume = int(input("\nEnter volume level (0-100): "))
print(f"Volume set to {volume}.\n")

def change_equalizer_settings():
print("\nSelect Equalizer Setting:")
print("1. Bass Boost")
print("2. Treble Boost")
print("3. Vocal Boost")
print("4. Flat")
choice = input("Choose an option (1-4): ")

settings = {
"1": "Bass Boost",
"2": "Treble Boost",
"3": "Vocal Boost",
"4": "Flat"
}

setting = settings.get(choice, "Flat")
print(f"Equalizer set to {setting}.\n")

def main():
while True:
display_menu()
choice = input("Select an option (1-5): ")

if choice == '1':
play_song()
elif choice == '2':
display_song_info()
elif choice == '3':
adjust_volume()
elif choice == '4':
change_equalizer_settings()
elif choice == '5':
print("Exiting options menu. Goodbye!")
break
else:
print("Invalid choice. Please select a valid option.\n")

if __name__ == "__main__":
main()
ENTER> PLAYER 2>
Rate this level:
Criteria: song choice and fit with the level. Is it a fun level? Please do not vote for difficulty.
to play the game.
to Play/Pause the video.
to restart the level.
SUBMIT
Restart
Full Screen
Congratulations!
Level Completed!
Options [PLAYER 2]
You can only submit your score if you have an account. Create one here or login here.
Share this level with friends:
Sign Up Login DISCORD Hall of Fame Create a Level G-Shop More IO Games
Gpop.io Hall of Fame Create a Level All Levels G-Shop Partners Debug Updates v.1.16.40