21 lines
628 B
Plaintext
21 lines
628 B
Plaintext
|
//::///////////////////////////////////////////////
|
||
|
//:: Name: farm_not_owner
|
||
|
//:: Copyright (c) 2001 Bioware Corp.
|
||
|
//:://////////////////////////////////////////////
|
||
|
/*
|
||
|
Check if the current PC involved in the
|
||
|
conversation is NOT the owner.
|
||
|
*/
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:: Created By: Adam Walenga
|
||
|
//:: Created On: September 7th, 2004
|
||
|
//:://////////////////////////////////////////////
|
||
|
#include "farm_include"
|
||
|
|
||
|
int StartingConditional()
|
||
|
{
|
||
|
object oPlayer = GetPCSpeaker();
|
||
|
|
||
|
return (Farm_GetOwner (GetLocalInt (OBJECT_SELF, "Farm_Number")) != "FARM_" + GetPCPlayerName (oPlayer));
|
||
|
}
|