Files
HeroesStone_PRC8/_module/nss/trackingarrow_oh.nss
Jaysyn904 1eefc84201 Initial Commit
Initial Commit.
2025-09-14 15:40:46 -04:00

12 lines
317 B
Plaintext

void main()
{
object oSelf = OBJECT_SELF;
int iLocal = GetLocalInt(oSelf, "switch");
float fDelay = 60.0;//This is the total time a tracking arrow should remain on the feild in seconds
if (iLocal == 0){
SetPlotFlag(oSelf, FALSE);
DestroyObject(oSelf, (fDelay-6.0));
}
else{}
}