Ancordia_PRC8/_module/nss/henchman_cleric.nss
Jaysyn904 102ba7dab6 Initial Commit
Initial Commit
2023-09-21 19:51:32 -04:00

20 lines
377 B
Plaintext

//Makes note about the henchman class preferred by the PC and randomly chooses their gender.
void main()
{
object oPC = GetPCSpeaker();
if (d100()<=70)
{
SetLocalString(oPC, "henchman", "na_cleric_m");
SetLocalString(oPC, "hench_gender", "_m");
}
else
{
SetLocalString(oPC, "henchman", "na_cleric_f");
SetLocalString(oPC, "hench_gender", "_f");
}
}