Added dialog to raise new players to 12th lvl

Added dialog to raise new players to 12th lvl
This commit is contained in:
Jaysyn904
2024-01-24 23:09:25 -05:00
parent fecfc845d8
commit f9f89b27cc
212 changed files with 24962 additions and 6756 deletions

View File

@@ -0,0 +1,23 @@
//:: FileName henchman_joins
// Henchman joins PC, booting other henchman if necessary
#include "nw_i0_henchman"
void main()
{
if (GetIsObjectValid(GetHenchman(GetPCSpeaker())) == TRUE)
{ SetFormerMaster(GetPCSpeaker(), GetHenchman(GetPCSpeaker()));
object oHench = GetHenchman(GetPCSpeaker());
RemoveHenchman(GetPCSpeaker(), GetHenchman(GetPCSpeaker()));
AssignCommand(oHench, ClearAllActions());
}
SetWorkingForPlayer(GetPCSpeaker());
SetBeenHired();
ExecuteScript("NW_CH_JOIN", OBJECT_SELF);
SetLocalInt(GetObjectByTag("TownGuardintro2"), "nConversation", 4);
}