RoT2_PRC8/_module/nss/xx_cb_hb.nss
Jaysyn904 499aba4eb3 Initial upload
Initial upload
2023-09-25 18:13:22 -04:00

25 lines
547 B
Plaintext

void main()
{
int nHBCount = GetLocalInt(GetModule(),"HBCount");
nHBCount++;
if(nHBCount == 30)
{
nHBCount = 0;
location lPlayer;
object oPC = GetFirstPC();
while(GetIsObjectValid(oPC))
{
lPlayer = GetLocation(oPC);
SetLocalInt(oPC,"BypassLocation",1);
SetCampaignLocation("PlayerData","Location",lPlayer,oPC);
SendMessageToPC(oPC,"Updating Player Location.");
oPC = GetNextPC();
}
}
SetLocalInt(GetModule(),"HBCount",nHBCount);
}