Is there a easy way i can determine if its a weekday vs weekend? I'm using rex's handy plugin http://c2rexplugins.weebly.com/rex_date.html to get the date easily,
But just not sure if there's a nice easy way to determine the weekday vs weekend thing.
Develop games in your browser. Powerful, performant & highly capable.
I found the solution
The expression with Rex's plugin is date.day
It will return a number 0 through 6
0 is Sunday
1 is Monday
2 is Tuesday etc....
So the weekends are 0 and 6
Yay!