Rune_PRC8/_module/nss/opw_gxp_ison.nss
Jaysyn904 d1c309ae63 Initial commit
Initial commit
2024-09-13 09:10:39 -04:00

18 lines
407 B
Plaintext

////////////////////////////////////////////////////////////////////////////////
//
// 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;
}