Jaysyn904 d1c309ae63 Initial commit
Initial commit
2024-09-13 09:10:39 -04:00

20 lines
475 B
Plaintext

////////////////////////////////////////////////////////////////////////////////
//
// Olander's Player and NPC Kill Counter
// opw_kill_cnt_chk
// By:Don Anderson
// dandersonru@msn.com
//
// This is called from the Rest Menu
//
////////////////////////////////////////////////////////////////////////////////
int StartingConditional()
{
int nPKTrack;
nPKTrack = GetLocalInt(GetModule(),"PKTRACK");
if(nPKTrack == 1) return TRUE;
else return FALSE;
}