Files
HeroesStone_PRC8/_module/nss/arena_c_c_novice.nss
Jaysyn904 1eefc84201 Initial Commit
Initial Commit.
2025-09-14 15:40:46 -04:00

11 lines
314 B
Plaintext

int StartingConditional()
{
object oPC=GetPCSpeaker();
int nN=GetLocalInt(oPC,"nArenaNovice");
int nN1=GetLocalInt(oPC,"nArenaIntermed");
int nN2=GetLocalInt(oPC,"nArenaMaster");
int nN3=GetLocalInt(oPC,"nArenaChampion");
if (nN1==0&&nN2==0&&nN3==0&&nN<10) return TRUE;
return FALSE;
}