11 lines
253 B
Plaintext
11 lines
253 B
Plaintext
|
void main()
|
||
|
{
|
||
|
object oPC=GetEnteringObject();
|
||
|
object oMod=GetModule();
|
||
|
if (GetIsPC(oPC)==TRUE)
|
||
|
{ // PC
|
||
|
if (GetLocalObject(oMod,"oTeamLeadUND")==oPC&&GetLocalInt(oPC,"nIsVampire")!=TRUE)
|
||
|
ExecuteScript("player_vampire",oPC);
|
||
|
} // PC
|
||
|
}
|