Fixed Nicky's store

Fixed Nicky's store.  Made Dirt Mounds & Polar Bears respawn.  Full compile.
This commit is contained in:
Jaysyn904
2025-03-18 22:44:10 -04:00
parent 00d2c183e8
commit f68f638e05
21 changed files with 28430 additions and 2166 deletions

View File

@@ -0,0 +1,13 @@
void RespawnPlaceable(location lSpawn)
{
object oNew = CreateObject(OBJECT_TYPE_PLACEABLE, GetResRef(OBJECT_SELF), lSpawn);
}
void main()
{
object oSelf = OBJECT_SELF;
location lSpawn = GetLocation(oSelf);
DestroyObject(oSelf, 0.0);
DelayCommand(7200.0, RespawnPlaceable(lSpawn));
}