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