20 lines
373 B
Plaintext
20 lines
373 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_monk_m");
|
|
SetLocalString(oPC, "hench_gender", "_m");
|
|
}
|
|
else
|
|
{
|
|
SetLocalString(oPC, "henchman", "na_monk_f");
|
|
SetLocalString(oPC, "hench_gender", "_f");
|
|
}
|
|
|
|
}
|
|
|