Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- WFF-Compatible Workarounds for Common Facer Formulas
- === Time & Date (Zero-Padding Issues) ===
- #DWE# → #DWFSS#
- Example:
- (clamp((50 + (((#DWE# % 6) - 2) * 25)), 50, 70))
- (clamp((50 + ((((#DWFSS# + 4) % 12) - 4) * 12.5)), 50, 70))
- or
- (400 - clamp( (90 + ((#DWE# % 6) * 95) ), 90, 263))
- (400 - clamp((90 + (((#DWFSS# + 4) % 12) * 47.5)), 90, 263))
- #DsZ# → $#Ds#<10?0#Ds#:#Ds#$ , (pad(#Ds#,2))
- #DbZ# → $#Db#<10?0#Db#:#Db#$ , (pad(#Db#,2))
- #DdL# → $#Dd#<10?0#Dd#:#Dd#$ , (pad(#Dd#,2))
- #DhZ# → $#Dh#<10?0#Dh#:#Dh#$ , (pad(#Dh#,2))
- #DkZ# → $#Dk#<10?0#Dk#:#Dk#$ , (pad(#Dk#,2))
- #DmZ# → $#Dm#<10?0#Dm#:#Dm#$ , (pad(#Dm#,2))
- === Astronomy ===
- #WRHZ# (Sunrise hour zero) → (pad(#WRH#,2))
- #WRMZ# (Sunrise minute zero) → (pad(#WRM#,2))
- #WSHZ# (Sunset hour zero) → (pad(#WSH#,2))
- #WSMZ# (Sunset minute zero) → (pad(#WSM#,2))
- #WM# (Moon phase) → Use static moon images (1–8 phases) with conditional opacity tied to #WM#
- #SunAngle# → Use #DWFHS# rotation to visually simulate sun position
- === Battery ===
- #BLP# → #BLN#% (Works in conditions only; not as direct text)
- #BLN# → Use conditional opacity (10% steps workaround shown below)
- Battery workaround using opacity:
- Battery: 10%, opacity: $#BLN#>=10 && #BLN#<20?100:0$
- Battery: 20%, opacity: $#BLN#>=20 && #BLN#<30?100:0$
- Battery: 30%, opacity: $#BLN#>=30 && #BLN#<40?100:0$
- Battery: 40%, opacity: $#BLN#>=40 && #BLN#<50?100:0$
- Battery: 50%, opacity: $#BLN#>=50 && #BLN#<60?100:0$
- Battery: 60%, opacity: $#BLN#>=60 && #BLN#<70?100:0$
- Battery: 70%, opacity: $#BLN#>=70 && #BLN#<80?100:0$
- Battery: 80%, opacity: $#BLN#>=80 && #BLN#<90?100:0$
- Battery: 90%, opacity: $#BLN#>=90 && #BLN#<100?100:0$
- Battery: 100%, opacity: $#BLN#=100?100:0$
- Phone battery (#PBN#) → Same opacity method as watch battery
- === Health & Fitness ===
- #ZSTANDVAL#, #ZMOVEVALUE#, #ZEXERCISEVALUE# → Use static placeholders (e.g., "Move", "Stand") or replace with #ZSC# (steps) or #ZHR# (heart rate)
- #ZCAL# (Calories) → Not supported; use placeholder text or progress bar as visual stand-in
- Steps (#ZSC#) → Fully supported in WFF
- === Sensors & GPS ===
- #LAT#, #LNG# → WFF uses fallback values (static); visually simulate compass/altitude manually or remove
- #CMP# (Compass) → Replace with static icon or simulated rotation (manual animation loop)
- #ALT# (Altitude) → Placeholder text "Alt: --"
- === Stopwatch & VAR ===
- Stopwatch tags (#SWEM#, #SWES# etc.) → Not interactive; simulate with:
- - Seconds: (floor((#DNOW#/1000)%60))
- - Minutes: (floor((#DNOW#/60000)%60))
- VAR tags (e.g., #VAR_1#) → Not supported; predefine fixed values or simulate toggles by time-based conditions (#DNOW# mod)
- === Methods ===
- pad() → Works but sometimes unreliable; fallback:
- $#TAG#<10?0#TAG#:#TAG#$
- sin(), cos(), floor(), round(), abs(), rad() → Fully supported for animations in WFF.
- === Weather ===
- #WCT#, #WCCI#, #WCCT# → Supported
- #WRHZ#, #WSHZ# (Sunrise/Sunset with zero) → Use (pad()) workaround
- === Animation alternatives ===
- - Replace #DWFHS# (hour hand smooth) with (#DH# * 30)
- - Replace #DWFMS# (minute hand smooth) with (#Dm# * 6)
- - Replace #DWFSS# (second hand smooth) with (#Ds# * 6)
- === Notes ===
- - Tags not working for text can often be used in conditions (e.g., opacity).
- - Interactive layers (VAR, Stopwatch) are disabled in WFF; replace with time-driven or conditional visuals.
- - Astronomy (sun/moon) tags often fallback; simulate via rotation (#DWFHS# for sun, moon images by phase).
Advertisement