Guest User

Untitled

a guest
Apr 22nd, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.22 KB | None | 0 0
  1. TextWindow.Title="CyberRepublik Damage Calculator"
  2. TextWindow.ForegroundColor="green"
  3. TextWindow.WriteLine ("CyberRepublik Damage Calculator")
  4. TextWindow.ForegroundColor="white"
  5. TextWindow.WriteLine ("What level are you ?(eg. 23)")
  6. lvl=TextWindow.Read()
  7. TextWindow.WriteLine ("What military rank are you ?(eg. 13)")
  8. rank=Textwindow.Read()
  9. TextWindow.WriteLine ("Whats your military skill ?(eg. 14.32)")
  10. skill=textwindow.Read()
  11. TextWindow.WriteLine ("What quality of weapon do you use (1-5 if you dont have any just click enter)?")
  12. qwep=textwindow.Read()
  13. TextWindow.WriteLine ("What quality of ammo do you use (1-5 if you dont have any just click enter)?")
  14. qammo=textwindow.Read()
  15. dmg= ((100 * (1 + (lvl/100)) * (1 + (rank / 7)) * skill * (1 + qwep + qammo)) / 80)
  16. dmg1= ((100 * (1 + (lvl/100)) * (1 + (rank / 7)) * skill * (1 + qwep + qammo)) / 80) + ((100 * (1 + (lvl/100)) * (1 + (rank / 7)) * skill * (1 + qwep + qammo)) / 80)/10
  17. TextWindow.Clear()
  18. TextWindow.ForegroundColor="green"
  19. TextWindow.WriteLine ("You make "+Math.Round(dmg)+" DMG if you arent in MU. If you are in MU you make "+Math.Round(dmg1)+" DMG!")
  20. TextWindow.ForegroundColor="yellow"
  21. TextWindow.WriteLine ("Made by MarshallmkD")
  22. TextWindow.ForegroundColor="white"
Add Comment
Please, Sign In to add comment