Advertisement
Guest User

Untitled

a guest
Nov 14th, 2018
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. # FTP (restarts on pause)
  2. MAX(TIMEAVG0(Power,1200,1)) * 0.95
  3. ## with countdown timer
  4. ALT(MAX(TIMEAVG0(Power,1200,1)) * 0.95, FORMATTIME(MAX(if (PREV(timer) eq null, timer, null)) + 1200 - Timer))
  5.  
  6. # FTP (does not restart on pause)
  7. MAX(TIMEAVG0(Power,1200,1, 1)) * 0.95
  8. ## with countdown timer
  9. ALT(MAX(TIMEAVG0(Power,1200,1, 1)) * 0.95, FORMATTIME(1200 - Timer))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement