LoT_PRC8/_module/nss/pgs_con_faction.nss
Jaysyn904 ec287507a1 Initial upload
Initial upload.
2023-09-25 21:32:17 -04:00

22 lines
616 B
Plaintext

//::///////////////////////////////////////////////
//:: Name: pgs_con_faction
//:: Copyright (c) 2001 Bioware Corp.
//:://////////////////////////////////////////////
/*
Check if the player is in a guild, and not
the same one selected in the guild list.
*/
//:://////////////////////////////////////////////
//:: Created By: Samius Maximus
//:: Created On:
//:://////////////////////////////////////////////
int StartingConditional()
{
object oPlayer = GetPCSpeaker();
if (GetLocalInt (oPlayer, "Player_Guild_Number") != 0)
return !GetLocalInt (oPlayer, "Same_Guild");
return FALSE;
}