fork(1) download
  1. print("ARMORED CORE V - FCS SIMULATION")
  2. print("This program will calculate lock times for weapons combined with their FCS in Armored Core V")
  3. print("----------------------------------------------------------------------------")
  4.  
  5. #Base Weapon Lock/FCS Lock Percentage (150=1.5)/60
  6. #Seidenbaum at 421 Base Lock
  7. #421/1.5/60 is lock time (4.67 seconds)
  8. #Subcomputer: Base Weapon Lock/FCS Lock Percentage/Subcomp Lock Percentage (320=3.02)/Second Subcomp/60
  9. #Subcomps: 421/1.5/3.02/60 (1.54 Seconds)
  10. #Dual Subcomps: 421/1.5/3.02/3.02/60 (0.5 Seconds)
  11.  
  12. while (1 == 1):
  13. command = input("\nTo begin, type 'compute'\nThen enter your weapon's Base Lock Time\nThen your FCS' Lock Computation\nAnd then how many Subcomputers you have\nyou can also type help [ compute // help ]")
  14. if command == "help":
  15. print("\nFollow the instuctions as prompted\n\nI will also display the Lock Times and Subcomp Acceleration for FCSes and Subcomputers")
  16. print("--FCSes--\nUFC-11 GLANCE - 1.7 Lock Computation\nFCS-09 YASAKANI - 1.05 Lock Computation\nKV-1T2/OTKRYT - 0.75 Lock Computation\nFCS-07/Lr UZUME - 1.8 Lock Computation\nSEHER FCS199 - 1 Lock Computation\nPREDIRE FCS190 - 1.5 Lock Computation\n--SUBCOMPUTERS--\nSUBCOMPUTER USC-1 DHANBAD - 3.02 Lock Improvment\nSUBCOMPUTER SBC-9 TSUKUYOMI - 3.06 Missile Lock Improvement [Enter Normally]")
  17. if command == "compute":
  18. baselock = input("\n\nEnter your weapon's Base Lock Time >> ")
  19. fcs = input("\nEnter your FCS' Lock Computation as a Percentage >> ")
  20. subcompone = input("\nEnter your first Subcomputer's lock improvment\n Enter '1' if you don't have any subcomps >> ")
  21. subcomptwo = input("\nEnter your second Subcomputer's lock improvment\n Enter '1' if you don't have a second subcomputer >> ")
  22. print("\nThat Weapon and FCS Combo locks in :")
  23. print(int(baselock)/int(fcs)/int(subcompone)/int(subcomptwo)/60)
  24. print("\nSeconds")
  25.  
Runtime error #stdin #stdout #stderr 0.06s 9568KB
stdin
Standard input is empty
stdout
ARMORED CORE V - FCS SIMULATION
This program will calculate lock times for weapons combined with their FCS in Armored Core V
----------------------------------------------------------------------------

To begin, type 'compute'
Then enter your weapon's Base Lock Time
Then your FCS' Lock Computation
And then how many Subcomputers you have
you can also type help [ compute // help ]
stderr
Traceback (most recent call last):
  File "prog.py", line 13, in <module>
    command = input("\nTo begin, type 'compute'\nThen enter your weapon's Base Lock Time\nThen your FCS' Lock Computation\nAnd then how many Subcomputers you have\nyou can also type help [ compute // help ]")
EOFError: EOF when reading a line