Group TimeConditions
Contains time-related Pose Mod conditions that only work on Yandere Simulator.
Assembly: pm_yan.dll
Commands
Time(Single, Single)
Checks if the current time is higher than or equal to minTime
and lower than or equal to maxTime
.
Declaration
public bool Time(float minTime, float maxTime)
Remarks
minTime
and maxTime
are both in hours since the start of the day.
For example: 1
is 01:00
, 12
is 12:00
, 15.5
is 15:30
and 17.8
is 17:48
. 0.1
(10%
) is equivalent to 6 minutes.
Weekday(String)
Checks if the current day of the week is value
.
Declaration
public bool Weekday(string value)
Remarks
value
may be in number or case-insensitive text form. For example: 2
, tuesday
, TUESDAY
and tUeSdAy
all evaluate to the same day.