generated from Jaysyn/ModuleTemplate
23 lines
524 B
Plaintext
23 lines
524 B
Plaintext
/////////////////////////////////////
|
|
// Dragon's Edge
|
|
// by Charly Carlos
|
|
/////////////////////////////////////
|
|
// Check if the player does not have the Bag of Strange Blue Powder in his/her inventory.
|
|
/////////////////////////////////////
|
|
int StartingConditional()
|
|
{
|
|
int iResult;
|
|
object oPC = GetPCSpeaker();
|
|
|
|
iResult = GetIsObjectValid(GetItemPossessedBy(oPC, "ItemNumberFour"));
|
|
if (iResult == TRUE)
|
|
{
|
|
iResult = FALSE;
|
|
}
|
|
else
|
|
{
|
|
iResult = TRUE;
|
|
}
|
|
return iResult;
|
|
}
|