generated from Jaysyn/ModuleTemplate
12 lines
317 B
Plaintext
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{}
|
|
}
|