UW2_PRC8/_module/nss/isanewgambler.nss

12 lines
202 B
Plaintext
Raw Permalink Normal View History

2023-09-25 20:24:01 -04:00
//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
}