//:://///////////////////////////////////////////// //:: FileName sc_check50gp //::////////////////////////////////////////////// //::////////////////////////////////////////////// //:: Created By: Script Wizard //:: Created On: 7/2/2002 12:03:40 AM //::////////////////////////////////////////////// #include "nw_i0_tool" int StartingConditional() { object oPlayer=GetPCSpeaker(); // Make sure the PC speaker has 50 GP in their inventory if(GetGold(oPlayer)<50) return FALSE; return TRUE; }