AOC_PRC8/_module/nss/app0.nss
Jaysyn904 5e558169a0 Initial Commit
Initial Commit
2025-04-03 11:24:16 -04:00

33 lines
760 B
Plaintext

void main()
{
object oH = GetPCSpeaker();
if (GetLocalString(oH, "HUNDRED") == "")
{
SetLocalString(oH, "HUNDRED", "0");
return;
}
else
{
if (GetLocalString(oH, "TEN") == "")
{
SetLocalString(oH, "TEN", "0");
return;
}
else
{
if (GetLocalString(oH, "ONE") == "")
{
SetLocalString(oH, "ONE", "0");
SetCustomToken(
420,
GetLocalString(oH, "THOUSAND")
+ GetLocalString(oH, "HUNDRED")
+ GetLocalString(oH, "TEN")
+ GetLocalString(oH, "ONE")
);
return;
}
}
}
}