16 lines
367 B
Plaintext
16 lines
367 B
Plaintext
#include "lod_include"
|
|
|
|
int StartingConditional()
|
|
{
|
|
object oPC = GetPCSpeaker(), oSpeaker = OBJECT_SELF;
|
|
string sActName = GetPCPlayerName(oPC);
|
|
|
|
if (IsGuildMember(sActName))
|
|
{
|
|
string sGuild = IsGuildName(sActName);
|
|
SetLocalString(oPC, "Guild", sGuild); // set for use in actions taken script
|
|
return TRUE;
|
|
}
|
|
else return FALSE;
|
|
}
|