19 lines
528 B
Plaintext
19 lines
528 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: FileName eye_ranz_06
|
|
//:://////////////////////////////////////////////
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Script Wizard
|
|
//:: Created On: 03.06.2003 13:37:27
|
|
//:://////////////////////////////////////////////
|
|
#include "nw_i0_tool"
|
|
|
|
int StartingConditional()
|
|
{
|
|
|
|
// Make sure the PC speaker has enough gold to pay the fee
|
|
if(GetGold(GetPCSpeaker()) < GetLocalInt(GetPCSpeaker(),"RanzFee"))
|
|
return FALSE;
|
|
|
|
return TRUE;
|
|
}
|