20 lines
475 B
Plaintext
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;
|
||
|
}
|