Is there anyway to format time after I have added time to it? Neither of these work:
trigger:
set {_time} to now
add 1 hour to {_time}
set {_formatted} to {_time} formatted as "mm.kk.dd.MM.yyyy"```
```command /test:
trigger:
set {_time} to now formatted as "mm.kk.dd.MM.yyyy"
add 1 hour to {_time}
But this does: (Without adding time)
command /test:
trigger:
set {_time} to now formatted as "mm.kk.dd.MM.yyyy"
broadcast "%{_time}%"