12 lines
202 B
Plaintext
12 lines
202 B
Plaintext
|
//The PC Has never gambled before
|
||
|
|
||
|
int StartingConditional()
|
||
|
{
|
||
|
object oPC=GetPCSpeaker();
|
||
|
|
||
|
string sTag=GetTag(OBJECT_SELF);
|
||
|
|
||
|
return (GetLocalInt(oPC, sTag)==0);
|
||
|
//only returns true when variable is 0
|
||
|
}
|