12 lines
214 B
Plaintext
12 lines
214 B
Plaintext
|
|
||
|
#include "inc_Timestop"
|
||
|
void main()
|
||
|
{
|
||
|
object oTarget = GetEnteringObject();
|
||
|
if(GetIsDM(oTarget))
|
||
|
return;
|
||
|
if(oTarget == GetAreaOfEffectCreator())
|
||
|
return;
|
||
|
ApplyTSToObject(oTarget);
|
||
|
}
|