NWNDS/nwnds_module/ar_i0_startport.nss
Jaysyn904 de24f81734 Added NWN Dark Sun module contents
Added NWN Dark Sun module contents.
2021-07-12 21:24:46 -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));
}