10 lines
241 B
Plaintext
10 lines
241 B
Plaintext
#include "x4_inc_functions"
|
|
int StartingConditional()
|
|
{
|
|
object oPC = GetPCSpeaker();
|
|
string sMessage = GetLastPCChatMessage(oPC);
|
|
int nGold = StringToInt(sMessage);
|
|
if (GetGold(oPC) >= nGold) return TRUE;
|
|
return FALSE;
|
|
}
|