indik 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. # indik
  2. a = ARGS[1]
  3. a1 = ARGS[2]
  4. if $ARGS[0] = '1':
  5. if a >= 100 : $ind = '<font face="Lucida Console" color="green"> ██████████ <<a1>></font>'
  6. if a < 100 and a >= 90: $ind = '<font face="Lucida Console" color="green"> █████████_ <<a1>></font>'
  7. if a < 90 and a >= 80: $ind = '<font face="Lucida Console" color="green"> ████████__ <<a1>></font>'
  8. if a < 80 and a >= 70: $ind = '<font face="Lucida Console" color="green"> ███████___ <<a1>></font>'
  9. if a < 70 and a >= 60: $ind = '<font face="Lucida Console" color="blue"> ██████____ <<a1>></font>'
  10. if a < 60 and a >= 50: $ind = '<font face="Lucida Console" color="blue"> █████_____ <<a1>></font>'
  11. if a < 50 and a >= 40: $ind = '<font face="Lucida Console" color="blue"> ████______ <<a1>></font>'
  12. if a < 40 and a >= 30: $ind = '<font face="Lucida Console" color="red"> ███_______ <<a1>></font>'
  13. if a < 30 and a >= 20: $ind = '<font face="Lucida Console" color="red"> ██________ <<a1>></font>'
  14. if a < 20 and a >= 10: $ind = '<font face="Lucida Console" color="red"> █_________ <<a1>></font>'
  15. if a < 10 and a >= 1: $ind = '<font face="Lucida Console" color="red"> ▓_________ <<a1>></font>'
  16. if a <= 0 : $ind = '<font face="Lucida Console" color="red"> __________ <<a1>></font>'
  17. end
  18. if $ARGS[0] = '2':
  19. if a >= 100 : $ind = '<font face="Lucida Console" color="red"> ██████████ </font>'
  20. if a < 100 and a >= 90: $ind = '<font face="Lucida Console" color="red"> █████████_ <<a1>></font>'
  21. if a < 90 and a >= 80: $ind = '<font face="Lucida Console" color="red"> ████████__ <<a1>></font>'
  22. if a < 80 and a >= 70: $ind = '<font face="Lucida Console" color="orange"> ███████___ <<a1>></font>'
  23. if a < 70 and a >= 60: $ind = '<font face="Lucida Console" color="orange"> ██████____ <<a1>></font>'
  24. if a < 60 and a >= 50: $ind = '<font face="Lucida Console" color="yellow"> █████_____ <<a1>></font>'
  25. if a < 50 and a >= 40: $ind = '<font face="Lucida Console" color="yellow"> ████______ <<a1>></font>'
  26. if a < 40 and a >= 30: $ind = '<font face="Lucida Console" color="green"> ███_______ <<a1>></font>'
  27. if a < 30 and a >= 20: $ind = '<font face="Lucida Console" color="green"> ██________ <<a1>></font>'
  28. if a < 20 and a >= 10: $ind = '<font face="Lucida Console" color="blue"> █_________ <<a1>></font>'
  29. if a < 10 and a >= 1 : $ind = '<font face="Lucida Console" color="blue"> ▓_________ <<a1>></font>'
  30. if a <= 0 : $ind = '<font face="Lucida Console" color="blue"> __________ <<a1>></font>'
  31. end
  32. --- indik ---------------------------------