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

13 lines
314 B
Plaintext

#include "uc_h"
int StartingConditional()
{
object oPC=GetPCSpeaker();
int nBase=GetLocalInt(oPC,"nUCBase");
string sID=GetLocalString(oPC,"sTeamID");
int nUnit=GetLocalInt(oPC,"nParm");
int nNumber=nBase+nUnit;
if (!HasSufficientResources(oPC,nNumber,1)) return TRUE;
return FALSE;
}