11 lines
162 B
Plaintext
11 lines
162 B
Plaintext
//Script made by Drakaden
|
|
int StartingConditional()
|
|
{
|
|
|
|
// Check for gold
|
|
if(!(GetGold(GetPCSpeaker()) >= 1000))
|
|
return FALSE;
|
|
|
|
return TRUE;
|
|
}
|