13 lines
234 B
Plaintext
13 lines
234 B
Plaintext
|
int StartingConditional()
|
||
|
{
|
||
|
|
||
|
object oPC = GetPCSpeaker();
|
||
|
|
||
|
|
||
|
if ( GetItemPossessedBy(oPC, "alchymihammer") == OBJECT_INVALID )
|
||
|
return FALSE;
|
||
|
|
||
|
// If we make it this far, we have passed all tests.
|
||
|
return TRUE;
|
||
|
}
|