Alangara_PRC8/_module/nss/farm_not_owner.nss
Jaysyn904 86feb9ca6f Initial commit
Initial commit.
2024-06-05 21:21:06 -04:00

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));
}