22 lines
483 B
Plaintext
22 lines
483 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: FileName 2_ship_gold
|
|
//:://////////////////////////////////////////////
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Script Wizard
|
|
//:: Created On: 7/16/2002 8:49:07 PM
|
|
//:://////////////////////////////////////////////
|
|
#include "nw_i0_tool"
|
|
|
|
int StartingConditional()
|
|
{
|
|
|
|
|
|
// Does the player have enough gold?
|
|
int iResult;
|
|
|
|
iResult = (GetGold(GetPCSpeaker()) >= 1000);
|
|
return iResult;
|
|
}
|
|
|
|
|