11 lines
162 B
Plaintext
11 lines
162 B
Plaintext
|
int StartingConditional()
|
||
|
{
|
||
|
object oItem = GetItemInSlot(INVENTORY_SLOT_RIGHTHAND,GetPCSpeaker());
|
||
|
|
||
|
if (GetIsObjectValid(oItem))
|
||
|
{
|
||
|
return TRUE;
|
||
|
}
|
||
|
return FALSE;
|
||
|
}
|