Rune_PRC8/_module/nss/opw_gxp_ison.nss

18 lines
407 B
Plaintext
Raw Normal View History

2024-09-13 09:10:39 -04:00
////////////////////////////////////////////////////////////////////////////////
//
// Is Gold and XP On?
// opw_gxp_ison
// By Don Anderson
// dandersonru@msn.com
//
// Called from XP Giver Convo
//
////////////////////////////////////////////////////////////////////////////////
int StartingConditional()
{
int nGXP = GetLocalInt(OBJECT_SELF,"GXP");
if(nGXP == 1) return TRUE;
return FALSE;
}