Initial upload. PRC8 has been added. Module compiles, PRC's default AI & treasure scripts have been integrated. Started work on top hak for SLA / Ability / Scripting modifications.
22 lines
569 B
Plaintext
22 lines
569 B
Plaintext
int StartingConditional()
|
|
{
|
|
int iResult;
|
|
object oPC=GetPCSpeaker();
|
|
|
|
if (GetIsObjectValid(GetItemPossessedBy(oPC,"jw_mys_item1"))||GetIsObjectValid(GetItemPossessedBy(oPC,"jw_mys_item2"))||
|
|
GetIsObjectValid(GetItemPossessedBy(oPC,"jw_mys_item3"))||GetIsObjectValid(GetItemPossessedBy(oPC,"jw_mys_item4"))
|
|
||GetIsObjectValid(GetItemPossessedBy(oPC,"jw_mys_item5"))||GetIsObjectValid(GetItemPossessedBy(oPC,"jw_mys_item6")))
|
|
{
|
|
iResult=TRUE;
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
iResult=FALSE;
|
|
|
|
}
|
|
|
|
return iResult;
|
|
}
|