18 lines
227 B
Plaintext
18 lines
227 B
Plaintext
//Put this script OnEnter
|
|
void main()
|
|
{
|
|
|
|
object oTarget;
|
|
|
|
object oPC = GetEnteringObject();
|
|
|
|
SetLocalString(oPC, "hsvncx", "1");
|
|
|
|
if (!GetIsPC(oPC)) return;
|
|
|
|
oTarget = GetObjectByTag("Hisvin");
|
|
|
|
DestroyObject(oTarget, 1.0);
|
|
|
|
}
|