Quote:
Originally Posted by Jadefang
Let's say I want to set the game clock to the next day, exactly 1 am in the morning (or at the very least, force it to go to nighttime). Is there a way to do this (without, for the latter case, making a massive stack of Pass Time events until it's detected as night)?
|
Logic Block Event:
ignore ALL settings except under the "first action" box. click the "always" button (you can set conditionals on another page), select "GPDL Function" from the drop down box below the always button, then click the button next to the box below this, the "..." button. This opens the GDPL environ, and put this in it exactly as typed:
$SET_PARTY_HOURS("01");
$SET_PARTY_DAYS($PLUS ($GET_PARTY_DAYS(), "1"));
This will set the clock @ 1 and advance to the next day. By playing around with these you can set the time/date to whatever you want (remember military time: any time after noon add 12 to it)
$SET_PARTY_DAYS( String )
$SET_PARTY_HOURS( String )
$SET_PARTY_MINUTES( String )
Quote:
Originally Posted by Jadefang
The Pass Time event has a Set Game Clock To These Values option, but it doesn't seem to work.
|
I've not tried this, but seems like a bug
ST