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

13 lines
382 B
Plaintext

void main()
{
int nLevel=GetLocalInt(GetPCSpeaker(),"nParm");
int nThreshold=0;
if (nLevel==1) nThreshold=-3;
else if (nLevel==2) nThreshold=-2;
else if (nLevel==3) nThreshold=-1;
else if (nLevel==5) nThreshold=250;
else if (nLevel==6) nThreshold=500;
else if (nLevel==7) nThreshold=1000;
SetLocalInt(GetModule(),"nCleanThreshold",nThreshold);
}