generated from Jaysyn/ModuleTemplate
14 lines
324 B
Plaintext
14 lines
324 B
Plaintext
///////////////////////////////
|
|
// Dragon's Edge
|
|
// by Charly Carlos
|
|
///////////////////////////////
|
|
// Used during conversation. Checking if the player has atleast 1000 gold.
|
|
///////////////////////////////
|
|
int StartingConditional()
|
|
{
|
|
int iResult;
|
|
|
|
iResult = (GetGold(GetPCSpeaker())>= 1000);
|
|
return iResult;
|
|
}
|