Aantioch_Infernum/_module/nss/nc_innkeep_give.nss

19 lines
574 B
Plaintext
Raw Permalink Normal View History

2023-08-08 16:22:17 -04:00
//::///////////////////////////////////////////////
//:: FileName nc_innkeep_give
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
//:: Created By: Script Wizard
//:: Created On: 22/11/2003 15:41:42
//:://////////////////////////////////////////////
void main()
{
2023-10-12 22:59:45 -05:00
object oPC = GetPCSpeaker();
object oParty = GetFirstFactionMember(oPC, TRUE);
if (GetIsPC(oParty))
{
// Give the party the items
CreateItemOnObject("innkeepersnote", oParty, 1);
}
oParty = GetNextFactionMember(oPC, TRUE);
2023-08-08 16:22:17 -04:00
}