Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
levelednain authored May 12, 2023
1 parent 9db2a6e commit 5a7d3a6
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions omtcmod.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#welcome screen
print('Hi, this program will convert your osu!mania scroll speed to etterna scroll speed')

#ask for your data
osu_mania_sp = int(input('\nPlease input your osu!mania scroll speed: '))
etterna_recep = int(input('\nPlease input your Etterna Receptor Size: '))

#calculating and printing the results
CMod = osu_mania_sp * 3200 / etterna_recep
print('Your Etterna CMod is', CMod)

next_calculation = input ('Type "Close" and Enter to Close the Program: ')

0 comments on commit 5a7d3a6

Please sign in to comment.