NWNDS/nwn_dark_sun/ar_i0_startport.nss
Jaysyn904 b01c5cc7db Added PnP Dire Rat.
Added PnP Dire Rat.
2021-07-21 17:48:43 -04:00

14 lines
300 B
Plaintext

#include "nw_i0_tool"
void main()
{
object oUser = GetLastUsedBy();
if (GetHitDice(oUser) <= 2)
{
RewardPartyXP(3000, oUser, FALSE);
}
else if (GetHitDice(oUser) >= 3)
AssignCommand(OBJECT_SELF, ActionStartConversation(oUser));
}