14 lines
254 B
Plaintext
14 lines
254 B
Plaintext
#include "mn_checkinv"
|
|
|
|
int StartingConditional()
|
|
{
|
|
int iResult;
|
|
|
|
object bankToken = findItem( GetPCSpeaker(), "MN_MISC_BANKTOK" );
|
|
int balance = GetLocalInt( bankToken, "BALANCE" );
|
|
|
|
iResult = ( balance > 99999 );
|
|
return iResult;
|
|
}
|
|
|