HoS_PRC8/_mod/_module/nss/lupg_has_res.nss
Jaysyn904 04165202c0 Initial upload
Initial upload
2024-11-25 19:36:07 -05:00

12 lines
301 B
Plaintext

// lupg_has_res - Has the required resources
#include "rtsh_multiplay"
int StartingConditional()
{
object oPC=GetPCSpeaker();
int nParm=GetLocalInt(oPC,"nParm");
if (nParm==1&&fnGetTeamMana(oPC)>999) return TRUE;
else if (nParm==2&&GetGold(oPC)>4999) return TRUE;
return FALSE;
}