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

12 lines
316 B
Plaintext

// uc_a_prev - Unit Creation V2 - Action for PREVIOUS selection
// By Deva Bryson Winblood. 04/10/2005
void main()
{
object oPC=GetPCSpeaker();
int nUCBase=GetLocalInt(oPC,"nUCBase");
nUCBase=nUCBase-10;
if (nUCBase<0) nUCBase=0;
SetLocalInt(oPC,"nUCBase",nUCBase);
DeleteLocalInt(oPC,"nUCRun");
}