Jives

Facer WFF Compatibility Fixes

Jul 26th, 2025 (edited)
47
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | Source Code | 0 0
  1. WFF-Compatible Workarounds for Common Facer Formulas
  2.  
  3. #DsZ# → $#Ds#<10?0#Ds#:#Ds#$, (pad(#Ds#,2))
  4. #DbZ# → $#Db#<10?0#Db#:#Db#$, (pad(#Db#,2))
  5. #DdL# → $#Dd#<10?0#Dd#:#Dd#$, (pad(#Dd#,2))
  6. #BLP# → #BLN#% (Works in conditions (e.g., opacity), but not as direct text output.)
  7.  
  8. Battery workaround using opacity:
  9. Battery: 10%, opacity: $#BLN#>=10 && #BLN#<20?100:0$
  10. Battery: 20%, opacity: $#BLN#>=20 && #BLN#<30?100:0$
  11. Battery: 30%, opacity: $#BLN#>=30 && #BLN#<40?100:0$
  12. Battery: 40%, opacity: $#BLN#>=40 && #BLN#<50?100:0$
  13. Battery: 50%, opacity: $#BLN#>=50 && #BLN#<60?100:0$
  14. Battery: 60%, opacity: $#BLN#>=60 && #BLN#<70?100:0$
  15. Battery: 70%, opacity: $#BLN#>=70 && #BLN#<80?100:0$
  16. Battery: 80%, opacity: $#BLN#>=80 && #BLN#<90?100:0$
  17. Battery: 90%, opacity: $#BLN#>=90 && #BLN#<100?100:0$
  18. Battery: 100%, opacity: $#BLN#=100?100:0$
  19.  
Advertisement
Comments
  • Jives
    68 days
    # text 0.27 KB | 0 0
    1. Facer WFF Compatibility Fixes
    2. ------------------------------
    3. This document contains alternative formulas and logic tweaks to make standard Facer Creator expressions work in WFF (Watch Face Format). Useful when older tags like #DsZ# or advanced math functions are unsupported.
Add Comment
Please, Sign In to add comment