14 lines
286 B
Plaintext
14 lines
286 B
Plaintext
|
void main()
|
||
|
{
|
||
|
object wizTP = GetLocalObject(OBJECT_SELF,"wizTP");
|
||
|
|
||
|
object oPC = GetLastUsedBy();
|
||
|
|
||
|
object owner = GetLocalObject(OBJECT_SELF,"wizTPOwner");
|
||
|
|
||
|
if(GetFactionLeader(oPC) == GetFactionLeader(owner))
|
||
|
ActionStartConversation(oPC,"",TRUE);
|
||
|
|
||
|
return;
|
||
|
}
|