Skip to content

Commit

Permalink
Merge pull request #13 from Flubberschnub/indev
Browse files Browse the repository at this point in the history
Fixed orange ribbon speedometer
  • Loading branch information
Flubberschnub committed Aug 3, 2020
2 parents db4a25f + 0559ed3 commit f24e9f0
Showing 1 changed file with 50 additions and 20 deletions.
70 changes: 50 additions & 20 deletions data/lc/functions/gauges/speedometer/red/73.mcfunction
@@ -1,24 +1,54 @@
##786 speedometer
execute if score @e[tag=cyclestand,limit=1,tag=matchedid,tag=ribboning] speed matches 1..100 run title @s actionbar {"text":"||","color":"#FF8A2A","bold":true,"italic":false}
execute if score @e[tag=cyclestand,limit=1,tag=matchedid,tag=ribboning] speed matches 101..200 run title @s actionbar {"text":"||||","color":"#FF8A2A","bold":true,"italic":false}
execute if score @e[tag=cyclestand,limit=1,tag=matchedid,tag=ribboning] speed matches 201..300 run title @s actionbar {"text":"||||||","color":"#FF8A2A","bold":true,"italic":false}
execute if score @e[tag=cyclestand,limit=1,tag=matchedid,tag=ribboning] speed matches 301..400 run title @s actionbar {"text":"||||||||","color":"#FF8A2A","bold":true,"italic":false}
execute if score @e[tag=cyclestand,limit=1,tag=matchedid,tag=ribboning] speed matches 401..500 run title @s actionbar {"text":"||||||||||","color":"#FF8A2A","bold":true,"italic":false}
execute if score @e[tag=cyclestand,limit=1,tag=matchedid,tag=ribboning] speed matches 501..600 run title @s actionbar {"text":"||||||||||||","color":"#FF8A2A","bold":true,"italic":false}
execute if score @e[tag=cyclestand,limit=1,tag=matchedid,tag=ribboning] speed matches 601..700 run title @s actionbar {"text":"||||||||||||||","color":"#FF8A2A","bold":true,"italic":false}
execute if score @e[tag=cyclestand,limit=1,tag=matchedid,tag=ribboning] speed matches 701..800 run title @s actionbar {"text":"||||||||||||||||","color":"#FF8A2A","bold":true,"italic":false}
execute if score @e[tag=cyclestand,limit=1,tag=matchedid,tag=ribboning] speed matches 801..900 run title @s actionbar {"text":"||||||||||||||||||","color":"#FF8A2A","bold":true,"italic":false}
execute if score @e[tag=cyclestand,limit=1,tag=matchedid,tag=ribboning] speed matches 901..1000 run title @s actionbar {"text":"||||||||||||||||||||","color":"#FF8A2A","bold":true,"italic":false}
execute if score @e[tag=cyclestand,limit=1,tag=matchedid,tag=ribboning] speed matches 1001..1100 run title @s actionbar {"text":"||||||||||||||||||||||","color":"#FF8A2A","bold":true,"italic":false}
execute if score @e[tag=cyclestand,limit=1,tag=matchedid,tag=ribboning] speed matches 1101..1200 run title @s actionbar {"text":"||||||||||||||||||||||||","color":"#FF8A2A","bold":true,"italic":false}
execute if score @e[tag=cyclestand,limit=1,tag=matchedid,tag=ribboning] speed matches 1201..1300 run title @s actionbar {"text":"||||||||||||||||||||||||||","color":"#FF8A2A","bold":true,"italic":false}
execute if score @e[tag=cyclestand,limit=1,tag=matchedid,tag=ribboning] speed matches 1301..1400 run title @s actionbar {"text":"||||||||||||||||||||||||||||","color":"#FF8A2A","bold":true,"italic":false}
execute if score @e[tag=cyclestand,limit=1,tag=matchedid,tag=ribboning] speed matches 1401..1500 run title @s actionbar {"text":"||||||||||||||||||||||||||||||","color":"#FF8A2A","bold":true,"italic":false}
execute if score @e[tag=cyclestand,limit=1,tag=matchedid,tag=ribboning] speed matches 1501..1600 run title @s actionbar {"text":"||||||||||||||||||||||||||||||||","color":"#FF8A2A","bold":true,"italic":false}
execute if score @e[tag=cyclestand,limit=1,tag=matchedid,tag=ribboning] speed matches 1601..1700 run title @s actionbar {"text":"||||||||||||||||||||||||||||||||||","color":"#FF8A2A","bold":true,"italic":false}
execute if score @e[tag=cyclestand,limit=1,tag=matchedid,tag=ribboning] speed matches 1701..1800 run title @s actionbar {"text":"||||||||||||||||||||||||||||||||||||","color":"#FF8A2A","bold":true,"italic":false}
execute if score @e[tag=cyclestand,limit=1,tag=matchedid,tag=ribboning] speed matches 1801..1900 run title @s actionbar {"text":"||||||||||||||||||||||||||||||||||||||","color":"#FF8A2A","bold":true,"italic":false}
execute if score @e[tag=cyclestand,limit=1,tag=matchedid,tag=ribboning] speed matches 1901..2000 run title @s actionbar {"text":"||||||||||||||||||||||||||||||||||||||||","color":"#FF8A2A","bold":true,"italic":false}
execute if score @e[tag=cyclestand,limit=1,tag=matchedid,tag=ribboning] speed matches 1..100 run title @s actionbar {"text":"|","color":"#FF8A2A","bold":true,"italic":false}
execute if score @e[tag=cyclestand,limit=1,tag=matchedid,tag=ribboning] speed matches 101..200 run title @s actionbar {"text":"||","color":"#FF8A2A","bold":true,"italic":false}
execute if score @e[tag=cyclestand,limit=1,tag=matchedid,tag=ribboning] speed matches 201..300 run title @s actionbar {"text":"|||","color":"#FF8A2A","bold":true,"italic":false}
execute if score @e[tag=cyclestand,limit=1,tag=matchedid,tag=ribboning] speed matches 301..400 run title @s actionbar {"text":"||||","color":"#FF8A2A","bold":true,"italic":false}
execute if score @e[tag=cyclestand,limit=1,tag=matchedid,tag=ribboning] speed matches 401..500 run title @s actionbar {"text":"|||||","color":"#FF8A2A","bold":true,"italic":false}
execute if score @e[tag=cyclestand,limit=1,tag=matchedid,tag=ribboning] speed matches 501..600 run title @s actionbar {"text":"||||||","color":"#FF8A2A","bold":true,"italic":false}
execute if score @e[tag=cyclestand,limit=1,tag=matchedid,tag=ribboning] speed matches 601..700 run title @s actionbar {"text":"|||||||","color":"#FF8A2A","bold":true,"italic":false}
execute if score @e[tag=cyclestand,limit=1,tag=matchedid,tag=ribboning] speed matches 701..800 run title @s actionbar {"text":"||||||||","color":"#FF8A2A","bold":true,"italic":false}
execute if score @e[tag=cyclestand,limit=1,tag=matchedid,tag=ribboning] speed matches 801..900 run title @s actionbar {"text":"|||||||||","color":"#FF8A2A","bold":true,"italic":false}
execute if score @e[tag=cyclestand,limit=1,tag=matchedid,tag=ribboning] speed matches 901..1000 run title @s actionbar {"text":"||||||||||","color":"#FF8A2A","bold":true,"italic":false}
execute if score @e[tag=cyclestand,limit=1,tag=matchedid,tag=ribboning] speed matches 1001..1100 run title @s actionbar {"text":"|||||||||||","color":"#FF8A2A","bold":true,"italic":false}
execute if score @e[tag=cyclestand,limit=1,tag=matchedid,tag=ribboning] speed matches 1101..1200 run title @s actionbar {"text":"||||||||||||","color":"#FF8A2A","bold":true,"italic":false}
execute if score @e[tag=cyclestand,limit=1,tag=matchedid,tag=ribboning] speed matches 1201..1300 run title @s actionbar {"text":"|||||||||||||","color":"#FF8A2A","bold":true,"italic":false}
execute if score @e[tag=cyclestand,limit=1,tag=matchedid,tag=ribboning] speed matches 1301..1400 run title @s actionbar {"text":"||||||||||||||","color":"#FF8A2A","bold":true,"italic":false}
execute if score @e[tag=cyclestand,limit=1,tag=matchedid,tag=ribboning] speed matches 1401..1500 run title @s actionbar {"text":"|||||||||||||||","color":"#FF8A2A","bold":true,"italic":false}
execute if score @e[tag=cyclestand,limit=1,tag=matchedid,tag=ribboning] speed matches 1501..1600 run title @s actionbar {"text":"||||||||||||||||","color":"#FF8A2A","bold":true,"italic":false}
execute if score @e[tag=cyclestand,limit=1,tag=matchedid,tag=ribboning] speed matches 1601..1700 run title @s actionbar {"text":"|||||||||||||||||","color":"#FF8A2A","bold":true,"italic":false}
execute if score @e[tag=cyclestand,limit=1,tag=matchedid,tag=ribboning] speed matches 1701..1800 run title @s actionbar {"text":"||||||||||||||||||","color":"#FF8A2A","bold":true,"italic":false}
execute if score @e[tag=cyclestand,limit=1,tag=matchedid,tag=ribboning] speed matches 1801..1900 run title @s actionbar {"text":"|||||||||||||||||||","color":"#FF8A2A","bold":true,"italic":false}
execute if score @e[tag=cyclestand,limit=1,tag=matchedid,tag=ribboning] speed matches 1901..2000 run title @s actionbar {"text":"||||||||||||||||||||","color":"#FF8A2A","bold":true,"italic":false}
execute if score @e[tag=cyclestand,limit=1,tag=matchedid,tag=ribboning] speed matches 2001..2100 run title @s actionbar {"text":"|||||||||||||||||||||","color":"#FF8A2A","bold":true,"italic":false}
execute if score @e[tag=cyclestand,limit=1,tag=matchedid,tag=ribboning] speed matches 2101..2200 run title @s actionbar {"text":"||||||||||||||||||||||","color":"#FF8A2A","bold":true,"italic":false}
execute if score @e[tag=cyclestand,limit=1,tag=matchedid,tag=ribboning] speed matches 2201..2300 run title @s actionbar {"text":"|||||||||||||||||||||||","color":"#FF8A2A","bold":true,"italic":false}
execute if score @e[tag=cyclestand,limit=1,tag=matchedid,tag=ribboning] speed matches 2301..2400 run title @s actionbar {"text":"||||||||||||||||||||||||","color":"#FF8A2A","bold":true,"italic":false}
execute if score @e[tag=cyclestand,limit=1,tag=matchedid,tag=ribboning] speed matches 2401..2500 run title @s actionbar {"text":"|||||||||||||||||||||||||","color":"#FF8A2A","bold":true,"italic":false}
execute if score @e[tag=cyclestand,limit=1,tag=matchedid,tag=ribboning] speed matches 2501..2600 run title @s actionbar {"text":"||||||||||||||||||||||||||","color":"#FF8A2A","bold":true,"italic":false}
execute if score @e[tag=cyclestand,limit=1,tag=matchedid,tag=ribboning] speed matches 2601..2700 run title @s actionbar {"text":"|||||||||||||||||||||||||||","color":"#FF8A2A","bold":true,"italic":false}
execute if score @e[tag=cyclestand,limit=1,tag=matchedid,tag=ribboning] speed matches 2701..2800 run title @s actionbar {"text":"||||||||||||||||||||||||||||","color":"#FF8A2A","bold":true,"italic":false}
execute if score @e[tag=cyclestand,limit=1,tag=matchedid,tag=ribboning] speed matches 2801..2900 run title @s actionbar {"text":"|||||||||||||||||||||||||||||","color":"#FF8A2A","bold":true,"italic":false}
execute if score @e[tag=cyclestand,limit=1,tag=matchedid,tag=ribboning] speed matches 2901..3000 run title @s actionbar {"text":"||||||||||||||||||||||||||||||","color":"#FF8A2A","bold":true,"italic":false}
execute if score @e[tag=cyclestand,limit=1,tag=matchedid,tag=ribboning] speed matches 3001..3100 run title @s actionbar {"text":"|||||||||||||||||||||||||||||||","color":"#FF8A2A","bold":true,"italic":false}
execute if score @e[tag=cyclestand,limit=1,tag=matchedid,tag=ribboning] speed matches 3101..3200 run title @s actionbar {"text":"||||||||||||||||||||||||||||||||","color":"#FF8A2A","bold":true,"italic":false}
execute if score @e[tag=cyclestand,limit=1,tag=matchedid,tag=ribboning] speed matches 3201..3300 run title @s actionbar {"text":"|||||||||||||||||||||||||||||||||","color":"#FF8A2A","bold":true,"italic":false}
execute if score @e[tag=cyclestand,limit=1,tag=matchedid,tag=ribboning] speed matches 3301..3400 run title @s actionbar {"text":"||||||||||||||||||||||||||||||||||","color":"#FF8A2A","bold":true,"italic":false}
execute if score @e[tag=cyclestand,limit=1,tag=matchedid,tag=ribboning] speed matches 3401..3500 run title @s actionbar {"text":"|||||||||||||||||||||||||||||||||||","color":"#FF8A2A","bold":true,"italic":false}
execute if score @e[tag=cyclestand,limit=1,tag=matchedid,tag=ribboning] speed matches 3501..3600 run title @s actionbar {"text":"||||||||||||||||||||||||||||||||||||","color":"#FF8A2A","bold":true,"italic":false}
execute if score @e[tag=cyclestand,limit=1,tag=matchedid,tag=ribboning] speed matches 3601..3700 run title @s actionbar {"text":"|||||||||||||||||||||||||||||||||||||","color":"#FF8A2A","bold":true,"italic":false}
execute if score @e[tag=cyclestand,limit=1,tag=matchedid,tag=ribboning] speed matches 3701..3800 run title @s actionbar {"text":"||||||||||||||||||||||||||||||||||||||","color":"#FF8A2A","bold":true,"italic":false}
execute if score @e[tag=cyclestand,limit=1,tag=matchedid,tag=ribboning] speed matches 3801..3900 run title @s actionbar {"text":"|||||||||||||||||||||||||||||||||||||||","color":"#FF8A2A","bold":true,"italic":false}
execute if score @e[tag=cyclestand,limit=1,tag=matchedid,tag=ribboning] speed matches 3901..4000 run title @s actionbar {"text":"||||||||||||||||||||||||||||||||||||||||","color":"#FF8A2A","bold":true,"italic":false}
execute if score @e[tag=cyclestand,limit=1,tag=matchedid,tag=ribboning] speed matches 4001..4100 run title @s actionbar {"text":"|||||||||||||||||||||||||||||||||||||||||","color":"#FF8A2A","bold":true,"italic":false}
execute if score @e[tag=cyclestand,limit=1,tag=matchedid,tag=ribboning] speed matches 4101..4200 run title @s actionbar {"text":"||||||||||||||||||||||||||||||||||||||||||","color":"#FF8A2A","bold":true,"italic":false}
execute if score @e[tag=cyclestand,limit=1,tag=matchedid,tag=ribboning] speed matches 4201..4300 run title @s actionbar {"text":"|||||||||||||||||||||||||||||||||||||||||||","color":"#FF8A2A","bold":true,"italic":false}
execute if score @e[tag=cyclestand,limit=1,tag=matchedid,tag=ribboning] speed matches 4301..4400 run title @s actionbar {"text":"||||||||||||||||||||||||||||||||||||||||||||","color":"#FF8A2A","bold":true,"italic":false}
execute if score @e[tag=cyclestand,limit=1,tag=matchedid,tag=ribboning] speed matches 4401..4500 run title @s actionbar {"text":"|||||||||||||||||||||||||||||||||||||||||||||","color":"#FF8A2A","bold":true,"italic":false}
execute if score @e[tag=cyclestand,limit=1,tag=matchedid,tag=ribboning] speed matches 4501..4600 run title @s actionbar {"text":"||||||||||||||||||||||||||||||||||||||||||||||","color":"#FF8A2A","bold":true,"italic":false}
execute if score @e[tag=cyclestand,limit=1,tag=matchedid,tag=ribboning] speed matches 4601..4700 run title @s actionbar {"text":"|||||||||||||||||||||||||||||||||||||||||||||||","color":"#FF8A2A","bold":true,"italic":false}
execute if score @e[tag=cyclestand,limit=1,tag=matchedid,tag=ribboning] speed matches 4701..4800 run title @s actionbar {"text":"||||||||||||||||||||||||||||||||||||||||||||||||","color":"#FF8A2A","bold":true,"italic":false}
execute if score @e[tag=cyclestand,limit=1,tag=matchedid,tag=ribboning] speed matches 4801..4900 run title @s actionbar {"text":"|||||||||||||||||||||||||||||||||||||||||||||||||","color":"#FF8A2A","bold":true,"italic":false}
execute if score @e[tag=cyclestand,limit=1,tag=matchedid,tag=ribboning] speed matches 4901..5000 run title @s actionbar {"text":"||||||||||||||||||||||||||||||||||||||||||||||||||","color":"#FF8A2A","bold":true,"italic":false}
##786 speedometer not ribboning
execute if score @e[tag=cyclestand,limit=1,tag=matchedid,tag=!ribboning] speed matches 1..100 run title @s actionbar {"text":"|","color":"white","bold":true,"italic":false}
execute if score @e[tag=cyclestand,limit=1,tag=matchedid,tag=!ribboning] speed matches 101..200 run title @s actionbar {"text":"||","color":"white","bold":true,"italic":false}
Expand Down

0 comments on commit f24e9f0

Please sign in to comment.