Initial Commit
Initial Commit
This commit is contained in:
19
_module/nss/henchman_barbari.nss
Normal file
19
_module/nss/henchman_barbari.nss
Normal file
@@ -0,0 +1,19 @@
|
||||
//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_barbarian_m");
|
||||
SetLocalString(oPC, "hench_gender", "_m");
|
||||
}
|
||||
else
|
||||
{
|
||||
SetLocalString(oPC, "henchman", "na_barbarian_f");
|
||||
SetLocalString(oPC, "hench_gender", "_f");
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user