16 lines
204 B
Plaintext
16 lines
204 B
Plaintext
|
#include "utl_i_sqluuid"
|
||
|
|
||
|
int StartingConditional()
|
||
|
{
|
||
|
int iResult;
|
||
|
object oPC;
|
||
|
|
||
|
oPC = GetPCSpeaker();
|
||
|
iResult = TRUE;
|
||
|
|
||
|
if (SQLocalsUUID_GetInt(oPC,"PCGuild") == 1)
|
||
|
iResult = FALSE;
|
||
|
|
||
|
return iResult;
|
||
|
}
|