WoR_PRC8/_module/nss/troll_prisoner2.nss

16 lines
501 B
Plaintext
Raw Permalink Normal View History

2025-04-03 11:49:34 -04:00
void CreateObject2(int nObjectType, string sTemplate, location lLocation, int bUseAppearAnimation=TRUE);
void main()
{
SetIsDestroyable(TRUE);
DelayCommand(599.0, CreateObject2(OBJECT_TYPE_PLACEABLE, "trollrock", GetLocation(OBJECT_SELF)));
DelayCommand(600.0, DestroyObject(OBJECT_SELF));
}
void CreateObject2(int nObjectType, string sTemplate, location lLocation, int bUseAppearAnimation=TRUE)
{
CreateObject(nObjectType, sTemplate, lLocation, bUseAppearAnimation);
return;
}