Rune_PRC8/_module/nss/respancorb.nss
Jaysyn904 d1c309ae63 Initial commit
Initial commit
2024-09-13 09:10:39 -04:00

13 lines
266 B
Plaintext

void RespawnOrb(location lOrb)
{
CreateObject(OBJECT_TYPE_PLACEABLE, "plotancientorb", lOrb);
}
void main()
{
location lOrb = GetLocation(OBJECT_SELF);
AssignCommand(GetArea(OBJECT_SELF), DelayCommand(3600.0, RespawnOrb(lOrb)));
DestroyObject(OBJECT_SELF, 3.0);
}