Jaysyn904 5e558169a0 Initial Commit
Initial Commit
2025-04-03 11:24:16 -04:00

27 lines
602 B
Plaintext

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