HoS_PRC8/_mod/_module/nss/lupg_has_res.nss

12 lines
301 B
Plaintext
Raw Permalink Normal View History

2024-11-25 19:36:07 -05:00
// 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;
}