PoA_PRC8/_module/nss/startresting.nss

13 lines
225 B
Plaintext
Raw Normal View History

2022-10-07 14:20:31 -04:00
void main()
{
object oPC = GetPCSpeaker();
//Tell the OnPlayerRest Event Script we can rest...
SetLocalInt(oPC, "REST_STARTED", 1);
//Make the PC start the XP2 Rest system..
AssignCommand(oPC, ActionRest(FALSE));
2023-08-01 20:16:07 -04:00
2022-10-07 14:20:31 -04:00
}