10 lines
208 B
Plaintext
10 lines
208 B
Plaintext
|
int StartingConditional()
|
||
|
{
|
||
|
object oPC = GetPCSpeaker();
|
||
|
object oItem = GetItemInSlot(INVENTORY_SLOT_RIGHTHAND, oPC);
|
||
|
int iResult;
|
||
|
|
||
|
iResult = (!GetIsObjectValid(oItem));
|
||
|
return iResult;
|
||
|
}
|