9 lines
207 B
Plaintext
9 lines
207 B
Plaintext
|
#include "x4_inc_functions"
|
||
|
int StartingConditional()
|
||
|
{
|
||
|
string sMessage = GetLastPCChatMessage(GetPCSpeaker());
|
||
|
int nGold = StringToInt(sMessage);
|
||
|
if (nGold > 0) return FALSE;
|
||
|
return TRUE;
|
||
|
}
|