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.
20 lines
282 B
Plaintext
20 lines
282 B
Plaintext
int StartingConditional()
|
|
{
|
|
int iResult;
|
|
object oPC=GetPCSpeaker();
|
|
|
|
if (GetIsObjectValid(GetItemPossessedBy(oPC,"jw_mys_item2"))&&GetGold(oPC)>=20000)
|
|
{
|
|
iResult=TRUE;
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
iResult=FALSE;
|
|
|
|
}
|
|
|
|
return iResult;
|
|
}
|