EN6_PRC8/_module/nss/en6_mq1_npc1_1_a.nss
Jaysyn904 a6f6db7303 Initial commit
Initial commit.  Updated release archive.
2024-06-13 15:08:33 -04:00

32 lines
1.0 KiB
Plaintext

#include "qst_include"
void main()
{
object oPC;
object oHenchman;
object oObject;
string sDescription;
oPC=GetPCSpeaker();
AcceptQuest(oPC,OBJECT_SELF);
oHenchman=CreateObject(OBJECT_TYPE_CREATURE,"en6_human_hm",GetLocation(oPC),FALSE,"mq1_1_scout");
SetLocalInt(oHenchman,"HenchmanClass",EN5_CLASS_RANGER);
ChangeFaction(oHenchman,GetObjectByTag("en6_defender"));
SetName(oHenchman,"Scout Randolf");
LevelHenchman(oHenchman,20+Random(3));
oObject = CreateItemOnObject("en5_start_rogue",oHenchman);
DelayCommand(1.0,AssignCommand(oHenchman,ActionEquipItem(oObject,INVENTORY_SLOT_CHEST)));
oObject = CreateItemOnObject("en3_lsword",oHenchman);
oObject = CreateItemOnObject("en3_longbow",oHenchman);
DelayCommand(1.0,AssignCommand(oHenchman,ActionEquipItem(oObject,INVENTORY_SLOT_RIGHTHAND)));
oObject = CreateItemOnObject("NW_WAMMAR003",oHenchman,99);
DelayCommand(1.0,AssignCommand(oHenchman,ActionEquipItem(oObject,INVENTORY_SLOT_ARROWS)));
AddHenchman(oPC, oHenchman);
DelayCommand(2.0, AssignCommand(oHenchman,ActionForceFollowObject(oPC,5.0)));
}